.choices__inner {
    width: 100%;
    display: block;
    padding: 13px 56px 13px 25px;
    height: 58px;
    border-radius: 50px;
    border: 1px solid #ACDBD1;
    background: #F1FCFA;
    font-size: 18px;
    font-weight: 300;
    color: #005140;
    letter-spacing: 0.03em;
}

.is-focused .choices__inner, .is-open .choices__inner {
    border-color: #ACDBD1;
}

.choices__placeholder {
    opacity: 1;
}

.choices__list--single {
    padding: 0;
}

.choices__list--single .choices__item--selectable {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.choices[data-type*='select-one']:after {
    content: "\e909";
    font-family: 'cotton-creations';
    width: auto;
    height: auto;
    border: none;
    color: #4D47B3;
    right: 25px;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0;
    font-size: 23px;
}

.choices[data-type*='select-one'].is-open:after {
    margin: 0;
    content: "\e90c";
}

.choices__list--dropdown .choices__input {
    display: none;
}

.choices__list--dropdown {
    border: 1px solid #ACDBD1;
    border-radius: 0 0 25px 25px;
    background-color: #F1FCFA;
}

.is-open .choices__list--dropdown {
    border-color: #ACDBD1;
}

.choices.is-open .choices__inner {
    border-radius: 29px 29px 0 0;
}

.choices.is-flipped.is-open .choices__inner {
    border-radius: 0 0 29px 29px;
}

.choices.is-flipped.is-open .choices__list--dropdown {
    border-top: 1px solid #ACDBD1;
    border-radius: 25px 25px 0 0;
}

.choices__list--dropdown .choices__item {
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: #005140;
    word-break: break-word;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    color: #fff;
    background-color: #005140;
}

/* Multi Select */
.choices[data-type="select-multiple"] {}

.choices[data-type="select-multiple"] .choices__inner {
    position: relative;
    min-height: 58px;
    height: auto;
    max-width: 1033px; /* Special Case! */
}

.choices[data-type="select-multiple"] .choices__input {
    margin: 0;
    padding-left: 8px;
    padding-right: 8px;
    min-width: 20ch !important;
    height: auto;
    background: transparent;
    font-size: 18px;
}

.choices__list--multiple .choices__item {
    border-color: #4B4790;
    background-color: #4B4790;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #D0CFE7;
    border-color: #D0CFE7;
    color: #4B4790;
}

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

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
    margin-right: 0;
    border-left-color: #fff;
    opacity: 1;
}