/* START Input Label */

.trnBtn
{
	width:auto;
	height:40px;
	line-height:40px;
	padding:0 10px 0 10px;
	background-color:transparent;
	border:none;
	font-weight:bold;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;	
}

.trnActiveBtn
{
	color:#FFF;
	background-color:#000;
}

.trnRightContent .trnForm
{
	padding:15px 0 15px 0;
}

.form
{
	margin: 0 auto;
	font-family: sans-serif;
	background: #fff
}

.form-item
{
	position: relative;
}

.form-item input
{
	width:100%;
	height: 40px;
	display: block;
	background: transparent;
	padding: 0 15px;	
	border:1px solid #CCC;	
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;			
}

.form-item input:focus
{
	outline:none !important;
}

.form-item label
{
	position: absolute;
	cursor: text;
	z-index: 999;
	top: 13px;
	left: 10px;
	font-size: 12px;
	font-weight: bold;
	background: #fff;
	padding: 0 10px;
	color: #999;
	transition: all .3s ease
}

.form-item input:focus + label,
.form-item input:valid + label,
.form-item input:hover + label
{
	font-size: 11px;
	top: -5px
}

.form-item input:focus + label
{
	/*color: blue*/
}
/* ##### END Input Label ##### */


/* ##### START textarea Label ##### */
.form-item textarea
{
	display: block;
	width:100%;
	height: 80px;
	background: transparent;
	border: solid 1px #CCC;
	transition: all .3s ease;			
	padding:20px 15px 15px 15px;
}

.form-item textarea:focus
{
	outline:none !important;
}

.form-item textarea:focus + label,
.form-item textarea:valid + label,
.form-item textarea:hover + label
{
	font-size: 11px;
	top: -5px
}


.form-item .trnEditor
{
	height:300px;
	overflow:auto;
}


/* ##### END textarea Label ##### */



/* ##### START Select Label ##### */
.form-item select
{
	display: block;
	width:100%;
	height: 40px;
	background: transparent;
	border: solid 1px #CCC;
	transition: all .3s ease;
	padding: 0 15px
}

.form-item select:focus
{
	outline:none !important;
}

.form-item select:focus + label,
.form-item select:valid + label,
.form-item select:hover + label
{
	font-size: 11px;
	top: -5px
}

/* ##### END Select Label ##### */


/* START Light Form*/

.trnLightForm ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #FFF;
}
.trnLightForm ::-moz-placeholder { /* Firefox 19+ */
	color: #FFF;
}
.trnLightForm :-ms-input-placeholder { /* IE 10+ */
	color: #FFF;
}
.trnLightForm :-moz-placeholder { /* Firefox 18- */
	color: #FFF;
}

.trnLightForm .form-item label
{
	color:#666;
	background: #CCCCCC;
}

.trnLightForm  input
{
	border:1px solid #FFF;
}

.trnLightForm .form-item select
{
	display: block;
	width:100%;
	height: 40px;
	background: #CCCCCC;
	color:#666;
	border: solid 1px #FFF;
	transition: all .3s ease;
	padding: 0 15px
}

.trnLightForm .form-item select:focus
{
	outline:none !important;
}

.trnLightForm .form-item select:focus + label,
.trnLightForm .form-item select:valid + label,
.trnLightForm .form-item select:hover + label
{
	font-size: 11px;
	top: -5px
}

/* ##### END Light Form ##### */




/* START Dark Form*/

.trnDarkForm ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #000;
}
.trnDarkForm ::-moz-placeholder { /* Firefox 19+ */
	color: #000;
}
.trnDarkForm :-ms-input-placeholder { /* IE 10+ */
	color: #000;
}
.trnDarkForm :-moz-placeholder { /* Firefox 18- */
	color: #000;
}

.trnDarkForm .form-item label
{
	background: #FFF;
}

.trnDarkForm .form-item input
{
	color:#999;
	border:1px solid #999;
}
/* ##### END Dark Form ##### */



/* START On-Off Button*/
.switchLbl
{
	height: 30px;
	line-height: 30px;
	text-align:right;
}
.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
	float:right;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.btnSlider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;	
}

.btnSlider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;	
}

.switch input.default:checked + .btnSlider {
	background-color: #444;
}
.switch input.primary:checked + .btnSlider {
	background-color: #CCCCCC;
}
.switch input.success:checked + .btnSlider {
	background-color: #8bc34a;
}
.switch input.info:checked + .btnSlider {
	background-color: #3de0f5;
}
.switch input.warning:checked + .btnSlider {
	background-color: #FFC107;
}
.switch input.danger:checked + .btnSlider {
	background-color: #f44336;
}

.switch input:focus + .btnSlider {
	box-shadow: 0 0 1px #CCCCCC;
}

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

/* Rounded sliders */
.btnSlider.round {
	border-radius: 34px;
}

.btnSlider.round:before {
	border-radius: 50%;
}
/* ##### END On-Off ButtonBitti #####*/


/* START Radio/Checkbox */
.trnRadioBtn {
	margin: 0;
}

.trnRadioBtn input[type="radio"] {
	opacity: 0;
	position: fixed;
	width: 0;
}

.trnRadioBtn label {
	height:38px;
	line-height:38px;
    display: inline-block;
    background-color: #999999;
	color:#FFF;
    padding: 0 10px 0 10px;
    border: none;
	cursor:pointer;
	border-radius:0;
	-moz-border-radius:0;
	-webkit-border-radius:0;	
}

.trnRadioBtn label:hover {
	background-color: #666666;
}

.trnRadioBtn input[type="radio"]:focus + label {
	border: none;
}

.trnRadioBtn input[type="radio"]:checked + label {
	background-color:#17AB13;
	color:#FFF;
}
/* END Radio/Checkbox ##### */

.file-input__input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.file-input__label {
	width:100%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	font-size: 14px;
	padding: 10px 12px;
	background-color: #4245a8;
	box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
}

.file-input__label svg {
	height: 16px;
	margin-right: 4px;
}
.file-input__label i {
	height: 16px;
	margin-right: 4px;
}