*, ::after, ::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "ElleFutura";
    font-size: 15px;
    line-height: 1.5;
    color: #000;
}
@font-face {
    font-family: "ElleFutura";
    src: url('/fonts/ElleFutura/Elle-Futura-Light.otf');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "ElleFutura";
    src: url('/fonts/ElleFutura/Elle-Futura-Medium.otf');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: "ElleFutura";
    src: url('/fonts/ElleFutura/Elle-Futura-Bold.otf');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}


.form-control:focus, a, button, .btn, .btn:focus, .form-select:focus {
    outline: none !important;
    box-shadow: none;
}


.container {
    padding-right: 15px;
    padding-left: 15px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: #000000;
    text-decoration: none;
    outline: none;
}
a:hover {
    color: #000;
}
.header_wrapper {
    display: flex;
    align-items: center;
    height: auto;
}
.header_wrapper .logo, .header_wrapper .header-right {
    width: 150px;
}
.header_wrapper .logo img {
    width: 134px;
}
.header_wrapper .navigation-menu {
    flex: 1;
}
.navigation-menu nav>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.navigation-menu ul > li > a.menu-hover {
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding: 20px 15px;
    position: relative;
}
.header-right ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-right ul li i {
    font-size: 20px;
    cursor: pointer;
}
.icon-user .account-action {
    position: absolute;
    background: #333;
    border-radius: 5px;
    color: #fff;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    text-align: left;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    width: 95px;
    z-index: 9;
}
.icon-user .account-action:before {
    background: transparent;
    content: '';
    position: absolute;
    bottom: 100%;
    height: 10px;
    left: 0;
    width: 100%;
}
.icon-user .account-action:after {
    background: #333333;
    content: '';
    height: 14px;
    position: absolute;
    transform: rotate(45deg);
    width: 14px;
    z-index: -1;
    left: calc(50% - 7px);
    top: -7px;
}
.icon-user .account-action a {
    padding: 7px 8px;
    color: #fff;
    display: block;
}
.icon-user .account-action a:hover {
    background: #6666;
}
.icon-user:hover .account-action  {
    opacity: 1;
    visibility: visible;
}
.icon-heart, .icon-cart, .icon-user {
    position: relative;
}
.icon-heart .count-heart, .icon-cart .count-cart {
    position: absolute;
    display: flex;
    background: #da3f3f;
    border-radius: 999px;
    width: 18px;
    height: 18px;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
    top: -9px;
    right: -2px;
    align-items: center;
    justify-content: center;
}
.mini-cart {
    position: absolute;
    background: #fff;
    width: 400px;
    right: -10%;
    top: calc(100% + 8px);
    padding: 10px 15px;
    border-radius: 3px;
    border: 1px solid rgb(0 0 0 / 8%);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
}
.mini-cart:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -9px;
    right: 15px;
}

