.cookies-notification {
    display: none;
    visibility: hidden;
    opacity: 0;
    flex-flow: row nowrap;
    gap: 16px;
    align-items: center;
    width: 300px;
    height: 60px;
    position: fixed;
    left: 12px;
    bottom: 12px;
    background-color: rgba(28, 28, 28, .8);
    border-radius: 12px;
    overflow: hidden;
    padding: 16px;
    transition: .25s;
    z-index: 9999;
}

.cookies-notification--active {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.cookies-notification__text,
.cookies-notification__button,
.cookies-notification__text a {
    color: #ffffff;
    font-size: 11px;
    line-height: 140%;
}

.cookies-notification__text a {
    text-decoration: underline;
}

.cookies-notification__button {
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 6px 10px;
    transition: .12s;
    background-color: transparent;
	cursor: pointer;
}

.cookies-notification__button:hover {
    border-color: #dcdcdc;
    color: #dcdcdc;
}

@media (max-width: 567px) {
    .cookies-notification {
		left: 10%;
        width: 72%;
    }
}

@media (max-width: 360px) {
    .cookies-notification {
        height: auto;
    }
}