select.select {
    display: none;
}

.select-styled-outer {
    border: 1px solid #000;
    border-radius: 5px;
    background: #fff;
    position: relative;
}

.select-styled {
    min-height: 40px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
}

.select-styled-text {
   padding-right: 10px;
}

.select-styled-sign {
    display: block;
    width: 20px;
    height: 12px;
    position: relative;
}

.select-styled-sign::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 3px;
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: rotate(225deg);
}

.select-styled.on .select-styled-sign::after {
    top: 4px;
    transform: rotate(45deg);
}

.select-styled__item {
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 18px;
    min-height: 30px;
}

.select-styled__item:hover {
    background: #edecec;
}

.select-styled__list {
    width: 100%;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    background: rgb(255, 255, 255) none repeat scroll 0% 0%;
    margin-top: 5px;
    border-radius: 5px;
    box-shadow: rgba(42, 83, 165, 0.25) 0px 0px 20px;
    border: 1px solid rgb(224, 224, 224);
}