.select-group {
	padding-top: 10px;
	padding-bottom: 10px;
}
.select-group .choices__inner {
	background-color: #68B3C8;
	border-color: #68B3C8;
	color: #fff;
	border-radius: 25px;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 5px;
	/* padding-bottom: 1px; */
	min-height: 38px;
}
.select-group .choices__input {
	background-color: transparent;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
	margin-bottom: 0;
}
.select-group .choices__input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
}
.select-group .choices__input::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
}
.select-group .choices__input:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
}
.select-group .choices__input:-moz-placeholder { /* Firefox 18- */
	color: #fff;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
}
.select-group .choices__list--dropdown {
	border-radius: 10px;
	margin: 5px 0 0;
	max-height: 200px;
	width: 95%;
	left: 50%;
	transform: translate3d(-50%, -30px, 0);
	filter: alpha(opacity=0);	
	border-color: rgba(0,0,0,0.15);
	background-color: #fff;
	box-shadow: 0 2px rgb(17 16 15 / 10%), 0 2px 10px rgb(17 16 15 / 10%);
	background-clip: padding-box;
}
.select-group .choices__list--dropdown.is-active {
	transform: translate3d(-50%, 0, 0);
	transition: all 150ms linear;
	filter: alpha(opacity=100);
}
.select-group .choices__list {
	max-height: 200px;
}
.select-group .choices__list--dropdown .choices__item--selectable.is-highlighted {
	background-color: #66615B;
	color: rgba(255, 255, 255, 0.85);
}
.select-group .choices__heading {
	font-size: 14px;
	font-weight: 400;
}
.select-group .choices__list--multiple {
	/* max-width: 170px; */
	/* max-height: 20px; */
	/* overflow: hidden; */
	display: block;
	/* text-overflow: ellipsis; */
	/* white-space: nowrap; */
}
.choices__list--multiple .choices__item {
	background-color: transparent;
	border-color: transparent;
	font-weight: 600;
	margin-right: 0;
	padding: 0 10px;
}
.choices__list--multiple .choices__item + .choices__item:before {
	/* content: ',';
	display: inline-block;
	margin-right: 3px; */
}


.checkbox input + .error {
	display: none !important;
}

.checkbox input[type="checkbox"]:checked + label + label::before {
	opacity: 1;
}
.checkbox input[type="checkbox"]:checked + label + label::after {
	font-family: 'FontAwesome';
	content: "\f00c";
}
.checkbox input[type="checkbox"].error + label + label::before {
	background-color: #a94442;
}
.checkbox input[type="checkbox"].error + label + label::after {
	
}

.d-none {
	display: none;
}

.tab-pane.has-error .choices__inner {
	border-color: #a94442;
	/* background-color: #fff; */
}
.tab-pane.has-error .choices__input {
	color: #a94442;
}

.tab-pane.has-error .choices__input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #a94442;
}
.tab-pane.has-error .choices__input::-moz-placeholder { /* Firefox 19+ */
	color: #a94442;
}
.tab-pane.has-error .choices__input:-ms-input-placeholder { /* IE 10+ */
	color: #a94442;
}
.tab-pane.has-error .choices__input:-moz-placeholder { /* Firefox 18- */
	color: #a94442;
}

.form-group--single-select .select-group .choices__inner {
	color: #000;
	background-color: #fff;
	border-width: 2px;
	border-color: #66615b;
	padding-bottom: 0;
	padding-top: 0;
}
.form-group--single-select .select-group .choices__input{
	color: #000;
}
.form-group--single-select .choices__list--dropdown {
	z-index: 9999;
}
.form-group--single-select .select-group {
	padding: 0;
}

.form-group--single-select .choices__list--single{
	padding: 6px 16px 4px 4px;
}

.form-group--single-multi-select .select-group .choices__input{
	color: #000;
}
.form-group--single-multi-select .choices__list--dropdown {
	z-index: 9999;
}
.form-group--single-multi-select .select-group {
	padding: 0;
}

.form-group--single-multi-select .choices__list--single{
	padding: 6px 16px 4px 4px;
}
.form-group--single-multi-select .choices__list--multiple .choices__item{
	color: #000;
}
.form-group--single-multi-select .select-group .choices__inner{
	background-color: #fff;
	border-color: #66615B;
	border-width: 2px;
}

.form-group--single-multi-select .choices[data-type*=select-multiple] .choices__button, .form-group--single-multi-select .choices[data-type*=text] .choices__button{
	background-color: #66615B;
}