

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}







/* Checkbox */
.b-contain *, .b-contain *::before, .b-contain *::after {
	box-sizing: content-box !important;
}

.b-contain input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.b-contain span {
	line-height: 1.54;
	font-size: 17px;
	font-family: inherit;
	color:
}

.b-contain {
	display: table;
	position: relative;
	padding-left: 2.4rem;
	cursor: pointer;
	margin-bottom: .5rem;
}

.b-contain input[type="checkbox"] ~ .b-input {	
	position: absolute;
	top: 0;
	left: 0;
	height: 1.25rem;
	width: 1.25rem;
	background: rgba(241, 245, 248, 1);
	transition: background 250ms;
	border: 1px solid rgba(184, 194, 204, 1);
	border-radius: 0.125rem;
}

.b-contain input[type="radio"] ~ .b-input {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.25rem;
	width: 1.25rem;
	background: rgba(241, 245, 248, 1);
	transition: background 250ms;
	border: 1px solid rgba(184, 194, 204, 1);
	border-radius: 2.0rem;
}

.b-contain input[type="checkbox"] ~ .b-input::after {	
	content: '';
	position: absolute;
	display: none;
	left: .45rem;
	top: .18rem;
	width: .25rem;
	height: .6rem;
	border: solid rgba(255, 255, 255, 1);
	border-width: 0 2px 2px 0;
	transition: background 250ms;
	transform: rotate(45deg);
}

.b-contain input[type="radio"] ~ .b-input::after {
	content: '';
	position: absolute;
	display: none;
	left: .25rem;
	top: .25rem;
	width: .75rem;
	height: .75rem;
	border-radius: 2.0rem;
	background: rgba(255, 255, 255, 1);
	transition: background 250ms;
}

.b-contain input:disabled ~ .b-input::after {
	border-color: rgba(135, 149, 161, 1);
}

.b-contain input:checked ~ .b-input::after {
	display: block;
}

.b-contain:hover input ~ .b-input,
.b-contain input:focus ~ .b-input {
	background: rgb(231, 238, 243);
}

.b-contain input:focus ~ .b-input {
	box-shadow: 0 0 0 2px rgba(52,144,220,0.5);
}

.b-contain input:checked ~ .b-input {
	background: rgba(0, 130, 243, 1);
	border-color: rgba(0, 130, 243, 1);
}

.b-contain input[type="checkbox"]:disabled ~ .b-input {
	background: rgba(241, 245, 248, 1);
	border-color: rgba(184, 194, 204, 1);
	opacity: 0.6;
	cursor: not-allowed;
}

.b-contain input[type="radio"]:disabled ~ .b-input {
	background: rgba(241, 245, 248, 1);
	border-color: rgba(184, 194, 204, 1);
	opacity: 0.6;
	cursor: not-allowed;
}

.b-contain input[type="radio"]:disabled ~ .b-input::after {
	background: rgba(135, 149, 161, 1);
}

.b-contain input:checked:focus ~ .b-input, .b-contain:hover input:not([disabled]):checked ~ .b-input {
	background: rgba(13, 143, 255, 1);
	border-color: rgba(13, 143, 255, 1);
}

.b-contain .b-input::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 3rem;
	height: 3rem;
	margin-left: -0.85rem;
	margin-top: -0.85rem;
	background: rgba(0, 130, 243, 1);
	border-radius: 2rem;
	opacity: .6;
	z-index: 99999;
	transform: scale(0);
}

@keyframes b-ripple {
	0% {
		transform: scale(0);
	}

	20% {
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
  	}
}

@keyframes b-ripple-duplicate {
	0% {
		transform: scale(0);
	}

	30% {
		transform: scale(1);
	}

	60% {
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1);
  	}
}

.b-contain input + .b-input::before {
	animation: b-ripple 250ms ease-out;
}

.b-contain input:checked + .b-input::before {
	animation-name: b-ripple-duplicate;
}

