.form-control {
	font-size: 1.2em ;
	height: auto ;
	padding: 8px ;
	margin-bottom: 5px;
	color: #cacaca ;
	-webkit-appearance: none;  
     -moz-appearance: none;
	background-color: transparent;
	border-radius: 0px;
	border-color: #cacaca ;
	outline:none;
}
.form-control::placeholder {
	color: rgba(150, 150, 150, 1) ;
}
.form-control:-ms-placeholder {
	color: rgba(150, 150, 150, 1) ;
}
.form-control::-ms-placeholder {
	color: rgba(150, 150, 150, 1) ;
}
.form-control-search {
	width: 100%;
	font-size: 1.25em ;
	padding: 15px ;
	margin-bottom: 5px;
	color: #cacaca ;
	-webkit-appearance: none;  
     -moz-appearance: none;
	background-color: #fff;
	border-radius: 0px;
	border: solid 1px #cacaca;
	border-radius: 5px;
	outline:none;
}
.form-control-search::placeholder {
	color: rgba(150, 150, 150, 1) ;
}
.form-control-search:-ms-placeholder {
	color: rgba(150, 150, 150, 1) ;
}
.form-control-search::-ms-placeholder {
	color: rgba(150, 150, 150, 1) ;
}
.form-select {
    display: block;
    width: 100%;
    padding: 15px ;
    -moz-padding-start: calc(0.75rem - 3px);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
	border-radius: 5px ;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.radio-custom {
    opacity: 0;
    position: absolute;   
}

.CheckboxGrid {
	position: relative;
	float: left;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
    align-items: baseline;
}
.CheckboxGrid .Check {
	width: 40px;
}
.CheckboxGrid .CheckboxText {
	width: calc(100% - 40px);
	padding-left: 10px;
}
.checkbox-custom, .radio-custom {
    opacity: 0;
    position: absolute;   
}

.checkbox-custom, .checkbox-custom-label, .radio-custom, .radio-custom-label {
    /*display: inline-block;*/
    vertical-align: middle;
    cursor: pointer;
}

.checkbox-custom-label, .radio-custom-label {
    position: relative;
}

.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
    content: '';
    border: 1px solid #cacaca;
    display: block;
    vertical-align: middle;
    width: 35px;
    height: 35px;
	border-radius: 5px;
    text-align: center;
	background-color: #fff;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
    content: "✓";
	color: #000 ;
	font-size: 1.5em;
    line-height: 1.2em;
}

.radio-custom + .radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #bbb;
}

.checkbox-custom:focus + .checkbox-custom-label, .radio-custom:focus + .radio-custom-label {
  outline: 1px solid #ddd; /* focus style */
}


.funkyradio div {
	clear: both;
	overflow: hidden
}

.funkyradio label {
	width: 100%;
	border-radius: 3px;
	border: 1px solid #d1d3d4;
	font-weight: 400
}

.funkyradio input[type=checkbox]:empty,.funkyradio input[type=radio]:empty {
	display: none
}

.funkyradio input[type=checkbox]:empty~label,.funkyradio input[type=radio]:empty~label {
	position: relative;
	padding-left: 4.5em;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 15px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.funkyradio input[type=checkbox]:empty~label:before,.funkyradio input[type=radio]:empty~label:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	content: '';
	width: 4em;
	border-right: solid 1px #d1d3d4;
	border-radius: 3px 0 0 3px
}

.funkyradio input[type=checkbox]:hover:not(:checked)~label,.funkyradio input[type=radio]:hover:not(:checked)~label {
	color: #888
}

.funkyradio input[type=checkbox]:hover:not(:checked)~label:before,.funkyradio input[type=radio]:hover:not(:checked)~label:before {
	text-indent: .9em;
	color: #c2c2c2
}

.funkyradio input[type=checkbox]:checked~label,.funkyradio input[type=radio]:checked~label {
	color: #777
}

.funkyradio input[type=checkbox]:checked~label:before,.funkyradio input[type=radio]:checked~label:before {
	text-indent: .9em;
	color: #333;
	background-image: url(../img/checked-icon.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat
}

.funkyradio input[type=checkbox]:focus~label:before,.funkyradio input[type=radio]:focus~label:before {
	box-shadow: 0 0 0 3px #999
}

.funkyradio-default input[type=checkbox]:checked~label:before,.funkyradio-default input[type=radio]:checked~label:before {
	color: #333
}

.funkyradio-primary input[type=checkbox]:checked~label:before,.funkyradio-primary input[type=radio]:checked~label:before {
	color: #fff
}

.funkyradio-success input[type=checkbox]:checked~label:before,.funkyradio-success input[type=radio]:checked~label:before {
	color: #fff
}

.funkyradio-danger input[type=checkbox]:checked~label:before,.funkyradio-danger input[type=radio]:checked~label:before {
	color: #fff
}

.funkyradio-warning input[type=checkbox]:checked~label:before,.funkyradio-warning input[type=radio]:checked~label:before {
	color: #fff
}

.funkyradio-info input[type=checkbox]:checked~label:before,.funkyradio-info input[type=radio]:checked~label:before {
	color: #fff
}

.form-control {
	font-size: 1em;
	height: auto;
	padding: 12px;
	color: #cacaca;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	border-radius: 5px;
	border-color: #cacaca;
	margin-bottom: 20px
}

.form-control::placeholder {
	color: #cacaca
}

.form-control:-ms-placeholder {
	color: #cacaca
}

.form-control::-ms-placeholder {
	color: #cacaca
}

.Select {
	background-image: url(../img/qa-arrow.png)!important;
	background-repeat: no-repeat;
	background-position: center right
}

label.btn span {
	width: calc(100% - 50px);
	padding-left: 9px;
	float: left;
	white-space: normal
}

label.btn.focus {
	color: #c5925d
}

label i {
	width: 25px;
	height: 25px;
	padding: 4px;
	float: left;
	font-size: 15px!important;
	background-color: #fff;
	border-radius: 5px;
	border: #cacaca 1px solid
}

label input[type=radio]~i.fa.fa-circle-o {
	color: #c5925d;
	display: inline
}

label input[type=radio]~i.fa.fa-dot-circle-o {
	display: none
}

label input[type=radio]:checked~i.fa.fa-circle-o {
	display: none
}

label input[type=radio]:checked~i.fa.fa-dot-circle-o {
	color: #c5925d;
	display: inline
}

label:hover input[type=radio]~i.fa {
	color: #c5925d
}

label input[type=checkbox]~i.fa.fa-square-o {
	color: transparent;
	display: inline
}

label input[type=checkbox]~i.fa.fa-check {
	display: none
}

label input[type=checkbox]:checked~i.fa.fa-square-o {
	display: none
}

label input[type=checkbox]:checked~i.fa.fa-check {
	color: #cacaca;
	display: inline
}

div[data-toggle=buttons] label.active {
	color: #c5925d
}

div[data-toggle=buttons] label {
	display: inline-block;
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 2em;
	text-align: left;
	vertical-align: top;
	cursor: pointer;
	background-color: none;
	border: 0 solid #c5925d;
	border-radius: 3px;
	color: #c5925d;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none
}

div[data-toggle=buttons] label:hover {
	color: #c5925d
}

div[data-toggle=buttons] label.active,div[data-toggle=buttons] label:active {
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn {
	width: auto;
	float: left
}

.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group {
	margin-top: 0;
	padding-left: 20px
}

.btn-group,.btn-group-vertical {
	width: 100%
}