
/* ===================================
# Upload
====================================== */

#dragDropArea:hover, 
#dragDropArea.dragover {
	transition: 0.3s ease-in-out;
}

#dragDropArea.dragover, 
div#dragDropArea.border-color-white:hover {
	border-color: rgb(255, 204, 46, 0.8) !important;
}

#dragDropArea:hover {
  background-color: rgb(255, 204, 46, 0.2);
}

#dragDropArea.dragover {
  background-color: rgb(255, 204, 46, 0.2);
}

/* ===================================
# Switch
====================================== */

.switch-field {
	display: flex;
	margin-bottom: 36px;
	overflow: hidden;
}

.switch-field input {
	position: absolute !important;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	width: 1px;
	border: 0;
	overflow: hidden;
}

.switch-field label {
	background-color: transparent;
	border: 2px solid var(--master-color);
	line-height: 1;
	text-align: center;
	padding: 20px 10px;
	margin-right: 10px;
	transition: all 0.1s ease-in-out;
	width: calc(50% - 1px);
	opacity: 0.9;
}

.switch-field label:hover {
	background-color: var(--master-color);
	cursor: pointer;
	opacity: 1;
}

.switch-field label:last-of-type {
	margin-right: 0;
}

.switch-field input:checked + label {
	background-color: var(--master-color);
	box-shadow: none;
	box-shadow: 0 0 15px var(--master-color);
	opacity: 1;
}

/* ===================================
# Range-Slider
====================================== */


.range-slider {
	margin: 20px 0 0 0%;
	width: 100%;
}

.range-slider__range {
	-webkit-appearance: none;
	width: calc(100% - 150px);
	height: 10px;
	border-radius: 0px;
	background: rgba(255,255,255,1);
	outline: none;
	padding: 0;
	margin: 0;
}

.range-slider input, .range-slider select {
	border-style: none !important;
	border-width: 0 !important;
}

.range-slider__range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background:  var(--master-color);
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
}

.range-slider__range::-webkit-slider-thumb:hover {
	background: var(--master-color);
}

.range-slider__range:active::-webkit-slider-thumb {
	background: var(--master-color);
}

.range-slider__range::-moz-range-thumb {
	width: 30px;
	height: 30px;
	border: 0;
	border-radius: 50%;
	background:  var(--master-color);
	cursor: pointer;
	-moz-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
}

.range-slider__range::-moz-range-thumb:hover {
	background: var(--master-color);
}

.range-slider__range:active::-moz-range-thumb {
	background: var(--master-color);
}

.range-slider__range:focus::-webkit-slider-thumb {
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--master-color);
}

.range-slider__value {
	display: inline-block;
	position: relative;
	width: 135px;
	color: #000;
	line-height: 30px;
	text-align: center;
	border-radius: 0px;
	background:  var(--master-color);
	padding: 5px 10px;
	margin-left: 20px;
}

.range-slider__value:after {
	position: absolute;
	top: 13px;
	left: -7px;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-right: 7px solid  var(--master-color);
	border-bottom: 7px solid transparent;
	content: "";
}

::-moz-range-track {
	background: white;
	border: 0;
}

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