.b-contain .b-input::before {
	visibility: hidden;
}

.b-contain input:focus + .b-input::before {
	visibility: visible;
}

.b-contain:first-child .b-input::before {
	visibility: hidden;
}







/* DropDown Selection */

.select-wrapper {
	font-size: 17px;
	position: relative;
	width: 100%;
}

.select-wrapper::before {
	color: #505050;
	font-size: 15px;
	pointer-events: none;
	position: absolute;
	right: 15px;
	top: 12px;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8nwYAAmoBZ0eMiB8AAAAASUVORK5CYII=) repeat;  
	border: 1px solid #BABABA;
	border-radius: 20px; 
	color: #505050;
	cursor: pointer;
	font-family: 'Mainfont-Medium';
	font-size: 17px;
	height: 40px;
	outline: none;
	padding-left: 12px;
	width: 100%;
	background:#FBFBFB;
}

select option {
	color: #505050;
}

select::-ms-expand {
	display: none;
}

select:focus::-ms-value {
	background-color: transparent;
}

select:focus{	
	outline: none;
	box-shadow: rgba(22,84,167, 1.0) 2px 2px, rgba(78,125,188, 0.7) 4px 4px, rgba(138,169,211, 0.5) 6px 6px, rgba(195,211,232, 0.5) 8px 8px;
	transition: all 0.3s ease-out;	
}






/* Allgemein */

.input-element-singleframe{		
	width:100%;
	border: 0px solid #BABABA;
	padding-left:0px;	
	padding-right:0px;
	padding-bottom:25px;
}




.input-element-text{
	font-size:14px;
	padding:5px 0px;
	font-family: 'Mainfont-Medium';	
}


.input-element-input{
	-moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
	width:100%;
	height:40px;
	border: 1px solid #BABABA;
	border-radius:20px;
	background:#FBFBFB;	
	font-size:17px;	
	font-family: 'Mainfont-Medium';
	color: #505050;
	padding-left:12px;
}


.input-centered{
	padding:0px 0px;
	padding-left:0px;
	text-align:center;	
	font-family: 'Mainfont-Medium';
	color:#000000;
	width:60px;
	font-size:20px;	
}

.input-code{
	max-width:45px;
}


.input-element-textarea{
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width:100%;
	height:200px;
	border: 1px solid #BABABA;
	border-radius:20px;
	background:#FBFBFB;	
	font-size:17px;
	padding:10px;
	font-family: 'Mainfont-Medium';
	color: #505050;
	padding-left:10px;
	line-height:1.6em;
}

.textarea-short{
	max-height:100px;
}



::placeholder {
  color: #C1C1C1;
  opacity: 0.8; /* Firefox */
}


.input-element-option-singleframe{
	border-radius: 20px;
	padding:15px 10px 5px;
	border: 1px solid #BABABA;
	border-radius:18px;
	background:#FBFBFB;		
}

.input-element-options-text{
	font-family: 'Mainfont-Medium';
	font-size:17px;
}







.input-element-input:focus{	
	outline: none;
	box-shadow: rgba(22,84,167, 1.0) 2px 2px, rgba(78,125,188, 0.7) 4px 4px, rgba(138,169,211, 0.5) 6px 6px, rgba(195,211,232, 0.5) 8px 8px;
	transition: all 0.3s ease-out;	
}





.input-element-textarea:focus{	
	outline: none;
	box-shadow: rgba(22,84,167, 1.0) 2px 2px, rgba(78,125,188, 0.7) 4px 4px, rgba(138,169,211, 0.5) 6px 6px, rgba(195,211,232, 0.5) 8px 8px;
	transition: all 0.3s ease-out;	
}













/* DropDown Ajax */
.ajax-select-box {
	position: absolute;
	width:calc(100% - 20px);		
	background:#000000;	
	border-radius: 20px 20px 20px 20px;
	z-index:1;		
	display:none;
	transition: all 0.3s ease-out;
}