.mini-cart .mini-cart-list {
    flex-direction: column;
    font-size: 14px;
    overflow-y: auto;
    max-height: 310px;
}
.mini-cart .mini-cart-list .item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.mini-cart .mini-cart-list .item .cart-load {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    justify-content: center;
    align-items: center;
    display: none;
    left: 0;
}
.mini-cart .mini-cart-list .item .thumb {
    width: 80px;
}
.mini-cart .mini-cart-list .item .thumb img {
    height: 90px;
    object-fit: scale-down;
}
.mini-cart .mini-cart-list .item .detail-item {
    width: calc(100% - 80px);
    padding-left: 10px;
}
.mini-cart .mini-cart-list .item .detail-item .product-details .product-name {
    display: flex;
    justify-content: space-between;
}
.mini-cart .mini-cart-list .item .detail-item .product-details .product-name a {
    margin-right: 10px;
    font-weight: 600;
}
.mini-cart .mini-cart-list .item .detail-item .product-details-bottom {
    text-align: start;
}
.mini-cart .mini-cart-list .item .detail-item .product-details-bottom .old-price {
    color: #919191;
}
.mini-cart .mini-cart-list .item .detail-item .product-details-bottom .price {
    font-weight: 600;
}
.mini-cart .total-price {
    margin: 10px 0;
    text-align: center;
}
.mini-cart .total-price .sub-price {
    font-size: 16px;
    font-weight: 600;
}
.mini-cart .check_out button {
    display: block;
    padding: 10px 15px;
    border-radius: 3px;
    background: #000;
    color: #fff;
    border: none;
    outline: none;
    width: 100%;
    margin-bottom: 0;
}
#menu-mobile.offcanvas-start {
    width: 300px;
}
#header-search-fixed .header_wrapper .form-search {
    flex: 1;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#header-search-fixed .header_wrapper .form-search input {
    height: 45px;
    font-size: 14px;
    outline: none;
    border-radius: 999px;
    padding-left: 15px;
    border: 1px solid;
}
#header-search-fixed .header_wrapper .form-search button {
    position: absolute;
    height: calc(100% - 6px);
    border-radius: 999px;
    top: 3px;
    right: 3px;
    width: 63px;
    background: #000;
    z-index: 5;
}
#header-search-fixed .header_wrapper .form-search input:focus {
    box-shadow: none;
    outline: none;
}
#header-search-fixed .header_wrapper .form-search button i {
    color: #fff;
    font-size: 19px;
}
#header-search-fixed.offcanvas-top {
    height: 129px;
}
#header-search-fixed.offcanvas-top .margin-auto {
    margin: auto;
}
#header-search-fixed .header_wrapper .form-search form, #header-search-fixed .header_wrapper .form-search .search-suggest {
    width: 650px;
}
#header-search-fixed .search-suggest ul li {
    margin-right: 7px;
}
#header-search-fixed .search-suggest ul {
    display: flex;
    flex-wrap: wrap;
}
#header-search-fixed .search-suggest p {
    margin-bottom: 0;
    display: inline-block;
}
#header-search-fixed .header_wrapper .form-search .search-suggest a {
    font-size: 12px;
    color: #6c757d;
    text-decoration: none;
}
.navigation-menu .menu-item {
    position: relative;
    font-weight: 600;
}
.navigation-menu .menu-item .sub-menu {
    padding: 14px 20px;
    border-radius: 0px;
    position: absolute;
    bottom: initial;
    left: inherit;
    height: auto;
    width: 250px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 5px 8px 0px;
    display: none;
}
.navigation-menu .menu-item > a {
    display: block;
}
.navigation-menu .menu-item > a i {
    margin-left: 5px;
}
.lvl1.sub-menu > li {
    padding: 5px 0;
}
.lvl1.sub-menu > li:first-child {
    padding-top: 0;
}
.menu-item:hover .sub-menu {
    display: block;
    z-index: 999;
}
.menu-item a:hover + .sub-menu {
    display: block;
    z-index: 900;
}
.navigation-menu ul > li > a.menu-hover:after {
    background-color: currentColor;
    bottom: calc(1.25rem - 5px);
    content: "";
    height: 2px;
    left: 1rem;
    position: absolute;
    width: 0;
    transition: width .2s ease-in-out;
    color: #000000;
}
.navigation-menu .menu-item:hover > a.menu-hover:after {
    width: calc(100% - 30px);
}
.user-mobile {
    display: flex;
    padding: 10px 15px;
    align-items: center;
    background: #000000;
}
.user-mobile i {
    color: #fff;
    font-size: 24px;
    margin-right: 10px;
}
.user-mobile .login {
    display: flex;
    flex-direction: column;
    color: #fff;
}
.user-mobile .login a {
    color: #fff;
}
.navigation-menu-mobile {
    padding: 10px 15px;
}
.navigation-menu-mobile .menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#menu-mobile .navigation-menu-mobile .sub-menu-mobile {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    transform: translateX(-100%);
    z-index: -1;
    background: #fff;
    transition: all .6s;

}
#menu-mobile .navigation-menu-mobile .sub-menu-mobile.toggle-right {
    transform: translateX(0);
    z-index: 2;
}
#menu-mobile.offcanvas {
    overflow: hidden;
}
.sub-menu-mobile .has-child {
    background: #eee;
    padding: 10px 15px;
    display: flex;
    align-items: center;
}
.sub-menu-mobile .has-child .fa-angle-left {
    margin-right: 10px;
    padding: 3px 10px;
}
.sub-menu-mobile .sub-menu-item {
    padding: 5px 15px;
}
.navigation-menu-mobile .menu-item {
    padding: 5px 0;
    position: relative;
}
.navigation-menu-mobile .menu-item .fa-angle-right {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 5px;
    margin-left: 5px;
}
.ajaxSearchResults {
    width: 640px;
    position: fixed;
    background-color: #ffffff;
    margin-top: 12px;
    box-shadow: 0 0 5px rgba(0,0,0,.25);
    top: 75px;
    border-radius: 8px;
    display: none;
}
.results-seach .loadsearch li {
    line-height: 16px;
    padding: 4px 10px 4px 10px;
    list-style: none;
    border-top: 1px solid #eeeeee;
}
.results-seach .loadsearch li:hover {
    background-color: #f7f7f7;
}
.results-seach .loadsearch li a {
    padding: 2px;
    outline: none;
    overflow: hidden;
    min-height: 60px;
    display: flex;
}
.results-seach .loadsearch li a img {
    max-width: 70px;
    margin: 0px 10px 5px 0px;
    max-height: 70px;
}
.results-seach .loadsearch li .detail .name-product {
    font-size: 14px;
    font-weight: normal;
}
.results-seach .price {
    margin-right: 5px;
    color: #f3283d;
    font-weight: 500;
    font-size: 16px;
}
.results-seach .old-price {
    text-decoration: line-through;
    color: #a0a0a0;
}
.results-seach .title-text-result {
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #a0a0a0;
}
.results-seach .title-text-result .text-search {
    color: #000;
}
.results-seach .search_more {
    border-top: 1px solid #eeeeee;
    display: block;
    text-align: center;
    padding: 10px 0;
}
header.sticky {
    top: 0;
    position: sticky;
    background: #fff;
    z-index: 999;
}
.top-banner {
    height: 40px;
    line-height: 40px;
    background: #000000;
    color: #fff;
}
.top-banner button {
    position: absolute;
    right: 8px;
    top: 8px;
    background: white;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.top-banner p {
    display: inline-block;
    margin-bottom: 0;
}
.top-banner a {
    color: #fff;
}


/*index*/
.banner-home .owl-nav button {
    width: 44px;
    height: 44px;
    background: #ebebeb !important;
    border: 1px solid #ebebeb;
    border-radius: 100% !important;
    position: absolute;
    top: 50%;
    opacity: .7;
}
.banner-home .owl-nav button i {
    font-weight: 900;
}
.banner-home .owl-nav button:hover {
    opacity: 1;
    box-shadow: 1px 2px 10px -1px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #333 !important;
}
.banner-home .owl-nav .owl-prev {
    left: 10px;
}
.banner-home .owl-nav .owl-next {
    right: 10px;
}
.banner-home.owl-theme .owl-dots button span {
    width: 16px;
    height: 4px;
    border-radius: 2px;
    opacity: .5;
    margin: 0 3px;
}
.banner-home.owl-theme .owl-dots .owl-dot.active span {
    opacity: 1;
    background: #000000;
}
.banner-home.owl-theme .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: 1rem;
}
.home-product-tab .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 30px 15px;
    border-bottom: none;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #fff;
}
.home-product-tab .fade {
    transition: opacity 0.3s ease-in-out;
}
.home-product-tab .wrap-tab-content, .home-collection {
    margin: 0 20px;
}
.home-collection.container {
    margin: 0 auto;
}
.home-product-tab .title li span {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    color: #C8C8C8;
    cursor: pointer;
}
.home-product-tab .title li.active span {
    color: #000;
    border-bottom: 1px solid black;
}

