.result-search {
    padding: 35px 0px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    width:100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.select-wrapper-mobile-title{
    display: none;
}

.result-search .select-wrapper {
    width: calc(33.333% - 25px);padding-right: 10px;
}

.select-search-btn-wrapper {
    width: 75px;
    display: flex;
    justify-content: stretch;
    align-items: stretch
}

.select-search-btn{
    border-radius: 5px;
    text-align: center;
    color: #000000;
    background-color: #FFE261;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    border: none;
    margin-left: 10px;
}

@media (max-width:1019px) and (min-width:601px){
    .result-search{
        padding: 25px 10px;
    }
}

@media (max-width:600px){
    .select-wrapper-mobile-title{
        display: block;
        width: 100%;
        font-size: 25px;
        font-weight: bold;
        text-align: center;
        padding-bottom: 5px;
    }
    .result-search{
        flex-wrap: wrap;
        padding: 20px 10px;
    }
    .result-search .select-wrapper {
        width: 100%;
        padding-right: 0px;
        margin-bottom: 10px;
    }
    .select-search-btn-wrapper {
        width:100%;
        max-width: 280px;
    }
    /* .select-search-btn{
        border-radius: 0px;
        font-size: 18px;
    } */
}

.result-header {
    display: flex;
    width: calc(100% - 50px);
    margin-bottom: 10px;
}

.result-header .search-input {
    width: 350px;
}

@media (max-width: 640px) {
    .result-header {
        flex-direction: column !important;
        width: 100% !important;
    }
    .result-header .search-input {
        width: 100% !important;
    }
}