/* RANGE INPUT */

input[type='range'] {
	height: 24px;
	appearance: initial;
	-webkit-appearance: none;
	margin: 10px 0;
}
input[type='range']:focus {
	outline: none;
}
input[type='range']::-webkit-slider-runnable-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	animation: 0.2s;
	box-shadow: 0px 0px 0px #000000;
	background: #0063bd;
	border-radius: 0px;
	border: 0px solid #000000;
}
input[type='range']::-webkit-slider-thumb {
	box-shadow: 0px 0px 0px #0063bd;
	border: 0px solid #0063bd;
	height: 18px;
	width: 18px;
	border-radius: 50px;
	background: #0063bd;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -6px;
}
input[type='range']:focus::-webkit-slider-runnable-track {
	background: #0063bd;
}

input[type='range']::-webkit-slider-runnable-track::before {
	content: attr(value);
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	padding: 5px 10px;
	background-color: #fff;
	border: 2px solid #000;
	border-radius: 5px;
	white-space: nowrap;
}

input[type='range']::-moz-range-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	animation: 0.2s;
	box-shadow: 0px 0px 0px #000000;
	background: #0063bd;
	border-radius: 0px;
	border: 0px solid #000000;
}
input[type='range']::-moz-range-thumb {
	box-shadow: 0px 0px 0px #0063bd;
	border: 0px solid #0063bd;
	height: 18px;
	width: 18px;
	border-radius: 50px;
	background: #0063bd;
	cursor: pointer;
}
input[type='range']::-ms-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	animation: 0.2s;
	background: transparent;
	border-color: transparent;
	color: transparent;
}
input[type='range']::-ms-fill-lower {
	background: #0063bd;
	border: 0px solid #000000;
	border-radius: 0px;
	box-shadow: 0px 0px 0px #000000;
}
input[type='range']::-ms-fill-upper {
	background: #0063bd;
	border: 0px solid #000000;
	border-radius: 0px;
	box-shadow: 0px 0px 0px #000000;
}
input[type='range']::-ms-thumb {
	margin-top: 1px;
	margin-left: -50px;
	box-shadow: 0px 0px 0px #0063bd;
	border: 0px solid #0063bd;
	height: 18px;
	width: 18px;
	border-radius: 50px;
	background: #0063bd;
	cursor: pointer;
}
input[type='range']:focus::-ms-fill-lower {
	background: #0063bd;
}
input[type='range']:focus::-ms-fill-upper {
	background: #0063bd;
}

input[type='range']::before {
	content: '';
	position: absolute;
	top: 6px;
	background-color: #0063bd;
	width: 2px;
	height: 12px;
}

input[type='range']::after {
	content: '';
	position: absolute;
	top: 6px;
	right: 0;
	background-color: #0063bd;
	width: 2px;
	height: 12px;
}

.range-wrap {
	position: relative;
}

#salaryExpectationsValue {
	min-width: 4rem;
	top: 4.5rem;
	margin-left: 1rem;
	color: black;
	margin-bottom: 3rem;
	position: absolute;
	border-radius: 4px;
	left: 50%;
	transform: translateX(-50%);
}
#salaryExpectationsValue::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 2px;
	top: -1px;
	left: 50%;
}

/* RADIO INPUT */

.radio {
	margin-right: 1rem;
	width: 1.5rem;
	height: 1.5rem;
}

input[type='radio'] {
	cursor: pointer;
	display: grid;
	place-content: center;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	color: #0063bd;
	border: 2px solid #0063bd;
	width: 1.5em;
	height: 1.5em;
	border-radius: 50%;
	transform: translateY(-0.075em);
}

input[type='radio']::before {
	content: '';
	width: 0.85em;
	height: 0.85em;
	border-radius: 50%;
	transform: scale(0);
	transition: 200ms ease-in-out;
	box-shadow: inset 1em 1em #0063bd;
}

input[type='radio']:checked::before {
	transform: scale(1);
}
input[type='radio']:hover {
	border-color: #5e9fdc;
}
input[type='radio']:hover::before {
	box-shadow: inset 1em 1em #5e9fdc;
}

/* CHECKBOX */

.checkbox {
	margin-right: 1rem;
	width: 1.5rem;
	height: 1.5rem;
}
input[type='checkbox'] {
	cursor: pointer;
	display: grid;
	place-content: center;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	color: #0063bd;
	width: 1.5em;
	height: 1.5em;
	border: 2px solid #0063bd;
	transform: translateY(-0.075em);
}

input[type='checkbox']::before {
	content: '';
	width: 0.75em;
	height: 0.75em;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em #0063bd;
	transform-origin: bottom left;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
input[type='checkbox']:checked::before {
	transform: scale(1);
}

input[type='checkbox']:hover {
	border-color: #5e9fdc;
}
input[type='checkbox']:hover::before {
	box-shadow: inset 1em 1em #5e9fdc;
}
