.cookies-panel {
  --arial: 'Arial', sans-serif;
  --link-cntd: #ff7200;
  --cntd: #ff7200;
  --clear: #fff;

  font-family: var(--arial);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0;
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 15px;
  column-gap: 15px;
  max-width: 769px;
  width: 100%;
  flex-direction: row;
  padding: 0 13px 0 16px;
  bottom: -100%;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(40px);
  z-index: 999;
}

.cookies-panel.__moveup {
  animation: 1s moveup;
  bottom: 2%;
}

.cookies-panel.__movedown {
  animation: 1.8s movedown;
  bottom: -100%;
}

.cookies-panel.__movedown button {
  pointer-events: none;
}

.cookies-panel a {
  text-decoration: underline;
  text-decoration-style: solid;
  color: var(--link-cntd);
}

.cookies-panel button {
  font-weight: 700;
  font-size: 13px;
  background-color: var(--cntd);
  color: var(--clear);
  text-decoration: none;
  padding: 14px 23px 12px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: 0.2s;
}

.cookies-panel button:hover {
  opacity: 0.8;
}

.cookies-panel_description {
  margin: 14px 0;
}

@media (max-width: 540px) {
  .cookies-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 13px 13px 16px;
  }

  .cookies-panel_description {
    margin-bottom: 8px;
  }
}

@keyframes moveup {
  0% {
    bottom: -100%;
  }

  80% {
    bottom: 2.5%;
  }

  100% {
    bottom: 2%;
  }
}

@keyframes movedown {
  0% {
    bottom: 2.7%;
  }

  10% {
    bottom: 2%;
  }

  100% {
    bottom: -100%;
  }
}