﻿/*
    Loading video
*/

#videoBackgroundContainer {
    /*    height: 90vh;
    background-color: #fff;
    margin-left: -60px;
    transform: translateX(30px)*/
}

#videoContainerPreRender {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 675px;
    padding-left: -20px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: start;
    z-index: 0;
    background-color: #fff;
    animation: fade-in 0.5s linear 1;
    animation-delay: 0s;
}

#videoContainer {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 675px;
    padding-left: -20px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: start;
}

#backgroundVideo {
    width: 1200px;
    margin-left: 40px;
    /*animation: pop-out 0.5s linear 1;
    animation-delay: 4s;
    animation-fill-mode: forwards;*/
}

#videoMessage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    align-self: center;
    display: flex;
    transform: translate(-6px, 6px); /* Compensate for video being slightly off center */
}

    #videoMessage .e-spinner-inner {
        width: 230px;
        height: 230px;
        background-color: #2b2d43;
        border-radius: 50%;
        padding: 50px;
        padding-top: 30px;
        color: #fff;
        /*box-shadow: inset 0px 0px 10px 10px #62CC20;*/
        box-shadow: 0px 0px 10px 3px #2b2d43;
    }

        #videoMessage .e-spinner-inner .e-spin-label {
            color: #fff;
        }

.shadow-spin-loader {
    width: 250px;
    height: 250px;
    background: linear-gradient( 165deg, rgba(255, 255, 255, 1) 0%, rgb(220, 220, 220) 40%, rgb(170, 170, 170) 98%, rgb(10, 10, 10) 100% );
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    align-self: center;
    display: flex;
}

    .shadow-spin-loader:before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 100%;
        border-bottom: 0 solid #DE64AC05;
        box-shadow: 0 -10px 20px 20px #DE64AC40 inset, 0 -5px 15px 10px #DE64AC50 inset, 0 -2px 5px #DE64AC80 inset, 0 -3px 2px #DE64ACbb inset, 0 2px 0px #DE64AC, 0 2px 3px #DE64AC, 0 5px 5px #DE64AC90, 0 10px 15px #DE64AC60, 0 10px 20px 20px #DE64AC40;
        filter: blur(3px);
        animation: 2s rotate linear infinite;
    }

@keyframes rotate {
    100% {
        transform: rotate(360deg)
    }
}

.waves-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    margin-top: 200px;
    width: fit-content;
    align-self: center;
    display: flex;
    width: 250px;
    height: 250px;
    background-color: #DE64AC;
    border-radius: 50%;
    box-shadow: 0 0 30px 4px rgba(0, 0, 0, 0.5) inset, 0 5px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    color: #fff;
    transform: translateY(-50%);
}

    .waves-loader .e-spinner-inner .e-spin-label {
        color: #fff !important;
    }

    .waves-loader:before,
    .waves-loader:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 45%;
        top: -40%;
        background-color: #2B2D43;
        animation: wave 5s linear infinite;
    }

    .waves-loader:before {
        border-radius: 30%;
        background: rgba(255, 255, 255, 0.4);
        animation: wave 5s linear infinite;
    }

@keyframes wave {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
