
.d-loading {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.d-loading:before {
	--alpha-change-color-light-1: inherit;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--alpha-change-color-light-1);
	opacity: .6;
}

.d-loading.small i {
	left: calc(50% - 10px);
	top: calc(50% - 10px);
	width: 20px;
	height: 20px;
}

.d-loading i {
	position: absolute;
	left: calc(50% - 17px);
	top: calc(50% - 17px);
	width: 34px;
	height: 34px;
	border: 2px solid transparent;
	border-top-color: var(--alpha-primary-color, #26c);
	border-radius: 50%;
	animation: spin .75s infinite linear;
}

.d-loading i:before {
	content: "";
	top: -2px;
	left: -2px;
	position: absolute;
	width: inherit;
	height: inherit;
	border: inherit;
	border-radius: inherit;
	animation: spin 1.5s infinite ease;
}

form.d-loading {
	opacity: .3;
}

.list-type-none {
	list-style: none;
	padding-left: 0;
}

.list-type-check {
	list-style: none;
	margin-left: 0;
}

.list-type-check li {
	position: relative;
	padding-left: 2em;
	margin-bottom: 1.1rem;
	line-height: 2;
}

.list-type-check li:before {
	position: absolute;
	display: block;
	left: 0;
	content: "";
	font-family: alpha;
	font-weight: 700;
}

.list-type-round-check li:before {
	content: "";
	font-family: alpha;
	font-size: 1.1em;
}

.divider {
	display: inline-block;
	vertical-align: middle;
	height: 2.5rem;
	width: 1px;
	background-color: var(--alpha-light-color);
}

.close-icon {
	display: block;
	position: relative;
	width: 1em;
	height: 1em;
	transform: rotateZ(45deg);
}

.close-icon:after, .close-icon:before {
	display: block;
	position: absolute;
	background-color: var(--alpha-change-border-color);
	content: "";
	transition: transform .3s;
}

.close-icon:before {
	height: .067em;
	width: 100%;
	left: 0;
	top: calc(50% - .033em);
}

.close-icon:after {
	height: 100%;
	width: .067em;
	top: 0;
	left: calc(50% - .033em);
}

a:hover>.close-icon:before {
	transform: rotate(-45deg);
}

a:hover>.close-icon:after {
	transform: rotate(45deg);
}
