body{
    font-family: 'Inter', sans-serif;
}


/*  BACKGROUND  */

.demo-bg{

    min-height:100vh;

    background: url("../img/bg.png") no-repeat center center;

    background-size: cover;

    position:relative;

}


/* ===== NAVBAR ===== */


.demo-navbar{

    height:72.764px;

    background: rgba(255,255,255,0.63);

    backdrop-filter: blur(4px);

    border-bottom:1px solid rgba(255,255,255,0.8);

    border-radius:9px;

    box-shadow: 0px 4px 0px rgba(0,0,0,0.1);

    padding-left:30px;
    padding-right:30px;

}


.logo-img{

    width:144px;
    height:39px;
    object-fit:contain;

}

.lang-text{

    font-family: 'Inter', sans-serif;

    font-weight:700;

    font-size:20px;

    color:#1D1D1B;

}


/* ===== TOGGLE ===== */

.toggle-switch{
    position:relative;
    width:79px;
    height:35px;
}

.toggle-switch input{
    opacity:0;
    width:0;
    height:0;
}

.toggle-slider{
    position:absolute;
    cursor:pointer;

    top:0;
    left:0;
    right:0;
    bottom:0;

    background: rgba(253,101,125,0.6);

    border-radius:18.5px;

    border:1px solid #ffffff;

    box-shadow: inset 0px 4px 4px rgba(0,0,0,0.25);

    transition:0.3s;
}

.toggle-slider::before{
    content:"";

    position:absolute;

    width:39px;
    height:35px;

    background:#ffffff;

    border-radius:50%;

    left:0;
    top:0;

    transition:0.3s;
}

/* when checked */

.toggle-switch input:checked + .toggle-slider::before{
    transform:translateX(40px);
}

/*  MAIN SECTION  */

.main-section{

    margin-top:100px;

}


/* title */

.demo-title{

    font-family: 'Inter', sans-serif;
    font-weight:600;
    font-size:40px;

    color:#000;

}


/* subtitle */

.demo-subtitle{

    font-family: 'Inter', sans-serif;
    font-weight:600;
    font-size:24px;

    color:#525252;

    margin-top:10px;
    margin-bottom:30px;

}


/* customer box */

.customer-box{
    max-width:431px;
    width:100%;
    height:auto;


    border-radius:13px;

    background: rgba(255,255,255,0.7);

    border:1px solid #D9D9D9;

    box-shadow: inset 4px 4px 4px rgba(0,0,0,0.2);

    padding-left:20px;

    gap:20px;

}


/* avatar */

.customer-avatar{

    width:88px;
    height:88px;

    object-fit:cover;

    border-radius:50%;

}


/* text */

.customer-text{

    font-family: 'Inter', sans-serif;
    font-weight:500;
    font-size:26px;

    color:#757575;

}

.scenario-title{

    font-family: 'Inter', sans-serif;
    font-weight:600;
    font-size:26px;

    color:#1D1D1B;

    margin-top:60px;
    margin-bottom:25px;

}

/*  SCENARIO CARD  */

.scenario-card{

    width:224px;
    height:171px;

    border-radius:13px;

    background: rgba(255,255,255,0.69); /* #FFFFFFB0 */

    box-shadow: 4px 4px 20px rgba(0,0,0,0.1);

    display:flex;
    flex-direction:column;

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

    padding-top:15px;
    cursor:pointer;
    transition:0.2s;
    border:2px solid transparent;

}

.scenario-card:hover{
    border:2px solid #E51F26;
}


/* active card */

.active-card{

    border:2px solid #E51F26;

}


/* icon */

.scenario-icon{

    width:103px;
    height:80px;

    object-fit:contain;

    margin-bottom:6px;

}


/* title */

.scenario-title-text{

    font-family: 'Inter', sans-serif;
    font-weight:600;
    font-size:20px;

    color:#000;

}


/* subtitle */

.scenario-sub{

    font-family: 'Inter', sans-serif;
    font-weight:600;
    font-size:20px;

    color:#757575;

    margin-top:-2px;

}

