/* #####################################################################################################
   This stylesheet describes the cookienotice
   ##################################################################################################### */

/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.cookieNotice {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1005;
  display: none;
  background-color: #f1f1f1;
  border-top: solid 1px #dedede;
}
.cookieNotice.show {
  -webkit-animation: fadeIn 500ms;
  -moz-animation: fadeIn 500ms;
  -ms-animation: fadeIn 500ms;
  -o-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
  display: block;
}
.cookieNotice__block {
  position: relative;
  padding: 10px 0;
}
@media only screen and (min-width: 768px) {
  .cookieNotice__block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
  }
}
.cookieNotice__content,
.cookieNotice__buttons {
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
}
.cookieNotice__content {
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  padding-right: 20px;
  font-size: 13px;
  line-height: 1.6;
}
.cookieNotice__content a {
  color: #cca600;
}
.cookieNotice__buttons {
  -webkit-flex-grow: 0;
  -ms-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
.no-flexbox.no-flexboxlegacy .cookieNotice__buttons {
  text-align: right;
}
.cookieNotice__buttons .close {
  display: none;
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: #f2f2f2;
  color: #454545;
  font-size: 12px;
  padding: 9px;
  text-align: center;
  -webkit-border-top-left-radius: 50%;
  -moz-border-top-left-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.cookieNotice__buttons .close:hover {
  background: #dedede;
}
@media only screen and (max-width: 767px) {
  .cookieNotice__buttons a.bttn {
    float: left;
    width: 50%;
    margin: 10px 0;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
}
/* Popup */

.cookiePopup {
  padding: 0 0 80px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cookiePopup > * {
  width: 100%;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
}
.cookiepopup__body {
  max-height: 567px;
}
.cookiepopup__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f2f2f2;
}
@media only screen and (max-width: 767px) {
  .cookiepopup__footer {
    position: fixed;
    bottom: 2%;
    margin: 0 2%;
    width: 96%;
  }
}
.cookieSetting {
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
}
@media only screen and (min-width: 768px) {
  .cookieSetting {
    display: table;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .cookieSetting > div {
    display: table-cell;
    vertical-align: top;
  }
}
.cookieSetting > div.cookieSetting__text {
  padding: 0 15px 0 0;
}
.cookieSetting > div.cookieSetting__text h3 {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (min-width: 768px) {
  .cookieSetting > div.cookieSetting__options {
    width: 140px;
    padding-top: 35px;
  }
}
.cookieSetting__optionWrap:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  *zoom: 1;
}
.cookieSetting__option {
  position: relative;
  width: 50%;
  float: left;
  overflow: hidden;
}
.cookieSetting__option input {
  position: absolute;
  top: -999em;
  left: 0;
}
.cookieSetting__option #cookie_functional--true + label,
.cookieSetting__option #cookie_tracking--true + label,
.cookieSetting__option input:checked + label {
  background: #5cb85c;
  color: white;
  cursor: default;
}
.cookieSetting__option input:checked + label.right {
  background: #e6575a;
  cursor: default;
}
.cookieSetting__option input:disabled + label {
  opacity: .4;
  cursor: default;
}
.cookieSetting__option #cookie_functional--false + label,
.cookieSetting__option #cookie_tracking--false + label,
.cookieSetting__option label {
  display: block;
  background: #ebebeb;
  color: #454545;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px;
  text-align: center;
}
.cookieSetting__option #cookie_functional--false + label.left,
.cookieSetting__option #cookie_tracking--false + label.left,
.cookieSetting__option label.left {
  -webkit-border-top-left-radius: 10px 0 0 10px;
  -moz-border-top-left-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.cookieSetting__option #cookie_functional--false + label.right,
.cookieSetting__option #cookie_tracking--false + label.right,
.cookieSetting__option label.right {
  -webkit-border-top-left-radius: 0 10px 10px 0;
  -moz-border-top-left-radius: 0 10px 10px 0;
  border-radius: 0 10px 10px 0;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.cookieSetting__option #cookie_functional--false + label,
.cookieSetting__option #cookie_tracking--false + label {
  cursor: default;
}
.cookieSetting:last-child .cookieSetting__checkbox:after {
  display: none;
}
.cookiePopup__buttons {
  text-align: right;
  line-height: 0;
  padding: 15px;
}
