/* --------------------- model dialog ---------------------*/
.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal h3 {
    margin-top: 0px;
}

.modal input,
.modal span {
    margin-top: 7px;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 280px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #aaa;
    float: right;
    font-size: 28px;
    line-height: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* -------------- modal -------------- */
.modal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.modal-row .modal-label {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    font-size: small;
    text-align: left;
    white-space: nowrap;
}

.modal-row .e-checkbox-wrapper,
.modal-row .button-group,
.modal-row .e-input-group {
    flex: 0 0 65%;
}

.modal-row .button-group {
    /* margin-top: 20px; */
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.modal-row button {
    width: 50%;
}


.input-error-parent .e-input-group {
    border: 1px solid red !important;
    background-color: rgb(252, 238, 238) !important;
}

.error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-align: left;
}