.select-com .select-container {
    width: 400px;
    height: 46px;
    max-width: 100%;
    padding-left: 11px;
    padding-right: 11px;
    border: 1px solid #CCCCCC;
    position: relative;
    display: flex;
    align-items: center;
}
.select-com .select-container.hasError {
    border-bottom: 1px solid #c82d31;
}
.select-com .group-title {
    height: 26px;
    min-height: 0;
    padding: 0 10px;
    background: #f4f5f6;
    line-height: 26px;
}
.select-com .select-item-container {
    display: none;
    flex-direction: column;
    transform: translateY(0px);
    position: absolute;
    left: 0px;
    right: 0px;
    top: 110%;
    color: rgba(0,0,0,.85);
    z-index: 100;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    font-size: 14px;
    font-variant: normal;
    background-color: #fff;
    border-radius: 2px;
    outline: none;
    box-shadow: 0 3px 6px -4px rgba(0,0,0,.12), 0 6px 16px 0 rgba(0,0,0,.08), 0 9px 28px 8px rgba(0,0,0,.05);
}
.select-com .select-container::after {
    content: "\f107";
    font-family: fontawesome;
    color: #5e514d;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}
.select-com .placeholder {
    color: #999;
}
.select-com .select-item-container.opened {
    display: flex;
}
.select-com .select-item {
    width: 400px;
    height: 46px;
    display: flex;
    align-items: center;
    padding-left: 11px;
    padding-right: 11px;
    cursor: pointer;
}
.select-com .select-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-com .select-item:hover {
    background-color: rgba(244,240,238);
}
