.disable-scroll{
    overflow: hidden;
}
#circle-loader-cont {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000007a;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
	/****** center box
	width: 300px;
	height: 300px;
	border: solid 1px #aaa;
	******/
}
#circle-loader-cont.show {
    display: flex;
}
.loader-circle-7 {
	position: relative;
	width: 70px;
	height: 70px;
	display: inline-block;
}
.loader-circle-7:before,
.loader-circle-7:after {
	content: "";
	display: block;
	position: absolute;
	border-width: 4px;
	border-style: solid;
	border-radius: 50%;
	width: 70px;
	height: 70px;
	border-color: #22b3c1;
	top: 0;
	left: 0;
}
.loader-circle-7:before {
	animation: loader-circle-7-scale 1s linear 0s infinite;
}
.loader-circle-7:after {
	opacity: 0;
	animation: loader-circle-7-scale 1s linear 0.5s infinite;
}
@keyframes loader-circle-7-scale {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(0.7);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}