.cookies-consent {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 10px;
    z-index: 500;
    transition: 0.5s ease;
    transform: translate(0, 150%);
}
.cookies-consent.active {
    transform: translate(0, 0);
}
.cookies-consent__block {
    width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 0.003125 * 100vw + 19px, 25px) 25px;
    background-color: var(--submenu);
    gap: 20px;
    overflow: hidden;
}
.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: var(--main);
    white-space: nowrap;
}
.cookies-consent__link::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--main);
}
@media (max-width: 900px) {
    .cookies-consent__left {
        flex-flow: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .cookies-consent__block {
        flex-flow: column;
    }
}