/* Overlay + modal basic */
.bodm-overlay {
    position: fixed;
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, .5);
    align-items: center;
    justify-content: center;
    z-index: 9999;
    overflow-y: auto;
}

.bodm-modal {
    background: #fff;
    width: 92%;
    max-width: 1069px;
    /* min-height: 90vh; */
    border-radius: 5px;
    overflow: auto;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .18);
    margin: 3% auto;
}   

.bodm-head {
  display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 18px;
    border-bottom: 1px solid #eef1f4;
    float: right;
    border: none;
    max-height: 10px;
    margin-top: 1%;
}

.bodm-title {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
}

.bodm-close {
    border: none;
    background: #f3f5f7;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.bodm-body {
    padding: 18px;
}

#bodmClose {
        border: none;
    color: black;
    /* background-color: #ffffff; */
    background-color: transparent;
    font-size: 29px;
    width: 40px;
    height: 40px;
    display: block;
    position: relative;
    padding: 1px;
}