@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

/*.modal-container {
    position: absolute;
    z-index: 1;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    background: transparent;
}*/


/*.modal-container {
    position: absolute;
    z-index: 1;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
    right: 0;
    width: 450px;
    height: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    background: transparent;
    border: none;
}*/

.modal-container {
    z-index: 2;
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: transparent;
}

#modal_content {
    width: 100%;
}

.modal-body {
    position: absolute;
    right: 0;
    z-index: 3;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    flex-direction: column;
    width: 450px;
    height: 100%;
    padding: 20px;
    background: #ffffff;
    border-top: 4px solid #91050c;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 5px 15px;
    margin-left: auto;
}

.modal-head {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    top: 0;
    margin: 0;
    padding: 5px;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #e1e1e1;
    background: transparent;
}

.modal-title {
    margin: 0 auto;
    color: #333333;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.modal-main {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    /* Show Scrollbar */
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}


/* Show Scrollbar */

.modal-main>* {
    display: block;
    min-height: 6vh;
}

.modal-main::-webkit-scrollbar {
    width: 6px;
}

.modal-main::-webkit-scrollbar-track {
    background: transparent;
}

.modal-main::-webkit-scrollbar-thumb {
    background-color: #90050b;
    border-radius: 20px;
}

@media only screen and (max-width: 992px) {
    .modal-container {
        width: 100%;
    }
    .modal-body {
        width: 100%;
        height: 100%;
        border-left: none;
        box-shadow: none;
    }
    .modal-backdrop {
        background-color: rgba(255, 255, 255, 0.9);
    }
}