.notifModal {
    position: fixed;
    background-color: #000000bd;
    width: 600px;
    height: 70px;
    border-radius: 5px;
    z-index: 100001202;
    left: 50%;
    transform: translate(-50%, 0);
    transition: 0.2s;
    overflow: hidden;
    padding: 0px 15px !important;
    bottom: -100vh;
    opacity: 1;
    color: white;
    text-wrap: pretty;
    text-align: center;
}

.fullModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding: 8px 8px;
    backdrop-filter: blur(2px);
    color: black;
    overflow: scroll;
}

.fullModal::-webkit-scrollbar {
    display: none;
}

.fullModal {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.XCloseBtn {
    cursor: pointer;
    user-select: none;
    font-weight: bold;
    font-size: larger;
    margin-top: -10px;

}

.confirmModal {
    z-index: 100000;
}

.optionSelected {
    background-color: rgba(78, 78, 78, 0.972);
    color: white;
}