input.uifontright, .font-right{
	text-align: right;
}
input.uifontleft, .font-left{
	text-align: left;
}


input.uiform{
	position: relative;
	display: inline-block;
	height: 32px;
	border: 1px solid #aaa;
	background-color: #d1d1d1;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	padding-right: 1px;
	padding-bottom: 1px; 
	padding-top: 1px;
	padding-left: 1px;
	margin-right: 0px;
	margin-bottom: 0px; 
	margin-top: 0px;
	margin-left: 0px;
}

input.uiform:hover,input.uiform:focus,.input.uiform:focus-visible,.input.uiform:active{
	-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 30%);
	box-shadow: 0 0 5px rgb(0 0 0 / 30%);
	border: 1px solid #5897fb;
	
}	


input.uiform:disabled {
	color: #566f81;
} 

input.greymark {
    background-color: #a3a3a3;
    border: 1px solid #585353;
}

input.redmark:disabled {
	color:red;
    background-color: #fecfcf;
    border: 1px solid #585353;
}

input.redmark {
	
    background-color: #fecfcf;
    border: 1px solid #585353;
}


textarea.uiform:disabled {
	color: #566f81;
} 

textarea.uiform{
	position: relative;
	display: inline-block;
/*	width:99.4%;*/
	height: auto;
	
	border: 1px solid #aaa;
	background-color: #d1d1d1;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	padding-right: 1px;
	padding-bottom: 1px; 
	padding-top: 1px;
	padding-left: 1px;
	margin-right: 0px;
	margin-bottom: 0px; 
	margin-top: 0px;
	margin-left: 0px;
}	

textarea.uiform:hover,textarea.uiform:focus,textarea.uiform:focus-visible,textarea.uiform:active{
	-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 30%);
	box-shadow: 0 0 5px rgb(0 0 0 / 30%);
	border: 1px solid #5897fb;
	
}	

select.uiform:disabled {
	color: #566f81;
} 

select.uiform{
	position: relative;
	border-radius: 0px;
	display: inline-block;
	vertical-align: middle;
/* 	height: 25px; */	
	border: 0px solid #aaa;
	background-color: #d1d1d1;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	padding-right: 1px;
	padding-bottom: 1px; 
	padding-top: 1px;
	padding-left: 1px;
	margin-right: 0px;
	margin-bottom: 0px; 
	margin-top: 0px;
	margin-left: 0px;
	/*-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	 border: none; */
	border: 1px solid #aaa;
    background-color: #d1d1d1;
    cursor: text;
    height: 32px;
}


select.uiform:hover,select.uiform:focus,select.uiform:active,select.uiform:focus-visible{
	/*
	-webkit-box-shadow: 0 0 5px rgb(0 0 0 / 30%);
	box-shadow: 0 0 5px rgb(0 0 0 / 30%);
	*/
	border: 1px solid #5897fb;

	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #747270;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #747270;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #747270;
}


td.uiform{
	height:32px;
}


/* checkbox switch */
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 28px;
	top: -4px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #16ff23;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	border: solid #BDBDBD 1px; 
	box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5)  ; 
	-webkit-box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5)  ; 
	-moz-box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5)  ; 
}

input:checked + .slider {
	/*#897575*/
	background-color: #b15353;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* checkbox switch ende */

/* The slider */
.slider_re {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #b15353;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider_re:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	border: solid #BDBDBD 1px; 
	box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5)  ; 
	-webkit-box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5)  ; 
	-moz-box-shadow: 0 2px 9px rgba(0, 0, 0, 0.5)  ; 
}

input:checked + .slider_re {
	/*#897575*/
	background-color: #16ff23;
}

input:focus + .slider_re {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider_re:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}




/* checkbox switch ende */

.display_hidden{
display:none !important;
}

.display_block{
display:block;
}





.buttoninline {
    padding: 5px;
    line-height: 19px;
}

