.loading-wrapper {
				position: fixed;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background: #fff;
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				z-index: 9999;
				color: #1677ff;
			}

			.loading-wrapper.hide {
				display: none;
			}

			.loader {
				width: 15px;
				aspect-ratio: 1;
				background: #1677ff;
				border-radius: 50%;
				animation: l6 1s infinite linear alternate;
			}
			@keyframes l6 {
				0% {
					box-shadow:
						15px 0,
						-25px 0;
				}
				50% {
					box-shadow:
						15px 0,
						-15px 0;
				}
				100% {
					box-shadow:
						25px 0,
						-15px 0;
				}
			}
