.custom_selectize .selectize-control{
    max-height: 30px;
}
.custom_selectize .selectize-control.single .selectize-input,
.custom_selectize .selectize-control.multi .selectize-input{
    background: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    outline: none;
    height: 30px;
    width: 100%;
    font-size: 1.25rem;
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: content-box;
}
.custom_selectize .selectize-control.multi .selectize-input{
    height: auto;
}
.custom_selectize .selectize-dropdown,
.custom_selectize .selectize-input,
.custom_selectize .selectize-input input {
    color: #3d3d3d;
    font-size: 1.25rem;
    line-height: 30px;
    font-weight: 300;

}
.custom_selectize .selectize-input input{
    height: 30px;
    transition: none;
}
.custom_selectize .selectize-input > div{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 25px);
    display: block;
    float: left;
}
.custom_selectize .selectize-control.single .selectize-input:after{
    right: 0;
    display: none;

}
.custom_selectize .selectize-dropdown-content > div{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1rem;
    line-height: 2rem;
}
.custom_selectize .selectize-dropdown [data-selectable],
.custom_selectize .selectize-dropdown .optgroup-header{
    /*padding-left: 0;*/
}
.custom_selectize .selectize-dropdown{
    border: none;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
    color: #477aa9;
}
.custom_selectize .selectize-dropdown [data-selectable], .selectize-dropdown .optgroup-header {
    padding: 9px 8px;
}
.custom_selectize .selectize-dropdown .active {
    background-color: #eee;
    color: #477aa9;
}
.custom_selectize .selectize-control.multi{
    max-height: inherit;
}
.custom_selectize .selectize-control.multi .selectize-input{
    overflow: inherit;
}
.custom_selectize .selectize-control.plugin-remove_button [data-value] .remove {
    border-radius: 50%;
    border: 1px solid #3d3d3d;
    font-weight: normal;
    width: 18px;
    height: 18px;
    /*line-height: 18px;*/
    line-height: 100%;
    padding: 0;
    font-size: 16px;
    margin-right: 1px;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
}
.custom_selectize .selectize-control.multi .selectize-input > div{
     background: none;
     color: inherit;
     border: none;
}
.custom_selectize .selectize-control.multi .selectize-input [data-value]{
    font-size: 20px;
    line-height: 20px;
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    text-shadow: none;
    padding-left: 0;
    margin-right: 9px;
    margin-top: 6px;
    /*padding-bottom: 4px;*/
}
.custom_selectize .selectize-control.multi input{
    float: left;
}
/*//placeholder color for selectize*/
/*.custom_selectize input::placeholder { !* Chrome, Firefox, Opera, Safari 10.1+ *!*/
    /*color: #3d3d3d;*/
    /*opacity: 1; !* Firefox *!*/
/*}*/

/*.custom_selectize input:-ms-input-placeholder { !* Internet Explorer 10-11 *!*/
    /*color: #3d3d3d;*/
/*}*/

/*.custom_selectize input::-ms-input-placeholder { !* Microsoft Edge *!*/
    /*color: #3d3d3d;*/
/*}*/

/*custom dropdown width for select airport in flight calculator*/
@media only screen and (min-width: 601px) and (max-width: 1199px ){
    .custom_selectize .select-airport .selectize-dropdown {
        min-width: calc(50vw - 10%) !important;
    }
}
@media only screen and (min-width: 1200px ){
    .custom_selectize .select-airport .selectize-dropdown {
        width: 500px!important;
    }
}
