.cookies-consent {
    position: fixed;
    width: 100%;
    bottom: 10px;
    z-index: 500;
    transition: 0.5s ease;
    transform: translate(0, 150%);
    font-family: var(--main-font);
}
.cookies-consent.active {
    transform: translate(0, 0);
}
.cookies-consent__block {
    border-radius: 20px;
    width: 85%;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 0.003125 * 100vw + 19px, 25px) 25px;
    background: linear-gradient(to top, #342756, #513a8a);
    gap: 20px;
    overflow: hidden;
    color: white;
}
.type-second {
    border-radius: 7px;
}
.cookies-consent__left {
    display: flex;
    flex-flow: row;
    align-items: center;
    text-align: left;
    gap: 3px;
}
.cookies-consent__link {
    position: relative;
    color: #816cae;
    text-decoration: none;
}
.cookies-consent__link::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    color: #816cae;
}

.cookies-consent-btn {
    border: none;
    border-radius: 20px;
    padding: 20px 30px;
    cursor: pointer;
    color: #ffffff;
    box-shadow: inset 0 -5px 2px 0 rgba(137, 3, 43, 0.2), 0 8px 15px 0 rgba(137, 3, 43, 0.25);
    background-image: linear-gradient(to top, #ff4d85, #ff004d);
}
@media (max-width: 900px) {
    .cookies-consent__left {
        flex-flow: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .cookies-consent__block {
        flex-flow: column;
    }
}