
.overflow-hidden {
    overflow: hidden;
}

.range-slider {
/* margin: 0 0 60px 0%; */
margin-left: 0%;
font-size: 1rem;
width: 100%;
}

.range-slider__range {
/* width: calc(100% - (73px)); */
width: calc(100% - (120px));
height: 1em;
border-radius: 1em;
background: #d7dcdf;
outline: none;
padding: 0;
margin: 0;
-webkit-appearance: none;
-moz-appearance: none;
    appearance: none;
}
.range-slider__range::-webkit-slider-thumb {
-webkit-appearance: none;
-moz-appearance: none;
    appearance: none;
width: 1.5em;
height: 1.5em;
border-radius: 50%;
background: #2c3e50;
cursor: pointer;
-webkit-transition: background .15s ease-in-out;
transition: background .15s ease-in-out;
margin-top: -0.5em;
}
.range-slider__range::-webkit-slider-thumb:hover {
background: #007bff;
}
.range-slider__range:active::-webkit-slider-thumb {
background: #007bff;
}
.range-slider__range::-moz-range-thumb {
width: 1.5em;
height: 1.5em;
border: 0;
border-radius: 50%;
background: #2c3e50;
cursor: pointer;
-moz-transition: background .15s ease-in-out;
transition: background .15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
background: #007bff;
}
.range-slider__range:active::-moz-range-thumb {
background: #007bff;
}
.range-slider__range:focus::-webkit-slider-thumb {
box-shadow: 0 0 0 3px #fff, 0 0 0 6px #007bff;
}

.range-slider__value {
display: inline-block;
position: relative;
/* width: 60px; */
width: 100px;
/* color: #fff; */
line-height: 1.5em;
text-align: center;
border-radius: 3px;
/* background: #2c3e50; */
background: #fff;
padding: 5px 10px;
margin-left: 8px;
}
.range-slider__value:after {
position: absolute;
top: 8px;
left: -7px;
width: 0;
height: 0;
/* border-top: 7px solid transparent;
border-right: 7px solid #2c3e50;
border-bottom: 7px solid transparent; */
border-top: 7px solid transparent;
border-right: 7px solid #fff;
border-bottom: 7px solid transparent;
content: '';
}

::-moz-range-track {
background: #d7dcdf;
border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
border: 0;
}

.form-control.error,
.custom-file-input.error ~ .custom-file-label {
border-color: #dc3545;
}
label.error {
color: #dc3545;
display: block;
width: 100%;
}






.loading-screen-wrappper {
	background-color: #000;
	position: fixed;
	height: 100%;
	width: 100vw;
	left: 0;
	top: 0;
	opacity: 0.7;
	z-index: 9999;
}

.loading-screen-container {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.loader-title {
	width: 300px;
	height: 50px;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	margin: auto;
	text-align: center;
}

.loader {
	border: 8px solid #f3f3f3;
	border-radius: 50%;
	border-top: 8px solid #0055FF;
	width: 50px;
	height: 50px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
	margin: auto;
}

/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}