.cookieConsentBlock {
    font-size: 11px;
    position: fixed;
    z-index: 5000;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    border-top: 1px solid var(--border-color);
    background-color: #fff;
}

.cookieConsentText {
    margin-right: 20px;
}

.cookieConsentButton button {
    font-size: 12px;
    min-width: 100px;
    height: 36px;
}

.cookieConsentPopup {
    cursor: pointer;
    border-bottom: 1px dashed;
}

/* region Мобильный*/
@media screen and (max-width: 450px) {
    .cookieConsentBlock {
        align-items: flex-start;
        flex-flow: column;
    }

    .cookieConsentText {
        margin-right: 0;
        margin-bottom: 20px;
        padding-right: 55px;
    }
}

/*endregion*/