/* =========================================================
MIN DANSKE VEJ - COOKIE CONSENT
========================================================= */

.mdv-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: none;

    background: #ffffff;
    color: #1e2a3a;

    border-top: 1px solid #e2ddd8;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.18);
}

.mdv-cookie-banner.show {
    display: block;
}

.mdv-cookie-content {
    max-width: 1100px;
    margin: 0 auto;

    padding: 22px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.mdv-cookie-text {
    max-width: 700px;
}

.mdv-cookie-text h2 {
    margin: 0 0 7px;

    font-size: 15px;
    font-weight: 800;
}

.mdv-cookie-text p {
    margin: 0 0 7px;

    font-size: 13px;
    line-height: 1.6;

    color: #526173;
}

.mdv-cookie-text a {
    font-size: 13px;

    color: #c8102e;

    text-decoration: underline;
}

.mdv-cookie-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    flex-shrink: 0;
}

.mdv-cookie-btn {
    padding: 5px 10px;

    border-radius: 8px;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.mdv-cookie-reject,
.mdv-cookie-settings {
    background: #ffffff;

    color: #1e2a3a;

    border: 1px solid #cbd1d8;
}

.mdv-cookie-accept {
    background: #c8102e;

    color: #ffffff;

    border: 1px solid #c8102e;
}

/* =========================================================
SETTINGS MODAL
========================================================= */

.mdv-cookie-modal {
    position: fixed;

    inset: 0;

    z-index: 1000000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.6);
}

.mdv-cookie-modal.show {
    display: flex;
}

.mdv-cookie-modal-box {
    position: relative;

    width: 100%;
    max-width: 560px;

    padding: 28px;

    background: #ffffff;

    color: #1e2a3a;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mdv-cookie-modal-box h2 {
    margin: 0 0 7px;

    font-size: 21px;
    font-weight: 800;
}

.mdv-cookie-modal-description {
    margin: 0 0 18px;

    color: #667085;

    font-size: 13px;
}

.mdv-cookie-close {
    position: absolute;

    top: 12px;
    right: 15px;

    border: 0;

    background: none;

    font-size: 28px;

    cursor: pointer;

    color: #667085;
}

.mdv-cookie-category {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 0;

    border-top: 1px solid #e5e7eb;
}

.mdv-cookie-category strong {
    font-size: 14px;
}

.mdv-cookie-category p {
    margin: 4px 0 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.5;
}

.mdv-cookie-category input {
    width: 19px;
    height: 19px;

    flex-shrink: 0;
}

.mdv-cookie-save {
    width: 100%;

    margin-top: 20px;

    padding: 11px;

    border: 0;

    border-radius: 8px;

    background: #c8102e;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;
}

/* =========================================================
MOBILE
========================================================= */

@media (max-width: 700px) {

    .mdv-cookie-content {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;

        padding: 18px;
        
    }

    .mdv-cookie-actions {
        display: grid;

        grid-template-columns: 1fr;
        
    }

    .mdv-cookie-btn {
        width: 100%;
    }

}