.cookie-notify {
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 background: #f6f3f1;
 z-index: 100000;
 padding: 10px 0;
 opacity: 0;
 visibility: hidden;
 transition: opacity 0.5s ease-in;
}

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

.cookie-notify__content {
 display: flex;
}
.cookie-notify__content a:hover {
 text-decoration:underline;
}

.cookie-notify__text {
 margin-right: 30px;
 margin-left: 30px;
 margin-top: 5px;
}

@media screen and (max-width: 600px) {
 .cookie-notify {
  font-size: 12px;
 }
 .cookie-notify__content {
  flex-direction: column;
  align-items: flex-end;
 }
 .cookie-notify__text {margin-bottom: 15px;}
 .cookie-notify__btn {height: }
}
