.multi_select-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    /* max-width: 400px; */
}

.multi_select-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #3498db;
    border-radius: 5px;
    background-color: #ffffff;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}


.multi_select-header input {
    width: 100%;
    border: none;
    padding: 1px 13px 0px 0px;
}
.multi_select-header:hover {
    border-color: #2980b9;
}

.multi_select-search_box {
    /* border: none; */
    outline: none;
    font-size: 16px;
    width: calc(100% - 40px);
}
#destination_select_search_box {
    border: none;
    /* padding: 10px; */
    width: 93%;
    outline: none;
}

.multi_select-search_box::placeholder {
    color: #aaa;
}

.multi_select-arrow {
    border: solid #aaa;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.multi_select-header.active .multi_select-arrow {
    transform: rotate(-135deg);
    border: none;
}

.multi_select-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 2px solid #3498db;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.multi_select-content.show {
    display: block;
    opacity: 1;
    transform: scaleY(1);
}

.multi_select-actions {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.multi_select-action {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 8px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    flex: 1;
    margin: 0 5px;
}

.multi_select-action:hover {
    background-color: #2980b9;
}

.multi_select-options label {
    display: block;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.multi_select-options label:hover {
    background-color: #f1f1f1;
}

.multi_select-options input[type="checkbox"] {
    margin-right: 10px;
}
.input-multiselect {
    border: none;
    color: red;
}