/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 28 may 2026, 14:04:36
    Author     : USUARIO
*/
.whats-btn:hover {
    background: #23cc62;
}
.whats-btn {
    font-size: 13px;
    font-weight: 500;
    position: fixed;
    bottom: 135px;
    left: 195px;
    background: #be1522;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    opacity: 1;
    z-index: 9900;
}
.leaflet-control-zoom-out{
    color: #000 !important;
}
.leaflet-control-zoom-in{
    color: #000 !important;
}
.div-time-hosting{
    background: #be1522;
    height: fit-content;
    padding: 5px 10px;
    border-radius: 10px;
}
:root{
    --supay-red:#b32025;
    --supay-red-dark:#8f171c;
    --supay-black:#111111;
    --supay-dark:#2b2b2b;
    --supay-light:#f5f5f5;
    --supay-gray:#6b7280;
    --supay-white:#ffffff;
}

/* OVERLAY */

.cookie-overlay,
.preferences-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

/* POPUP */

.cookie-popup,
.preferences-popup{

    width:500px;
    max-width:90%;

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.25);

    animation:showPopup .3s ease;
}

@keyframes showPopup{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ICONO */

.cookie-icon{
    width:80px;
    height:80px;

    margin:auto auto 20px;

    background:var(--supay-red);

    border-radius:50%;

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

    color:white;
    font-size:34px;
}
/* PREFERENCIAS */

.cookie-settings{
    border:1px solid #ddd;
    border-radius:10px;

    padding:15px;

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

    cursor:pointer;

    margin-bottom:20px;

    transition:.3s;
}

.cookie-settings:hover{
    border-color:var(--supay-red);
}

.cookie-settings i{
    color:var(--supay-red);
}

/* BOTONES */

.buttons{
    display:flex;
    gap:10px;
}

.buttons button{
    flex:1;
    padding:14px;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
    font-weight:bold;
}

/* BOTÓN SECUNDARIO */

.btn-secondary{
    border:2px solid var(--supay-red);
    background:white;
    color:var(--supay-red);
}

.btn-secondary:hover{
    background:#fff5f5;
}

/* BOTÓN PRINCIPAL */

.btn-primary{
    background:var(--supay-red);
    color:white;
    border:none;
}

.btn-primary:hover{
    background:var(--supay-red-dark);
}

/* OPCIONES */

.preference-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 0;

    border-bottom:1px solid #eee;
}

.preference-item:last-child{
    border-bottom:none;
}

.preference-text{
    width:80%;
}

.preference-text strong{
    display:block;
    margin-bottom:5px;
}

.preference-text small{
    color:#666;
}

/* SWITCH */

.switch{
    width:50px;
    height:26px;
}

.switch input{
    transform:scale(1.3);
}

.hidden{
    display:none;
}

@media(max-width:600px){

    .buttons{
        flex-direction:column;
    }

}