body.loading, body.loading html {
    height: 100%;
    margin: 0;
	background: url('../img/background-img.webp') no-repeat center center fixed;
    background-size: contain;
    overflow: hidden;
	 background-color: #000; 
}

body.loading #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.loading #loader {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #16a085;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

body.loading #loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    animation: spin-reverse .6s linear infinite;
}

body.loading #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    animation: spin 1s linear infinite;
}

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

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

body.loading .loading-title {
    text-align: center;
    font-size: 5em;
    margin: 0.5em 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body.loading .live, body.loading .map {
    font-size: 1.2em;
    -webkit-text-stroke: 1px #000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

body.loading .live {
    color: #FFC458;
}

body.loading .map {
    color: #D3D3D3;
}

body.loading #content {
    display: none;
}

body.loaded #loader-wrapper {
    visibility: hidden;
    transition: all 0.3s 1s ease-out;
}
