﻿

.ModalBackground.MicroModalBackground {
    z-index: 250 !important;
}


.MicroModal {
    background-color: white;
    z-index: 300;
    transition: 0.3s ease-in-out;
    border-radius: 4px;
    transform: scale(0);
    min-height: 150px;
    max-height: 98%;
    width: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    cursor: default;
    position: fixed;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-top: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;

}

    .MicroModal.Active {
        opacity: 100;
        transition: 0.3s ease-in-out;
        transform: scale(1);
    }

div.MicroModal::-webkit-scrollbar {
    width: 7px;
}

div.MicroModal::-webkit-scrollbar-track {
    width: 5px;
    background: #c1c1c1;
    border-radius: 10px;
}

div.MicroModal::-webkit-scrollbar-thumb {
    width: 5px;
    background: #898989;
    border-radius: 10px;
}

.MicroModalContentContainer {
    position: relative;
    pointer-events: none;
}

.MicroModalHeader {
    position: sticky;
    cursor: pointer;
    top: 0.5%;
    /*height: 40px;*/
}


.MicroModalCloseButton {
    z-index: 350;
    padding-right: 10px;
    position: absolute;
    text-align: center;
    height: 20px;
    width: 20px!important;
    padding: 5px;
    font-size: 14px;
    color: #898989;
    cursor: pointer;
    right: 0;
    top: 0;
    margin-top: 5px;
    margin-right: 5px;
    pointer-events: all;
    /*border-radius: 180px;
    padding-left: 3.45px;
    padding-top: 2px;
    border-color: #898989;
    border-width: 2px;
    border-style: solid;*/
}

.MicroModalContent {
    pointer-events: all;
}

.MicroModalContentLoading {
    top: 5%;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
}
