/*body unica-splash-screen {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background-color: #111827;*/
/*    color: #F9FAFB;*/
/*    z-index: 999999;*/
/*    pointer-events: none;*/
/*    opacity: 1;*/
/*    visibility: visible;*/
/*    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);*/
/*}*/

/*body unica-splash-screen img {*/
/*    width: 120px;*/
/*    max-width: 120px;*/
/*}*/

body unica-splash-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #232526;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #414345, #232526);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #414345, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    /* background: linear-gradient(180deg, rgba(58, 184, 238, 1) 0%, rgba(117, 90, 244, 1) 56%, rgba(132, 63, 244, 1) 100%); */
    color: #F9FAFB;
    z-index: 999999;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
body unica-splash-screen .splash-logo-wrp {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*max-width: 250px;*/
}

body unica-splash-screen img {
    width: 405px;
    /*max-width: 250px;*/
}

unica-splash-screen .splash-background {
    height: 100%;
    /* position: absolute; */
    object-fit: cover;

    width: 100%;
}

body unica-splash-screen .spinner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    width: 56px;
}

body unica-splash-screen .spinner > div {
    width: 12px;
    height: 12px;
    background-color: #1E96F7;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: unica-bouncedelay 1s infinite ease-in-out both;
    animation: unica-bouncedelay 1s infinite ease-in-out both;
}

body unica-splash-screen .spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

body unica-splash-screen .spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes unica-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }
    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes unica-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

body:not(.unica-splash-screen-hidden) {
    overflow: hidden;
}

body.unica-splash-screen-hidden unica-splash-screen {
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 1200px) {

    .splash-logo-wrp img {
        width: 70% !important;
    }

    .splash-logo-wrp .loading-video {
        width: 80px !important;
    }

    unica-splash-screen .splash-background {
    }

}
