﻿.loader-container {
    background-color:#FFFFFF;
    padding:32px 0px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
}

@media(max-width:996px) {
    .loader-container {
        padding: 20px 32px;
    }    
}

.loader-title {
    text-align:center;
    color: #53B6B7;
    font-size: 24px;
    line-height:24px;
}

.loader-progress {
    box-sizing:border-box;
    width: 25%;
}

.loader-progress-bar {
    height: 6px;
    background-color: #FFAF2B;
    animation-name:slide;
    animation-duration:15s;
}

@keyframes slide {
    0% {
        width: 0%;
    }

    30%, 60% {
        width: 50%;
    }

    70% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

.loader-animation {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width:380px;
    height:400px;
    overflow:hidden;
    gap:20px;
}

@media(max-width:996px) {
    .loader-animation {
        width: 300px;
        height: 350px;
    }
}

.loader-slide {
    animation: slide-in 1s forwards;
}

@keyframes slide-in {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slidetext {
    color: #53B6B7;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    vertical-align: text-top;
}

.loader-button {
    display: inline-block;
    padding: 20px 40px;
    background-color: #C3444C;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    text-align: center;
    font-size: 24px;
    line-height: 24px;
    color: #FFFFFF;
}