:root{
    --rv-blue:#007c9f;
    --rv-blue-2:#0a6d89;
    --rv-green:#009a73;
    --rv-green-2:#12b08a;
    --rv-ink:#102b3f;
    --rv-muted:#617382;
    --rv-line:#d8e7ed;
    --rv-soft:#eff9fb;
    --rv-soft-2:#f7fbfc;
    --rv-white:#ffffff;
    --rv-danger:#be0521;
    --rv-shadow:0 18px 48px rgba(16,43,63,.13);
    --rv-shadow-soft:0 12px 28px rgba(0,124,159,.12);
    --rv-radius:22px;
    --rv-radius-md:18px;
    --rv-radius-sm:12px;
}

*{box-sizing:border-box;}
html,body{min-height:100%;margin:0;padding:0;}
body{
    font-family:Inter,Segoe UI,Arial,sans-serif;
    color:var(--rv-ink);
    background:
        radial-gradient(circle at 7% 4%,rgba(0,154,115,.12),transparent 28%),
        radial-gradient(circle at 100% 0%,rgba(0,124,159,.13),transparent 32%),
        linear-gradient(135deg,#f9fcfd 0%,#edf6f8 48%,#ffffff 100%);
    padding:12px 10px;
}
form{width:100%;}
button,input,select,textarea{font-family:inherit;}

.rv-shell{
    width:100%;
    max-width:1010px;
    margin:0 auto;
    background:rgba(255,255,255,.95);
    border:1px solid rgba(0,124,159,.13);
    border-radius:var(--rv-radius);
    box-shadow:var(--rv-shadow);
    overflow:hidden;
    position:relative;
}
.rv-shell:before{
    content:"";
    display:block;
    height:5px;
    background:linear-gradient(90deg,var(--rv-blue),var(--rv-green));
}

.rv-topbar{
    min-height:58px;
    padding:10px 20px 8px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    border-bottom:1px solid #edf3f5;
    background:#fff;
}
.rv-logo-link{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
    cursor:pointer;
    border-radius:14px;
    transition:transform .18s ease,box-shadow .18s ease;
}
.rv-logo-link:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 22px rgba(0,124,159,.10);
}
.rv-logo{
    display:block;
    width:132px;
    max-width:60vw;
    height:auto;
}
.rv-top-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--rv-blue);
    background:var(--rv-soft);
    border:1px solid rgba(0,124,159,.16);
    padding:6px 10px;
    border-radius:999px;
    font-weight:800;
    font-size:10px;
    letter-spacing:.06em;
    text-transform:uppercase;
}

.rv-content{padding:16px 20px 18px;}
.rv-steps{
    display:flex;
    gap:6px;
    flex-wrap:wrap;
    margin:0 0 10px;
}
.rv-step{
    border:1px solid var(--rv-line);
    background:#fff;
    color:#7b8b96;
    border-radius:999px;
    padding:5px 9px;
    font-size:10.5px;
    font-weight:800;
}
.rv-step.is-active{
    color:#fff;
    border-color:transparent;
    background:linear-gradient(135deg,var(--rv-blue),var(--rv-green));
    box-shadow:0 8px 20px rgba(0,124,159,.18);
}

.rv-page-head{margin:0 0 10px;}
.rv-kicker{
    margin:0 0 6px;
    color:var(--rv-blue);
    text-transform:uppercase;
    letter-spacing:.16em;
    font-weight:900;
    font-size:9.5px;
}
.rv-title,
.rv-title.small{
    margin:0;
    font-family:Georgia,'Times New Roman',serif;
    font-size:22px;
    line-height:1.04;
    color:#112d43;
    font-weight:700;
}
.rv-line{
    display:block;
    width:42px;
    height:3px;
    border-radius:99px;
    margin-top:7px;
    background:linear-gradient(90deg,var(--rv-green),var(--rv-blue));
}
.rv-progress{
    width:100%;
    max-width:280px;
    background:#dcebee;
    position:relative;
    overflow:hidden;
}
.rv-progress:after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    bottom:0;
    width:20%;
    border-radius:999px;
    background:linear-gradient(90deg,var(--rv-green),var(--rv-blue));
    transition:width .25s ease;
}
.rv-progress-20:after{width:20%;}
.rv-progress-40:after{width:40%;}
.rv-progress-60:after{width:60%;}
.rv-progress-80:after{width:80%;}
.rv-progress-100:after{width:100%;}
.rv-subtitle{
    margin:7px 0 0;
    color:var(--rv-muted);
    font-size:12.5px;
    line-height:1.35;
    max-width:760px;
}

