.fcookies_container {
  width: 100%;
  position: fixed;
  bottom: 20px;
  left: 0;
  z-index: 1010;
  display: flex;
  justify-content: center;
  align-items: center;

  display: none;
}

.fcookies_container.is-open {
  display: flex;
}

.fcookies_container.is-hide {
  display: flex;
}

.fcookies_wrapper {
  border-radius: 40px;
  border: 2px solid #202020;
  background: rgba(238, 250, 255, 0.80);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  max-width: 1210px;
  display: flex;
  gap: 32px;
  margin: 0 20px;
}

.fcookies_container.is-open .fcookies_wrapper {
  animation: slideUpFadeIn .7s ease-out forwards;
}

.fcookies_container.is-hide .fcookies_wrapper {
  animation: slideDownFadeOut .35s ease-in forwards;
}

.fcookies_text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fcookies_title {
  color: #202020;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 24px;
}

.fcookies_text {
  color: #202020;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.fcookies_text a {
  color: #202020;
  text-decoration-line: underline;
}

.fcookies_settings_link {
  color: #202020;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration-line: underline;
  border: none;
  background-color: transparent;
  display: flex;
  width: fit-content;
  padding: 0;
}

.fcookies_settings_link:hover {
  cursor: pointer;
}

.fcookies_buttons_wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}

.fcookies_button_cancel,
.fcookies_button_accept {
  border: 2px solid #202020;
  border-radius: 12px;
  height: 50px;
  width: 162px;

  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
}

.fcookies_button_cancel:hover,
.fcookies_button_accept:hover {
  cursor: pointer;
}

.fcookies_button_cancel {
  background: transparent;
  color: #202020;
}

.fcookies_button_accept {
  background: #202020;
  color: #FFFFFF;
}

@keyframes slideUpFadeIn {
  0% {
    transform: translateY(140%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDownFadeOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(-140%);
    opacity: 0;
  }
}

.fcookies_form_wrapper {
  position: fixed;
  inset: 0;
  z-index: 9999;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.fcookies_form_wrapper.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transition: opacity 220ms ease, visibility 0s linear 0s;
}

.fcookies_form_overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 32, 32, .10);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fcookies_form {
  position: relative;
  width: min(1120px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 40px 60px;
  border: 1px solid #202020;
  border-radius: 40px;

  transform: translateY(12px) scale(.98);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.fcookies_form_wrapper.is-open .fcookies_form {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.fcookies_form_close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: transparent;
  border: none;
}

.fcookies_form_close:hover {
  cursor: pointer;
}

.fcookies_form_close svg path {
  transition: all .2s linear;
}

.fcookies_form_close:hover svg path {
  stroke: #202020;
}

body.modal-open {
  overflow: hidden;
}