

.modalBody {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

.modalContent {
    position: absolute;
    z-index: 999999;
    background-color: #fff;
    text-align: center;
    width: 350px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
}

.modalBasic .modalContent {
    background-color: #fff;
}

.modalConfirm .modalContent {
    background-color: #fff;
}

.modalContent .modalTxt {
    margin: 50px 0px;
    font-size: 16px;
    word-break: keep-all;
    font-weight: bold;
}

.modalContent .modalClose {
    width: 60px;
    height: 36px;
    background-color: #12AFCB;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 36px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 4px;
}

.modalConfirm .modalContent .modalClose {
    background-color: #fff;
    border: 1px solid #ccc;
    color:#000;
    margin:unset;
}

.modalConfirm .modalContent .confirmBtn {
    width: 60px;
    height: 36px;
    background-color: #12AFCB;
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    border-radius: 4px;
    margin-right: 10px;
}

.modalConfirm .modalContent .btnRow {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

body.noscroll {
    overflow-y: hidden !important;
}



@media (min-width: 768px){
    .modal-dialog {
        width:950px ;
    }
}

