
.cstm-select {
    position: relative;
    outline: none;
}

.cstm-selected-option {
    font-size: 15px;
    font-family: font-8;
    color: #6f6f6f;
    cursor: pointer;
    background-color: #f7f7f7;
    padding: 10px 16px;
    border: 1px solid #a9a9a9;
    position: relative;
}

.cstm-select.closed .cstm-options-container {
    display: none;
}

.cstm-control-bar .cstm-options-container {
    max-height: 200px;
}

.cstm-control-bar .cstm-options-container, .enable-scroll .cstm-options-container {
    overflow-y: auto;
}

.cstm-options-container {
    position: absolute;
    z-index: 100;
    width: 100%;
    border: 1px solid #a9a9a9;
    margin-top: -1px;
    background-color: #f7f7f7;
}

.cstm-option-item {
    padding: 10px 16px;
    color: #6f6f6f;
    font-size: 15px;
    font-family: font-8;
    cursor: pointer;
}

.cstm-option-item:hover, .cstm-option-item.cstm-active-option {
    background-color: #9b9b9b;
    color: #ffffff;
}

.cstm-select.closed .cstm-selected-option span::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    font-size: 15px;
    color: #949494;
    position: absolute;
    right: 16px;
}

.cstm-control-bar .cstm-options-container::-webkit-scrollbar,
.enable-scroll .cstm-options-container::-webkit-scrollbar {
  width: 8px;
}

.cstm-control-bar .cstm-options-container::-webkit-scrollbar-track,
.enable-scroll .cstm-options-container::-webkit-scrollbar-track {
  background: #e1e1e1;
}

.cstm-control-bar .cstm-options-container::-webkit-scrollbar-thumb,
.enable-scroll .cstm-options-container::-webkit-scrollbar-thumb {
  background: #6f6f6f;
}
