.modalBody {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000000CC;
    width: 100%;
    height: 100%;
    z-index: -10;
    visibility: hidden;
    display: grid;
    place-items: center;
    direction: rtl;
}
.active-modal {
    z-index: 10 ;
    visibility: visible ;
   
}
.modalContent{
    text-align: center;
    width: 60%;
    background-color: #18409A;
    padding: 2%;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    
}
.call-imge{
    width: 10%;
}
.modalContent input {
    border: none;
    outline: none;
    padding: 4px;
    border-radius: 7px;
}
.icon-close img {
    width: 3%;
    cursor: pointer;
}
.btn-request-modal {
    background-color: #ffffff !important;
    color:  #18409A !important;
    transition: all 0.5s ease-in-out;
    font-weight: 600 !important;
    position: relative;
}
.phone{
    width: 5% !important;
    animation: bounce 3s infinite; 
}
svg .line{
    animation: flash 3s  infinite;
}
.btn-request-modal:hover {
    animation: swing 1s;
}
@media screen and (max-width:996px){
    .modalContent{
        width: 100%;
    }
    .phone{
        width:8% !important;
    }
    .icon-close img {
        width: 8%;
        cursor: pointer;
    }
}