.car .input-list {
    width: 100%;
}

.car input:focus {
    box-shadow: none;
}

.choices {
    position: relative;
}

.choices:focus {
    outline: none
}

.choices:last-child {
    margin-bottom: 0
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    opacity: .5;
    user-select: none
}

.choices.is-disabled .choices__item {
    cursor: not-allowed
}

.choices[data-type*=select-one] {
    cursor: pointer
}

.choices[data-type*=select-one] .choices__input {
    display: block;
    width: 100%;
    border-radius: 0;
    background: #eee;
}

.choices[data-type*=select-one] .choices__button:focus,
.choices[data-type*=select-one] .choices__button:hover {
    opacity: 1
}

.choices[data-type*=select-one]:after {
    content: "";
    height: 0;
    width: 0;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    border-width: 5px;
    position: absolute;
    right: 11.5px;
    top: 50%;
    margin-top: -2.5px;
    pointer-events: none
}

.choices[data-type*=select-one].is-open:after {
    border-color: transparent transparent #333 transparent;
    margin-top: -7.5px
}

.choices__inner {
    overflow: hidden
}

.choices__list {
    margin: 0;
    padding-left: 0;
    padding-top: 5px;
    list-style: none;

}

.choices__list--single {
    display: inline-block;
    width: 100%
}


[dir=rtl] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px
}

.choices__list--single .choices__item {
    width: 100%;
    padding-left:4px;
    padding-top:2px;
}

.choices__list--dropdown {
    display: none;
    z-index: 2;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    top: 100%;
    margin-top: 4px;
    border-radius: .2em;
    overflow: hidden;
    word-break: break-all
}

.choices__list--dropdown.is-active {
    display: block
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: .25rem .25rem 0 0
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 1px;
    font-size: 14px
}

.choices__list--dropdown .choices__item:hover {
    background: #2993ee;
	color: white;
}


.choices__item {
    cursor: default
}

.choices__item--selectable {
    cursor: pointer
}

.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .5
}

.choices__input:focus {
    outline: 0
}

.choices[data-type*=select-one] .choices__input.is-hidden,
.choices__input.is-hidden {
    display: none
}

.notInList {
    font-size: 12px;
    margin-left:4px;
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
    cursor:pointer;
}

.selectFromList {
    font-size: 12px;
    margin-left:4px;
    color: rgb(214, 159, 8);
    text-decoration: none;
    background-color: transparent;
    cursor:pointer;
}