.rv-home-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-bottom:12px;
}
.rv-hero{
    border-radius:18px;
    padding:18px 24px;
    color:#fff;
    background:
        linear-gradient(135deg,rgba(16,43,63,.98),rgba(28,63,83,.95)),
        radial-gradient(circle at top right,rgba(18,176,138,.30),transparent 42%);
    box-shadow:0 18px 40px rgba(16,43,63,.20);
    min-height:130px;
    max-width:820px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.rv-hero .rv-kicker{color:#b9f3e1;}
.rv-hero-title{
    margin:0;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(22px,3vw,30px);
    line-height:1.02;
    font-weight:700;
    max-width:680px;
}
.rv-hero-text{
    margin:9px 0 0;
    font-size:15px;
    line-height:1.55;
    color:rgba(255,255,255,.86);
    max-width:640px;
}
.rv-side-card{
    border-radius:22px;
    padding:22px;
    background:linear-gradient(180deg,#f5fcfd,#f0faf7);
    border:1px solid rgba(0,124,159,.15);
}
.rv-number{font-family:Georgia,'Times New Roman',serif;font-size:42px;color:var(--rv-green);line-height:1;}
.rv-side-title{font-size:18px;font-weight:900;color:var(--rv-blue);margin:10px 0 7px;}
.rv-side-text{color:var(--rv-muted);line-height:1.6;margin:0;}
.rv-badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;}
.rv-badge{border-radius:999px;background:#fff;border:1px solid var(--rv-line);color:var(--rv-blue);padding:8px 11px;font-weight:800;font-size:12px;}

.options-grid,.hours-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:9px;
    width:100%;
}
.rv-option-btn,.rv-hour-btn{
    width:100%;
    border:1px solid #c7e1e8;
    border-radius:13px;
    background:#fff;
    color:var(--rv-blue);
    min-height:48px;
    padding:9px 12px;
    font-size:13px;
    font-weight:900;
    text-align:left;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,124,159,.07);
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease,color .18s ease,border-color .18s ease;
}
.rv-option-btn:before{
    content:"";
    display:inline-block;
    width:10px;
    height:10px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--rv-green),var(--rv-blue));
    margin-right:8px;
    box-shadow:0 0 0 5px rgba(0,154,115,.08);
}
.rv-hour-btn{font-size:15px;min-height:44px;text-align:center;}
.rv-option-btn:hover,.rv-hour-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 32px rgba(0,124,159,.18);
    border-color:transparent;
    background:linear-gradient(135deg,var(--rv-blue),var(--rv-green));
    color:#fff;
}
.rv-option-btn:hover:before{background:#fff;box-shadow:0 0 0 5px rgba(255,255,255,.16);}

.rv-alert{
    border-radius:13px;
    border:1px solid rgba(0,124,159,.20);
    border-left:5px solid var(--rv-blue);
    background:linear-gradient(90deg,rgba(0,124,159,.07),rgba(0,154,115,.06));
    padding:10px 13px;
    color:#184057;
    font-size:12.5px;
    line-height:1.35;
    margin-bottom:12px;
}
.rv-error{display:block;color:var(--rv-danger);font-weight:800;margin-bottom:10px;}

.rv-form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px 12px;
}
.rv-field{display:flex;flex-direction:column;gap:5px;}
.rv-field.full{grid-column:1/-1;}
.rv-label,.rv-summary-label{
    color:var(--rv-blue);
    text-transform:uppercase;
    letter-spacing:.07em;
    font-size:10.5px;
    font-weight:900;
}
.rv-summary-label{margin-bottom:6px;display:block;}
.rv-input{
    width:100%!important;
    min-height:42px;
    border:1px solid #cddde4;
    border-radius:10px;
    background:#fff;
    padding:9px 12px;
    color:var(--rv-ink);
    font-size:13.5px;
    transition:border-color .18s ease,box-shadow .18s ease;
}
.rv-input:focus{
    outline:none;
    border-color:var(--rv-blue);
    box-shadow:0 0 0 4px rgba(0,124,159,.09);
}
.rv-hint{font-size:10.5px;color:#8ea1ad;}
.MarcaAgua{color:#97a6af!important;}

.rv-actions{
    margin-top:14px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}
.rv-actions-center{justify-content:center;}
.rv-btn-primary,.rv-btn-secondary{
    min-width:132px;
    min-height:42px;
    border-radius:12px;
    padding:9px 15px;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
    transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,color .18s ease;
}
.rv-btn-primary{
    color:#fff;
    border:0;
    background:linear-gradient(135deg,var(--rv-green),#0ca57f);
    box-shadow:0 12px 26px rgba(0,154,115,.22);
}
.rv-btn-secondary{
    color:#17354d;
    background:#fff;
    border:1px solid #c8d9e0;
}
.rv-btn-primary:hover,.rv-btn-secondary:hover{transform:translateY(-1px);}
.rv-btn-secondary:hover{color:var(--rv-blue);border-color:var(--rv-blue);box-shadow:0 12px 26px rgba(0,124,159,.10);}
.rv-btn-primary:hover{box-shadow:0 16px 30px rgba(0,154,115,.30);}

.rv-calendar-card{
    max-width:760px;
    margin:0 auto;
    border-radius:18px;
    border:1px solid var(--rv-line);
    background:linear-gradient(180deg,#ffffff,#f8fcfd);
    padding:14px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
}
.rv-calendar{width:100%;}
.rv-calendar table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    overflow:hidden;
    border-radius:16px;
    border:1px solid var(--rv-line);
    background:#fff;
}
.rv-cal-title{
    padding:10px 8px!important;
    background:linear-gradient(135deg,var(--rv-blue),#0b7894)!important;
    color:#fff!important;
    font-family:Georgia,'Times New Roman',serif;
    font-size:17px!important;
    font-weight:700!important;
}
.rv-cal-nav{color:#fff!important;font-weight:900;font-size:12px!important;padding:0 10px!important;}
.rv-cal-header{
    padding:7px 4px!important;
    background:#eef7fa!important;
    color:var(--rv-blue)!important;
    font-size:10.5px!important;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-weight:900!important;
}
.rv-cal-day,.rv-calendar td{
    height:38px!important;
    text-align:center;
    border-top:1px solid #edf4f6;
    border-right:1px solid #edf4f6;
    font-size:13px!important;
}
.rv-calendar a{display:grid;place-items:center;width:100%;height:100%;color:inherit;text-decoration:none;font-weight:900;}
.rv-cal-other{background:#fafcfd!important;color:#b2c2ca!important;}
.rv-cal-today{outline:1px solid var(--rv-blue);outline-offset:-3px;border-radius:10px;}
.rv-cal-selected{background:#0C8CB1!important;color:#fff!important;}
.rv-legend{display:flex;gap:12px;flex-wrap:wrap;margin-top:10px;color:var(--rv-muted);font-weight:700;font-size:11.5px;}
.rv-legend-item{display:inline-flex;align-items:center;gap:7px;}
.rv-dot{width:11px;height:11px;border-radius:4px;display:inline-block;}
.rv-dot.available{background:#0C8CB1;}
.rv-dot.unavailable{background:#DCE6EB;border:1px solid #c8d6dc;}

.rv-summary{
    max-width:880px;
    margin:0 auto;
    border-radius:18px;
    border:1px solid var(--rv-line);
    background:linear-gradient(180deg,#fff,#f9fcfd);
    padding:14px;
}
.rv-summary-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:9px;
}
.rv-summary-item{
    border:1px solid #dce9ee;
    border-radius:13px;
    background:#fff;
    padding:10px 12px;
    box-shadow:0 8px 20px rgba(16,43,63,.04);
}
.rv-summary-value{font-size:13px;color:var(--rv-ink);font-weight:800;line-height:1.35;}
.rv-note{
    width:100%!important;
    min-height:82px;
    margin-top:10px;
    border-radius:13px;
    border:1px dashed #bdd2dc;
    background:#f7fbfc;
    padding:10px;
    color:var(--rv-muted);
    line-height:1.6;
    resize:vertical;
    font-size:12px;
}

.rv-success{
    text-align:center;
    border-radius:20px;
    border:1px solid var(--rv-line);
    background:linear-gradient(180deg,#fff,#f7fcfb);
    padding:24px 20px;
}
.rv-check{
    width:56px;
    height:56px;
    border-radius:50%;
    margin:0 auto 12px;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:30px;
    font-weight:900;
    background:linear-gradient(135deg,var(--rv-green),var(--rv-blue));
    box-shadow:0 14px 30px rgba(0,154,115,.22);
}
.rv-success-title{
    margin:0 0 8px;
    font-family:Georgia,'Times New Roman',serif;
    font-size:26px;
    color:#112d43;
}
.rv-success-text{margin:7px auto;color:var(--rv-muted);font-size:13px;line-height:1.45;max-width:680px;}

/* Popup común para mensajes del servidor */
.rv-popup-backdrop{
    position:fixed;
    inset:0;
    z-index:9998;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(16,43,63,.34);
    backdrop-filter:blur(3px);
}
.rv-popup-backdrop.is-visible{display:flex;}
.rv-popup-card{
    width:min(420px,94vw);
    border-radius:22px;
    border:1px solid rgba(0,124,159,.18);
    background:linear-gradient(180deg,#fff,#f9fcfd);
    box-shadow:0 24px 70px rgba(16,43,63,.28);
    overflow:hidden;
    text-align:center;
}
.rv-popup-card:before{
    content:"";
    display:block;
    height:5px;
    background:linear-gradient(90deg,var(--rv-blue),var(--rv-green));
}
.rv-popup-body{padding:24px 24px 20px;}
.rv-popup-logo{
    width:118px;
    height:auto;
    margin:0 auto 14px;
    display:block;
}
.rv-popup-title{
    margin:0 0 8px;
    font-family:Georgia,'Times New Roman',serif;
    font-size:24px;
    line-height:1.15;
    color:#112d43;
}
.rv-popup-message{
    margin:0 auto 18px;
    color:var(--rv-muted);
    font-size:14px;
    line-height:1.55;
    max-width:330px;
    white-space:pre-line;
}
.rv-popup-close{
    min-width:132px;
    min-height:40px;
    border:0;
    border-radius:12px;
    padding:9px 16px;
    color:#fff;
    background:linear-gradient(135deg,var(--rv-green),var(--rv-blue));
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 26px rgba(0,124,159,.18);
}
.rv-popup-close:hover{transform:translateY(-1px);}

/* Popup de carga */
.rv-loading-backdrop{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(255,255,255,.52);
    backdrop-filter:blur(2px);
}
.rv-loading-backdrop.is-visible{display:flex;}
.rv-loading-card{
    width:min(300px,90vw);
    border-radius:20px;
    border:1px solid rgba(0,124,159,.18);
    background:#fff;
    box-shadow:0 20px 52px rgba(16,43,63,.22);
    padding:20px 22px;
    text-align:center;
}
.rv-loading-logo{
    width:104px;
    max-width:70%;
    height:auto;
    max-height:86px;
    object-fit:contain;
    display:block;
    margin:0 auto 12px;
    padding:4px;
    border-radius:12px;
    background:#fff;
    animation:rv-spin-logo 1.2s linear infinite;
}
.rv-loading-text{
    margin:0;
    color:var(--rv-blue);
    font-weight:900;
    font-size:14px;
}
@keyframes rv-spin-logo{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

/* Compatibilidad con nombres viejos por si queda algún control sin cambiar */
.login-container{width:100%;max-width:1010px;margin:0 auto;background:#fff;border-radius:var(--rv-radius);box-shadow:var(--rv-shadow);padding:16px 20px 18px;}
.form-control{width:100%!important;min-height:42px;border:1px solid #cddde4;border-radius:10px;padding:9px 12px;font-size:13.5px;}
.btn,.btn1,.btn2,.btn3{min-width:132px;min-height:42px;border-radius:12px;padding:9px 15px;font-weight:900;font-size:13px;cursor:pointer;}
.btn,.btn2{border:0;color:#fff;background:linear-gradient(135deg,var(--rv-green),#0ca57f);}
.btn1,.btn3{color:#17354d;background:#fff;border:1px solid #c8d9e0;}

@media(max-width:860px){
    body{padding:8px;}
    .rv-topbar{padding:9px 14px 7px;align-items:flex-start;}
    .rv-logo{width:124px;}
    .rv-content,.login-container{padding:14px 12px 16px;}
    .rv-hero{padding:16px 15px;min-height:unset;}
    .rv-hero-title{font-size:24px;}
    .rv-hero-text{font-size:14px;}
    .rv-form-grid,.rv-summary-grid{grid-template-columns:1fr;}
}
@media(max-width:560px){
    .rv-shell{border-radius:18px;}
    .rv-topbar{flex-direction:column;gap:10px;}
    .rv-logo{width:120px;}
    .rv-step{font-size:10px;padding:5px 8px;}
    .rv-title,.rv-title.small{font-size:21px;}
    .rv-hero-title{font-size:23px;}
    .rv-hero-text{font-size:13px;}
    .rv-progress{max-width:220px;}
    .options-grid,.hours-grid{grid-template-columns:1fr;}
    .rv-cal-day,.rv-calendar td{height:34px!important;font-size:12px!important;}
    .rv-popup-body{padding:22px 18px 18px;}
}

/* =========================================================
   Refuerzo responsive para celular / tablet
   No modifica la vista de PC; solo se activa en pantallas chicas.
   ========================================================= */
@media (max-width:768px){
    html,body{
        width:100%;
        overflow-x:hidden;
    }
    body{
        padding:6px;
        background:linear-gradient(180deg,#f7fcfd 0%,#eef8fa 100%);
        -webkit-text-size-adjust:100%;
    }
    .rv-shell,
    .login-container{
        width:100%;
        max-width:100%;
        min-height:calc(100dvh - 12px);
        border-radius:16px;
        box-shadow:0 10px 28px rgba(16,43,63,.12);
    }
    .rv-topbar{
        min-height:auto;
        padding:10px 12px 8px;
        gap:8px;
    }
    .rv-logo-link{
        max-width:150px;
    }
    .rv-logo{
        width:122px;
        max-width:44vw;
    }
    .rv-top-pill{
        font-size:9px;
        padding:5px 8px;
        white-space:normal;
        text-align:center;
    }
    .rv-content,
    .login-container{
        padding:12px 10px 14px;
    }
    .rv-steps{
        flex-wrap:nowrap;
        overflow-x:auto;
        gap:6px;
        padding-bottom:4px;
        scrollbar-width:none;
    }
    .rv-steps::-webkit-scrollbar{display:none;}
    .rv-step{
        flex:0 0 auto;
        font-size:9.5px;
        padding:5px 8px;
    }
    .rv-kicker{
        font-size:9px;
        letter-spacing:.12em;
    }
    .rv-title,
    .rv-title.small{
        font-size:20px;
        line-height:1.12;
    }
    .rv-subtitle{
        font-size:12.5px;
        line-height:1.45;
    }
    .rv-hero{
        padding:15px 14px;
        border-radius:15px;
        min-height:unset;
    }
    .rv-hero-title{
        font-size:23px;
    }
    .rv-hero-text{
        font-size:13.5px;
        line-height:1.45;
    }
    .rv-badges{
        gap:7px;
    }
    .rv-badge{
        font-size:11px;
        padding:7px 9px;
    }
    .rv-form-grid,
    .rv-summary-grid{
        grid-template-columns:1fr;
        gap:9px;
    }
    .rv-input,
    .form-control,
    select,
    textarea{
        font-size:16px!important;
        min-height:44px;
    }
    .rv-label,
    .rv-summary-label{
        font-size:10px;
    }
    .options-grid{
        grid-template-columns:1fr;
        gap:8px;
    }
    .hours-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:8px;
    }
    .rv-option-btn,
    .rv-hour-btn{
        min-height:48px;
        border-radius:12px;
        font-size:14px;
        text-align:center;
        padding:10px 8px;
    }
    .rv-option-btn{text-align:left;}
    .rv-actions{
        margin-top:12px;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
    }
    .rv-btn-primary,
    .rv-btn-secondary,
    .btn,.btn1,.btn2,.btn3,
    input[type='submit'],input[type='button'],button{
        width:100%;
        min-height:46px;
        font-size:14px;
    }
    .rv-calendar-card{
        max-width:100%;
        padding:8px;
        border-radius:14px;
        overflow-x:auto;
    }
    .rv-calendar table{
        table-layout:fixed;
        min-width:100%;
        border-radius:12px;
    }
    .rv-cal-title{
        font-size:15px!important;
        padding:8px 4px!important;
    }
    .rv-cal-nav{
        font-size:11px!important;
        padding:0 6px!important;
    }
    .rv-cal-header{
        font-size:9px!important;
        padding:6px 2px!important;
    }
    .rv-cal-day,
    .rv-calendar td{
        height:40px!important;
        font-size:12px!important;
    }
    .rv-calendar a{
        min-height:40px;
        border-radius:8px;
    }
    .rv-legend{
        gap:9px;
        font-size:10.5px;
        justify-content:center;
    }
    .rv-summary{
        padding:10px;
        border-radius:14px;
    }
    .rv-summary-item{
        padding:9px 10px;
    }
    .rv-success{
        padding:20px 12px;
    }
    .rv-success-title{
        font-size:22px;
    }
    .rv-success-text{
        font-size:12.5px;
    }
    .rv-popup-card{
        width:min(390px,94vw);
        border-radius:18px;
    }
    .rv-popup-body{
        padding:20px 16px 16px;
    }
    .rv-popup-logo{
        width:104px;
    }
    .rv-popup-title{
        font-size:22px;
    }
    .rv-loading-card{
        width:min(280px,90vw);
        padding:18px 18px;
        border-radius:18px;
    }
    .rv-loading-logo{
        width:96px;
        max-height:78px;
    }
}

@media (max-width:420px){
    body{
        padding:4px;
    }
    .rv-shell,
    .login-container{
        min-height:calc(100dvh - 8px);
        border-radius:14px;
    }
    .rv-topbar{
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
    }
    .rv-logo-link{
        max-width:140px;
    }
    .rv-logo{
        width:116px;
        max-width:68vw;
    }
    .rv-top-pill{
        width:100%;
        justify-content:center;
    }
    .rv-title,
    .rv-title.small{
        font-size:19px;
    }
    .rv-hero-title{
        font-size:21px;
    }
    .rv-hero-text{
        font-size:13px;
    }
    .hours-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .rv-hour-btn{
        font-size:13.5px;
        min-height:46px;
    }
    .rv-cal-day,
    .rv-calendar td{
        height:38px!important;
        font-size:11.5px!important;
    }
    .rv-calendar a{
        min-height:38px;
    }
    .rv-legend{
        align-items:flex-start;
        justify-content:flex-start;
    }
    .rv-popup-message{
        font-size:13.5px;
    }
}
