/* filter pane: begin */

.btn-oval {
	border-radius: 100px;	
	background: #eee;
}
.pane-mask {
	display: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	z-index: 1500;
}

.pane-mask.show {
	display: block;
	opacity: 0.5;
}

/* filter pane: end */

.loading {
    position: absolute;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    opacity: 1;
}

.loader-inner {
    position: fixed;
    width: 100%;
    height: 100%;
    min-height: 47px;
    min-width: 47px;
}

.loader-image {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -23.5px 0 0 -23.5px;
}

.loader-shadow {
    position: relative;
    height: 47px;
}

.loading svg {
    position: relative;
    z-index: 10;
    height: 40px;
    -webkit-animation: bounce 0.5s cubic-bezier(0.51, 0.23, 0.02, 0.96) infinite;
    animation: bounce 0.5s cubic-bezier(0.51, 0.23, 0.02, 0.96) infinite;
}

.loader-shadow::after {
    position: absolute;
    bottom: 2px;
    left: 20px;
    display: block;
    width: 22px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    content: '';
    -webkit-animation: shadow .5s infinite;
    animation: shadow .5s infinite;
}
@keyframes bounce {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(0.95, 1.1) translateY(-8px);
        transform: scale(0.95, 1.1) translateY(-8px);
    }
}
@-webkit-keyframes bounce {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(0.95, 1.1) translateY(-8px);
        transform: scale(0.95, 1.1) translateY(-8px);
    }
}
@keyframes shadow {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(0.7, 1);
        transform: scale(0.7, 1);
        background: rgba(0, 0, 0, 0.05);
    }
}
@-webkit-keyframes shadow {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(0.7, 1);
        transform: scale(0.7, 1);
        background: rgba(0, 0, 0, 0.05);
    }
}

.loading.removed {
    opacity: 0;
    display: none;
}