.title-search__price-discount {
    color: #A2A2A2;
    display: inline-block;
    position: relative;
    white-space: nowrap;
}

.title-search__price-discount:after {
    background-color: #FF0462;
    content: '';
    height: .08333em;
    left: 0;
    position: absolute;
    top: 50%;
    margin-top: -0.0625em;
    width: 100%;
}

.title-search__price-current {
    font-size: 1rem;
    white-space: nowrap;
}

.discount.title-search__price-current {
    color: #FF0462;
}

@media (min-width: 992px) {
    .title-search__price-current {
        font-weight: 600;
        font-size: 1.25rem;
    }
}

.search-popup {
    display: none;
    position: fixed;
    height: 6.875rem;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1110;
    background: #f8f9fa;
}

.search-popup__inner {
    margin: auto;
    max-width: 80rem;
    position: relative;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 100%;
    z-index: 2;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 1.25rem;
}

.search-popup__close {
    position: relative;
    font-size: 1rem;
    color: #000;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    width: 2rem;
    height: 2rem;
    border: 1px solid #999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 0 1rem;
}

.search-popup__close:hover, .search-popup__close:focus {
    border-color: #000;
    color: #000;
}

.search-popup__form {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    position: relative;
    padding: 0 1.25rem;
    -webkit-box-flex: 1;
    -ms-flex: 1 1;
    flex: 1 1;
}

.search-popup__group {
    width: 100%;
}

