.dash-loader { display: flex; align-content: center; justify-content: center; background-color: #BDDDF5; transition: 3s; z-index: 10; z-index:10; width:100%; height:100%; } .dash-loader-container { display: flex; flex-direction: column; justify-content: center; align-items: center; align-content: center; } .dash-progress-bar { width: 200px; height: 5px; align-self: center; margin-top: 20px; background-color: #ececec; border-radius: 5px; overflow: hidden; } .dash-progress { width: 0%; height: 20px; background-color: #4476F7; transition: 0.1s; } .dash-animation-container { width: fit-content; height: fit-content; padding: 20px; display: flex; align-items: center; justify-content: center; border-radius: 100%; background-color: #4476F7; justify-self: center; } .dash-loader-text { font-size: 15px; font-family: "Roboto"; font-weight: bold; text-align: center; color: #4476F7; user-select: none; -webkit-user-select: none; } .dash-d-path { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: dash-d-path 3s linear infinite; } @keyframes dash-d-path { 0% { stroke-dashoffset: 1000; } 20% { stroke-dashoffset: 0; } 70% { stroke-dashoffset: 0; } 90% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 1000; } }