.search-bar-box{
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin: 40px auto 20px;
    font-family: 'Mazzard';
}

.search-bar-box .icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    color: #959EAD;
    font-size: 16px;
    line-height: 1;
}

.search-bar-box input[type="search"]{
    outline: none;
    border: none;
    background-color: transparent;
    font-weight: 600;
    height: 45px;
    border-radius: 0;
    box-shadow: none;
}

.search-bar-box input::placeholder{
    font-weight: 500;
    color: #959EAD;
}

.search-bar-box input[type="submit"]{
    outline: none;
    border: none;
    background-color: var(--primary-green);
    color: #fff;
    font-weight: 600;
    border-radius: 10px !important;
    text-transform: capitalize;
    box-shadow: none;
    padding: 0px 25px;
    line-height: 1;
}

@media only screen and (max-width: 767px){
    .search-bar-box{
        padding: 5px;
        border-radius: 8px;
        margin: 20px auto;
    }
    .search-bar-box .icon{
        width: 30px;
        font-size: 14px;
    }
    .search-bar-box input[type="search"]{
        height: 40px;
    }
    .search-bar-box input[type="submit"]{
        border-radius: 8px !important;
        padding: 0px 25px;
    }   
}