#app {
	height: 100%;
	overflow: hidden;
}

.ase-home-loading {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	user-select: none;
	color: #539fe5;
	background-color: #f2f2f2;
}

.ase-home-loading .loading {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.ase-home-loading .square {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
}

.ase-home-loading .square::before {
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 15%;
	border: 3px solid #539fe5;
}

.ase-home-loading .loading.animate .square::before {
	animation: square-animation 1.2s linear;
}

.ase-home-loading .loading.animate .square:nth-child(1)::before {
	animation-delay: calc(100ms * 1);
}

.ase-home-loading .loading.animate .square:nth-child(2)::before {
	animation-delay: calc(100ms * 2);
}

.ase-home-loading .loading.animate .square:nth-child(3)::before {
	animation-delay: calc(100ms * 3);
}

.ase-home-loading .loading.animate .square:nth-child(4)::before {
	animation-delay: calc(100ms * 4);
}

@keyframes square-animation {

	15%,
	55% {
		border-radius: 100%;
		width: 0;
		height: 0;
		margin: 5px;
		border-width: 5px;
	}

	70% {
		border-radius: 15%;
		width: 10px;
		height: 10px;
		margin: initial;
		border-width: 3px;
	}
}

.ase-home-loading .text {
	font-size: 22px;
	margin-top: 24px;
}

.ase-home-loading .text.animate2 {
	animation: text-animation 3s linear;
}

@keyframes text-animation {

	25% {
		margin-left: -20px;
	}

	75% {
		margin-left: 20px;
	}
}

#browserUpgrade {
	position: absolute;
	z-index: 1001;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	text-align: center;
	user-select: none;
	color: #3c92dd;
}

#browserUpgrade .title {
	margin: 60px 0 40px;
	font-size: 24px;
}

#browserUpgrade .browsers {
	display: inline-flex;
}

#browserUpgrade .browser {
	margin: 0 25px;
	cursor: pointer;
	text-decoration: none;
}

#browserUpgrade .browser-icon {
	width: 50px;
	height: 50px;
}

#browserUpgrade .browser-name {
	padding-bottom: 2px;
	color: #3c92dd;
	border-bottom: 1px solid transparent;
}

#browserUpgrade .browser:hover .browser-name {
	border-bottom-color: #3c92dd;
}

.ase-flex {
	display: flex;
}

.ase-small-padding-dialog .el-dialog__body {
	padding: 6px 15px 12px !important;
}

.ase-min-height-dialog-500 .el-dialog__body {
	min-height: 500px !important;
}

.ase-min-height-dialog-350 .el-dialog__body {
	min-height: 350px !important;
}

.ase-smart-object-padding-dialog .el-dialog__body {
	padding: 6px 15px 12px !important;
}

.ase-smart-object-padding-dialog .el-dialog__header {
	padding: 12px 0px !important;
}