.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.014);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.modal-header {
    display: flex;
    height: 35px;
}

.modal-title {
    width: 90%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    font-size: 25px;
    color: rgba(0, 0, 0, 0.87);
    margin-left: 10px;
}

.modal-body {
    width: 100%;
}

.modal-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 20px 2px;
}

.modal {

    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.26);
}

.modal-close-wrapper {
    width: 50px !important;
}

.modal-close-btn {
    font-size: 35px;
    margin-top: -4px;
    float: right;
    background: none;
    border: none;
    cursor: pointer;
    color: #979797
}