html.cookie-consent-given .cookie,
.cookie--hidden {
  display: none;
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: none;
  border-radius: 40px;
  box-shadow: 0 -4px 24px rgba(12, 169, 192, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 1700px) {
  .cookie {
    width: 80%;
  }
}
@media screen and (max-width: 1351px) {
  .cookie {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .cookie {
    width: 98%;
    border-radius: 20px;
  }
}
.cookie__container {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .cookie__container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
}
.cookie__text {
  font-family: "ProximaNova", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  width: 80%;
  margin: 0;
  color: #505053;
}
@media screen and (max-width: 1700px) {
  .cookie__text {
    width: 75%;
  }
}
@media screen and (max-width: 1351px) {
  .cookie__text {
    width: 85%;
  }
}
@media screen and (max-width: 1024px) {
  .cookie__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .cookie__text {
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}
.cookie__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 15px 40px 12px;
  border: none;
  border-bottom: 3px solid #0d9aaf;
  border-radius: 38px;
  background: linear-gradient(to top, #0ca9c0 0%, #00d4f3 100%);
  box-shadow: 0 4px 12px rgba(12, 169, 192, 0.25);
  font-family: "ProximaNova", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(13, 154, 175, 0.5);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1351px) {
  .cookie__button {
    padding: 10px 30px 8px;
  }
}
@media screen and (max-width: 1024px) {
  .cookie__button {
    height: 40px;
    padding: 10px 20px 8px;
    font-size: 14px;
  }
}
.cookie__button:hover {
  border-color: #0ea7be;
}