/* bootstrap overides */
/* If you want all of Bootstrap uncomment below */
/* @import "~bootstrap/scss/bootstrap"; */
/* If you want only specific bootstrap sass files to keep things light weight */
/* REQUIRED BOOTSTRAP FILES */
/* 1. Include functions first (so you can manipulate colors, SVGs, calc, etc) */
/* 4. Include remainder of required Bootstrap stylesheets */
/* 5. Include remainder of required parts */
/* 6. Optionally include any other parts as needed */
/* @import "~bootstrap/scss/helpers"; */
/* 7. Optionally include utilities API last to generate classes based on the Sass map in `_utilities.scss` */
/* Add your SCSS styles here */
#tessellate-consent-banner {
  width: 100%;
  background: #211f20;
  padding: 20px 90px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483640;
  display: none;
}
@media (max-width: 991.98px) {
  #tessellate-consent-banner {
    padding: 20px 20px;
  }
}
#tessellate-consent-banner p,
#tessellate-consent-banner a {
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
#tessellate-consent-banner p:last-of-type,
#tessellate-consent-banner a:last-of-type {
  margin-bottom: 0;
}
#tessellate-consent-banner .consent-banner__content-container {
  width: calc(100% - 400px);
}
@media (max-width: 991.98px) {
  #tessellate-consent-banner .consent-banner__content-container {
    width: 100%;
    margin-bottom: 20px;
  }
}
#tessellate-consent-banner .consent-banner__buttons {
  gap: 10px;
}
@media (max-width: 767.98px) {
  #tessellate-consent-banner .consent-banner__buttons {
    align-items: stretch;
  }
}

#consentModal button.consent-btn,
#tessellate-consent-banner button.consent-btn {
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 15px 0px 15px;
  min-height: 40px;
  min-width: 40px !important;
  display: flex;
  align-items: center;
  border-radius: 0;
  text-align: center;
  border: 0px;
  font-size: 18px;
}
@media (max-width: 991.98px) {
  #consentModal button.consent-btn,
  #tessellate-consent-banner button.consent-btn {
    flex-grow: 1;
  }
}
@media (max-width: 767.98px) {
  #consentModal button.consent-btn,
  #tessellate-consent-banner button.consent-btn {
    font-size: 16px;
    width: 100%;
  }
}
#consentModal button.consent-btn span,
#tessellate-consent-banner button.consent-btn span {
  z-index: 2;
  width: 100%;
}
#consentModal button.consent-btn:hover,
#tessellate-consent-banner button.consent-btn:hover {
  cursor: pointer;
  color: #000;
}
#consentModal button.consent-btn:hover:before,
#tessellate-consent-banner button.consent-btn:hover:before {
  width: 100%;
}
#consentModal button.consent-btn--grant, #consentModal button.consent-btn--update-all,
#tessellate-consent-banner button.consent-btn--grant,
#tessellate-consent-banner button.consent-btn--update-all {
  background: #b37d45;
  color: #fff;
  position: relative;
}
#consentModal button.consent-btn--grant:before, #consentModal button.consent-btn--update-all:before,
#tessellate-consent-banner button.consent-btn--grant:before,
#tessellate-consent-banner button.consent-btn--update-all:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  height: 100%;
  width: 0%;
  transition: 0.2s ease-in-out;
}
#consentModal button.consent-btn--grant:after, #consentModal button.consent-btn--update-all:after,
#tessellate-consent-banner button.consent-btn--grant:after,
#tessellate-consent-banner button.consent-btn--update-all:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* Makes the border non-interactive */
}
#consentModal button.consent-btn--manage,
#tessellate-consent-banner button.consent-btn--manage {
  background: transparent;
  border: solid 1px #b37d45;
  color: #fff;
  border-radius: 0px;
  position: relative;
}
#consentModal button.consent-btn--manage:hover,
#tessellate-consent-banner button.consent-btn--manage:hover {
  color: #fff;
}
#consentModal button.consent-btn--manage:before,
#tessellate-consent-banner button.consent-btn--manage:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #b37d45;
  height: 100%;
  width: 0%;
  transition: 0.2s ease-in-out;
}
#consentModal button.consent-btn--manage:after,
#tessellate-consent-banner button.consent-btn--manage:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; /* Makes the border non-interactive */
}

.modal-backdrop {
  z-index: 2147483641;
}

#consentModal {
  z-index: 2147483642;
  max-height: 80vh;
  margin-top: 10vh;
}
#consentModal .modal-dialog,
#consentModal .modal-content,
#consentModal .modal-body {
  scrollbar-width: none;
}
#consentModal .modal-dialog:-webkit-scrollbar,
#consentModal .modal-content:-webkit-scrollbar,
#consentModal .modal-body:-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}
#consentModal .modal-content {
  background: #211f20;
  border: solid 20px #211f20;
  border-radius: 0;
  color: #fff;
}
#consentModal .modal-content a {
  color: #fff !important;
}
#consentModal .modal-content a:hover {
  color: #b37d45 !important;
}
#consentModal .modal-content .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  /* The slider */
  /* The circle inside the slider */
}
#consentModal .modal-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#consentModal .modal-content .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
#consentModal .modal-content .switch .slider::before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}
#consentModal .modal-content .switch input:checked + .slider {
  background-color: #b37d45;
}
#consentModal .modal-content .switch input:checked + .slider::before {
  transform: translateX(22px);
}
#consentModal .modal-content .modalbtns {
  width: auto;
}
@media (max-width: 991.98px) {
  #consentModal .modal-content .modalbtns {
    width: 100%;
  }
}

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