.ajax-select-box-heading {
	padding:10px;
	color:#FAFAFA;
	font-family: 'Mainfont-Medium';
	font-size:16px;
	line-height:1.2em;
}



hr.select-box-separatorline1{
	border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom:1px solid rgba(255, 255, 255, 0.5);	
}



.ajax-select-box-elements{
	-ms-flex-direction: column;
    flex-direction: column;
	max-height:150px;
	overflow-y: auto;	
}





.select-box-element{
	padding:10px;
	color:#909090;
	font-family: 'Mainfont-Regular';
	font-size:17px;
	line-height:1.2em;	
	border-top:0.5px solid rgba(255, 255, 255, 0.2);
	border-bottom:0.5px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px 20px 20px 20px;
}


.hover-element{
	cursor:pointer;
}



.hover-element:focus, .hover-element:hover{	
	background:#303030;
	color:#FAFAFA;
	border-top:0.5px solid #1050A5;
	border-bottom:0.5px solid #1050A5;	
	transition: all 0.3s ease-out;
}








/* Range Selector */

input[type=range] {
  -webkit-appearance: none;
  margin: 10px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 4px #000000;
  background: #0d1115;
  border-radius: 5px;
  border: 0px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 1px #000000;
  border: 0px solid #000000;
  height: 30px;
  width: 15px;
  border-radius: 5px;
  background: #1050A5;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #0d1115;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 4px #000000;
  background: #0d1115;
  border-radius: 5px;
  border: 0px solid #000000;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 1px #000000;
  border: 0px solid #000000;
  height: 30px;
  width: 15px;
  border-radius: 5px;
  background: #1050A5;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #0d1115;
  border: 0px solid #000000;
  border-radius: 10px;
  box-shadow: 1px 1px 4px #000000;
}
input[type=range]::-ms-fill-upper {
  background: #0d1115;
  border: 0px solid #000000;
  border-radius: 10px;
  box-shadow: 1px 1px 4px #000000;
}
input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 1px #000000;
  border: 0px solid #000000;
  height: 30px;
  width: 15px;
  border-radius: 5px;
  background: #1050A5;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #0d1115;
}
input[type=range]:focus::-ms-fill-upper {
  background: #0d1115;
}







/*Tablet View*/
@media (min-width: 768px){	

/* checkbox */
.b-contain span {	
	font-size: 18px;
}




/*Select*/
select {
	height: 46px;
	border-radius: 23px; 
	font-size: 18px;
	padding-left:12px;
}


select:focus{		
	box-shadow: rgba(22,84,167, 1.0) 3px 3px, rgba(78,125,188, 0.7) 6px 6px, rgba(138,169,211, 0.5) 9px 9px, rgba(195,211,232, 0.5) 12px 12px;	
}



.select-wrapper::before {
	font-size: 18px;
	top: 14px;
}



/* Allgemein */
.input-element-singleframe{	
	padding-left:0px;	
	padding-right:0px;
}


.input-element-text{
	font-size:16px;
}


.input-element-input{
	height:46px;
	font-size:18px;
	border-radius:23px;
	padding-left:12px;
}


.input-centered{
	padding:0px 0px;
	padding-left:0px;
	text-align:center;	
	font-family: 'Mainfont-Medium';
	color:#000000;
	width:70px;
	font-size:22px;	
}

.input-code{
	max-width:55px;
}



.input-element-textarea{
	height:250px;
	font-size:18px;
	border-radius:23px;
	padding-left:12px;
}


.textarea-short{
	max-height:150px;
}


.input-element-input:focus{	
	outline: none;
	box-shadow: rgba(22,84,167, 1.0) 3px 3px, rgba(78,125,188, 0.7) 6px 6px, rgba(138,169,211, 0.5) 9px 9px, rgba(195,211,232, 0.5) 12px 12px;
	transition: all 0.3s ease-out;	
}



.input-element-textarea:focus{	
	outline: none;
	box-shadow: rgba(22,84,167, 1.0) 3px 3px, rgba(78,125,188, 0.7) 6px 6px, rgba(138,169,211, 0.5) 9px 9px, rgba(195,211,232, 0.5) 12px 12px;
	transition: all 0.3s ease-out;	
}


.input-element-option-singleframe{	
	border-radius:23px;			
}


.input-element-options-text{	
	font-size:18px;
}
	



.ajax-select-box {
	position: absolute;
	width:calc(100% - 30px);	
	min-height:46px;	
	border-radius: 23px 23px 23px 23px;
}




.ajax-select-box-heading {
	padding:12px;	
	font-size:17px;
	
}




hr.select-box-separatorline1{
    border-top: 1.5px solid rgba(0, 0, 0, 0.1);
    border-bottom:1.5px solid rgba(255, 255, 255, 0.5);	
}



.ajax-select-box-elements{	
	max-height:250px;		
}



.select-box-element{
	padding:12px;	
	font-size:17px;	
	border-radius: 23px 23px 23px 23px;
}





input[type=range]::-webkit-slider-runnable-track {
  height: 13px;
}
input[type=range]::-webkit-slider-thumb {
  height: 30px;
  width: 17px;
  margin-top: -7.5px;
}



}









