#cookie-consent{
  position: fixed;
  background: #fff;
  padding: 5rem 5rem 0;
  --color-green-light: #a6f567;
  width: 500px;
  right: 0;
  bottom: 0;
  z-index: 9999;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  box-shadow: 0 0 30px #0000001c;
  font-size: .9em;
  overflow-y: auto;
  max-height: 100vh;
}
#cookie-consent.d-none{display: none !important;}
#cookie-consent .d-flex{display: flex;}
#cookie-consent .flex-wrap{flex-wrap: wrap;}
#cookie-consent .align-item-center{align-items: center;}
#cookie-consent .me-3{margin-right: 2rem;}
#cookie-consent .mb-3{margin-bottom: 2rem;}
#cookie-consent .mb-4{margin-bottom: 3rem;}
#cookie-consent .mb-5{margin-bottom: 5rem;}
@media only screen and (max-width: 991px) {
  #cookie-consent .mb-3{margin-bottom: 1rem;}
  #cookie-consent .mb-4{margin-bottom: 2rem;}
  #cookie-consent .mb-5{margin-bottom: 3rem;}
  #cookie-consent{
    padding: 3rem 3rem 0;
    width: 100%;
    border-radius: 0;
    font-size: .85em;
  }
}
#cookie-consent > div a:not(.btn){text-decoration: underline;}
#cookie-consent-bg{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000061;
  z-index: 9998;
}
#cookie-consent div.switch {
  display: flex;
  align-items: center;
}
#cookie-consent div.switch > .switch {
  margin-right: 1rem;
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
#cookie-consent div.switch > .switch input {
  display: none;
}
#cookie-consent div.switch > label:last-of-type {
  width: 70%;
  display: block;
  line-height: 1.4;
  cursor: pointer;
}
#cookie-consent div.switch > label > small {
  line-height: 1.4;
  opacity: .6;
  display: block;
}
#cookie-consent .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #dfdfdf;
  -webkit-transition: .4s;
  transition: .4s;
}
#cookie-consent .switch .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
#cookie-consent .switch input:checked + .slider {
  background-color: var(--color-green-light);
}
#cookie-consent .switch input:focus + .slider {
  box-shadow: 0 0 1px var(--color-green-light);
}
#cookie-consent .switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
#cookie-consent .switch .slider.round {
  border-radius: 34px;
}
#cookie-consent .switch .slider.round:before {
  border-radius: 50%;
}
/* Disabled state styling */
#cookie-consent .switch input:disabled + .slider {
  cursor: not-allowed;
  background-color: #e0e0e0;
}
#cookie-consent .switch input:disabled:checked + .slider {
  background-color: var(--color-green-light);
}