/* Maintenance Mode Styles */
.ve-maintenance-body {
    text-align: center;
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    color: #fff;
    font-family: Helvetica, Arial, sans-serif;
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    -webkit-animation: ve-gradient 15s ease infinite;
    -moz-animation: ve-gradient 15s ease infinite;
    animation: ve-gradient 15s ease infinite;
}

.ve-maintenance-center-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.ve-maintenance-wrap h1 {
    font-size: 3vh;
    font-weight: 700;
    margin: 0 0 3vh;
}

.ve-maintenance-wrap h2 {
    font-size: 2vh;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 2vh;
}

.ve-maintenance-wrap p {
    font-size: 1.5vh;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 2vh;
}

.ve-maintenance-wrap a,
.ve-maintenance-wrap div {
    font-size: 1vh;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 2vh;
    color: #fff;
}

dotlottie-player {
    display: block;
    margin: 0 auto;
    padding: 0;
}

/* Animations */
@-webkit-keyframes ve-gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes ve-gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes ve-gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}