body {
    width: 100dvw;
    height: 100dvh;
}

main {
    width: 100%;
    height: 100%;
}

#loading-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#progress-container {
    width: 100%;
    height: 100%;
    background-color: #00205B;
    color: white;
    overflow: hidden;
}

#progress-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
  
.progress-circle-container {
    position: relative;
    width: 100px;
    height: 100px;
}

#circle-svg2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
  
#circle-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#circle-svg > circle {
    stroke-width: 20;
}

#circle-bg {
    fill: none;
    stroke: #eee;
    stroke-opacity: 0.2;
}
  
.circle-progress {
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;

    transform-origin: 50% 50%;
    transform: rotate(-90deg);

    transition: stroke-dashoffset 0.3s;
}
  
.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-family: Inter;
    font-size: 30px;
    font-weight: 400;
    line-height: 36.31px;
    text-align: center;
    animation-timing-function: linear;
}

#circle-orange {
    stroke: #EC6D20;
}

#circle-white {
    transform: rotate(0deg);
    animation: rotate-circle 2s linear infinite;
}

#circle-blue {
    stroke: #1A2BC3;
    transform: rotate(-25deg);
    animation: rotate-circle 4s linear infinite;
}

#circle-lightblue {
    stroke: #0085AD;
    transform: rotate(-45deg);
    animation: rotate-circle 10s linear infinite;
}

#circle-gradient {
    transform-origin: 50% 50%;
    transform: scale(0);
    transition: transform 0.3s;
}

@keyframes rotate-circle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
