.cookie-allert {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  left: 5vw;
  bottom: 10px;
  padding: 20px;
  background: #fff;
  z-index: 100;
  width: 600px;
  max-width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
  border-radius: 40px;
}

.cookie-allert.is-active {
  visibility: visible;
  opacity: 1;
}

.cookie-allert__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cookie-allert__text {
  color: #111;
}

.cookie-allert__text a {
  color: #283d87;
  text-decoration: underline;
}

.cookie-allert .form-block__btn:hover {
    border: 2px solid #283d87;
}

.cookie-allert .form-block__btn:hover .btn__text  {
	color: #283d87;
}

@media screen and (max-width: 700px) {
  	.cookie-allert {
	  left: 10px;
     width: calc(100% - 20px);
	}
}

@media screen and (max-width: 576px) {
  .cookie-allert__text {
    text-align: center;
  }
}