.choices__inner {
    border-radius: 0;
    background: #F1FAFC;
    padding: 13px 12px !important;
    border: 1px solid #fff;
    font-size: 15px;
    min-height: 48px;
    text-align: left;
    font-family: 'Work Sans', sans-serif;
    color: #001830;
}

.choices__list--single {
    padding: 0;
}

.choices[data-type*="select-one"]::after {
    content: '\e902';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    right: 20px;
    font-weight: normal;
    font-size: 16px;
    color: #001830;
    transform: translate(0, -50%);
    border: none;
    margin: 0;
    width: auto;
    height: auto;
}

.choices[data-type*="select-one"]::after {
    content: '\e902';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    right: 20px;
    font-weight: normal;
    font-size: 16px;
    color: #001830;
    transform: translate(0, -50%);
    border: none;
    margin: 0;
    width: auto;
    height: auto;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: transparent;
    border-radius: 0;
}

.is-flipped .choices__list--dropdown {
    top: 100%;
    bottom: auto;
}

.choices__list--dropdown {
    text-align: left;
}

.choices[data-type*='select-one'] .choices__input {
	display: none;
}

.choices__list--dropdown .choices__item {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 20px;
}

.choices__list--dropdown .choices__item:hover {
    background-color: transparent;
    color: #001830;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: transparent;
    color: #001830;
}

.choices[data-type*='select-one'].is-open:after {
    border-color: transparent;
    margin-top: unset;
    background-color: transparent;
    transform: rotate(-180deg);
    top: 15px;
}

.is-open .choices__list--dropdown {
    border-color: transparent;
    background: #FFFFFF;
    z-index: 9;
}

.form-col .choices__inner {
    background: #fff;
}

@media (min-width: 768px){
	.choices__inner {
	    padding: 11px 20px !important;
	    font-size: 16px;
	}

	.choices__list--dropdown .choices__item {
	    padding: 13px 18px;
	    font-size: 16px;
	}
}