/*
.popup-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: hsl(0deg 0% 0% / 40%);
    left: 0;
    top: 0;
    z-index: 9999;
    overflow: hidden;
    overflow-y: auto;
    display: none;
}
.popup-wrapper.active {
    display: block;
}
.popup-content {
    width: 750px;
    max-width: 100%;
    top: 0;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    visibility: hidden;
}
.popup-wrapper.active .popup-content {
    top: 60px;
    visibility: visible;
}
.popup-close {
    background-color: var(--cl-2);
    color: #fff;
    line-height: 23px;
    display: inline-block;
    width: 23px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -10px;
}
*/
#searchAjaxPopup {
    border: 0;
    font-size: 13px;
    line-height: 35px;
    padding: 0 10px;
    display: flex;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
}
.searchInput {
    border: 0;
    font-size: 13px;
    line-height: 50px;
    padding: 0 10px;
    flex-grow: 1;
}
.searchBtn {
    border: 0;
    background: transparent;
    box-shadow: 0 0 0;
    flex: 0 0 35px;
    text-align: center;
    color: #000;
    font-size: 20px;
}
.boxSearch{
    position: relative;
}
.search-wrapper-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
}
.search-wrapper-title{
    display: flex;
    gap: 5px;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10px;
}
.search-wrapper-title img {
    width: 15px;
}
.search-wrapper-tags-item {
    display: inline-block;
    background-color: var(--cl-2);
    color: #fff;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 15px;
    margin-right: 10px;
}
.search-wrapper-box {
    padding-bottom: 15px;
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: 15px;
}
.search-product-items {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 20px;
}
.search-product-item {
    display: flex;
    gap: 10px;
}
.search-product-item .pic {
    flex: 0 0 100px;
    overflow: hidden;
    border-radius: 5px;
}
.search-product-item .pic img{
    width: 100%;
    height: 100px;
    object-fit: cover;
}
.search-product-item .title {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}
.search-product-item .price {
    color: var(--cl-4);
    font-size: 18px;
    display: flex;
    gap: 15px;
    align-items: flex-end;
    font-weight: 600;
}
.search-product-item .price del{
    color: #909195;
    font-size: 14px;
    order: 2;
}
.search-product-item .price ins{
    order: 1;
    text-decoration: none;
}
.search-wrapper-result,.search-wrapper-content.showResult .search-wrapper-noAction{
    display: none;
}
.search-wrapper-content.showResult .search-wrapper-result{
    display: inline-block;
}
@media only screen and (max-width : 768px) {
.search-product-items {
    grid-template-columns: repeat(1, 1fr);
}
}