.filter__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    gap: 8px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    margin-left: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.filter__button:hover {
    background: #F9FAFB;
    transition: 0.3s;
}

.filter__button:active {
    background: #F9FAFB;
    opacity: 0.7;
    transition: 0.3s;
}

.filter__button i:before {
    font-size: 20px;
    color: #344054;
    font-weight: 500;
}

.filter__name {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
    margin-bottom: 6px;
}

.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.select-selected {
    background-color: #fff;
    color: #667085;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    height: 44px;
    box-sizing: border-box;
    line-height: 24px;
}

.select-selected:after {
    position: absolute;
    content: "";
    background-image: url('../image/chevron-down.svg');
    width: 20px;
    height: 20px;
    top: 14px;
    right: 12px;
    transition: 0.3s;
}

.select-selected.select-arrow-active:after {
    transform: rotate(180deg);
    transition: 0.3s;
}

.select-items div,
.select-selected {
    color: #667085;
    padding: 10px 12px;
    cursor: pointer;
    user-select: none;
}

.select-items div {
    color: #101828;
    font-size: 14px;
    margin-bottom: 2px;
}

.select-items {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    padding: 6px;
    border-radius: 8px;
    top: 100%;
    left: 0;
    right: 0;
    top: 48px;
    z-index: 99;
    max-height: 185px;
    overflow-y: scroll;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
}

.select-items::-webkit-scrollbar {
    width: 8px;
}

.select-items::-webkit-scrollbar-thumb {
    background-color: #bec4ca;
    border-radius: 3px;
}

.same-as-selected {
    color: #6941C6 !important;
    position: relative;
}

.same-as-selected:before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../image/check-purp.svg');
    position: absolute;
    right: 8px;
    top: 7px;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background: #F9FAFB;
}

.custom-select {
    width: 251px;
}

.filter__wrapper {
    background: #F5F5F5;
    border: 1px solid #EAECF0;
    box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 32px;
}

.filter__items{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 19px;
}

.filter__item input {
    padding: 10px 12px;
    box-sizing: border-box;
    font-family: 'Inter';
    font-size: 16px;
    color: #101828;
    border: 1px solid #D0D5DD;
    border-radius: 8px;
    width: 251px;
    height: 44px;
}

.filter__item input::placeholder {
    color: #667085;
}

.filter__item.count {
    display: flex;
    align-items: flex-end;
}

.count__wrap input {
    width: 112px;
}



