.combo {
    display: block;
    position: relative;
    width: 100%;
    white-space: pre-wrap;
}
.combo.openTop {
}
.combo.openTop .combo-menu {
    top: auto;
    bottom: 110%;
}
.combo::after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    content: '\25BC';
    color: #6D7585;
    font-size: 10px;
    line-height: 12px;
    pointer-events: none;
    transform: translate(0, -50%);
    transition: all 0.16s cubic-bezier(0.7, 0, 0.3, 1);
    -webkit-transition: all 0.16s cubic-bezier(0.7, 0, 0.3, 1);
}
.ui-selectmenu-button.ui-button{ color: #2E3138;}
.combo-input {
    display: -webkit-box; 
    width: 100%;
    height: 40px;
    padding: 8px 30px 8px 10px;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    border-color: #dadde2;
    color: #2E3138;
    white-space: pre-wrap !important;
    overflow: hidden;
    word-break:break-word;
    cursor: pointer;
    box-sizing: border-box;
}
.combo-input:hover {
    text-decoration: underline;
    background-color: #f5f6fa;
    border-color: #dadde2;
}
.combo-input:focus {
}
.combo-menu {
    display: none;
    position: absolute;
    z-index: 100;
    top: 110%;
    left: 0;
    width: 100%;
    padding-bottom: 1px;
    border: 1px solid #c5c5c5;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 8px rgb(0 0 0 / 20%);
    box-sizing: border-box;
    color: #2E3138;
    animation: selectShow 0.3s;
}
.combo-menu.top{
    top: auto!important;
    bottom: 110% !important;
}
.combo-menu .combo-option {
    padding: 8px;
    /* color: #666; */
    word-break: break-word;
    color: #2E3138;
    font-size: 14px;
    cursor: pointer;
    display: flex;
}

.combo-menu .combo-option:hover {
    background-color: #f5f6fa;
    text-decoration: underline;
}
.combo-menu .combo-option:active {
    box-shadow: inset 0 0 0px 1px #354056;
}
.combo-menu .combo-option.option-current {
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px #354056;
    text-decoration: underline;
}
.combo-menu .combo-option[aria-selected='true'] {
    background: #dadde2;
    box-shadow: inset 0 0 0 2px #dadde2;
    text-decoration: none;
    font-weight: 700;
}
.combo-menu .combo-option[aria-selected='true']:hover{
    text-decoration: underline;
}
.combo-menu .combo-option.option-current[aria-selected='true'] {
    text-decoration: underline;
    box-shadow: inset 0 0 0px 1px #354056;
}
.combo-list{
    max-height: 300px;
    overflow: auto;
    overflow-y: auto;
    overflow-x: hidden;
}
.combo-list.top{
}
/* .combo-option[aria-selected='true'] {
    background: #cccccc;
    position: relative;
    padding-right: 14px;
    box-shadow: inset 0 0 0 2px #a50034;
} */
.combo-menu .combo-option:first-child {
    border-radius: 6px 6px 0 0;
}
.combo-menu .combo-option:last-child {
    border-radius: 0 0 6px 6px;
}
.combo-menu .combo-option.depthZero::before {content:''; min-width: 22px; width: 22px; height: 20px; background: url(../img/custom/ic_business.svg)no-repeat; }

.combo-menu .combo-option.depthOne {
    padding-left: 18px;
}
.combo-menu .combo-option.depthOne::before {content:''; min-width: 22px; width: 22px; height: 20px; background: url(../img/custom/ic_workspace.svg)no-repeat; }
.combo-menu .combo-option.depthTwo {
    padding-left: 28px;
}
.combo.open .combo-menu {
    display: block;
}
.combo.open .combo-input {
    border :2px solid #354056;
    background-color: #fff;
}
.combo .combo-input.ui-selectmenu-button.depthZero::before {content:''; min-width: 22px; width: 22px; height: 20px; background: url(../img/custom/ic_business.svg)no-repeat; }
.combo .combo-input.ui-selectmenu-button.depthOne::before {content:''; min-width: 22px; width: 22px; height: 20px; background: url(../img/custom/ic_workspace.svg)no-repeat; }
.combo.open::after {
    transform: rotate(180deg) translate(0, 6px);
}
.combo-search{
    margin: 8px
}
.combo-search input{background-color: #f5f6fa; border:none}
.combo-search input:-ms-input-placeholder {color:#555555 !important;}
.combo-search input::-webkit-input-placeholder {color:#555555 !important;}
/* .combo-option[aria-selected='true']::after {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 4px;
    height: 8px;
    border-right: 2px solid #a50034;
    border-bottom: 2px solid #a50034;
    content: '';
    transform: translate(0, -50%) rotate(45deg);
} */

.disabled {
    cursor: not-allowed !important;
    opacity: 0.5;
    color: #6D7585;
}
.disabled:hover {
    text-decoration: none !important;
}

@keyframes selectShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    10% {
        opacity: 0.6;
        transform: scale(1.06);
        -webkit-transform: scale(1.06);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


.combo::after {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icon/ic_arrow_down.svg);
}
.combo.home {
    max-width: 200px;
}
