.th-search-container {
    width: 100%;

    .th-search-form {
        width: 100%;
        display: flex
    }
    
    .th-search-input {
        border-radius: 8px;
        border: 1px solid #ADC6E5;
        padding: 8px 12px 8px 12px;
        width: 99%;
        height: 100%;
    }
 
    .th-search-submit {
        display: inline-flex;
        align-items: center;
        width: auto;
        background-color: #EE613A;
        padding: 8px 24px 8px 24px;
        gap: 8px;
        border-radius: 8px;
        border: 2px solid;
        border-image-source: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 50%);
        color: #FFFFFF;
        height: 40px;
        font-family: Roboto;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        cursor: pointer;
    }

    .th-product-result {
        text-decoration: none;
        display: block;
        padding: .5em;
    }

    .th-product-image {
        float: left;
        width: 60px;
        margin-right: 5px;
    }

    .th-product-name {
        font-weight: 500;
        color: #333;
        font-size: 14px;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .th-product-price {
        font-weight: 600;
        color: #EE613A;
        font-size: 14px;
        text-align: right;
    }

    .no_result {
        padding: 1em;
        text-align: left;
        color: #ADC6E5;
    }

    .th-search-form-container {
        display: flex;
        position: relative;
        width: 100%;
    }

    .autoComplete_wrapper {
        width: 100%;
        position: static;
    }

    .autoComplete_wrapper > input:focus {
        outline: none;
        border-color: #EE613A;
        color: #EE613A;
    }

    .autoComplete_wrapper > ul > li {
        padding: 0;
        white-space: normal;
    }

    .autoComplete_wrapper > ul {
        max-height: 30em !important;
        overflow-y: auto;
    }
}

#mobile_bar_bottom .th-search-container {
    padding-bottom: 8px;
}
