/* CM Cookie Consent v1.0.4 */

.cm-cookie-overlay{
    position:fixed;
    inset:0;
    display:none;
    z-index:999999;
    box-sizing:border-box;
    pointer-events:none;
}

.cm-cookie-overlay.show{
    display:flex;
}

.cm-cookie-popup{
    position:relative;
    box-sizing:border-box;
    background:#fff;
    color:#222;
    border-radius:18px;
    padding:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.22);
    font-family:Arial,Helvetica,sans-serif;
    text-align:center;
    pointer-events:auto;
}

.cm-cookie-logo{
    text-align:left;
    margin:0 0 8px;
}

.cm-cookie-logo img{
    display:block;
    width:65px;
    height:auto;
}

.cm-cookie-close{
    position:absolute;
    top:10px;
    right:10px;
    width:30px;
    height:30px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#f1f1f1;
    color:#333;
    cursor:pointer;
    font-size:18px;
    line-height:30px;
}

.cm-cookie-popup h2{
    margin:6px 0 10px;
    font-size:22px;
    line-height:1.2;
    font-weight:700;
}

.cm-cookie-popup p{
    margin:0 0 12px;
    color:#555;
    font-size:13px;
    line-height:1.5;
}

.cm-cookie-links{
    margin:0 0 14px;
    font-size:12px;
    line-height:1.5;
}

.cm-cookie-links a{
    color:#f04420;
    text-decoration:none;
}

.cm-cookie-links a:hover{
    text-decoration:underline;
}

.cm-cookie-links span{
    margin:0 4px;
    color:#777;
}

.cm-cookie-buttons{
    display:flex;
    gap:10px;
}

.cm-cookie-buttons button{
    flex:1;
    min-height:42px;
    padding:10px 12px;
    border:0;
    border-radius:8px;
    cursor:pointer;
    font-size:14px;
}

.cm-cookie-btn-secondary{
    background:#ececec;
    color:#333;
}

.cm-cookie-btn-primary{
    background:#df1720;
    color:#fff;
}

@media (max-width:600px){
    .cm-cookie-overlay{
        padding:12px !important;
        align-items:flex-end !important;
        justify-content:center !important;
    }

    .cm-cookie-popup{
        width:100% !important;
        max-width:100% !important;
        padding:18px;
    }

    .cm-cookie-buttons{
        flex-direction:column;
    }

    .cm-cookie-links span{
        display:none;
    }

    .cm-cookie-links a{
        display:block;
        margin:5px 0;
    }
}
