/* FOR FILTERS */
.filter-con{
    flex: 1;
    display: flex;
}
.button-menu{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    gap: 0.5rem;
    height: 36px;
    width: fit-content;
    padding: 0 12px;
    font-family: var(--font);
    font-size: 0.8rem; /* 12.8px */
    line-height: 1rem; /* 16px */
    letter-spacing: 0.02em;
    color: var(--dark);
    font-weight: 500;

    border: 1px dashed #E4E4E7;
	border-radius: 6px;
	box-sizing: border-box;
    box-shadow: var(--input-shadow);     
	transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.15s cubic-bezier(0.4, 0, 0.2, 1), fill 0.15s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.button-menu > span{
    font-family: var(--font);
    font-size: 0.8rem; /* 12.8px */
    line-height: 1rem; /* 16px */
    letter-spacing: 0.02em;
}
.button-menu > svg,
.search-con > svg  {
    height: 16px;
    width: 16px;
}

.button-menu:hover{background-color: #f5f5f6;}
.search-con{
    display: flex;
    padding: 0 8px;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1px;
}
.filter-search{
    flex: 1;
    width: 100%;
    padding: 12px 0;
    font-family: var(--font);
    font-size: 14px;
    line-height:20px;
    font-weight: 400;
	border: none;
	border-radius: 6px;
	box-sizing: border-box;
    color: var(--dark);
}
.filter-search,
.filter-search:focus{
    border: none;
}
.search-option-con {
    max-height: 300px;
    overflow-y: auto;
}
.search-option-con::-webkit-scrollbar {
    width: 4px; /* Change this value to adjust the width */
    height: 12px; /* Change this value to adjust the height for horizontal scrollbars */
}
/* Track */
.search-option-con::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background color of the track */
}

/* Handle */
.search-option-con::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar handle */
    border-radius: 6px; /* Rounded corners for the handle */
}

/* Handle on hover */
.search-option-con::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the handle on hover */
}
.option-item {
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 6px;
    gap: .5rem;
    padding: 7px 8px;
    cursor: pointer;
}
.option-item:hover{
    background-color: #f5f5f6;
}
.option-item .form-check-input{
    margin: 0;
    margin-right: 7px;
    height: 16px;
    width: 16px;
    cursor: pointer;
}
.option-item .form-check-input:focus {
    border-color: #E4E4E7;
}
.option-item .form-check-input:checked {
    background-color: black; /* Change the background color when checked */
    border-color: black; /* Change the border color when checked */
}
.option-item i{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7px;
    color: var(--gray);
}
.option-text,
.option-number{
    color: var(--dark);
    font-family: var(--font);
    font-weight: 500;
}
.option-number{
    flex: 1;
    text-align: right;
}
.search-no-result{
    text-align: center;
    padding: 7px 12px;
    font-family: var(--font);
    color: var(--dark);
    line-height: 20px;
}
.clear-filter-con {
    display: none;
}
.clear-filter{
    justify-content: center;
}