@media (min-width: 1024px){		

/*Checkox */
.b-contain span {	
	font-size: 18px;
}


/*Select*/
select {
	height: 50px;
	border-radius: 25px; 
	font-size: 18px;
	padding-left: 15px;
}

select:focus{		
	box-shadow: rgba(22,84,167, 1.0) 4px 4px, rgba(78,125,188, 0.7) 8px 8px, rgba(138,169,211, 0.5) 12px 12px, rgba(195,211,232, 0.5) 15px 15px;	
}


.select-wrapper::before {
	font-size: 20px;	
	top: 15px;
}


/* Allgemein */
.input-element-singleframe{	
	padding-left:0px;	
	padding-right:0px;
}


.input-element-text{
	font-size:17px;
}


.input-element-input{	
	height:50px;
	font-size:19px;
	border-radius:25px;
	padding-left:15px;
}



.input-centered{
	padding:0px 0px;
	padding-left:0px;
	text-align:center;	
	font-family: 'Mainfont-Medium';
	color:#000000;
	width:80px;
	font-size:23px;	
}


.input-code{
	max-width:60px;
}




.input-element-input:focus{	
	outline: none;
	box-shadow: rgba(22,84,167, 1.0) 4px 4px, rgba(78,125,188, 0.7) 8px 8px, rgba(138,169,211, 0.5) 12px 12px, rgba(195,211,232, 0.5) 15px 15px;
	transition: all 0.3s ease-out;	
}



.input-element-textarea:focus{	
	outline: none;
	box-shadow: rgba(22,84,167, 1.0) 4px 4px, rgba(78,125,188, 0.7) 8px 8px, rgba(138,169,211, 0.5) 12px 12px, rgba(195,211,232, 0.5) 15px 15px;
	transition: all 0.3s ease-out;	
}


.input-element-textarea{
	height:300px;
	font-size:19px;
	border-radius:25px;
	padding-left:15px;
}

.textarea-short{
	max-height:180px;
}

.input-element-options-text{	
	font-size:19px;
}


.input-element-option-singleframe{	
	border-radius:25px;			
}



.ajax-select-box {
	position: absolute;
	min-height:50px;
	
	width:calc(100% - 36px);
	border-radius: 25px 25px 25px 25px;	
}




.ajax-select-box-heading {
	padding:12.5px;	
	font-size:18px;	
}

hr.select-box-separatorline1{
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    border-bottom:2px solid rgba(255, 255, 255, 0.5);	
}

.ajax-select-box-elements{	
	max-height:300px;		
}


.select-box-element{
	padding:12.5px;	
	font-size:19px;	
	border-radius: 25px 25px 25px 25px;	
}




}


