/* Cookie banner / CMP - Milano 192 Gelato */
#cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: #004840;
    border-top: 1px solid #CBBC9F;
    padding: 1.25rem 1rem;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, .35);
}

#cookie-consent-banner[hidden] {
    display: none !important;
}

.cookie-consent__inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
}

.cookie-consent__text {
    flex: 1 1 380px;
    margin: 0;
    font-size: .95rem;
    line-height: 1.5;
    color: #CBBC9F;
}

.cookie-consent__title {
    display: block;
    font-size: 1.05rem;
    margin-bottom: .25rem;
}

.cookie-consent__actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.cookie-consent__btn {
    font-family: inherit;
    font-size: .95rem;
    line-height: 1;
    padding: .7rem 1.4rem;
    border-radius: 2px;
    border: 1px solid #CBBC9F;
    background: transparent;
    color: #CBBC9F;
    cursor: pointer;
}

.cookie-consent__btn--accept {
    background: #CBBC9F;
    color: #00645A;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus-visible {
    opacity: .85;
}

.cookie-consent__link {
    background: none;
    border: 0;
    padding: 0;
    font-family: inherit;
    font-size: .85rem;
    color: #CBBC9F;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 575.98px) {
    .cookie-consent__inner {
        text-align: center;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent__btn {
        flex: 1 1 auto;
    }
}