.search-popup__form .input-group-sm .btn {
    font-size: 1.5rem;
    height: 2.625rem;
    min-width: auto;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.search-popup--hidden {
    display: none;
}

.search-popup--shown {
    display: block;
}

.search-popup--show {
    display: block;
    -webkit-animation: search-popup-show 0.3s ease-in-out 0s 1 normal forwards;
    animation: search-popup-show 0.3s ease-in-out 0s 1 normal forwards;
}

.search-popup--hide {
    display: block;
    -webkit-animation: search-popup-hide 0.3s ease-in-out 0s 1 normal forwards;
    animation: search-popup-hide 0.3s ease-in-out 0s 1 normal forwards;
}

.search-popup .title-search-result {
    padding-top: 90px;
    margin-top: -70px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 40px;
    z-index: 1;
}

@media (max-width: 575.98px) {
    .search-popup__inner {
        padding: 0;
    }

    .search-popup__close {
        margin-left: 0;
    }

    .search-popup .title-search-result {
        margin-top: 2rem;
        padding: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: #f8f9fa;
        border-top: 1px solid #D3D3D3;
        width: 100% !important;
        left: 0 !important;
    }
}

@media (min-width: 1200px) {
    .search-popup__close {
        display: none;
    }
}

@-webkit-keyframes search-popup-show {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes search-popup-show {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes search-popup-hide {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes search-popup-hide {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.title-search-result {
    z-index: 1120;
    overflow: hidden;
    display: none;
    position: absolute;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 32px 0 rgba(84, 133, 169, 0.3);
    box-shadow: 0 10px 32px 0 rgba(84, 133, 169, 0.3);
    border: 0;
    border-radius: .25rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.title-search-container {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.title-search__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.title-search__item, .title-search__title {
    padding: 0.25rem 1rem;
}

.title-search__title {
    font-size: 0.875rem;
    color: #79798D;
}

.title-search__img {
    margin-right: 1rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
}

.title-search__img img {
    max-width: 3.125rem;
    max-height: 3.125rem;
    min-width: 50px;
    object-fit: contain;
}

.title-search__item--selected {
    background-color: #F7F7F7;
}

.title-search__link {
    color: #000;
    font-size: 1rem;
}

.title-search__link:hover {
    text-decoration: none;
    color: #000;
}

.title-search + .title-search {
    margin-top: 0.25rem;
}

.title-search__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
}

.title-search__price-current {
    color: #000;
    font-size: 0.875rem;
}

.title-search__price-discount {
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.mobile_from {
    display: none;
}

@media (max-width: 768px) {
    .mobile_from {
        display: block;
    }

    .title-search-result {
        top: 0 !important;
        width: 100% !important;
        left: 0 !important;
        height: 100% !important;
        overflow: scroll;
    }

    .title-search  {
        margin-top: 0.25rem;
    }

    .mobile_from .search-bar__input-icon_close, .mobile_from .search-bar__input-icon_loading {
        right: 10px;
    }
}
.title-search-result.active {
    display: block!important;
}
.search-bar__mobile-search-icon-arrow {
    top: 11px;
    width: 10px;
    height: 25px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNSIgaGVpZ2h0PSI5IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik00Ljc4MiAxLjFMMS41MDcgNC4zNzNsMy4zMTggMy4zMTlhLjYyNS42MjUgMCAwMS0uODg0Ljg4M2wtMy43NS0zLjc1QS42MjQuNjI0IDAgMDEwIDQuMzc1di0uMDAyYS42Mi42MiAwIDAxLjE5MS0uNDVsMy43NS0zLjc1aC4wMDJhLjYyNS42MjUgMCAxMS44NC45MjciIGZpbGw9IiMwQTBCMDkiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
    background-size: 7px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin: 0 10px;
}

.btn-search {
    background: white !important;
    border-color: #ced4da !important;
}

.btn-search svg use {
    fill: black;
}

.search-bar__input-icon {
    position: absolute;
    right: 50px;
    top: 20px;
    z-index: 15;
    cursor: text;
    transform: translateY(-50%);
}

.search-bar__input-icon_close {
    display: inline-block;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='7' height='7' xmlns='http://www.w3.org/2000/svg' fill='%23818181'%3E%3Cpath d='M.583 7a.53.53 0 01-.408-.175.564.564 0 010-.817L2.683 3.5.233.992a.564.564 0 010-.817.564.564 0 01.817 0L3.5 2.683 6.008.175a.564.564 0 01.817 0 .564.564 0 010 .817L4.317 3.5l2.508 2.508a.564.564 0 010 .817.564.564 0 01-.817 0L3.5 4.317.992 6.825A.53.53 0 01.583 7z' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 10px;
    position: absolute;
    right: 50px;
    z-index: 15;
    top: 20px;
}

.icon-loading-oval {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAzOCAzOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiMwMDAiPjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEgMSkiIHN0cm9rZS13aWR0aD0iNCIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuMTUiIGN4PSIxOCIgY3k9IjE4IiByPSIxNiIvPjxwYXRoIGQ9Ik0zNCAyMEMzNCA4LjA2IDI3Ljk0IDIgMTYgMiI+PGFuaW1hdGVUcmFuc2Zvcm0gYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIiB0eXBlPSJyb3RhdGUiIGZyb209IjAgMTggMTgiIHRvPSIzNjAgMTggMTgiIGR1cj0iMXMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIi8+PC9wYXRoPjwvZz48L3N2Zz4=);
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.search-bar__popular-phrases {
    display: flex;
    flex-wrap: wrap;
    height: 25px;
    padding: 0 15px;
    margin: 8px 0 12px;
    overflow: hidden;
}


.search-bar__popular-phrases-link {
    padding: 3px 5px;
    font-size: 13px;
    line-height: 15px;
    color: #000;
    text-decoration: none;
    background: #f3f3f3;
    border-radius: 3px;
}


.search-bar__popular-phrases-el {
    margin-right: 5px;
}

.icon-search {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS43NzUgMTAuNzI1TDkuNDUgOC40Yy42NzUtLjkgMS4wNS0xLjk1IDEuMDUtMy4xNUE1LjIxOCA1LjIxOCAwIDAwNS4yNSAwIDUuMjE4IDUuMjE4IDAgMDAwIDUuMjVhNS4yMTggNS4yMTggMCAwMDUuMjUgNS4yNWMxLjIgMCAyLjI1LS4zNzUgMy4xNS0xLjA1bDIuMzI1IDIuMzI1YS44MS44MSAwIDAwLjUyNS4yMjUuNjguNjggMCAwMC41MjUtLjIyNWMuMy0uMy4zLS43NSAwLTEuMDV6TTEuNSA1LjI1YzAtMi4xIDEuNjUtMy43NSAzLjc1LTMuNzVTOSAzLjE1IDkgNS4yNSA3LjM1IDkgNS4yNSA5IDEuNSA3LjM1IDEuNSA1LjI1eiIgZmlsbD0iIzgxODE4MSIvPjwvc3ZnPg==);
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.icon-search_black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.775 10.725L9.45 8.4c.675-.9 1.05-1.95 1.05-3.15A5.218 5.218 0 005.25 0 5.218 5.218 0 000 5.25a5.218 5.218 0 005.25 5.25c1.2 0 2.25-.375 3.15-1.05l2.325 2.325a.81.81 0 00.525.225.68.68 0 00.525-.225c.3-.3.3-.75 0-1.05zM1.5 5.25c0-2.1 1.65-3.75 3.75-3.75S9 3.15 9 5.25 7.35 9 5.25 9 1.5 7.35 1.5 5.25z'/%3E%3C/svg%3E");
}

.search-bar__popular-phrases-icon {
    display: none;
}
.bx_smart_no_result_find {
    padding: 0 30px;
}

.search-bar__quicksearch-el-wrap {
    display: block;
    padding: 0 16px 0 0;
    color: #000;
    text-decoration: none;
}
.search-bar__quicksearch-el {
    display: flex;
    align-items: center;
    padding: 6px 0 0;
    cursor: pointer;
    border-top: 1px solid #f3f3f3;
}
.search-bar__quicksearch-photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-width: 40px;
    height: 50px;
    object-fit: contain;
    margin-right: 1rem;
}

.title-search__item .p.search-bar__quicksearch-name {
    font-size: 1rem;
}

.search-bar__quicksearch-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-self: center;
}
.search-bar__quicksearch-row {
    display: flex;
    justify-content: space-between;
}

.all_result_button {
    align-items: center;
    justify-content: center;
    width: 100%;
    /* height: 25px; */
    color: #000;
    text-decoration: none;
    cursor: pointer;
    border-top: 1px solid #f2f2f2;
    display: flex;
    padding-top: 10px;
}

.header_mobile_search {
    display: none;
}
#popup-title-search-input_top {
    border-left: none;
    margin-right: 30px;
    border-right: none;
    border-top: none;
}
@media (max-width: 768px) {
    .header_mobile_search {
        display: block;
        padding: 10px 5px;
    }
    #popup-title-search {
        display: none;
    }
    .search-bar__popular-phrases-icon {
        position: absolute;
        top: 11px;
        display: block;
        cursor: pointer;
        left: 10px;
        width: 14px;
        height: 14px;
        background-size: contain;
    }
    .search-bar__popular-phrases {
        display: block;
        height: auto;
        padding: 0;
        margin: 2px 0;
        overflow: visible;
    }
    .search-bar__popular-phrases-el {
        position: relative;
        display: none;
        padding: 0 10px;
        margin-right: 0;
        border-bottom: 1px solid #f3f3f3;
    }
    .search-bar__popular-phrases-el:nth-child(-n+5) {
        display: flex;
    }

    .search-bar__popular-phrases-link {
        display: block;
        width: 100%;
        padding: 10px 24px 11px;
        background: #fff;
    }
}