/* static/css/tests/loading-screen-test.css */

/* Loading Test */

.loading-screen-test{
    display: none; /* Hides it initially */
    gap: 12px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

/* Loading bar styles */
.loading-container {
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.loading-bar-container {
    width: 100%;
    max-width: 300px;
    height: 10px;
    background-color: #ECF2FF;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.loading-bar {
    height: 100%;
    background-color: #274285;
    border-radius: 20px;
    width: 0%;
    position: absolute;
    left: 0;
    top: 0;
}

.loading-screen-icon{
    height: 60px;
    width: auto;
    transform: translatey(0px);
	animation: float 2s ease-in-out infinite;
}

.loading-screen-title{
    font-weight: 600;
    font-size: 20px;
    line-height: normal;
}

.loading-screen-small{
    color: grey;
    margin-bottom: 10px;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-10px);
	}
	100% {
		transform: translatey(0px);
	}
}