

.cookies-notification-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #444;
    width: 70%;
    margin: 0 auto;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 9999;
}

@media screen and (max-width: 767px) {
    .cookies-notification-block {
        flex-direction: column;
        gap:20px;
        width:calc(100% - 20px);
    }

    .cookies-notification-apply-btn {
        width:100% !important;
    }
}

.cookies-notification-text {
    width: 70%;
    font-size: 14px;
    color: var(--white);
}

.cookies-notification-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.cookies-notification-desc a {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline !important;
}

.cookies-notification-apply-btn {
    width: 15%;
    height: 40px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}