/**
 * Overlay Body Css
 */
.tmw-overlay-body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
    transition: opacity 0.2s ease-in-out;
}

/**
 * TMW Modal Styles
 */
.tmw-modal-box {
    width: 100%;
    max-height: 75%;
    overflow-y: scroll;
    position: fixed;
    position-area: end;
    background: white;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    border-radius: 20px 20px 0 0;
    animation: slide-up 0.3s ease-out;
    /*transition: opacity 0.2s ease-in-out;*/
}.tmw-modal-box .modal-header {
    top: 0;
    height: 55px;
    position: sticky;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 1px solid;
    z-index: 1;
}.tmw-modal-box .modal-header h3 {
    margin: 0;
    font-size: 125%;
}.modal-content {
    padding: 10px 15px;
}.tmw-modal-box p {
    margin: 0;
}.tmw-modal-open {
    cursor: pointer;
}
@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/**
 * Popup css for Mobile Devices
 */
@media (min-width: 500px) {
    .tmw-modal-box {
        max-width: 500px;
        max-height: 375px;
        position-area: center;
        border-radius: 15px;
    }
}
