.selector{
    width: 100%;
    caret-color: rgba(255, 178, 0, 1);
    font-family: Assistant-Regular;
    font-size: 16px;
    line-height: 34px;
    padding: 12px 50px 16px 16px;
}

.selector-box{
    width: 27.85%;
    margin-right: 0.1%;
    position: relative;
}

.selector::placeholder{
    color: rgba(113, 128, 150, 1);
}

.selector:focus::placeholder{
    opacity: 0;
}

.selector-box::after{
    content: url('../../images/arrow-down.png');
    position: absolute;
    top: 21.5px;
    right: 21px;
    cursor: pointer;
}

.manufacture-datalist {
    position: absolute;
    top: 55px;
    width: 100%;
    background-color: white;
    display: none;
    border-radius: 5px;
    overflow-y: scroll;
    height: 200px;
    border: 1px solid rgba(237, 242, 247, 1);
}

.manufacture-option {
    padding-left: 5px;
    position: relative;
    width: 100%;
    height: 34px;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: white;
    cursor: pointer;
}

.option:first-child {
    border-radius: 5px 5px 0 0;
}

.option:last-child{
    border-radius:  0 0 5px 5px;
}

.option:hover{
    background-color: rgba(255, 178, 0, 0.17);
}

.arrow-wrapper {
    position: absolute;
    width: 50px;
    height: 48px;
    right: 0;
    cursor:pointer;
    z-index: 1;
}