.msg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.msg-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    font-size: 17px;
    max-width: 32%;
}

.msg-modal-normal {
    max-width: 32%;
}

.msg-modal-INF {
    width: 32%;
}

.msg-modal-top {
    padding: 5px 0px 5px 10px;
    background-color: white;
}

.msg-modal-middle {
    background-color: white;
    font-size: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px 20px 20px;
}

.msg-modal-middle-left {
    float: left;
}

.msg-modal-middle-right {
    float: right;
    padding: 0px 5px 0px 15px;
    display: inline-block;
    overflow: hidden;
    font-weight: bold;
}

.msg-modal-bottom {
    text-align: center;
    padding: 0px 20px 0px 20px;
    display: flex;
    justify-content: center;
    gap: 44px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.msg-modal-message {
    padding: 10px 5px 0px 10px;
    display: inline-block;
    overflow: hidden;
    font-weight: bold;
}

.msg-modal-button {
    border: 1px solid var(--grey);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 98px;
    height: 30px;
}

#msg-modalIcon {
    height: 43px;
    width: 43px;
    margin-top: 0px;
}

.msg-modal-button .cls_btnOk {   
    color: #fff;
    font-size: 15px;
}
    .cls_btnOk:hover {
        background-color: #0056b3;
    }

.msg-modal-button .cls_btnCancel {
    background-color: var(--grey-select-btn);
}
    .cls_btnCancel:hover {
        background-color: rgba(0, 0, 0, 0.2);
    }

.modal-middle-INF p {
    text-align: center;
}
