.cookies-popup {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background-color: rgba(197, 197, 197, 0.25);
  z-index: 21;
  padding: 8px;
  border-radius: 24px;
  transition: all 0.2s linear;
  bottom: -500px;
  opacity: 0;
  pointer-events: none;
}
.cookies-popup._active {
  bottom: 16px;
  opacity: 1;
  pointer-events: all;
}
.cookies-popup__white-box {
  max-width: 540px;
  background-color: white;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}
.cookies-popup__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.cookies-popup__title-description {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.cookies-popup__title-description-link {
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s linear;
}
.cookies-popup__title-description-link:hover {
  color: #2fc23e;
}
.cookies-popup__buttons-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.cookies-popup__button-wrapper {
  display: flex;
  flex-direction: column;
}
.cookies-popup__button {
  font-size: 16px;
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 4px;
  height: fit-content;
  cursor: pointer;
  transition: all 0.2s linear;
  font-weight: 500;
}
.cookies-popup__button._main {
  background-color: #2fc23e;
  color: white;
}
.cookies-popup__button._main:hover {
  background-color: #219a2d;
}
.cookies-popup__button._secondary {
  border: 1px solid #e4e4ef;
  background-color: white;
}
.cookies-popup__button._secondary:hover {
  background-color: #f5f5fa;
  border: 1px solid #f5f5fa;
}
.cookies-popup__button-description {
  font-size: 11px;
  margin-top: 6px;
  font-weight: 500;
}
.cookies-popup__cookies-inforamtion {
  font-size: 13px;
  line-height: 1.8;
}
.cookies-popup__cookies-inforamtion-text-link {
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s linear;
}
.cookies-popup__cookies-inforamtion-text-link:hover {
  color: #2fc23e;
}
.cookies-popup__close-button {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s linear;
}
.cookies-popup__close-button:hover .cookies-popup__close-button-svg {
  fill: #2fc23e;
}
.cookies-popup__close-button-svg {
  fill: #0e0c2d;
  transition: all 0.2s linear;
}
@media (max-width: 1024px) {
  .cookies-popup {
    left: 16px;
  }
  .cookies-popup .cookies-popup__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .cookies-popup .cookies-popup__title-description {
    font-size: 11px;
  }
  .cookies-popup .cookies-popup__title-description {
    margin-bottom: 16px;
  }
  .cookies-popup .cookies-popup__cookies-inforamtion {
    font-size: 11px;
  }
  .cookies-popup .cookies-popup__white-box {
    max-width: 100%;
  }
  .cookies-popup .cookies-popup__buttons-wrapper {
    margin-bottom: 8px;
  }
  .cookies-popup .cookies-popup__button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
    max-width: 200px;
  }
  .cookies-popup .cookies-popup__button-wrapper {
    width: 100%;
    justify-content: center;
    max-width: 200px;
  }
}

/*# sourceMappingURL=cookies-popup.css.map */
