﻿.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loading-screen-content {
    position: relative;
    text-align: center;
}

.loading-image {
    width: 80px;
    height: 80px;
    /*width: 100%;
    height: 100%;*/
    /*border-radius: 50%;*/
    filter: drop-shadow(0px 5px 20px rgb(255, 255, 255))
}

.loading-circle {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin-top: -75px;
    margin-left: -75px;
    animation: spin 1s ease infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}