.app-select {
    display: none;
}

.app-input-box.select.focus {
    border-radius: 2px;
    border: 1px solid #36459B;
    box-shadow: 0px 0px 4px 0px #5464C3;
}

.app-input-box.select {
    position: relative;
    cursor: pointer;
}

.app-custom-select-action-box {
    min-width: 12px;
    margin-top: -10px;
}

/* .app-select2-box .select2-selection__clear {
    display: none;
} */



.app-input-box.select:focus-within {
    border: 1px solid #36459B !important;
    padding: 5px 30px 5px 15px !important;
}

body[dir=rtl] .app-input-box.select:focus-within {
    padding: 5px 15px 5px 30px !important;
}

@media (max-width:480px) {
    .app-input-box.select:focus-within {
        padding: 5px 15px 5px 15px !important;
    }

    body[dir=rtl] .app-input-box.select:focus-within {
        padding: 5px 15px 5px 15px !important;
    }
}

.app-custom-select {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 6px;
    /* position: relative; */
}

.app-custom-select.small {
    height: 36px;
}

.app-custom-select.multi-select {
    height: fit-content;
    min-height: 32px !important;
    margin-top: 10px;
    /* padding: 3px 0;  */
}

.app-custom-select-options {
    position: absolute;
    width: calc(100% + 2px);
    /* width: 100%; */
    min-height: 50px;
    border-radius: 3px;
    z-index: 99;
    border: 1px solid #D3D3D3;
    /* bottom: calc(-115%); */
    z-index: 99;
    top: calc(100% + 10px);
    /* left: -31px; */
    left: -2px;
    background-color: white;
    padding: 5px 0;
    display: none;
    max-height: fit-content;
}




.app-custom-select-option {
    padding: 7px 11px;
    margin: 0;
    color: #636366;
    text-align: right;
    font-size: 12px;
    font-family: IRANSans;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

.app-custom-select-option:hover,
.app-custom-select-option[selected] {
    transition: all 0.3s ease;
    color: white !important;
    background-color: #36459B;
}

.app-custom-select-option:hover {
    transition: all 0.2s ease;
    color: #36459B;
}


.app-input-box.select.focus .app-custom-select-text,
.app-custom-select-text.multi-select {
    color: #424242;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.app-custom-select-text {
    color: #A9A8AA;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
}

.app-custom-select-filter-box {
    padding: 5px 11px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
}

.app-custom-select-filter {
    width: 100%;
    height: 100%;
    border: none;
    color: #424242;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    border-bottom: 1px solid #777D9E;
}


.app-custom-select-filter::placeholder {
    color: #A9A8AA;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}


.app-custom-select-filter:focus {
    outline: none;
}

.app-custom-select-options-content {
	overflow-y: scroll;
	min-height: 50px;
	max-height: 175px;
	z-index: 100;
	margin: 1px 2px 0 2px;
	background-color: white;
}


.app-custom-select-options-content::-webkit-scrollbar {
    width: 3px;
    background-color: transparent;
    border-radius: 2px;
}

.app-custom-select-options-content::-webkit-scrollbar-thumb {
    border: 3px solid #caccd5;
    border-radius: 5px;

}

.app-custom-select-selected-items {
    gap: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.app-custom-select-text.multi-select {
    padding: 3px 10px;
    border-radius: 12px;
    background-color: #dcdeee;
}
