/*!
 * jQuery Cookiebar Plugin
 * https://github.com/carlwoodhouse/jquery.cookieBar
 *
 * Copyright 2012, Carl Woodhouse
 * Disclaimer: if you still get fined for not complying with the eu cookielaw, it's not our fault.
 *
 * Modified 2016-04-09 by Jan Barkhed, Slingblade.
 */

.ui-widget .cookie-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 100px 10px 100px;
  /* 40px covers navigation bar */
  background: #fff;
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 0px 3px #ccc;
  z-index: 400;
  /* Must be higher than #header */
}

.ui-widget .cookie-message .accept-button {
  position: relative;
  bottom: 25%;
  padding: 0 20px 0;
  /* right:20px; */
  cursor: pointer;
}

.ui-widget .cookie-message .reject-button {
  position: relative;
  bottom: 25%;
  padding: 0 20px 0;
  /* right:150px; */
  cursor: pointer;
}

.ui-widget .cookie-message .switch-message {
  padding: 15px 0px 0px 0px;
}


.ui-widget .cookie-message .body {
  display: inline-block;
  padding: 0px 100px 0px 25px;
  text-align: left;
  font-weight: 400;
}


.center {
  width:100%;
  display: flex;
  justify-content: center;
  padding: 50px 25px 20px;
}


.ui-widget .cookie-message p {
  font-family: system-ui, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.35417;
  font-weight: 800;
  letter-spacing: normal;
  margin: 0.6em 0;
  padding: 0px 25px 0px;
  /* button size */
  text-align: left;
}


.ui-widget .cookie-message .accept-button,
.ui-widget .cookie-message .reject-button {
  font-family: system-ui, "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  line-height: 1.35417;
  font-weight: 300;
  letter-spacing: 0.05em;
  background-color: #8D8173;
	color: white;
  border: 1px solid #E4D1B6;
	border-radius: 20px;
	padding: 10px 15px 10px;
	margin-top: 20px;
}


.blue {
  border-bottom: 1px solid #0E83AE;
  background-color: #0990c3;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0e83ae), color-stop(50%, #0990c3), color-stop(100%, #0e9dd2));
  background: -webkit-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -moz-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -o-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -ms-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: linear-gradient(#0e83ae, #0990c3, #0e9dd2);
}

.blue p,
.blue a {
  color: #fff;
}

.ui-widget .accept-button,
.ui-widget .reject-button {
  background-color: #FF8000;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}


.ui-widget .banner {
  display: none;
  /* Prevents the banner from being displayed */
  border-bottom: 1px solid #6E8694;
  background-color: #2C363A;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2C363A), color-stop(50%, #2C363A), color-stop(100%, #6E8694));
  background: -webkit-linear-gradient(#2C363A, #2C363A, #6E8694);
  background: -moz-linear-gradient(#2C363A, #2C363A, #6E8694);
  background: -o-linear-gradient(#2C363A, #2C363A, #6E8694);
  background: -ms-linear-gradient(#2C363A, #2C363A, #6E8694);
  background: white
    /*linear-gradient(#2C363A, #2C363A, #6E8694);*/
}

.ui-widget .banner p,
.ui-widget .banner a {
  color: #7A6E5F;
}


/* The switch - the box around the slider */
.marketing-switch, .useful-switch, .tracking-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}


/* Hide default HTML checkbox */
.marketing-switch input, .useful-switch input, .tracking-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}


.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}


input:checked+.slider {
  background-color: #8D8173;
}


input:focus+.slider {
  box-shadow: 0 0 1px #8D8173;
}


input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}


/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}


.slider.round:before {
  border-radius: 50%;
}