.cookies__container {
  width: 1214px;
  min-height: 270px;
  position: fixed;
  left: calc(50% - 607px);
  bottom: 30px;
  padding: 35px 112px 35px 112px;
  box-shadow: 0px 10px 50px 0px rgba(185, 204, 255, 0.25);
  border: 1px solid;
  border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.82) 53.65%, rgba(255, 255, 255, 0.18) 100%);
  border-radius: 24px;
  background: rgba(255, 255, 255, 1);
  display: flex;
  gap: 10px;
  z-index: 1000;
  animation: appearBack 2s ease;
  display: none;
}

.cookies__show {
  display: block !important;
}

.cookies__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  align-items: center;
}

.cookies__content .cookies__close {
  position: absolute;
  width: 16.5px;
  height: 17.2px;
  top: -15px;
  right: -90px;
  cursor: pointer;
}

.cookies__description {
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.cookies__content .cookies__row_separator {
  width: 100%;
  border: .5px solid rgba(79, 79, 89, 1);
}

.cookies__content .cookies__row {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.space_between {
  justify-content: space-between !important;
}

.flex_wrap {
  flex-wrap: wrap !important;
}

.cookies__content .cookies_button_group {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.cookies__content .cookies_button_group button {
  background: rgba(255, 255, 255, 1);
  padding: 14px 40px 14px 40px;
  border-radius: 60px;
  box-shadow: 0px 1px 10px 0px rgba(22, 25, 84, 0.25);
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
  color: rgba(71, 71, 71, 1);
  border: 0;
}

.cookies__content .cookies_button_group button:hover {
  background: linear-gradient(270deg, #6078EA 0%, #2DC7DE 100%);
  color: rgba(255, 255, 255, 1);
}

.cookies__content .cookies_button_group button.active {
  background: rgba(95, 122, 233, 1);
  color: rgba(255, 255, 255, 1);
}

.cookies__content .cookies__row img {
  width: 35.04px;
  height: 35.04px;
}

#cookies__secondary.cookies__container {
  padding: 50px 85px 50px 85px;
  gap: 10px;
}

#cookies__secondary .cookies__content {
  gap: 30px;
}

#cookies__secondary .cookies__content .cookies__close {
  top: -30px;
  right: -65px;
}

.cookies__content h1 {
  margin: 0;
  padding: 0;
  font-family: Lato;
  font-size: 32px;
  font-weight: 400;
  line-height: 38.4px;
  text-align: left;
}

.cookies__row_header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cookies__row_arrow {
  width: 19.8px;
  height: 19.8px;
  background-image: url("/assets/img/Arrow.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  transition: all .3s ease;
  pointer-events: none;
}

.rotate_180 {
  transform: rotate(180deg);
}

.cookies__option {
  font-family: Lato;
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  pointer-events: none;
}

.cookies__container input[type="checkbox"] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(71, 71, 71, 1);
  transition: all .3s ease
}

.cookies__container input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  width: 30px;
  height: 30px;
  background-image: url("/assets/img/checked.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

input[type="checkbox"]:disabled {
  cursor: unset;
  pointer-events: none;
  opacity: .7;
}

.cookies__information {
  display: none;
}

.cookies__information.show_content {
  display: block;
  animation: animation_page .3s ease;
}

.cookies__information>p {
  font-family: Lato;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
}

.cookies__float_button {
  display: none;
}

.cookies__float_button button {
  background: rgba(255, 255, 255, 1);
  background-image: url('/assets/img/Subtract.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 47.3px 47.3px;
  width: 67.27px;
  height: 67.27px;
  padding: 10px;
  border: none;
  border-radius: 12px;
  box-shadow: 0px 1px 10px 0px rgba(22, 25, 84, 0.25);
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 1000;
}

.cookies__float_button.show_content {
  display: block;
}

/* Responsive */
@media screen and (max-width: 639px) {

  .cookies__container,
  #cookies__secondary.cookies__container {
    width: 90%;
    left: 5%;
    padding: 50px 20px 30px 20px
  }

  .cookies__content .cookies__close,
  #cookies__secondary .cookies__content .cookies__close {
    top: -35px;
    right: -5px;
  }

  #cookies__reject {
    display: none;
  }

  .cookies__description,
  .cookies__content .cookies_button_group button,
  .cookies__information>p {
    font-size: 16px;
    line-height: 19.2px;
  }

  .cookies__content h1 {
    font-size: 28px;
    line-height: 33.6px;
  }

  .cookies__option {
    line-height: 24px;
  }

  .cookies__content .cookies__row img {
    width: 30px;
    height: 30px;
  }

  .cookies__row_arrow {
    display: none;
  }

  .cookies__content {
    gap: 30px;
  }

  #cookies__secondary .cookies__content .cookies_button_group {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  #cookies__secondary .cookies__content .cookies_button_group button {
    width: 100%;
    font-size: 18px;
    line-height: 21.6px;
    text-align: center;
  }

  #cookies__secondary .cookies__row {
    gap: 40px;
  }
}

@media screen and (min-width: 640px) and (max-width: 768px) {

  .cookies__container,
  #cookies__secondary.cookies__container {
    width: 90%;
    left: 5%;
    padding: 40px;
  }

  .cookies__content .cookies__close,
  #cookies__secondary .cookies__content .cookies__close {
    top: -20px;
    right: -25px;
  }

  .cookies__description,
  .cookies__content .cookies_button_group button,
  .cookies__information>p {
    font-size: 16px;
    line-height: 19.2px;
  }

  .cookies__content h1 {
    font-size: 28px;
    line-height: 33.6px;
  }

  .cookies__option {
    line-height: 24px;
  }

  .cookies__content .cookies__row img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 769px) and (max-width: 899px) {

  .cookies__container,
  #cookies__secondary.cookies__container {
    width: 90%;
    left: 5%;
    padding: 40px;
  }

  .cookies__content .cookies__close,
  #cookies__secondary .cookies__content .cookies__close {
    top: -20px;
    right: -25px;
  }

  .cookies__content .cookies__row img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 900px) and (max-width: 1200px) {
  .cookies__container {
    width: 90%;
    left: 5%;
  }
}

@media screen and (min-width: 1366px) and (max-width: 1919px) {
  .cookies__content .cookies__row img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width: 1366px) and (max-width: 1919px) {
  .cookies__content .cookies__row img {
    width: 30px;
    height: 30px;
  }
}

/* Animation */
@-webkit-keyframes animation_page {

  0%,
  30% {
    opacity: 0;
  }

  70%,
  100% {
    opacity: 1;
  }
}