.alert-content {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 9999;
  /*padding: 32px 64px;*/
  display: none;
}
.alert-content .alert {
  /*width: 100%;*/
  background-color: rgba(3, 8, 23, 0.85);
  backdrop-filter: blur(5px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-flex-direction: row;
  flex-direction: row;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  align-items: space-between;
  justify-content: space-between;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-align-items: center !important; /* Safari 4+ */
  -moz-align-items: center !important; /* Fx 5+ */
  -ms-align-items: center !important;
  -o-align-items: center !important; /* Opera 12+ */
  align-items: center !important;
  padding: 16px 24px;
  -webkit-border-radius: 16px !important; /* Safari 4+ */
  -moz-border-radius: 16px !important; /* Fx 5+ */
  -ms-border-radius: 16px !important;
  -o-border-radius: 16px !important; /* Opera 12+ */
  border-radius: 16px !important;
  width: calc(100% - 128px);
  margin-left: 64px;
  margin-bottom: 32px;
}
.alert-content .alert__left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-flex-direction: row;
  flex-direction: row;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-align-items: center !important; /* Safari 4+ */
  -moz-align-items: center !important; /* Fx 5+ */
  -ms-align-items: center !important;
  -o-align-items: center !important; /* Opera 12+ */
  align-items: center !important;
  gap: 16px;
  flex-grow: 1;
  color: white !important;
}
.alert-content .alert__left .alert-icon {
  font-style: normal !important;
  font-size: 40px;
  line-height: 40px;
  margin-bottom: -8px;
}
.alert-content .alert__left p {
  line-height: 110%;
  flex-grow: 1;
}
.alert-content .alert__left p a {
  color: #ffffff;
}
.alert-content .alert__right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-flex-direction: row;
  flex-direction: row;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex !important;
  -webkit-align-items: center !important; /* Safari 4+ */
  -moz-align-items: center !important; /* Fx 5+ */
  -ms-align-items: center !important;
  -o-align-items: center !important; /* Opera 12+ */
  align-items: center !important;
  gap: 8px;
  flex-shrink: 0;
}
.alert-content .alert-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  height: 36px;
  padding: 0px 16px;
  -webkit-border-radius: 100px !important; /* Safari 4+ */
  -moz-border-radius: 100px !important; /* Fx 5+ */
  -ms-border-radius: 100px !important;
  -o-border-radius: 100px !important; /* Opera 12+ */
  border-radius: 100px !important;
  border: 1px solid transparent;
}
.alert-content .alert-button--primary {
  background-color: #F2F5F9;
  color: #030817;
}
.alert-content .alert-button--secondary {
  border-color: #F2F5F9;
  color: #ffffff;
  background-color: transparent !important;

}
.alert-content .alert-button--link {
  color: #ffffff;
  background-color: transparent !important;
}

