/* The Modal (background) */
.loaderModal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

    /* Modal Content */
    .loaderModal .modal-content {
        min-width: 800px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: #297f9d;
        background-color: #fff;
        margin: auto;
        padding: 20px;
        border-radius: 5px;
        width: 50%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

@media (max-width: 767px) {
    .loaderModal .modal-content {
        min-width: auto;
        width: 80%;
    }
}

@keyframes flipAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.tee-animation {
    animation: flipAnimation 2s infinite;
    transform: translate(-50%, -50%);
    width: 100px; /* optional size */
}

.loaderModal .loader-body {
    display: flex;
    height: 100%
}
