﻿/*.loading_bg {
    position: fixed;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999997;
    top: 0px;
    background-color: dimgray;
    opacity: 50%;
}

.loading-gif {
    background-color: transparent;*/
    /* background-image: url("../Content/loading.gif");*/
    /*content: url("../css/loading.gif");
    position: fixed;
    text-align: center;
    top: 36%;
    left: 46%;
    z-index: 999999;
    width: 8%;
    height: 17%;
    min-width: 10px;
}

.loadingDiv-parent {
    position: fixed;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999998;
}

.loadingDiv {
    position: fixed;
    text-align: center;
    top: 40%;*/
    /*left: 45%;*/
    /*z-index: 999999;
    width: 100%
}

    .loadingDiv .loading-image {
        display: block;
        margin: 25px 75px;
    }

#loadingscreen {
    display: none;
}

.noselect {
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#_modalTitle {
    float: left;
}

#_modalMessage {
    background-color: #000000bf;
}

#_modalForm {
    top: 25%;
    left: 25%;
    width: 50%;
    height: fit-content();
}

#_modalClose {
    float: right;
}*/


/*.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

    .modal-overlay.show {
        display: flex;
    }

.modal-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.modal-body {
    margin-top: 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    text-align: center;
}

    .modal-overlay.show {
        display: flex;
    }

.modal-content {
    background: transparent;
    padding: 0;
    box-shadow: none;
    max-width: none;
    animation: fadeIn 0.3s ease-out;
    height: 100%;
    justify-content: center;
    /*background-color: transparent !important;*/
    background: linear-gradient(180deg, #132a38, #0b1a24);
}

.mma-text-staggered{
    color: white !important;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.mma-letter {
    display: inline-block;
    animation: slideInPulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
    font-family: fangsong;
}

@keyframes slideInPulse {
    0% {
        opacity: 0;
        transform: translateX(-50px) rotateY(-90deg);
    }

    30% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }

    50% {
        opacity: 0.9;
        transform: translateX(0) rotateY(0deg) scale(1.1);
    }

    70% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }
}