
.category-input {
    width: 100%;
    padding: 7px;
    background-color: #f0f0f0;
    border: none;            
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    position: absolute;
    top: 0.9em;
    right: 0.4em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    pointer-events: none;
    z-index: 3;
}

.arrow-down {
    transform: rotate(0deg);
}

.arrow-right {
    transform: rotate(270deg);
}

ul {
    list-style: none;
}

ul.menu {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 2000;
    background-color: #FFFFFF; 
    padding: 0;
    border: solid 1px #ccc;                      
}

ul.menu.open {
    display: block;
    padding: 0;
    max-height: 600px;
    overflow: auto;
}

li.menu-item {
    position: relative;            
}

li.menu-item > div.item-content {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    padding-right: 0;
    cursor: pointer;
}

li.menu-item > div.item-content:hover {
    background-color: #0092C4;
    color: #fff;
}
.selected-cate {
    background-color: #0092C4;
}
.item-text {        
    cursor: pointer;
    flex-grow: 1;
}

.arrow-container {
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    
}

ul.submenu {
    display: none;
}

ul.submenu.open {
    display: block;
    padding: 0px 0px 0px 10px;
}
.input-text{
    padding-left: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 20px); 
}       