.jeels-modal[data-jeels-modal-open="true"] {
    display: flex;
}
.jeels-modal[data-jeels-modal-open="false"] {
    display: none;
}

.jeels-modal {
    pointer-events: auto;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    inset: 0;
    position: fixed;
    background-color: var(--jeels-background-color) !important;
    z-index: calc(var(--jeels-header-z-index) - 1);
}

.jeels-button--close {
    position: absolute;
    right: 10%;
    top: calc(var(--jeels-header-height) + 70px) !important;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.jeels-button--close svg {
    width: 2rem;
    height: 2rem;
    color: #000000;
}

.jeels-modal--section {
    margin-top: calc(var(--jeels-header-height) + 100px) !important;
    width: 90%;
    max-width: 500px;
    height: max-content;
    max-height: calc(100vh - var(--jeels-header-height) - 40px);
}

.jeels-modal--section .jeels-modal--content {
    padding: 20px 20px 2rem 20px;
    background: var(--jeels-background-color) !important;
}
