.custom-modal {
    display: none;
}


.custom-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.custom-modal-inner {
    background: #fff;
    padding: 32px 36px;
    z-index: 150;
}

