[data-cambios] span{
    pointer-events:none;
}
#cmodal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    width:100%;
    z-index:99999;
    display: none;
}
#cmodal.active{
    display: block;
}

.cmodal-overlay{
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    background-color:rgba(0,0,0,.6);
    z-index:1;
}
.cmodal-modal{
    background-color:#fff;
    border-radius:24px;
    position: absolute;
    width:880px;
    max-width:calc(100% - 40px);
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    display:flex;
}
.cmodal-modal__body{
    padding:50px 30px;
    width:50%;
}
.cmodal-modal__body form{
    margin-top:30px;
    width:100%;
}
.cmodal-modal__body form button{
    display: block;
    width:100%;
    margin-top:20px;
    background-color:#18C258 !important;
    color:#fff !important;
    font-size:16px !important;
    border-radius:8px !important;
    line-height:1em;
    font-weight:600;
    padding:16px 24px;
    transition:all .5s;
}
.cmodal-modal__body form button:disabled{
    opacity:.6;
    cursor:not-allowed;
}
.cmodal-modal__body h3{
    margin-bottom:20px;
}
.cmodal-modal__row .iti{
    display: flex;
    gap:10px;
}
.cmodal-modal__row .iti, .cmodal-modal__row .iti [name="phone"]{
    width:100%;
}
.cmodal-modal__row .iti__flag-container{
    position: relative;
}
.cmodal-modal__row .iti__selected-flag{
    background-color:#F7F8F8 !important;
    border-radius:8px;
    padding:0 10px 0 12px;
}
.cmodal-modal__row .iti [name="phone"]{
    background-color:#F7F8F8 !important;
    padding:18px 16px !important;
    font-size:16px;
    line-height:24px;
    border-radius:8px !important;
    border:0 !important;
    transition:all .2s;
    outline:none !important;
    box-shadow:none !important;
}
.cmodal-modal__row .iti [name="phone"]:focus{
    box-shadow:0 0 0 2px rgba(0,0,0,.6) !important;
}
.cmodal-modal__footer{
    color:#B1BAC8;
    text-align: center;
    font-size:13px;
    font-weight:600;
    margin-top:30px;
}
.cmodal-modal__side{
    width:50%;
    background-color:#e5ecfb;
    border-radius:0 24px 24px 0;
    display: flex;
    justify-content:center;
    align-items:center;
}
.cmodal-modal__close{
    position: absolute;
    right:14px;
    top:14px;
    z-index:3;
}

@media screen and (max-width:767px){
    .cmodal-modal__side{
        display: none !important;
    }
    .cmodal-modal__body{
        width:100% !important;
    }
}