/* 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: #23346C;
  padding: 1.25rem 5.625rem;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
}
@media (max-width: 991.98px) {
  #tessellate-consent-banner {
    padding: 1.25rem 1.25rem;
  }
}
#tessellate-consent-banner p,
#tessellate-consent-banner a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.375rem;
  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% - 25rem);
}
@media (max-width: 991.98px) {
  #tessellate-consent-banner .consent-banner__content-container {
    width: 100%;
    margin-bottom: 1.25rem;
  }
}
#tessellate-consent-banner .consent-banner__buttons {
  min-width: 18.75rem;
}

#consentModal button.consent-btn,
#tessellate-consent-banner button.consent-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  min-width: 7.5rem;
  text-align: center;
  border: 0;
}
#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: #111F4C;
}
#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 {
  border: none;
  background: #FEC42F;
  border-radius: 0.3125rem;
  padding: 0.6875rem 0.9375rem;
  border: solid #FEC42F 0.125rem;
  text-decoration: none;
  font-family: "effra", sans-serif;
  font-weight: 400;
  font-size: 1rem !important;
  text-align: center;
}
#consentModal button.consent-btn--grant:hover, #consentModal button.consent-btn--update-all:hover,
#tessellate-consent-banner button.consent-btn--grant:hover,
#tessellate-consent-banner button.consent-btn--update-all:hover {
  font-weight: 500 !important;
}
#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 {
  position: relative;
}
#consentModal button.consent-btn--manage,
#tessellate-consent-banner button.consent-btn--manage {
  background: transparent;
  font-family: "effra", sans-serif;
  font-weight: 400;
  font-size: 1rem !important;
  border: solid 0.0625rem #FEC42F;
  border-radius: 0.3125rem;
  padding: 0.6875rem 0.9375rem;
  color: #fff;
  position: relative;
}
#consentModal button.consent-btn--manage:hover,
#tessellate-consent-banner button.consent-btn--manage:hover {
  color: #fff;
}

#consentModal {
  z-index: 9999;
  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 h2, #consentModal .modal-content h3 {
  color: #fff;
}
#consentModal .modal-content a {
  color: #fff !important;
}
#consentModal .modal-content a:hover {
  color: #FEC42F !important;
}
#consentModal .modal-content {
  background: #111F4C;
  border: solid 1.25rem #111F4C;
  color: #fff;
}
#consentModal .modal-content .switch {
  position: relative;
  display: inline-block;
  width: 3.125rem;
  height: 1.75rem;
}
#consentModal .modal-content .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
#consentModal .modal-content .switch {
  /* The slider */
}
#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: 2.125rem;
}
#consentModal .modal-content .switch {
  /* The circle inside the slider */
}
#consentModal .modal-content .switch .slider::before {
  position: absolute;
  content: "";
  height: 1.375rem;
  width: 1.375rem;
  left: 0.1875rem;
  bottom: 0.1875rem;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}
#consentModal .modal-content .switch input:checked + .slider {
  background-color: #FEC42F;
}
#consentModal .modal-content .switch input:checked + .slider::before {
  transform: translateX(1.375rem);
}
/*# sourceMappingURL=style.css.map */