.offlineModal {
    position: fixed;
    width: 300px;
    height: 200px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 30px;
    font-size: 20px;
    left: 40%;
    background: #fff;
    text-align: center;
    top: 30%;
}

.offlineModalBG {
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0px;
    height: 100%;
    background: #F2F2F2;
}

@media (max-width:768px) and (min-width:320px) {
    .offlineModal {
        position: fixed;
        width: 100%;
        height: 200px;
        border: none;
        border-radius: 10px;
        padding: 0px;
        font-size: 20px;
        left: 0%;
        background: none;
        text-align: center;
        top: 30%;
    }
    .noInternetModal {
        background: #be1010;
        bottom: 0px;
        position: fixed;
        height: 70px;
        width: 100%;
        padding: 10px 20px;
        color: #FFF;
        z-index: 999999;
    }
    .noInternetModal .no-internet-icon-modal {
        position: absolute;
        left: 0px;
        width: 45px;
        height: 100px;
        top: 0px;
        background: #e97373 url('../../../assets/icon/no_network_icon.png') no-repeat 10px 25px;
        background-size: 25px;
    }
    .noInternetModal p.mainHeading {
        font-size: 16px;
        padding-bottom: 5px;
        font-weight: 400 !important
    }
    .noInternetModal p {
        padding: 3px;
        margin: 0px;
        font-size: 14px;
        text-align: left;
        padding-left: 50px;
        font-weight: 400;
    }
    .noInternetModal .clearInput {
        font-size: 40px !important;
        font-weight: 600;
        position: absolute;
        top: 15px;
        right: 20px;
        margin-top: 0px;
    }
}