html body .selectize-control {
    line-height: 13px;
}
html body .selectize-input {
    border-color: #e5e5e5;
}

html body .selectize-input:focus,
html body .selectize-input.focus {
    outline: none;
    background-color: #fff;
    color: #666;
    border-color: #1e87f0;
    box-shadow: none;
}
/* Disabled */
html body .selectize-input:disabled,
html body .selectize-input.disabled
{
    background-color: #f8f8f8;
    color: #999;
    border-color: #e5e5e5;
}

html body [type="select-one"]::placeholder {
    color: #999!important;
}

html body .option.option-divided {
    /*border-bottom: 1px solid #e5e5e5;
    padding-bottom: 11px;*/
    position: relative;
    overflow: visible;
}
html body .option.option-divided:not(:last-child) {
    margin-bottom: 9px;
}
html body .option.option-divided:not(:last-child):after {
    content: ' ';
    display: block;
    height: 2px;
    background: #f5f5f5;
    position: absolute;
    margin-top: 7px;
    width: calc(100% - 16px);
    margin-left: -12px;
}

html body .selectize-control .items,
html body .selectize-control.multi .items {
    min-height: 40px;
}
html body .selectize-control.single .items {
    padding: 6px 10px;
    padding-right: 40px;
}
html body .selectize-control.multi .items {
    padding: 6px 10px;
}
html body .selectize-control.multi .items .item {
    margin-top: 1px;
}
html body .selectize-control.single .selectize-input [data-value] {
    display: inline-block;
    width: calc(100% - 4px);
    max-width: calc(100% - 4px);
}
html body .selectize-control.single .items .item {

}
html body .selectize-control.multi.items.has-items {
    padding-bottom: 3px;
}
html body .selectize-control.single .selectize-dropdown,
html body .selectize-control.multi .selectize-dropdown {
    top: 100%!important;
    margin-top: 2px!important;
}

html body .selectize-control .selectize-dropdown {
    overflow: hidden;
}

html body .selectize-control.single.plugin-remove_button .remove-single {
    height: 100%;
    line-height: 100%;
    width: 40px;
    text-align: center;
    background: #fff;
    z-index: 1;
    padding-top: 4px;
    color: #999;
}
html body .selectize-control.single.plugin-remove_button .remove-single:hover {
    text-decoration: none;
    color: #1e87f0;
}

html body .selectize-input.has-error {
    border-color: #dd4b39!important;
}

html body .selectize-dropdown .active {
    background-color: #e8f1fb;
}