.multi_select {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-box {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    padding: 10px;
    cursor: pointer;
}

.selected-options {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 0;
}

.tag {
    background-color: #f2f2f2;
    color: #000;
    border-radius: 5px;
    margin-right: 5px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
}

.remove-tag {
    margin-left: 6px;
    cursor: pointer;
}

.arrow {
    margin: 0 10px;
    padding-top: 10px;
}

.fa-angle-down {
    color: #404040;
    font-size: 15pt;
}

.options {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-top: none;
    max-height: 225px;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.open .options {
    display: block;
}

.option-search-tags {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    padding: 8px 0px;
    margin: 8px;
}

.search-tags {
    width: 90%;
    border: none;
    outline: none;
    padding: 8px;
    font-size: 14px;
}

.clear {
    position: absolute;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    color: #000;
    top: 26px;
    left: auto;
    right: 25px;
}

.option {
    padding: 12px;
    cursor: pointer;
}

.option.active,
.option.active:hover {
    color: white;
    background-color: #337CCF;
    border-bottom: 1px solid #eaeaea;
}

.tag:hover,
.option:hover {
    color: black;
    background-color: #eaeaea;
}

.no-results-message {
    display: none;
    padding: 0px 0px 12px 12px;
}

.error {
    color: #ff1a2a;
    margin-top: 8px;
}