:root {
  --pcc-font-size: 1rem;
}

.cookie_button_container {
  display: -webkit-flex;
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
}

:where(.cookie_button_container) * {
  box-sizing: border-box;
}
:where(.cookie_button_container) .accept, :where(.cookie_button_container) .accept_all, :where(.cookie_button_container) .deny {
  background-color: var(--button-background);
  border: 2px solid transparent;
  border-radius: 5px;
  color: var(--button-color);
  cursor: pointer;
  display: block;
  filter: grayscale(0.3);
  font-size: calc(var(--pcc-font-size) * .9);
  padding: 0.5em 1.2em;
  text-align: center;
  text-decoration: none;
  width: fit-content;
}


:where(.cookie_button_container) .accept:hover, :where(.cookie_button_container) .accept:focus, :where(.cookie_button_container) .accept_all:hover, :where(.cookie_button_container) .accept_all:focus, :where(.cookie_button_container) .deny:hover, :where(.cookie_button_container) .deny:focus {
  filter: grayscale(0);
}
:where(.cookie_button_container) .accept:focus, :where(.cookie_button_container) .accept_all:focus, :where(.cookie_button_container) .deny:focus {
  border-color: var(--button-color);
  outline: none;
}
:where(.cookie_button_container) .accept, :where(.cookie_button_container) .deny {
  --button-background: hsl(0, 0%, 95%);
  --button-color: black;
}
:where(.cookie_button_container) .accept_all {
  --button-background: #30f;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  --button-color: white;
  font-weight: 700;
}

.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;
  transition: opacity 200ms linear;
  width: 100vw;
  z-index: 1301;
}
.cookie_container:not(.open) {
  display: none !important;
}
.cookie_container.hide {
  opacity: 0.5;
}

:where(.cookie_message) .cookie_h2 {
  display: block;
  font-size: calc(var(--pcc-font-size) * 1.35);
  font-weight: bold;
  margin-bottom: 8px;
  padding-right: 1.5em;
}
:where(.cookie_message) .cookie_p {
  margin: 1em 0em;
}

.cookie_p {
  font-size: 0.9rem;
  margin: 0;
  padding: 0.5rem 0;
  white-space: pre-line;
}

.cookie_popup {
  background-color: white;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-size: var(--pcc-font-size);
  margin-bottom: auto;
  margin-top: auto;
  overscroll-behavior: contain;
  padding: 15px;
  position: relative;
  transition: transform 200ms ease-in;
}
.cookie_container.hide .cookie_popup {
  transform: translateY(30px);
}
@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: 800px;
    padding: 2.5em;
  }
}

.cookie_popup .close_icon svg {
  height: 100%;
  width: 100%;
}

.cookie_popup .close_icon {
  cursor: pointer;
  height: 1em;
  padding: 0;
  position: absolute;
  right: 2em;
  top: 1.5rem;
}
.cookie_popup .close_icon:focus {
  outline: none;
}

.cookie_switch_container{
  margin: 1rem 0;
}

.cookie_switch_container label{
  margin: 0;
}

:where(.cookie_switch_container) details[open] .fa {
  transform: rotate(180deg);
}
:where(.cookie_switch_container) .card-header {
  background-color: #e8f7fd;
  border-bottom-width: 1px;
  cursor: help;
  display: -webkit-flex;
  display: flex;
  font-size: 1.1rem;
  justify-content: space-between;
  list-style: none;
  padding: 1rem 0.75rem;
}
:where(.cookie_switch_container) .card-header:focus {
  outline: none;
}
:where(.cookie_switch_container) .card-header::-webkit-details-marker {
  display: none;
}
:where(.cookie_switch_container) .card-header .title .fa {
  display: inline-block;
}
:where(.cookie_switch_container) .card-header .switch {
  display: inline-block;
  height: 25px;
  position: relative;
  right: 0px;
  width: 50px;
}
:where(.cookie_switch_container) .card-header .switch .hidden_checkbox {
  height: 22px;
  opacity: 0;
  width: 44px;
}
:where(.cookie_switch_container) .card-header .switch .hidden_checkbox:checked + .slider {
  background-color: #00cdff;
}
:where(.cookie_switch_container) .card-header .switch .hidden_checkbox:checked + .slider.disabled {
  background-color: #e3e3e3;
}
:where(.cookie_switch_container) .card-header .switch .hidden_checkbox:checked + .slider:before {
  -ms-transform: translateX(26px);
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

:where(.cookie_switch_container) .card-header .switch .hidden_checkbox:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

:where(.cookie_switch_container) .card-header .switch .hidden_checkbox:disabled + .slider {
  background-color: #d9d9d9;
  cursor: not-allowed;
}
:where(.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;
}
:where(.cookie_switch_container) .card-header .switch .slider:before {
  border-radius: 3px;
}
:where(.cookie_switch_container) .card-header .switch .slider.disabled {
  background-color: #e3e3e3;
  cursor: not-allowed;
}
:where(.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 .cookie_p {
  padding: 1rem;
}

@media (min-width: 550px) {
  .cookie_message .cookie_h2 {
    margin-bottom: 0.83em;
  }



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

  .cookie_button_container {
    justify-content: space-between;
  }

  .cookie_switch_container .card-header .switch {
    right: 20px;
  }
}

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