﻿.ModalBackground {
    background-color: rgb(0 0 0 / 0.73);
    position: fixed;
    top: 0%;
    bottom: 0%;
    right: 0%;
    left: 0%;
    display: none;
}

    .ModalBackground.Active {
        display: block;
        animation-name: CentralModalBackgroundFadeIn;
        animation-duration: 0.3s;
        z-index: 50;
        opacity: 100%;
    }

@keyframes ModalBackgroundFadeIn {
    0% {
        opacity: 0;
        z-index: -100;
    }

    1% {
        opacity: 0;
        z-index: 100;
    }

    100% {
        z-index: 100;
        opacity: 100%;
    }
}

.ModalHeader{
    z-index:99999;
    position:sticky;
    top:0;
}

.ICModalContainer {
    width: auto;
    margin: 10px;
    height: 40px;
    z-index: 101;
}

.ICModalButton {
    position: absolute;
    top: 0%;
    right: 1%;
    bottom: 0%;
    height: 35px;
    width: 35px;
    font-size: 30px;
    color: #898989;
    padding-top: 7.5px;
    padding-left: 9.5px;
    margin: 5px;
    cursor: pointer;
}