.product_info {
    padding: 10px 10px 12px;
}
.list-item {
    position: relative;
}
.list-item .product_thumb {
    position: relative;
    overflow: hidden;
    padding: 5px;
}
.product_info h3 {
    white-space: initial;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 16px;
    margin: 0 0 12px;
    font-weight: 500;
}
.product_info .price {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.product_info .price ins {
    margin-right: 20px;
    text-decoration: none;
}
.product_info .price del {
    color: #DDDDDD;
}
.wrap-tab-content .owl-nav button {
    position: absolute;
    top: -50px;
}
.wrap-tab-content .owl-nav .owl-prev {
    left: 10px;
}
.wrap-tab-content .owl-nav .owl-next {
    right: 10px;
}
.wrap-tab-content .owl-nav button i {
    font-size: 25px;
}
.list-product.owl-carousel .owl-item {
    padding: 0 7px;
}
.home-product-new .list-product, .home-product-best-seller .list-product {
    display: flex;
    flex-wrap: wrap;
}
.home-product-new .container, .home-product-best-seller .container {
    margin: 0 20px;
}
.home-product-new, .home-product-best-seller {
    margin: 0 20px;
}
.list-product > .col-lg-3 {
    padding: 0 7px;
    margin-bottom: 14px;
}
.btn-collection {
    border: 1px solid #252a2b;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 25px;
    margin-top: 15px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    letter-spacing: 2px;
    position: relative;
}
.btn-collection.dark {
    color: #000;
    border-color: #000000;
    position: relative;
    z-index: 0;
}
.btn-collection:before {
    position: absolute;
    content: '';
    display: block;
    left: 0px;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    z-index: -1;
    background-color: #ffffff;
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86),-webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.btn-collection.dark:before {
    background-color: #fff;
}
.btn-collection.dark:hover {
    color: #fff;
    background: #000;
}
.btn-collection.dark:hover:before {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.home-product-tab {
    margin-bottom: 30px;
}
.home-product-new .title h3, .home-product-best-seller .title h3 {
    color: #555556;
    margin: 45px 0;
    text-align: center;
    font-size: 37.5px;
    font-weight: 600;
}
.home-product-new, .home-product-best-seller {
    padding-bottom: 40px;
}
.product-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
}
.product-wishlist a {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100%;
}
.product-wishlist a i {
    font-size: 20px;
}
.banner_collection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 20px;
}
.banner_collection .item:nth-child(1) {
    grid-area: 1 / 1 / 5 / 3;
}
.banner_collection .item:nth-child(2) {
    grid-area: 1 / 3 / 3 / 4;
}
.banner_collection .item:nth-child(3) {
    grid-area: 3 / 3 / 5 / 4;
}
.banner_collection .item {
    height: 100%;
    width: 100%;
    position: relative;
}
.banner_collection .item button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 96px;
    border: none;
    background: white;
    font-weight: 500;
    height: 37px;
    font-size: 18px;
    width: 115px;
    color: #000;
}
.banner_collection .item img {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.title_collection {
    color: #555556;
    margin: 45px 0;
    text-align: center;
    font-size: 37.5px;
    font-weight: 600;
}

/*footer*/
.wrap-footer {
    display: flex;
    flex-wrap: wrap;
}
.wrap-footer .title {
    letter-spacing: -.02em;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}
.wrap-footer > div {
    padding: 0 15px;
}
.logo-footer img {
    width: 120px;
}
.wrap-footer ul {
    font-size: 14px;
}
.wrap-footer ul li {
    margin-bottom: 34px;
}
footer {
    padding: 40px 0;
    margin: 0 20px;
}
.social {
    display: flex;
    gap: 11px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
ul.social li {
    margin-bottom: 0;
}

.social img {
    width: 30px;
    height: 30px;
    object-fit: scale-down;
}
/*end footer*/

.breadcrumb>li:not(:last-child):after {
    content: "/";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    margin-left: 5px;
    margin-right: 3px;
    font-size: 12px;
    color: #999999;
}
.bread-crumb {
    background: #F6F6F6;
}
.breadcrumb {
    padding: 0.25rem 1rem;
    font-size: 14px;
}
.bread-crumb ol li:last-child a span {
    color: #999999;
}
.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 3px;
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    font-size: .875rem;
    color: #8898aa;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.pagination li.active a, .pagination li.active a:hover {
    z-index: 1;
    color: #fff;
    background-color: #080808;
    border-color: #080808;
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}
.pagination li:not(.active) a:hover {
    z-index: 2;
    color: #8898aa;
    text-decoration: none;
    background-color: #dee2e6;
    border-color: #dee2e6;
}
.pagination {
    justify-content: right;
}

.wishlist-product.active {
    background: red;
}
.wishlist-product.active i {
    color: #fff;
}
.button-loop .icon-quickview {
    font-family: 'FontAwesome';
    content: "\f06e";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 18px;
    transform: translate(-50%, -50%);
    z-index: 995;
    width: 40px;
    height: 40px;
    line-height: 31px;
    border-radius: 50%;
    border: 1px solid #eee;
    text-align: center;
    background: #fff;
    color: #6d6565;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    transition: all 400ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.button-loop .icon-quickview:hover {
    background-color: #444;
    color: #fff;
    border: 1px solid #fff;
}

/*quickview*/
.product-quickview {
    display: flex;
    flex-wrap: wrap;
}
.product-quickview > div {
    padding: 0 15px;
    position: relative;
}
.wrapbox-detail-quickview .product-heading h2 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}
.box-price-quickview {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.box-price-quickview .pro-title {
    min-width: 120px;
    font-weight: 600;
    width: 28%;
}
.box-price-quickview .pro-price-qv {
    font-weight: 600;
    color: #000;
    font-size: 22px;
    margin-right: 10px;
}
.select-swatch-qv .swatch {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
}
.select-swatch-qv .swatch .title {
    width: 28%;
    min-width: 120px;
    font-weight: 600;
}
.select-swatch-qv .swatch .title > span {
    display: flex;
    flex-direction: column;
}
.product-add-qv {
    display: flex;
    align-items: center;
}
.product-add-qv input {
    line-height: 15px;
    padding: 4px;
    width: 40px;
    border: 1px solid #ced4da;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c9196;
    background: #fff;
    text-align: center;
}
.product-add-qv .quantity-title {
    font-weight: 600;
    min-width: 120px;
    width: 28%;
}
.block-addcart {
    margin: 20px 0;
}
.block-addcart button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border-radius: 4px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
}
.product-viewdetail .productdetail-link {
    text-decoration: underline;
}
.product-viewdetail i {
    font-size: 13px;
}
#modalQuickview .modal-body {
    padding: 10px 0;
}
.wrapbox-image-quickview .slide-thumb {
    padding: 10px;
}
.loading-qv {
    display: flex;
    background: rgb(255, 255, 255);
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.size .deactive span, .color .deactive {
    cursor: not-allowed;
    color: #ccc;
}
.color .deactive img {
    opacity: 0.6;
}
.list-item .product_thumb > a {
    position: relative;
    display: flex;
    display: -ms-flex;
    display: -webkit-flex;
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
}
.product-loop .product_thumb > a img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    object-fit: cover;
    transform: translate(-50%, -50%);
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.product-loop .product_thumb > a picture:nth-of-type(2), .product-loop-slide .product_thumb > a picture:nth-of-type(2) {
    transform: translate(5px);
    -ms-transform: translate(5px);
    -webkit-transform: translate(5px);
}

.product-loop .product_thumb > a picture, .product-loop-slide .product_thumb > a picture {
    position: relative;
    width: 100%;
    height: 0;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    padding-bottom: 150%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}


#popup_cart .modal-header .fa-check {
    font-size: 20px;
    padding-right: 5px;
    color: #000;
}
#popup_cart .content-popup-cart .thead-popup {
    background: #f7f7f7;
    display: flex;
}
#popup_cart .content-popup-cart .thead-popup>div:first-child {
    border-left: none;
}
#popup_cart .content-popup-cart .thead-popup>div {
    float: left;
    padding: 6px 10px;
    text-transform: uppercase;
    font-size: 13px;
    border-left: 2px solid #fff;
}
#popup_cart .content-popup-cart .tbody-popup {
    width: 100%;
    clear: both;
    max-height: 280px;
    overflow-x: auto;
    border: 1px solid #ddd;
    border-top: none;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup {
    width: 100%;
    float: left;
    clear: both;
    border-bottom: 1px dotted #ddd;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup > div:nth-child(1) {
    width: 55%;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup>div {
    float: left;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup .item-image {
    padding: 10px;
    float: left;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup .item-info {
    padding: 10px 0;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup > div:nth-child(2), #popup_cart .content-popup-cart .tbody-popup .item-popup > div:nth-child(3), #popup_cart .content-popup-cart .tbody-popup .item-popup > div:nth-child(4) {
    width: 15%;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup .item-price {
    padding: 10px;
    font-size: 14px;
    color: #000;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup .number-sidebar {
    border: 1px solid #ddd;
    height: 24px;
    margin-left: -1px;
    text-align: center;
    width: 24px;
    vertical-align: top;
    margin-right: -1px;
    margin-top: 10px;
    display: inline-block;
    min-height: 24px;
    padding: 0;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup .cart-price {
    display: block;
    font-weight: 500;
    padding: 10px;
}
#popup_cart .content-popup-cart .tbody-popup .item-popup .cart-price .price {
    color: #000;
}
#popup_cart .content-popup-cart .tfoot-popup .tfoot-popup-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px;
}
#popup_cart .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-total {
    font-weight: 700;
}
#popup_cart .content-popup-cart .tfoot-popup .tfoot-popup-1 .popup-total .total-price {
    color: #000;
}
#popup_cart .content-popup-cart .tfoot-popup .tfoot-popup-2 {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}
#popup_cart .content-popup-cart .tfoot-popup .tfoot-popup-2 .btn {
    background: #000;
    padding: 6px 10px;
    color: #fff;
    border-radius: 5px;
}
#popupHome .modal-dialog .modal-content {
    flex-direction: row;
    align-items: center;
}
#popupHome .modal-dialog .modal-content .image-popup, #popupHome .modal-dialog .modal-content .form_sub {
    width: 50%;
}
#popupHome .modal-dialog .modal-content .form_sub {
    padding: 0 30px;
}
#popupHome .fContact input {
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px;
}
#popupHome .fContact {
    display: flex;
    flex-direction: column;
}
#popupHome .btn-close {
    position: absolute;
    top: 5px;
    right: 10px;
    display: flex;
    z-index: 1;
    cursor: pointer;
    transition: opacity .3s;
    border: none;
    color: #000;
}
#popupHome .fContact label {
    margin-bottom: 10px;
}
#popupHome .send_contact {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px;
}
.shop_system .content-shop-system {
    flex-direction: row-reverse;
}
.shop_system .top_info_maps .title {
    font-size: 18px;
    text-transform: uppercase;
}
.shop_system .top_info_maps select {
    width: 100%;
    border: 1px solid #d7d7d7;
    color: #333;
    text-indent: 5px;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 20px;
    display: inline-block;
    min-width: 60px;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 0 0 0 transparent inset;
    padding: 0.6em 0.8em;
}
.shop_system .list_shop {
    padding: 10px;
    max-height: 505px;
    overflow: auto;
    color: #666;
    font-size: 14px;
    margin: 0;
    border: 1px solid #d7d7d7;
}
.shop_system .list_shop .item {
    padding: 10px 0;
    border-bottom: 1px solid #d7d7d7;
    cursor: pointer;
}
.shop_system .list_shop h3 {
    color: #000000;
    font-size: 15px;
    margin-bottom: 10px;
}
.shop_system .list_shop .item.active h3, .list_shop .item:hover h3 {
    color: #f3715a;
}
.shop_system .list_shop ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop_system .list_shop::-webkit-scrollbar , .mini-cart-list::-webkit-scrollbar, #popup_cart .content-popup-cart .tbody-popup::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}
.shop_system .list_shop::-webkit-scrollbar-thumb, .mini-cart-list::-webkit-scrollbar-thumb, #popup_cart .content-popup-cart .tbody-popup::-webkit-scrollbar-thumb {
    background-color: #000;
}
.shop_system .list_shop::-webkit-scrollbar-track, .mini-cart-list::-webkit-scrollbar-track, #popup_cart .content-popup-cart .tbody-popup::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}