﻿.Modal {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 34249320342;
    width: 100%;
    height: 100%;
    padding-top: 100px;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: 0.5s;
    overflow: auto;
    transition: all 0.3s linear;
}


.ModalOpen {
    overflow: hidden;
}

.model-full-width {
    width: auto;
    padding: 0 8%;
}

.is-hidden {
    display: none;
}

.is-visuallyHidden {
    opacity: 0;
}

.fullDiv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* Ensure it's on top */
}

.processDiv {
    text-align: center;
}

.icon-spinner2 {
    font-size: 6rem;
    color: #178076;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}