/*  */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;

    background: #ffffff;
    border-top: 1px solid #e3e3e3;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);

    padding: 20px 40px;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;

    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.cookie-consent.cookie-consent--visible {
    transform: translateY(0);
    width: 50%;

    margin: 0 auto;
}

.cookie-consent__text {
    flex: 1 1 480px;
    margin: 0;
    font-family: 'Arial', Arial, sans-serif;
}

.cookie-consent__text a {
    color: #3a4cb0;
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    text-decoration: none;
}

.cookie-consent__btn {
    flex: 0 0 auto;
    padding: 12px 32px;
    background: #00008a;
    color: #ffffff;
    border: none;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-consent__btn:hover {
    background: #5858cd;
}

@media (max-width: 640px) {
    .cookie-consent {
        padding: 16px 20px;
        gap: 14px;
    }

    .cookie-consent__btn {
        width: 70%;
    }
}


@media (max-width: 850px) {

 .cookie-consent.cookie-consent--visible {

    width: 85% !important; 
    margin-bottom: 90px;
}

.cookie-consent {

    width: 100% !important; 
}


}