.custom-select-label {
    font-size: 11px;
    color: #222020;
    padding: 0px 15px 0 8px;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 2px;
}

.custom-select-content {
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    margin: 0 0 5px 0;
    padding: 2px 0;
}

.custom-select-content.with-exclude {
    margin-bottom: 0;
    border-radius: 5px 5px 0 0;
    padding-bottom: 1px;
}

.custom-exclude-content {
    position: relative;
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    margin: 0 0 5px 0;
    padding: 1px 0 2px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-select-selected-option, .custom-select-selected-all-options, .custom-select-excluded-option, .custom-select-excluded-none-options {
    position: relative;
    display: inline-block;
    background-color: #efeeef;
    color: #000;
    font-size: 11px;
    margin: 3px;
    padding: 1px 25px 1px 5px;
    border-radius: 5px;
}

.custom-select-add-option {
    position: relative;
    display: inline-block;
    background-color: #cd3634;
    color: #fff;
    font-size: 11px;
    margin: 3px;
    padding: 1px 10px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-select-exclude-option {
    position: relative;
    display: inline-block;
    background-color: #cd3634;
    color: #fff;
    font-size: 11px;
    margin: 3px;
    padding: 1px 10px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-select-delete-option, .custom-select-delete-excluded-option {
    display: inline-block;
    position: absolute;
    right: 5px;
    cursor: pointer;
    top: calc(50% - 8px);
}

.custom-select-delete-option span, .custom-select-delete-excluded-option span {
    font-size: 15px;
    font-weight: bold;
}

.custom-select-options-wrapper, .custom-select-options-exclude-wrapper {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 4px solid #fff;
    z-index: 100;
}

.custom-select-options-inner, .custom-select-options-exclude-inner {
    max-height: 160px;
    overflow-y: scroll;
    padding: 0 0 0 5px;
    background-color: #f8f7f6;
}

.custom-select-option {
    position: relative;
    color: #000;
    font-size: 12px;
    border-bottom: 1px solid #fff;
    padding: 3px 0 3px 5px;
    cursor: pointer;
}

.custom-select-option:last-child {
    border-bottom: 0px solid #f8f7f6;
}

.custom-select-option.selected {
    background-color: #d7d5d6;
}

.custom-select-option:hover {
    background-color: #f0f0f0;
}

.custom-select-option.selected:hover {
    background-color: #d7d5d6;
}

.custom-select-option.disabled {
    color: #ccc;
    cursor: default;
}

.custom-select-options-footer {
    position: relative;
    background-color: #454545;
    display: inline-block;
    width: 100%;
    border-radius: 0 0 10px 10px;
    text-align: center;
    font-size: 11px;
    padding: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
    cursor: pointer;
    color: #fff;
}

.custom-select-option-indicator {
    display: none;
    position: absolute;
    top: calc(50% - 10px);
    right: 5px;
    padding: 0px 5px;
    line-height: 19px;
    font-size: 9px;
    background-color: #f8f7f6;
    color: #777;
    border-radius: 5px;
    text-transform: uppercase;
}

.custom-select-options-inner .custom-select-option-indicator {
    background-color: #d7eed7;
}

.custom-select-options-exclude-inner .custom-select-option-indicator {
    background-color: #eed7d7;
}

.custom-select-option.selected .custom-select-option-indicator {
    display: block;
}

.custom-select-selected-option {
    background-color: #d7eed7;
}

.custom-select-excluded-option {
    background-color: #eed7d7;
}

.custom-select-selected-all-options, .custom-select-excluded-none-options {
    background-color: #efeeef;
}

.custom-select-selected-all-options .custom-select-delete-option, .custom-select-excluded-none-options .custom-select-delete-excluded-option {
    color: #ccc;
    pointer-events: none;
}