﻿#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, #fcff00 , #3ec355);
    background-size: cover;
    margin-top: 0;
}

#loading-window {
    position: relative;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    padding: 40px 20px 20px 20px;
    box-sizing: border-box;
    text-align: center;
}

#loading-assistant {
    position: absolute;
    left: 50%;
    top: -80px;
    margin-left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #4c8e0e;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    background-image: url(../../img/assistant/assistant.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
}
#loading-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

#loading-picture {
    padding: 20px;
    background-image: url(../../img/loading/loader.gif);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
}