.AQR_Select {
    display: none;
    /* margin-bottom: 15px; */
}

.AQR_Select:disabled+.AQRSelect_container {
    opacity: 0.7;
    pointer-events: none;
}

.AQRSelect_container {
    position: relative;
    width: 100%;
    outline: 1px solid #e7e8f3;
    color: #333;
    font-size: 0.9rem;
    border-radius: 0.25rem;
    background-color: #fbfbfe;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px;
}

.AQRSelect_container.showClear {
    padding-left: 25px;
}

.AQRSelect_container .input {
    border: none !important;
    outline: none !important;
    max-width: 100%;
    background-color: transparent !important;
    padding: 0px 10px !important;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.AQRSelect_container .input:focus {
    cursor: initial;
}

.AQRSelect_container .clear {
    width: 20px;
    color: #5f5f5f;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translate(0, -50%);
    display: none;
    cursor: pointer;
    padding: 5px;
    line-height: 0;
}

.AQRSelect_container.showClear .clear {
    display: block;
}

.AQRSelect_container .selectedOption {
    display: flex;
    background-color: #ddd;
    padding: 2px 6px 2px 3px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.8rem;
    align-items: center;
    gap: 3px;
}

.AQRSelect_container .selectedOption .remove {
    width: 17px;
    padding: 4px;
    cursor: pointer;
}


.AQRSelect_suggestion {
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    overflow: auto;
    max-height: 200px;
    position: absolute;
    outline: 1px solid #e7e8f3;
    color: #444;
    z-index: 999;
    display: none;
}

.AQRSelect_suggestion::-webkit-scrollbar {
    width: 0;
}

.AQRSelect_suggestion .message {
    padding: 12px 8px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
    color: #888;
}

.AQRSelect_suggestion .item {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 400;
    cursor: pointer;
}

.AQRSelect_suggestion .item:hover,
.AQRSelect_suggestion .item.focus {
    background-color: #e3eff7;
}

.AQRSelect_suggestion .item.select {
    opacity: 0.7;
    background-color: #f0f0f0;
    cursor: default;
}




.AQRSelect_suggestion .loader {
    border: 3px solid #afc4c8;
    width: 1em;
    height: 1em;
    min-width: 1em;
    min-height: 1em;
    border-radius: 50%;
    border-top-color: var(--filter_Btn_Bg);
    animation: RotateAnime 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin: auto;
}

.AQRSelect_suggestion .btn .loader {
    border-color: #ffffff2b;
    border-top-color: #ffffff;
}

@keyframes RotateAnime {
    0% {
        transform: rotate(45deg);
    }

    50% {
        transform: rotate(405deg);
    }

    100% {
        transform: rotate(765deg);
    }
}