@media only screen and (max-width: 1024px) {
  .alert-content {
    padding: 32px 32px;
  }
  .alert-content br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .alert-content {
    padding: 24px 24px;
  }
  .alert-content .alert {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex !important;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .alert-content .alert__left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex !important;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@media only screen and (max-width: 426px) {
  .alert-content {
    padding: 16px;
  }
  .alert-content .alert {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex !important;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .alert-content .alert__left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex !important;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .alert-content .alert__right {
    flex-direction: column-reverse;
  }
}

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


.pop-layout {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}
.pop-layout .pop-content {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop-layout .pop-content .pop-box {
  width: 100%;
  max-width: 640px;
  max-height: calc(100% - 64px);
  background-color: #ffffff;
  border-radius: 16px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  transform: translateY(50px);
}
.pop-layout .pop-content .pop-box__header {
  padding: 20px 32px;
  border-bottom: 1px solid #e5e7eb;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pop-layout .pop-content .pop-box__header h2 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #000000;
}
.pop-layout .pop-content .pop-box__header .button-close {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pop-layout .pop-content .pop-box__header .button-close svg {
  fill: #000000;
}
.pop-layout .pop-content .pop-box__header .button-close:hover {
  opacity: 1;
}
.pop-layout .pop-content .pop-box__content {
  padding: 24px 32px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  flex-grow: 1;
  overflow: auto;
}
.pop-layout .pop-content .pop-box__content h2 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  color: #000000;
}
.pop-layout .pop-content .pop-box__content h3 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000000;
  margin-bottom: 8px;
}
.pop-layout .pop-content .pop-box__content p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 135%;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list {
  list-style-type: none !important;
  padding-left: 0px;
  gap: 0px;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  align-items: space-between;
  justify-content: space-between;
  padding-left: 0px;
  padding: 8px 0px;
  border-bottom: 1px solid #e5e7eb;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li:last-child {
  border-bottom: 0px;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li .switch-cookies {
  position: relative;
  display: inline-block;
  min-width: 40px;
  height: 24px;
  margin-left: 16px;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li .switch-cookies input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li .switch-cookies input:checked + .slider {
  background-color: #000000;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li .switch-cookies input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li .switch-cookies input:disabled + .slider {
  background-color: #9ca3af;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li .switch-cookies .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e5e7eb;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 16px;
}
.pop-layout .pop-content .pop-box__content .cookies-content-row .cookies-list li .switch-cookies .slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 100px;
}
.pop-layout .pop-content .pop-box__footer {
  padding: 24px 32px;
  border-top: 1px solid #e5e7eb;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pop-layout .pop-content .pop-box__footer .button {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.pop-layout .pop-content .pop-box__footer .button--enable {
  background-color: #dcfce7;
  color: #14532d;
}
.pop-layout .pop-content .pop-box__footer .button--enable:hover {
  background-color: #bbf7d0;
}
.pop-layout .pop-content .pop-box__footer .button--disable {
  background-color: #fee2e2;
  color: #7f1d1d;
}
.pop-layout .pop-content .pop-box__footer .button--disable:hover {
  background-color: #fecaca;
}
.pop-layout .pop-content .pop-box__footer .button--save {
  background-color: #000000;
  color: #ffffff;
}
.pop-layout .pop-content .pop-box__footer .button--save:hover {
  background-color: #1f2937;
}
.pop-layout .pop-content .pop-box--dark {
  background-color: #111111;
}
.pop-layout .pop-content .pop-box--dark h2, .pop-layout .pop-content .pop-box--dark h3 {
  color: #e4e4e7;
}
.pop-layout .pop-content .pop-box--dark .pop-box__header {
  border-color: #222222;
}
.pop-layout .pop-content .pop-box--dark .pop-box__header button svg {
  fill: #ffffff;
}
.pop-layout .pop-content .pop-box--dark .pop-box__content p {
  color: #e4e4e7;
}
.pop-layout .pop-content .pop-box--dark .pop-box__content .cookies-content-row .cookies-list li {
  border-color: #222222;
}
.pop-layout .pop-content .pop-box--dark .pop-box__content .cookies-content-row .cookies-list li .switch-cookies input:checked + .slider {
  background-color: #ffffff;
}
.pop-layout .pop-content .pop-box--dark .pop-box__content .cookies-content-row .cookies-list li .switch-cookies input:disabled + .slider {
  background-color: #444444;
}
.pop-layout .pop-content .pop-box--dark .pop-box__content .cookies-content-row .cookies-list li .switch-cookies .slider {
  background-color: #222222;
}
.pop-layout .pop-content .pop-box--dark .pop-box__content .cookies-content-row .cookies-list li .switch-cookies .slider::before {
  background-color: #000000;
}
.pop-layout .pop-content .pop-box--dark .pop-box__footer {
  border-color: #222222;
}
.pop-layout .pop-content .pop-box--dark .pop-box__footer .button--enable {
  background-color: #0e3a1f;
  color: #bbf7d0;
}
.pop-layout .pop-content .pop-box--dark .pop-box__footer .button--enable:hover {
  background-color: #166534;
}
.pop-layout .pop-content .pop-box--dark .pop-box__footer .button--disable {
  background-color: #601616;
  color: #fecaca;
}
.pop-layout .pop-content .pop-box--dark .pop-box__footer .button--disable:hover {
  background-color: #991b1b;
}
.pop-layout .pop-content .pop-box--dark .pop-box__footer .button--save {
  background-color: #ffffff;
  color: #000000;
}
.pop-layout .pop-content .pop-box--dark .pop-box__footer .button--save:hover {
  background-color: #e4e4e7;
}

.pop-layout--reveal {
  display: block;
}

.pop-box--reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 768px) {
  .pop-content {
    padding: 16px;
  }
}
@media (max-width: 425px) {
  .pop-content {
    padding: 8px;
  }
  .pop-content .pop-box__header {
    padding: 20px !important;
  }
  .pop-content .pop-box__content {
    padding: 20px !important;
  }
  .pop-content .pop-box__content .cookies-content-row .cookies-list li {
    align-items: flex-start;
  }
  .pop-content .pop-box__footer {
    padding: 20px !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
    gap: 8px;
  }
}
.message {
  width: 100%;
  text-align: center;
  background-color: #14532d;
  padding: 8px 0px;
  font-size: 14px;
}

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