.cookie_button_container {
  display: -webkit-flex;
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
}
.cookie_button_container .accept, .cookie_button_container .accept_all {
  border: none;
  border-radius: 2em;
  cursor: pointer;
  display: block;
  font-size: calc(var(--font-size) * .9);
  padding: 0.5em 1.2em;
  text-align: center;
  text-decoration: none;
  width: fit-content;
}
.cookie_button_container .accept {
  background-color: unset;
  color: black;
}
.cookie_button_container .accept_all {
  background-color: #DAB035;
  color: white;
  font-weight: 700;
}
.cookie_button_container .accept_all:hover {
  background-color: #a78525;
}

.cookie_container {
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  height: 100vh;
  left: 0px;
  line-height: 1.428571429;
  opacity: 1;
  overflow: auto;
  position: fixed;
  top: 0px;
  width: 100vw;
  z-index: 1001;
}
.cookie_container:not(.open) {
  display: none !important;
}

.cookie_message .cookie_h2 {
  display: block;
  font-size: calc(var(--font-size) * 1.35);
  font-weight: bold;
  margin: -29px 20px 8px 0px;
}
.cookie_message .cookie_p {
  margin: 1em 0em;
}

.cookie_p {
  font-size: var(--font-size);
  margin: 0;
}

.cookie_popup {
  background-color: white;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  font-size: var(--font-size);
  margin-bottom: auto;
  margin-top: auto;
  padding: 15px;
  position: relative;
  --font-size: 14px;
}
.cookie_popup .close_icon_row {
  display: flex;
  justify-content: flex-end;
  margin-top: 7px;
}
.cookie_popup .close_icon_row .close_icon {
  cursor: pointer;
  height: 23px;
  padding: 0px 7px;
}
.cookie_popup .close_icon_row .close_icon:focus {
  outline: none;
}
@media (min-width: 550px) {
  .cookie_popup {
    border-radius: 0.5em;
    margin: calc(100px + 1vh) auto auto auto;
    max-width: 600px;
    padding: 1.5em;
    width: 83%;
  }
}
@media (min-width: 768px) {
  .cookie_popup {
    border-radius: 1em;
    max-width: 700px;
    padding: 2.5em;
    width: 700px;
  }
}

.cookie_switch_container details[open] .fa {
  transform: rotate(180deg);
}
.cookie_switch_container .card-header {
  background-color: #e8f7fd;
  border-bottom-width: 1px;
  cursor: help;
  display: -webkit-flex;
  display: flex;
  font-size: calc(var(--font-size) * 1.1);
  justify-content: space-between;
  list-style: none;
  padding: 1rem 0.75rem;
}
.cookie_switch_container .card-header:focus {
  outline: none;
}
.cookie_switch_container .card-header::-webkit-details-marker {
  display: none;
}
.cookie_switch_container .card-header .title .fa {
  display: inline-block;
}
.cookie_switch_container .card-header .switch {
  display: inline-block;
  height: 25px;
  position: relative;
  right: 0px;
  width: 50px;
}
.cookie_switch_container .card-header .switch .hidden_checkbox {
  height: 22px;
  opacity: 0;
  width: 44px;
}
.cookie_switch_container .card-header .switch .hidden_checkbox:checked + .slider {
  background-color: #DAB035;
}
.cookie_switch_container .card-header .switch .hidden_checkbox:checked + .slider.disabled {
  background-color: #e3e3e3;
}
.cookie_switch_container .card-header .switch .hidden_checkbox:checked + .slider:before {
  -ms-transform: translateX(26px);
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}
.cookie_switch_container .card-header .switch .hidden_checkbox:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
.cookie_switch_container .card-header .switch .slider {
  background-color: black;
  border-radius: 5px;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cookie_switch_container .card-header .switch .slider:before {
  border-radius: 3px;
}
.cookie_switch_container .card-header .switch .slider.disabled {
  background-color: #e3e3e3;
  cursor: not-allowed;
}
.cookie_switch_container .card-header .switch .slider:before {
  background-color: white;
  bottom: 3px;
  content: "";
  height: 19px;
  left: 3px;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  width: 19px;
}
.cookie_switch_container .card-body {
  flex: 1 1 0%;
  padding: 0.5rem;
}

@media (min-width: 550px) {
  .cookie_popup {
    --font-size: 15px;
  }

  .cookie_message .cookie_h2 {
    margin-bottom: 0.83em;
  }

  .cookie_switch_container details .card-body {
    padding: 1rem;
  }

  .cookie_button_container {
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .cookie_popup {
    --font-size: 16px;
  }

  .cookie_switch_container .card-header .switch {
    right: 20px;
  }
}
@media (min-width: 1024px) {
  .cookie_popup {
    --font-size: 18px;
  }
}
@media (min-width: 1280px) {
  .cookie_popup {
    --font-size: 20px;
  }
}

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