#cc-manager {
  display: none;
}

.base-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #2222223d;
  opacity: 75%;
  z-index: 251;
}

.modal-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #2222223d;
  opacity: 75%;
  z-index: 252;
}

.consent-banner {
  position: fixed;
  display: flex;
  flex-direction: column;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem;
  background-color: rgb(255 255 255);
  z-index: 251;
}

.consent-banner_content {
  width: 100%;
  margin: 1.25rem 0;
}

.consent-banner_content__header {
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 700;
  font-size: 16px;
}

.consent-banner_content__text {
  margin-bottom: 12px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 14px;
}

.consent-banner_content__link {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: rgb(34 34 34);
  text-decoration-line: underline;
}

.consent-banner_buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.consent-banner_buttons__button {
  width: 100%;
  height: 3rem;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: rgb(34 34 34);
  color: rgb(255 255 255);
  cursor: pointer;
}

.consent-banner_buttons__button:hover {
  background-color: #4e4e4e;
}

#consent-modal {
  display: none;
}

.consent-modal-element {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  overflow: hidden;
  height: 100%;
  background-color: rgb(255 255 255);
  width: 100%;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.25rem;
  z-index: 252;
}

.consent-modal-element_top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgb(0, 0, 0);
}

.consent-modal-element_top__logo {
  stroke: none;
  height: 1.5rem;
  width: 4.5rem;
  margin-left: 1.25rem;
}

#consent-modal-element_top__close {
  color: rgb(117 117 117);
  background-color: transparent;
  border-radius: 0.5rem;
  font-size: 12px;
  width: 2rem;
  height: 2rem;
  margin-inline-start: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  margin-right: 1.25rem;

  svg {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.consent-modal-element_top__close:hover {
  background-color: rgb(234 234 234);
}
.consent-modal-element_approvals {
  position: relative;
  padding: 1rem;
  margin: 1rem 0;
  overflow-y: scroll;
}
.consent-modal-element_approvals__header {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.consent-modal-element_approvals__approval__accept {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0.75rem 0;
}

.consent-modal-element_approvals__approval___title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 14px;
}

.consent-modal-element_approvals__approval___necessary {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  color: #8cc40c;
}

.consent-modal-element_approvals__approval___checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
  margin: auto 0;

  input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .checkbox-switch_slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(234 234 234);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .checkbox-switch_slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  /* Rounded sliders */
  .checkbox-switch_slider.round {
    border-radius: 34px;
  }

  .checkbox-switch_slider.round:before {
    border-radius: 50%;
  }

  input:checked + .checkbox-switch_slider {
    background-color: rgb(140 196 12);
  }

  input:focus + .checkbox-switch_slider {
    box-shadow: 0 0 1px rgb(140 196 12);
  }

  input:checked + .checkbox-switch_slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
}

.consent-modal-element_approvals__approval___text {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  background-color: rgb(244 244 244);
  padding: 0.75rem;
}

.consent-modal-element_approvals__accept {
  display: flex;
  padding: 1rem 0;
  border: 1px solid rgb(234 234 234);
  width: 100%;
  max-height: 8rem;
}

#consent-modal-element_approvals__accept___button {
  width: auto;
  height: 3rem;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: rgb(34 34 34);
  color: rgb(255 255 255);
  cursor: pointer;
  margin-left: 1rem;
  padding: 1rem 0.75rem;
}

#consent-modal-element_approvals__accept___button:hover {
  background-color: #4e4e4e;
}

@media (min-width: 768px) {
  .consent-banner {
    flex-direction: row;
    left: auto;
    right: auto;
    bottom: 24px;
    padding: 0;
    margin-bottom: 1rem;
  }
  .consent-banner_content {
    width: 60%;
    margin-left: 2rem;
  }
  .consent-banner_content__header {
    font-size: 18px;
  }
  .consent-banner_buttons {
    width: 40%;
    margin-left: 1rem;
    margin-right: 4rem;
  }
  .consent-modal-element {
    height: 83%;
    width: auto;
  }
  .consent-modal-element_top {
    padding: 1.25rem 0;
  }
  .consent-modal-element_top__logo {
    height: 2rem;
    width: 6rem;
  }
  .consent-modal-element_approvals {
    padding: 1.25rem;
  }
  .consent-modal-element_approvals__header {
    font-size: 18px;
  }
  .consent-modal-element_approvals__accept {
    padding: 1.25rem;
  }
}
