div#custom_loading {
	position: fixed;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.9);
	top: 75px;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1000000000;
	display: none;
}

div#custom_loading.page_overlay {
    background-color: rgba(255, 255, 255, 1);
}

div#custom_loading.noheader {
	top: 0;
}

/*div#custom_loading .spinner {
	width: 48px;
    height: 48px;
    border: 5px solid #005ca9;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}*/

div#custom_loading .spinner,
.counters-container .counter .spinner {
	width: 48px;
    height: 48px;
    border: 5px solid #DDD;
    border-bottom-color: #295EB9;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

div#custom_loading .container {
	display: none;
}

div#custom_loading.page_overlay .container {
	display: block;
}

.shimming-pagetitle {
	width: 350px;
	height: 35px;
	background-color: #ddd;
	margin-top: 70px;
	border-radius: 20px;
}

.shimming-tabtitle {
	width: 200px;
	height: 30px;
	background-color: #ddd;
	border-radius: 20px;
	margin-top: 35px;
}

.shimming-col {
	display: flex;
	flex-flow: row;
	margin-left: 75px;
	margin-top: 70px;
}

	.shimming-col > div {
		flex-grow: 1;
	}

.shimming-fieldTitle {
	width: 200px;
	height: 15px;
	background-color: #ddd;
	border-radius: 20px;
	margin-top: 20px;
}

	.shimming-fieldTitle.long {
		width: 250px;
	}

.shimming-fieldValue {
	height: 10px;
	width: 150px;
	background-color: #ddd;
	border-radius: 20px;
	margin-top: 20px;
}

	.shimming-fieldValue.short {
		width: 130px;
	}

.shimmer {
	animation-duration: 2.2s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-name: shimmer;
	animation-timing-function: linear;
	background: #ddd;
	background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
	background-size: 1200px 100%;
}


@-webkit-keyframes shimmer {
	0% {
		background-position: -100% 0;
	}

	100% {
		background-position: 100% 0;
	}
}

@keyframes shimmer {
	0% {
		background-position: -1200px 0;
	}

	100% {
		background-position: 1200px 0;
	}
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 