.cookie-consent {
    position: fixed;
    background-color: rgba(34, 42, 49, 0.9);
    backdrop-filter: blur(5px);
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 430px;
    z-index: 40000;
    color: #fff;
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 3px;
}
@media (min-width: 500px) {
    .cookie-consent {
        bottom: 20px;
        left: 20px;
        right: 20px;
   }
}
.cookie-consent__inner {
    padding: 20px;
}
@media (min-width: 500px) {
    .cookie-consent__inner {
        padding: 25px;
   }
}
.cookie-consent__info h2, .cookie-consent__info h3 {
    margin-bottom: 10px;
    color: #fff;
}
.cookie-consent__info h2 {
    font-size: 20px;
}
.cookie-consent__info h3 {
    font-size: 18px;
}

.cookie-consent__info p {
    font-size: 12px;
    margin-bottom: 15px;
}
.cookie-consent__info a {
    color: #cfa36d;
}
.cookie-consent__info a:hover {
    color: #fff;
}
.cookie-consent__main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cookie-consent-item {
    display: inline-flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin: 0;
    font-size: 14px;
}
.cookie-consent-item input {
    width: 1rem;
    height: 1rem;
}
.cookie-consent__btns {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.cookie-consent__btn {
    background-color: #222a31;
    color: #fff;
    border-color: transparent;
    padding: 10px 20px;
    background-color: #cfa36d;
    display: inline-block;
    transition-property: border-color, color, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    height: auto;
}
@media (max-width: 499px) {
    .cookie-consent__btn {
        flex: 0 0 100%;
   }
}
.cookie-consent__btn:hover, .cookie-consent__btn:active {
    background-color: #313c46;
    color: #fff;
}
.cookie-consent__btn:active {
    background-color: #13181c;
}