select.js-select {
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.selectize-control {
    position: relative;
    font-size: 0;
}

.selectize-input {
    display: inline-flex;
    align-items: center;
    /* gap: 8px; */
    position: relative;
    cursor: pointer;
    font-size: 16px;
    height: 40px;
    border-radius: 6px;
    border: 0;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #fff;
    padding-right: 40px;
}

.selectize-input::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #1c1c1c;
    border-bottom: 2px solid #1c1c1c;
    transform: rotate(-45deg) translate(50%, -50%);
}

.selectize-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto !important;
    margin-top: -1px;
    z-index: 10;
}

.selectize-dropdown-content {
    font-size: 70%;
    border: 1px solid #ebe6e4;
    border-radius: 0 6px 6px;
    background-color: #fff;
    color: #000;
}

.selectize-dropdown .option {
    font-size: 14px;
    line-height: 1.1;
	cursor: pointer;
    text-align: left;
    white-space: nowrap;
    padding: 8px 10px;
    transition: background-color 300ms ease-in-out;
}

.selectize-dropdown .option.selected {
    opacity: .6;
}

@media (hover: hover) and (pointer: fine) {
    .option:hover {
        background-color: #f1f1f1;
    }
}

.form-select.js-select {
    background-image: none;
    cursor: initial;
}

.selectize-input .item,
.selectize-input input {
    height: inherit;
    font-size: inherit;
    border-right: 1px solid #ebe6e4;
    padding: 0;
    padding-inline: 15px;
}

.selectize-input .item {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    overflow: hidden;
    color: #000;
}

.selectize-input input {
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
}

.selectize-input input::placeholder,
.selectize-input input::-webkit-input-placeholder,
.selectize-input input::-moz-placeholder {
    opacity: 1;
    color: #000;
}

.item + input {
    position: absolute !important;
    height: 0;
}
