//@import "../../../abstracts/abstracts";

.modal-dialog-loading {
	background-color: color(default-background);
	-webkit-border-bottom-right-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	z-index: 999;
}

.loading-view {
	border-radius: $border-radius-default;
	background-color: $loader-background !important;
}
.dbq-loading-spinner-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	float: left;
	z-index: 999;
	background: $loader-background;
	border-radius: $border-radius-default;

}
.modal,
.dbq-popup {
	.dbq-loading-spinner-container {
		border-radius: 0 0 $border-radius-default $border-radius-default;
	}
}
.dbq-loading-spinner {
	float: left;
	width: 100px;
	height: 100px;
	z-index: 999;
	position: relative;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: $loader-image;
	background-repeat: no-repeat;
	background-size: 100px 100px;
}