.cookies {
  position: fixed;
  bottom: 20px;
  right: 72px;
  width: 100%;
  max-width: 380px;
  background: #FFFFFF;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 99999;
}
.cookies-content {
  padding: 28px;
}
.cookies-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.cookies-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cookies-buttons-item {
  flex-grow: 2;
  margin-top: 20px;
  padding: 12px 24px;
  background: #00ADBC;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
}
.cookies-buttons-item:hover {
  text-decoration: underline;
}
.cookies.appear {
  animation: cookieAppears .75s cubic-bezier(0.5, 1.4, 0.6, 1) forwards;
}
.cookies.hide {
  animation: hide 1s linear forwards;
}
@keyframes cookieAppears {
  0% {  opacity: 0;  transform: translateY(120px); }
  100% { opacity: 1;  transform: translateY(0px); }
}
@keyframes hide {
  0% { opacity: 1; }
  100% {  opacity: 0; }
}
@media (max-width: 1440px) {
  .cookies {
    right: 20px;
  }
}