#cookie-toggle {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 140;
  padding: 0 10px;
  width: 60px;
  height: 60px;
  color: "white";
  background: #000;
  text-align: center;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
}
@media (min-height: 1144px) {
  #cookie-toggle {
    bottom: 76px;
  }
}
#cookie-toggle img {
  width: auto;
  height: 40px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#cookie-toggle.hidden {
  display: none;
}

#ConsentPopup {
  background: #000;
  color: "white";
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 414px;
  width: 100%;
  height: auto;
  z-index: 999999;
  padding: 30px;
  text-align: justify;
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  font-family: "SourceSansPro-Regular";
}
#ConsentPopup.hidden {
  display: none;
}
#ConsentPopup .cookie-buttons {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#ConsentPopup .cookie-buttons .btn {
  background: "white";
  color: "000";
  border: 1px solid "white";
  display: block;
  width: 100%;
  text-align: center;
  width: 100%;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 13px;
  padding: 10px;
  cursor: pointer;
}
#ConsentPopup .cookie-buttons .btn.accept {
  color: white !important;
  background: "blue";
  border: 1px solid "blue";
}
#ConsentPopup .cookie-buttons .btn.deny, #ConsentPopup .cookie-buttons .btn.save {
  color: white;
  background: "000";
  display: none;
  font-weight: 300;
  opacity: 0.8;
}
#ConsentPopup .cookie-buttons .btn.deny.active, #ConsentPopup .cookie-buttons .btn.save.active {
  display: block;
}
#ConsentPopup .cookie-buttons .btn:hover {
  color: #000 !important;
}
@media (max-width: 425px) {
  #ConsentPopup .cookie-buttons .btn {
    font-size: 12px;
    /*      padding: 0 5px;
         padding-top: 15px; */
  }
}
@media (max-width: 320px) {
  #ConsentPopup .cookie-buttons .btn {
    padding-top: 8px;
  }
  #ConsentPopup .cookie-buttons .btn.deny {
    padding-top: 15px;
  }
}
#ConsentPopup .cookie-settings {
  border-top: 1px dashed "white";
}
#ConsentPopup .cookie-settings .options-toggle {
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 10px;
  cursor: pointer;
}
#ConsentPopup .cookie-settings .toggles {
  display: none;
  grid-gap: 20px;
  grid-template-columns: 100px 1fr 80px;
  width: 100%;
}
#ConsentPopup .cookie-settings .toggles.active {
  display: grid;
}
@media (max-width: 380px) {
  #ConsentPopup .cookie-settings .toggles {
    grid-template-columns: 80px 1fr 60px;
  }
}
@media (max-width: 345px) {
  #ConsentPopup .cookie-settings .toggles {
    grid-template-columns: 70px 1fr 50px;
  }
}
#ConsentPopup .cookie-settings .form-switch {
  border-right: 1px solid "white";
  padding-left: 0;
  display: block;
  min-height: 1.5rem;
  margin-bottom: 0;
  width: 100%;
  padding-right: 20px;
}
#ConsentPopup .cookie-settings .form-switch:last-of-type {
  border-right: none;
  padding-right: 0px;
}
#ConsentPopup .cookie-settings .form-switch .form-check-input {
  outline: none;
  width: 80px;
  height: 38px;
  display: block;
  position: initial;
  cursor: pointer;
  margin-top: 0;
  vertical-align: top;
  background-color: "white";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(255, 255, 255, 0.25);
  appearance: none;
  color-adjust: exact;
  margin-left: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFC019'/%3e%3c/svg%3e");
  background-position: left center;
  transition: background-position 0.15s ease-in-out;
  order: 2;
  border-radius: 30px;
}
#ConsentPopup .cookie-settings .form-switch .form-check-input:focus, #ConsentPopup .cookie-settings .form-switch .form-check-input:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ECCDC1'/%3e%3c/svg%3e");
  outline: none;
}
#ConsentPopup .cookie-settings .form-switch .form-check-input:checked {
  outline: none;
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ECCDC1'/%3e%3c/svg%3e");
}
@media (max-width: 380px) {
  #ConsentPopup .cookie-settings .form-switch .form-check-input {
    width: 100%;
    background-size: 25px;
  }
}
#ConsentPopup .cookie-settings .form-switch .form-check-label {
  cursor: pointer;
  display: block;
  order: 1;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
#ConsentPopup .cookie-settings .form-switch.disabled {
  opacity: 0.5;
}
#ConsentPopup .cookie-settings .form-switch:nth-of-type(2) {
  padding-right: 18.5px;
}
#ConsentPopup .cookie-settings .form-switch:nth-of-type(2) .form-check-label, #ConsentPopup .cookie-settings .form-switch:nth-of-type(2) .form-check-input {
  margin: 0 auto;
}
#ConsentPopup .cookie-settings .form-switch:nth-of-type(2) .form-check-label {
  margin-bottom: 5px;
  text-align: center;
}
@media (max-width: 380px) {
  #ConsentPopup .cookie-settings .form-switch .form-check-input {
    max-width: 60px;
  }
}
@media (max-width: 345px) {
  #ConsentPopup .cookie-settings .form-switch .form-check-input {
    max-width: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #ConsentPopup .cookie-settings .form-switch .form-check-input {
    transition: none;
  }
}
#ConsentPopup a {
  color: "white";
}
#ConsentPopup .form-check-input:disabled ~ .form-check-label {
  color: "white";
  opacity: 0.5;
}
#ConsentPopup h5 {
  margin-top: 0;
  font-size: 18px;
  color: "white";
}

.cookie-text p {
  color: "white";
}
.cookie-text a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
}

/*   .btn.accept {
      padding-top: 10px !important;
  } */

/*# sourceMappingURL=main.css.map */