.filter__item p {
    color: #D0D5DD;
    font-size: 18px;
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    margin-left: 8px;
    margin-right: 8px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

.multiselect-dropdown{
    width: 251px !important; 
    height: 44px;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    font-family: 'Inter';
}

.multiselect-dropdown:after{
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../image/chevron-down.svg');
    position: absolute;
    top: 14px;
    right: 12px;
}

.multiselect-dropdown-search{
    display: none !important;
}

.multiselect-dropdown {
    display: inline-block;
    position: relative;
}

.multiselect-dropdown span.optext {
    background-color: #fff;
}

.multiselect-dropdown span.optext .optdel {
    float: right;
    margin: 0 -6px 1px 5px;
    font-size: 0.7em;
    margin-top: 2px;
    cursor: pointer;
    color: #666;
}

.multiselect-dropdown span.optext .optdel:hover {
    color: #c66;
}

.multiselect-dropdown span.placeholder {
    color: #667085;
}

.multiselect-dropdown-list-wrapper {
    z-index: 100;
    border-radius: 8px;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    border: solid 1px #ced4da;
    display: none;
    margin: -1px;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: white;
}

.multiselect-dropdown-list-wrapper .multiselect-dropdown-search {
    margin-bottom: 5px;
}

.multiselect-dropdown-list {
    height: auto;
    padding: 6px;
    max-height: 12rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.multiselect-dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.multiselect-dropdown-list::-webkit-scrollbar-thumb {
    background-color: #bec4ca;
    border-radius: 3px;
}

.multiselect-dropdown-list input {
    height: 0;
    width: 0;
    margin-right: 0.35em;
    appearance: none;
    opacity: 0;
}

.multiselect-dropdown-list div{
    display: flex;align-items: center;
    height: 40px;
    position: relative;
    margin-bottom: 2px;
}

.multiselect-dropdown-list div:hover {
    background: #F9FAFB;
}

.multiselect-dropdown-list div.checked {
    background: #F9FAFB;
}

.multiselect-dropdown span.maxselected {
    width: 100%;
}

.optdel{
    display: none !important;
}

.multiselect-dropdown-list div input{
    appearance: none;
}

.multiselect-dropdown-list div label{
    color: #101828;
    font-size: 14px;
}

.multiselect-dropdown-list div label::before{
    content: '';
    background-image: url('../image/check-purp.svg');
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.multiselect-dropdown-list div.checked label:after{
    content: '';
    background-image: url('../image/check-purp.svg');
    width: 16px;
    height: 16px;
    border-radius: 4px;
    position: absolute;
    left: 10px;
    top: 9px;
}

.multiselect-dropdown-all-selector{
    display: none !important;
}

.multiselect-dropdown-list div.checked label::before{
    content: '';
    background-image: url('../image/check-purp.svg');
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 1px solid #7F56D9;
    border-radius: 4px;
    position: absolute;
    left: 10px;
    top: 10px;
}

.filter__buttons{
    margin-top: 20px;
}

.filter__buttons button{
    color: #6941C6;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    margin-right: 28px;
    padding: 0;
    padding-left: 16px;
    cursor: pointer;
    transition: 0.3s;
    padding-right: 0;
}

.filter__buttons button:hover{
    opacity: 0.7;
    transition: 0.3s;
}

.filter__buttons input{
    background: #7F56D9;
    border: 1px solid #7F56D9;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    line-height: 6px;
    color: #FFFFFF;
    padding: 16px 10px;
    height: 40px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.3s;
}

.filter__buttons input:hover{
    background: #6941C6;
    transition: 0.3s;
}

.filter__buttons input:active{
    background: #6941C6;
    opacity: 0.6;
    transition: 0.3s;
}

.breadcrump__solve{
    margin-left: 4px;
    margin-right: 4px;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrump__item{
    height: 28px;
    box-sizing: border-box;
}

.breadcrump__item:first-child{
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date_label{
    position: relative;
}

.date_label img{
    position: absolute;
    top: 0;
    left: 12px;
}

.date_label input{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #667085;
    padding-left: 40px;
}

.litepicker {
    font-family: 'Inter';
    font-size: 14px;
    display: none;
    box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03), 0px 12px 16px -4px rgba(16, 24, 40, 0.08);
    border-radius: 8px;
}

.button-previous-month svg{
    display: none;
}

.button-previous-month{
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer !important;
}

.button-previous-month:before{
    content: '';
    display: block;
    background-image: url('../image/chevron-left.svg') !important;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.button-next-month svg{
    display: none;
}

.button-next-month{
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer !important;
}

.button-next-month:before{
    content: '';
    display: block;
    background-image: url('../image/chevron-right-cal.svg') !important;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.month-item-weekdays-row div::first-letter{
    text-transform: uppercase;
}

.month-item-header div::first-letter{
    text-transform: uppercase;
}

@media(max-width: 1438px){

.filter__item{
    width: 32%;
}

.filter__item input{
    width: 100%;
}

.filter__item .custom-select{
    width: 100%;
}

.filter__item .multiselect-dropdown{
    width: 100% !important;
}

}
@media(max-width: 1327px){
    .filter__item{
        width: 48%;
    }

    .filter__item input{
        width: 100%;
    }

    .filter__item .custom-select{
        width: 100%;
    }

    .filter__item .multiselect-dropdown{
        width: 100% !important;
    }
}

@media(max-width: 855px){
    .filter__item{
        width: 100%;
    }

    

    .filter__button{
        margin-left: 0;
    }
}