﻿.la-line-scale-party,
.la-line-scale-party > div {
    position: relative;
    box-sizing: border-box;
}

.la-line-scale-party {
    display: block;
    font-size: 0;
    color: #fff;
    width: 40px;
    height: 32px;
    color: rgba(51, 51, 51, 0.8);
}

    .la-line-scale-party > div {
        display: inline-block;
        float: none;
        background-color: currentColor;
        border: 0 solid currentColor;
        width: 4px;
        height: 32px;
        margin: 0 2px;
        border-radius: 0;
        -webkit-animation-name: line-scale-party;
        animation-name: line-scale-party;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

        .la-line-scale-party > div:nth-child(1) {
            -webkit-animation-duration: 0.43s;
            animation-duration: 0.43s;
            -webkit-animation-delay: -0.23s;
            animation-delay: -0.23s;
        }

        .la-line-scale-party > div:nth-child(2) {
            -webkit-animation-duration: 0.62s;
            animation-duration: 0.62s;
            -webkit-animation-delay: -0.32s;
            animation-delay: -0.32s;
        }

        .la-line-scale-party > div:nth-child(3) {
            -webkit-animation-duration: 0.43s;
            animation-duration: 0.43s;
            -webkit-animation-delay: -0.44s;
            animation-delay: -0.44s;
        }

        .la-line-scale-party > div:nth-child(4) {
            -webkit-animation-duration: 0.8s;
            animation-duration: 0.8s;
            -webkit-animation-delay: -0.31s;
            animation-delay: -0.31s;
        }

        .la-line-scale-party > div:nth-child(5) {
            -webkit-animation-duration: 0.74s;
            animation-duration: 0.74s;
            -webkit-animation-delay: -0.24s;
            animation-delay: -0.24s;
        }

@-webkit-keyframes line-scale-party {
    0%, 100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.3);
    }
}

@keyframes line-scale-party {
    0%, 100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.3);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999 !important;
    background-color: rgb(255, 255, 255);
    position: absolute;
}

    .overlay > div:not(.loading-text) {
        top: 50%;
        left: 50%;
        margin: 0;
        position: absolute;
        transform: translate(-50%, -50%);
    }

.loading-text {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 99999 !important;
    font-family: Verdana;
    color: black;
}