/*  START BUTTON  */

.start-btn{

    width:282px;
    height:55px;

    border:none;

    border-radius:32.5px;

    font-family: 'Inter', sans-serif;
    font-weight:700;
    font-size:20px;

    color:#ffffff;

    background: linear-gradient(
        270deg,
        #E52127 0%,
        #E52127 49.04%,
        #F04F54 92.79%
    );

    display:flex;
    align-items:center;
    justify-content:center;
     transition:0.2s;
    gap:8px;

}

.start-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 4px 10px rgba(0,0,0,0.2);

}


.start-btn i{

    font-size:20px;

}

/* ================= PAGE 2 PANEL ================= */

.sim-title{

    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:32px;

    color:#000;

}


.sim-subtitle{

    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:20px;

    color:#525252;

    margin-top:5px;

}
.sim-header{

    max-width:1082px;
    width:100%;
    margin:30px auto 0 auto;
    padding:0 10px;

}

/*  PANEL  */

.sim-panel{

    max-width:1082px;
    width:100%;
    margin:35px auto 0 auto;

    border-radius:13px;

    background:#FFFFFFB0;

    border:1px solid #D9D9D9;

    box-shadow: inset 4px 4px 4px rgba(0,0,0,0.2);

    padding: 36px 24px;

}

/*  VIDEO */

.sim-video{

    width:100%;
    max-width:462px;
    height:380px;
    object-fit:cover;
}


/* INFO BOX  */

.sim-info{

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

    border-radius:13px;

    background:#FFFFFFB0;

    box-shadow: 4px 4px 20px rgba(0,0,0,0.1);

    padding:20px;

    margin:auto;

}
/* TITLE ROW */

.sim-icon{

    width:77px;
    height:60px;

    object-fit:contain;

}

.sim-label{

    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:26px;

    color:#1D1D1B;

}

.sim-name{

    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:24px;

    color:#757575;

}


/*  INFO ROW  */

.sim-small-icon{

    width:27px;
    height:24px;

}

.sim-info-label{

    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:20px;

    color:#494848;

}

.sim-info-value{

    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:20px;

    color:#757575;

}

.sim-timer{

    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:44px;

    color:#000;

    text-align:center;

    margin-top:15px;

}

.btn-stop{

    width:202px;
    height:50px;

    border-radius:32.5px;

    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:20px;

    color:#fff;

    background: linear-gradient(
        270deg,
        #2193E5 0%,
        #A021E5 65.87%
    );

    border:none;
}

.stop-icon{

    width:14px;
    height:14px;

    background:#FFFFFF;

    border-radius:1px;

    display:inline-block;

}


.btn-end{

    width:189px;
    height:51px;

    border-radius:32.5px;

    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:20px;

    color:#fff;

    background: linear-gradient(
        270deg,
        #E52127 0%,
        #E52127 49.04%,
        #F04F54 92.79%
    );

    border:none;
}

.end-icon{

    width:21px;
    height:19px;

    object-fit:contain;

    flex-shrink:0;

}

.sim-stop-text{

    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:20px;

    color:#D9D9D9;

}

/*  PROGRESS  */

.sim-progress{

    width:100%;
    height:12px;
    max-width:457px;
    border-radius:32.5px;
    background:#FFFFFF;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.25);

}


.sim-progress-bar{

     height:12px;

    border-radius:32.5px;

    background: linear-gradient(
        270deg,
        #2193E5 0%,
        #A021E5 49.04%,
        #B7E1FF 92.79%
    );

}

@media (max-width: 768px){

    .sim-title{
        font-size:24px;
    }

    .sim-subtitle{
        font-size:14px;
    }

    .sim-label{
        font-size:18px;
    }

    .sim-name{
        font-size:16px;
    }

    .sim-info-label{
        font-size:14px;
    }

    .sim-info-value{
        font-size:14px;
    }

    .sim-timer{
        font-size:28px;
    }

    .btn-stop,
    .btn-end{
        font-size:14px;
        height:42px;
    }

}
