.search-panel {
    position: absolute;
    top:318px;
    left: 12.5%;
    width: 75%;
    height: 144px;
    background-color: white;
    padding-top: 48px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.search-panel__form input{
    border: 1px solid rgba(237, 242, 247, 1);
}

.search-panel__form{
    width: 91.11%;
    display: block;
}

.search-panel__element{
    height: 48px;
    float: left;
    caret-color: rgba(255, 178, 0, 1);
}

.search-input, .selector-box{
    font-weight: 400;
    font-family: Assistant-Regular;
    line-height: 34px;
    font-size: 16px;
    color:Dark Grey;
}

.search-input{
    width: 51.12%;
    padding: 7px 16px;
}

.search-input:focus::placeholder{
    opacity: 0;
}

.search-submit {
    width: 20.93%;
    border: none;
    background-color: #FFB200;
    border-radius: 0 5px 5px 0;
    position: relative;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    padding-left: 25px;
}

.search-submit::before{
    content: '';
    width: 14px;
    height: 14px;
    display: block;
    position: absolute;
    background: url('../../images/search.png');
    left: 34.8%;
    top: 16px;
}