body {
    background-color: #f3f3f3;
    /*padding-top: 134px;*/
}

a {
    text-decoration: none;
}


.container, .container-lg, .container-md, .container-sm {
    max-width: 1430px;
}

.page-wrapper {
    background-color: #fff;
    min-height: 100vh;
}

.clear-ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.disabled {
    pointer-events: none;
    opacity: 0.4;
    user-select: none;
}

.header-1 {
    font-size: 20px;
    color: #020202;
    padding-bottom: 20px;
    text-transform: uppercase;
}

.title {
    font-size: 20px;
    color: #3F51B5;
    font-weight: 500;
}

img {
    max-width: 100%;
}

a.button {
    display: inline-block;
    background-color: #35444d;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    text-transform: uppercase;
}

a.button:hover {
    background-color: #F44336;
}

.breadcrumb {
    padding: 10px 0;
    background-color: unset;
}

.breadcrumb ol {
    padding: 0;
    margin: 0;
}

.breadcrumb ol li {
    display: inline-block;
}

.breadcrumb ol li span {
    color: #888;
    font-size: 14px;
}

.breadcrumb ol li a {
    color: #888;
    font-size: 14px;
}

.breadcrumb ol li a:hover {
    color: #000;
}

.breadcrumb ol li::before {
    content: "";
}

.breadcrumb ol li::after {
    display: inline-block;
    content: "";
    width: 22px;
    height: 10px;
    background-image: url("/img/nextx32x32.png");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.breadcrumb ol li:last-child::after {
    display: none;
}

.header-wrap {
    /*height: 100px;*/
    /*position: fixed;*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
}

.header-wrap .top {
    background-color: #e9e9e9;
}

.header-wrap .top .inner {
    padding: 0;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-phone {
    font-size: 14px;
}

.top-phone a {
    color: #F44336;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.top-phone a:hover {
    color: #F44336;
}

.header-wrap .inner {
    padding: 10px 0;
}

.header-wrap .inner > div {
    display: flex;
    align-items: center;
}

.header-wrap .bars {
    display: none;
    color: #111;
    font-size: 40px;
}

.header-wrap .logo {
    width: 100px;
    align-self: start;
}

.header-wrap .logo img {
    height: 70px;
}

.header-wrap .rest {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-wrap .search-wrap {
    width: 400px;
    margin-left: 15px;
    /*flex: 1;*/
}

.header-wrap .search-icon {
    display: none;
    margin-right: 5px;
    cursor: pointer;
    color: #333;
    font-size: 30px;
}

.search-wrap .input-box {
    position: relative;
    height: 36px;
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.search-wrap .input-box input[type="text"] {
    outline: none;
    font-weight: 400;
    width: 100%;
    height: 36px;
    border: 1px solid #efefef;
    padding: 0 117px 0 15px;
    background-color: transparent;
}

.search-wrap .input-box .button:hover {
    background-color: #f06292
}

.search-wrap .input-box .button {
    position: absolute;
    height: 36px;
    top: 0;
    right: 0;
    padding: 0 18px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #e91e63;
    color: #fff;
    font-size: 14px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.search-wrap .input-box .uil {
    font-size: 24px;
    color: #fff;
}

.search-wrap .input-box .button:active {
    /*transform: translateY(-50%) scale(0.98);*/
}


.header-wrap .cart {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 10px;
    margin-left: 10px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    position: relative;
    color: #111;
}

.header-wrap .cart .md.hydrated {
    font-size: 40px;
    color: #111;
}

.header-wrap .cart .total-items {
    background-color: #e91e63;
    color: #fff;
    position: absolute;
    top: 2px;
    left: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}


.main-nav-wrap {
    /*background-color: #f9f9f9;*/
}

.main-nav {
}


.main-nav .nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    z-index: -1;
    visibility: hidden;
    position: absolute;
    top: 100%;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 9px #d9d9d9;
    transition: all .3s ease-in-out;
    width: 274px;
    opacity: 0;
}

.main-nav .nav > li > a {
    color: #111;
    padding: 8px;
    font-size: 12px;
    /*border-bottom: 3px solid #fff;*/
    text-transform: capitalize;
    font-weight: 500;
}

.main-nav li:hover > a {
    color: #E91E63;
}

.main-nav .nav > li:hover > a {
    /*border-bottom: 3px solid red;*/
    -webkit-transition: 300ms cubic-bezier(0.858, 0.01, 0.068, 0.99);
    -o-transition: 300ms cubic-bezier(0.858, 0.01, 0.068, 0.99);
    transition: 300ms cubic-bezier(0.858, 0.01, 0.068, 0.99);
}

.main-nav li:hover > ul {
    visibility: visible;
    z-index: 999;
    background-color: #fff;
    opacity: 1;
}

.main-nav .nav li {
    position: relative;
}

.main-nav .nav ul li {
    padding: 0 15px;
}

.main-nav .nav > li.has-sub > a > div {
    display: flex;
    align-items: center;
}

.main-nav .nav > li.has-sub > a > div > span {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(/img/down-arrow.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-left: 5px;
}

.main-nav .nav a {
    padding: 8px 0;
    color: #111;
}

.main-nav .nav a {
    display: block;
    text-decoration: none;
}


.main-nav .nav ul ul {
    left: 100%;
    top: -2px;
    position: absolute;
}

.main-nav .nav ul li.has-sub > a > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav .nav ul li.has-sub > a > div > span {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(/img/right-arrow.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-left: 5px;
}

.bg-bar {
    background-color: #941c1e;
    background: url("/img/bg-nav.jpg");
    color: #fff;
}

.bg-bar .t1 {
    font-weight: 500;
    font-size: 18px;
    padding: 12px 8px;
    text-transform: uppercase;
    color: #293163;
    background-color: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 0 9px #bfbfbf;
    position: relative;
}

.bg-bar .t1 span {
    display: inline-flex;
    align-items: center;
}

.left-nav-wrap ul {
}


.slide-wrap {
    padding-left: 0;
}

.left-sidebar {
    padding-right: 0;
}

.left-nav-wrap {
    height: 100%;
    background-color: #941c1e;
    background: url("/img/bg-nav.jpg");
}

.left-nav-wrap .mobi-menu-header {
    display: none;
}

.left-nav-wrap ul {
}

.left-nav-wrap > ul {
}

.left-nav-wrap > ul > li {
}

.left-nav-wrap li {
    position: relative;
}

.left-nav-wrap > ul > li > a > div {
    display: flex;
    align-items: center;
}

.left-nav-wrap > ul > li.has-sub > a > div {
    justify-content: space-between;
}

.left-nav-wrap > ul > li:not(.has-sub) > a > div:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(/img/safebox.png);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 5px;
}

.left-nav-wrap > ul > li.has-sub > a > div > div {
    display: flex;
    align-items: center;
}

.left-nav-wrap > ul > li.has-sub > a > div > div:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url(/img/safebox.png);
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 5px;
}

.left-nav-wrap > ul > li.has-sub > a > div > span {
    background-image: url(/img/right-arrow-white.svg);
    background-repeat: no-repeat;
    display: inline-block;
    width: 24px;
    height: 24px;
    /* background-color: #ddd; */
    background-size: 50%;
    background-position: center;
}

.left-nav-wrap > ul > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px;
    display: block;
    border-bottom: 1px dotted #c54f54;
    background: #941c1e;
    background: url("/img/bg-nav.jpg");
    font-size: 14px;
    text-transform: uppercase;
}

.left-nav-wrap > ul > li > a:hover {
    background-color: #364081;
}

.left-nav-wrap > ul > li:last-child > a {
    border: none;
}


.left-nav-wrap ul ul {
    position: absolute;
    right: -110%;
    top: 0;
    z-index: 999;
    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    min-height: 200px;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    border: 1px solid #dfdfdf;
}

.left-nav-wrap ul ul {
    font-size: 16px;
    font-weight: normal;
}

.left-nav-wrap > ul > li.has-sub:hover > ul {
    opacity: 0.98;
    visibility: visible;
    right: -100%;
}

.left-nav-wrap ul ul a {
    color: #333;
    padding: 5px 15px;
    display: block;
    border-bottom: 1px dotted #d7d7d7;
}

.left-nav-wrap ul ul a:hover {
    color: #FF5722;
}


.left-nav-wrap ul ul a {
    text-decoration: none;
}


div.filter > label > input {
    visibility: hidden;
}

div.filter > label {
    display: flex;
    align-items: center;
    height: 22px;
    font-size: 13px;
}

div.filter > label > img {
    display: inline-block;
    padding: 0;
    height: 20px;
    width: 20px;
    background: none;
    margin-right: 10px;
}

div.filter > label > input:checked + img {
    background: url(/img/check.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 66%;
}


.blur-layer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.top_phone_2 li {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.top_phone_2 li:last-child {
    margin-right: 0;
}

.top_phone_2 li a {
    text-decoration: none;
    color: #E91E63;
    font-weight: bold;
}

.top_phone_2 li .text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.top_phone_2 li .text span {
    height: 18px;
    display: inline-flex;
    align-items: center;
}


.link_1 {
}

.link_1 li {
    display: inline-flex;
    align-items: center;
}

.link_1 li a {
    color: #fff;
    display: block;
    padding: 11px;
    text-decoration: none;
    height: 51px;
}

.link_1 li a:hover {
    background-color: #810d13;
}

.link_1 li img {
    width: 28px;
    margin-right: 5px;
}

.tippy-box[data-theme~=light] {
    color: #26323d;
    box-shadow: 0 0 20px 4px rgba(154, 161, 177, 0.15), 0 4px 80px -8px rgba(36, 40, 47, 0.25), 0 4px 4px -2px rgba(91, 94, 105, 0.15);
    background-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=top] > .tippy-arrow:before {
    border-top-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=bottom] > .tippy-arrow:before {
    border-bottom-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=left] > .tippy-arrow:before {
    border-left-color: #fff;
}

.tippy-box[data-theme~=light][data-placement^=right] > .tippy-arrow:before {
    border-right-color: #fff;
}

.tippy-box[data-theme~=light] > .tippy-backdrop {
    background-color: #fff;
}

.tippy-box[data-theme~=light] > .tippy-svg-arrow {
    fill: #fff;
}

.owl-theme .owl-nav [class*=owl-] {
    margin: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    /*background-color: #333;*/
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: unset;
    background-color: unset;
}

.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(0, -50%);
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    height: 0;
}

.owl-theme .owl-nav button {
    outline: none;
    transform: translate(0, -50%);
}

.owl-nav button[class*=owl-]:hover {
    background-color: transparent;
}

.owl-theme .owl-nav button {
    margin: 0;
}

.owl-nav button span {
    background-color: #fff;
    width: 32px;
    height: 70px;
    /*border-radius: 50%;*/
    display: block;
    text-indent: -999px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: auto 42%;
    background-position: center;
}

.owl-nav button span:hover {
    background-color: #f1f1f1;
}

.owl-nav button.owl-prev span {
    background-image: url("../img/reshot-icon-arrow-chevron-left.svg");
    background-color: #607D8B;
}

.owl-nav button.owl-next span {
    background-image: url("../img/reshot-icon-arrow-chevron-right.svg");
    background-color: #607D8B;
}

.box {
    background-color: #efefef;
}

.box .header {
    border-bottom: 1px solid #d9d9d9;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #941c1e;
    background: url("/img/bg-nav.jpg");
    color: #fff;
    border-bottom: 1px solid #d9d9d9;
    text-transform: uppercase;
}

.box .content {
    padding: 10px 0;
}

.hotline .text{

}
.hotline .phone{
    display: inline-block;
    background: url(/img/hotline.png) no-repeat;
    background-size: 100%;
    width: 200px;
    height: 86px;
    padding-top: 44px;
    padding-left: 65px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

.home-category .inner {
    background-color: #fff;
    margin-bottom: 2em;
}

.home-category .hc-header {
    border-bottom: 1px solid #d9d9d9;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #941c1e;
    background: url("/img/bg-nav.jpg");
    color: #fff;
}

.home-category .hc-header .name {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.home-category .hc-header .name:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("/img/safebox.png") no-repeat;
    background-size: 100%;
    margin-right: 5px;
}

.home-category .hc-header .view-all {
    overflow: hidden;
    display: inline-block;
    width: 120px;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}

.home-category .hc-header .view-all > div {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    transform: translateX(62px);
}

.home-category .hc-header .view-all:hover > div {

    transform: translateX(44px);
    color: #F44336;
}

.bt-view-all{
    display: inline-block;
    background-color: #795548;
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
}
.bt-view-all:hover{
    text-decoration: none;
    background-color: #333;
    color: #fff;
}

.spnb ul {
    display: inline-block;
}

.spnb li {
    display: inline-block;
    margin-right: 10px;
}

.spnb li a {
    text-decoration: none;
    color: #333;
}

.spnb li img {
    width: 90px;
}


.main-inner {
    display: flex;
}

.main-inner.no-flex {
    display: block;
}

.main-inner .sidebar {
    width: 200px;
}

.main-inner .content {
    flex: 1;
    min-width: 0;
}

.responsive-classify-btn {
    display: none;
    margin-left: 10px;
}

.responsive-classify-btn span {
    cursor: pointer;
    padding: 0 5px;
    height: 30px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.responsive-classify-btn span:before {
    content: "";
    background-image: url(/img/filter-icon-19.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 5px;
}

.classify-group {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.classify-group:last-child {
    border-bottom: 0;
}

.classify-group .header {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
}

.classify-group .classify-item li {
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.classify-group .classify-item .checkbox input[type=checkbox] {
    display: none;
}

.classify-group .classify-item .checkbox input[type=checkbox]:checked + label span {
    background-image: url("/img/checked.png");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
    background-color: #f44336;
    border: 1px solid #f44336;
}

.classify-group .classify-item .checkbox label {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.classify-group .classify-item .checkbox label span {
    border: 1px solid #bbb;
    width: 18px;
    height: 18px;
    cursor: pointer;
    border-radius: 2px;
    display: inline-block;
    margin-right: 6px;
}

.classify-group .classify-item .checkbox.disabled {
    color: #bbb;
}

.product-list .page-header-item .sub-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 10px;
    align-items: center;
}

.product-list .page-header-item .sub-header .total {
    font-size: 14px;
}

.product-list .page-header-item .sub-header .total span {
    font-weight: bold;
}

.product-list .page-header-item .filter-wrap {
    display: flex;
    align-items: center;
}

.product-list .page-header-item .sort-wrap {
    font-size: 12px;
}

.product-list .page-header-item .sort-wrap #sort_select {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 6px;
    width: 150px;
    font-size: 12px;
    position: relative;
    cursor: pointer;
}

.product-list .page-header-item .sort-wrap #sort_select[aria-expanded=true] {
    color: #999;
}

.product-list .page-header-item .sort-wrap #sort_select:after {
    content: "";
    background-image: url("/img/down-arrow.png");
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.product-list .page-header-item .sort-wrap .tippy-sort-selectbox-items {
    width: 132px;
}

.product-list .page-header-item .sort-wrap .tippy-sort-selectbox-items li {
    color: #666;
    padding: 8px 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.product-list .page-header-item .sort-wrap .tippy-sort-selectbox-items li:hover {
    color: #f44336;
}

.product-list .product-item {
    padding: 8px;
    margin-bottom: 10px;
}

.product-list .product-item:hover {
    box-shadow: 0 0 10px #ccc;
}

.product-list .product-item .name {
    font-size: 16px;
}

.product-list .product-item .name a {
    color: #333;
    line-height: 20px;
    min-height: 38px;
    max-height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
}

.product-list .product-item .product-thumb {
    position: relative;
    overflow: hidden;
}

.product-list .product-item .product-thumb img {
    transition: all 0.3s ease;
}

.product-list .product-item:hover img {
    transform: scale(110%);
}


.product-list .product-item .product-thumb .out-of-stock {
    position: absolute;
    background: #ffffff;
    color: #000;
    box-shadow: 0 0 20px #ddd;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 115px;
    height: 115px;
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-list .range-separator {
    display: inline-block;
    padding: 0 8px;
    color: #999;
}

.product-list .product-content {
    padding-top: 10px;
}

.product-list .product-price {
    /*font-weight: 500;*/
    font-size: 13px;
}

.product-list .product-price ul {
    margin: 0;
    padding-left: 25px;
}

.product-list .product-price .label {
    font-weight: bold;
}

.product-list .product-price .old-price {
    font-weight: bold;
}

.product-list .product-price .new-price {
    font-weight: bold;
}

.product-list .product-price .new-price .value {
    color: red;
    font-size: 16px;
}


.product-list .page-header-item .sort-wrap {
    font-size: 12px;
}

.product-list .page-header-item .sort-wrap #sort_select {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 6px;
    width: 150px;
    font-size: 12px;
    position: relative;
    cursor: pointer;
}

.product-list .page-header-item .sort-wrap #sort_select[aria-expanded=true] {
    color: #999;
}

.product-list .page-header-item .sort-wrap #sort_select:after {
    content: "";
    background-image: url("/img/down-arrow.png");
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.product-list .page-header-item .sort-wrap .tippy-sort-selectbox-items {
    width: 132px;
}

.product-list .page-header-item .sort-wrap .tippy-sort-selectbox-items ul {
    padding: 0;
    list-style-type: none;
}

.product-list .page-header-item .sort-wrap .tippy-sort-selectbox-items li {
    color: #666;
    padding: 8px 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.product-list .page-header-item .sort-wrap .tippy-sort-selectbox-items li:hover {
    color: #f44336;
}


.product-detail iframe {
    width: 100% !important;
}

.product-detail table {
    border: 1px solid #333;
    border-collapse: collapse;
}

.product-detail table td {
    border: 1px solid #bbb;
}

.product-detail table tr:nth-child(odd) {
    background-color: #D9E1F2;
}

.product-detail table tr:nth-child(even) {
    background-color: #FFFFFF;
}

.product-detail .short-content {
    margin-bottom: 10px;
}

.product-detail .qty {
    justify-content: left;
}


.product-detail ul {
    list-style-type: inherit;
    padding: 0 30px;
    margin: 0;
}

.product-detail .top {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
    padding-bottom: 18px;
}

.product-detail .product-content {
    overflow: hidden;
    padding: 15px 0;
}

.product-detail .product-content img {
    max-width: 100% !important;
    height: auto !important;
}

.product-detail .out-of-stock {
    background: #e91e63;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    text-transform: uppercase;
}

.product-detail h1 {
    font-size: 22px;
    color: #222;
}

.product-detail .price {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-detail .old-price {
    color: #555;
    margin-right: 10px;
}

.product-detail .discount-value {
    background-color: #e91e63;
    color: #fff;
    display: inline-block;
    padding: 0 5px;
    font-size: 12px;
    border-radius: 4px;
}

.product-detail .new-price {
    color: #e91e63;
    font-size: 30px;
    font-weight: 600;
    margin-right: 10px;
}

.product-detail .add-to-cart {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 15px;
    width: 60%;
    padding: 0 0.75rem;
    font-size: 14px;
    background: rgba(0, 182, 240, 0.1);
    border: 1px solid #00b6f0;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
    height: 48px;
    color: #00b6f0;
}

.product-detail .mua-ngay {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 40%;
    padding: 0 0.75rem;
    font-size: 14px;
    background: #e91e63;
    border: 1px solid #e91e63;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.03);
    height: 48px;
    color: #fff;
}


.product-gallery .product-big-thumb .item {
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    position: relative;
}

.product-gallery .product-small-thumb .item {
    background: #C9C9C9;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

.product-gallery .product-small-thumb .item h1 {
    font-size: 18px;
}

.product-gallery .product-small-thumb .current .item {
    background: #fff;
}

.product-gallery .owl-theme {
    position: relative;
    margin-top: 10px;
}

.product-gallery .owl-theme [class*=owl-] {
    transition: all 0.3s ease;
}

.product-gallery .owl-theme .owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    margin-top: 0;
}

.product-gallery .owl-theme button.owl-next, .product-gallery .owl-theme button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #d6d6d6;
    margin: 0;
}

.product-gallery .owl-theme .owl-prev {
    left: 0;
}

.product-gallery .owl-theme .owl-next {
    right: 0;
}

.product-gallery .product-big-thumb .owl-nav .owl-next, .product-gallery .product-big-thumb .owl-nav .owl-prev {
    width: 22px;
    height: 60px;
    border-radius: 0;
    padding: 0 5px !important;
}

.product-gallery .product-big-thumb .owl-nav .owl-prev {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.product-gallery .product-big-thumb .owl-nav .owl-next {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.product-gallery .product-small-thumb * {
    border-radius: 2px;
}

.product-gallery .product-small-thumb .owl-item {
    border: 1px solid #fff;
}

.product-gallery .product-small-thumb .owl-item.current {
    border: 1px solid #009688;
}

.product-gallery .product-small-thumb .owl-nav .owl-next, .product-gallery .product-small-thumb .owl-nav .owl-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #009688;
    padding: 0 10px !important;
}

.product-gallery .product-small-thumb .owl-nav .owl-next:disabled, .product-gallery .product-small-thumb .owl-nav .owl-prev:disabled {
    background-color: #999;
}

#product-gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
    background: #fff;
    overflow: hidden;
}

#product-gallery-popup .product-big-thumb {
    height: calc(100% - 120px);
}

#product-gallery-popup .product-big-thumb .owl-stage-outer, #product-gallery-popup .product-big-thumb .owl-stage, #product-gallery-popup .product-big-thumb .owl-item {
    height: 100%;
}

#product-gallery-popup .product-big-thumb .item {
    height: 100%;
    font-size: 0;
}

#product-gallery-popup .product-big-thumb .item:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

#product-gallery-popup .product-big-thumb .owl-lazy {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    max-height: 100%;
    max-width: 100%;
}

#product-gallery-popup .product-small-thumb {
    height: 120px;
    width: 500px;
    margin: 0 auto;
}

#product-gallery-popup .product-small-thumb .owl-lazy {
    max-height: 100px;
    width: auto;
    margin: 0 auto;
}

.close-product-gallery-popup {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    z-index: 999999999;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(181 181 181 / 50%);
    box-shadow: 0 0 12px #eee;
    cursor: pointer;
}

.close-product-gallery-popup span {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("/img/close-2.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

body.product-gallery-popup {
    overflow: hidden;
}

body.product-gallery-popup #product-gallery-popup {
    display: block;
}

.property-item {
    margin-bottom: 10px;
}

.property-name {
    width: 160px;
    font-size: 14px;
    color: #666;
    align-items: flex-start;
    text-transform: capitalize;
}

.property-value {
    flex: 1;
    position: relative;
}

.property-value .layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.property-tag {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.25rem 0.75rem;
    margin: 0 8px 8px 0;
    color: rgba(0, 0, 0, 0.8);
    text-align: left;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    position: relative;
    background: #fff;
    outline: 0;
    word-break: break-word;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
    cursor: pointer;
}

.property-tag.image {
    /*  height: 80px;
      width: 80px;*/
    background-size: 100%;
    padding: 10px !important;
}

.property-tag.image:hover {
    border: 1px solid #ff906d;
}

.property-tag.image img {
    width: 34px;
    height: 34px;
    margin-right: 10px;
}

.property-tag.active {
    color: #f44336;
    border: 1px solid #f44336;
}

.property-tag.active:before {
    content: "";
    display: inline-block;
    background-color: #f44336;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -25px;
    right: -45px;
    transform: rotate(45deg);
}

.property-tag.active:after {
    content: "";
    display: inline-block;
    background-image: url(/img/checked.png);
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 5px;
    height: 5px;
    bottom: 2px;
    right: 2px;
}

.property-tag.disabled {
    color: #bbb;
    cursor: no-drop;
}

.property-value input[type=radio] {
    display: none;
}

.qty {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 400;
    justify-content: left;
}

.qty.ds input {
    flex-grow: 1;
    width: calc(100% - 64px);
}

.qty input {
    width: 60px;
    height: 32px;
    text-align: center;
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    outline: none;
}

.qty button {
    width: 32px;
    height: 32px;
    color: #888;
    background: #fff;
    border: 1px solid #ddd;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.cart-popup-wrapper .cart-popup {
    padding-top: 5px;
}

.cart-popup-wrapper .unavailable {
    font-size: 11px;
    color: red;
}

.cart-popup-wrapper .cart-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #f1f1f1;
    padding: 5px 0;
}

/*.cart-popup-wrapper .cart-item:last-child {*/
/*    border-bottom: none;*/
/*}*/

.cart-popup-wrapper .cart-item .product-thumb {
    align-self: flex-start;
    width: 50px;
    border: 1px solid #f1f1f1;
}

.cart-popup-wrapper .cart-item .product-thumb > img {
    width: 100%;
}

.cart-popup-wrapper .cart-item .product-body {
    padding-left: 10px;
    min-height: 60px;
    flex: 1;
}

.cart-popup-wrapper .cart-item .quantity {
    background-color: #f3f3f3;
    padding: 3px 10px;
    display: block;
    margin-top: 4px;
    border-radius: 4px;
}

.cart-popup-wrapper .cart-item .product-price {
    font-size: 14px;
    font-weight: 500;
    color: #656565;
}

.cart-popup-wrapper .cart-item .product-name {
    font-size: 16px;
    height: 22px;
    overflow: hidden;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 4px;
}

.cart-popup-wrapper .cart-item .product-name a {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.cart-popup-wrapper .cart-item .product-name a:hover {
    color: #E91E63;
}

.cart-popup-wrapper .cart-item .product-name a {
    color: #222;
}

.cart-popup-wrapper .cart-item .trash {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/img/trash.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    cursor: pointer;
}

.cart-popup-wrapper .cart-item .bottom {
    width: 100%;
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #888;
}

.cart-popup-wrapper .cart-item .bottom .classify span:after {
    content: ",";
}

.cart-popup-wrapper .cart-item .bottom .classify span:last-child:after {
    content: "";
}

.cart-popup-wrapper .shopping-cart-btns {
    text-align: right;
}

.cart-popup-wrapper .shopping-cart-btns a {
    display: inline-block;
    padding: 10px 32px;
    background-color: #35444d;
    color: #fff;
    border-radius: 2px;
    text-decoration: none;
}

.cart-popup-wrapper .shopping-cart-btns a:hover {
    background-color: #F44336
}

.cart-popup-wrapper .total {
    margin-top: 1em;
    font-size: 18px;
    font-weight: 500;
}

.cart-popup-wrapper .total .text-1 {
    font-size: 18px;
}

.cart-popup-wrapper .total .text-2 {
    color: #F44336;
}

.cart-popup-wrapper .bottom-btns {
    display: flex;
    justify-content: space-between;
    margin: 1em 0;
}


.cart-items {
    padding: 10px 0;
    background-color: #fff;
}

.cart-items .cart-header {
    font-weight: 600;
    font-size: 13px;
}

.cart-items .list {
    padding: 15px;
}

.cart-items .deal-soc-item-list {
    margin-top: 10px;
}

.cart-items .deal-soc-item-list .deal-soc {
    margin-bottom: 10px;
}

.cart-items .deal-soc-item-list .deal-soc .ds {
    padding: 1px 4px;
    margin-right: 8px;
    line-height: 12px;
    vertical-align: middle;
    color: #f44336;
    font-size: 10px;
    border: 1px solid;
    border-radius: 2px;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cart-items .group .deal-soc {
    margin-bottom: 10px;
    margin-top: 10px;
}

.cart-items .group .deal-soc .ds {
    padding: 1px 4px;
    margin-right: 8px;
    line-height: 12px;
    vertical-align: middle;
    color: #f44336;
    font-size: 10px;
    border: 1px solid;
    border-radius: 2px;
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cart-items .group .deal-soc .text {
    padding: 9px 12px;
    background: #fff3ed;
    line-height: 30px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.87);
}

.cart-items .group .deal-soc .link {
    display: inline-block;
    color: #ee4d2d;
    text-transform: capitalize;
}

.cart-items .cart-item {
    padding: 10px 0;
    border-bottom: 1px solid #f3f3f3;
}

.cart-items .cart-item:last-child {
    border: 0;
}

.cart-items .cart-item.deal-soc-item {
    border: 0;
    position: relative;
    padding: 5px 0;
    padding-left: 20px;
}

.cart-items .cart-item.deal-soc-item:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    border-left: 1px dashed #bbb;
    top: 0;
    left: 10px;
}

.cart-items .cart-item.deal-soc-item:last-child:before {
    height: 50%;
}

.cart-items .cart-item.deal-soc-item:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    border-top: 1px dashed #bbb;
    top: 50%;
    left: 10px;
}

.cart-items .cart-item .inner {
    display: flex;
}

.cart-items .cart-item .thumb {
    width: 80px;
    align-self: start;
}

.cart-items .cart-item .info {
    flex: 1;
    display: flex;
    padding-left: 10px;
}

.cart-items .cart-item .info .name {
    flex: 1;
}

.cart-items .cart-item .info .name > div {
    display: flex;
    align-items: center;
}

.cart-items .cart-item .info .name a {
    color: #111;
    line-height: 24px;
    max-height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cart-items .cart-item .info .name a:hover {
    color: #111;
}

.cart-items .cart-item .info .name .classify {
    display: flex;
    justify-content: space-between;
}

.cart-items .cart-item .info .name .classify span {
    color: #555;
    border-radius: 2px;
    font-size: 12px;
}

.cart-items .cart-item .info .name .unavailable {
    display: flex;
    align-items: center;
}

.cart-items .cart-item .info .name .unavailable .text {
    color: #e91e63;
    font-size: 12px;
    display: inline-block;
    border-radius: 2px;
    margin-right: 5px;
}

.cart-items .cart-item .info .name .unavailable .remove-cart-dealsoc-item {
    color: #fff;
    background-color: #f00;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 2px;
    cursor: pointer;
}

.cart-items .cart-item .info .name .unavailable img {
    height: 20px;
    width: auto;
    margin-right: 5px;
}

.cart-items .cart-item .info .ggg {
    display: flex;
}

.cart-items .cart-item .info .ggg .pdlr {
    padding: 0 15px;
}

.cart-items .cart-item .info .ggg .qty-area {
    width: 160px;
}

.cart-items .cart-item .info .ggg .price-area {
    width: 164px;
    font-weight: 500;
    color: #555;
}

.cart-items .cart-item .info .ggg .sub-total {
    width: 164px;
}

.cart-items .cart-item .info .ggg .sub-total .number {
    color: #f44336;
    font-weight: 500;
}

.cart-items .cart-item .info .ggg .remove-cart-dealsoc-item {
    cursor: pointer;
}

.cart-items .cart-item .info .ggg .remove-cart-dealsoc-item:hover {
    color: #e91e63;
}

.cart-items .cart-item .info .ggg .old-price {
    font-size: 14px;
    margin-right: 5px;
    color: #999;
}

.cart-items .cart-item .info .ggg .discount-value {
    background-color: #f44336;
    color: #fff;
    display: inline-block;
    padding: 0 5px;
    font-size: 12px;
    border-radius: 4px;
}

.cart-items .cart-item .info .ggg .action {
    width: 30px;
}

.cart-items .cart-item .info .ggg .action .remove-cart-item {
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
    color: #111;
}

.cart-items .cart-item .info .ggg .action .remove-cart-item:hover {
    color: #e91e63;
}

.cart-items .cart-item .info .ggg .action .remove-cart-item.disabled {
    color: #999;
}

.cart-items .cart-item .info .ggg .action .remove-cart-item.disabled:hover {
    color: #999;
    cursor: pointer;
}

.cart-items .cart-item .mb-remove {
    display: none;
    color: #e91e63;
}

.cart-items .cart-item .mb-qty {
    display: none;
    color: #555;
    border-radius: 2px;
    font-size: 12px;
}

.cart-items .total {
    text-align: right;
    color: #444;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #e9e9e9;
}

.cart-items .total .number {
    font-size: 24px;
    color: #f44336;
    font-weight: 500;
}

.cart-items .bottom-action {
    text-align: right;
    margin-top: 24px;
}


#order_form input[type=text], #order_form input[type=email], #order_form textarea, #order_form select {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    border-radius: 2px;
    box-shadow: 0 0 5px #ebebeb;
    outline: none;
}

#order_form input[type=text]:focus, #order_form input[type=email]:focus, #order_form textarea:focus, #order_form select:focus {
    border: 1px solid #bbb;
}

.order-detail .order-info {
    background-color: #fff;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
}

.order-detail .order-info td.label {
    padding: 5px 0;
    font-weight: bold;
    font-size: 13px;
    color: #111;
    width: 200px;
}

.payment-method .ctn {
    margin-bottom: 10px;
}

.payment-method .payment_guide {
    background-color: #ffffff;
    padding: 1em;
    display: none;
    margin-top: 10px;
}

.payment-method .payment_guide .warning {
    color: #e91e63;
    margin-bottom: 1em;
    font-style: italic;
    font-size: 13px;
    margin-top: 10px;
}

.payment-method .payment_guide.active {
    display: block;
}

.empty-cart {
    text-align: center;
    padding: 58px 0;
}


.checkout .btn-order {
    border: none;
    background-color: #E91E63;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1em 2em;
    cursor: pointer;
    display: inline-block;
}

.checkout .btn-order svg {
    margin-right: 5px;
    display: none;
}

.checkout .btn-order:disabled {
    background: #999;
    cursor: not-allowed;
}

.checkout .btn-order.sending svg {
    display: block;
}

.checkout .btn-order.sending .normal-text {
    display: none;
}

.checkout .btn-order.sending .send-text {
    display: block;
}

.checkout .btn-order .normal-text {
    display: block;
}

.checkout .btn-order .send-text {
    display: none;
}

.checkout .billing select {
    margin-bottom: 10px;
}

.checkout .billing .messages {
    color: #e91e63;
    font-size: 12px;
}

.checkout .billing .field_title {
    font-weight: 500;
    margin-bottom: 10px;
    color: #5e5e5e;
    font-size: 14px;
    display: flex;
    align-items: center;
}


.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #2f2f2f;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
}

.footer > * {
    flex: 1 100%;
}

.footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
}

.footer__logo {
    font-weight: 400;
    text-transform: lowercase;
    font-size: 1.5rem;
    text-align: center;
}

.footer__logo img {
    max-width: 100px;
}

.footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
}

.nav__title {
    font-weight: 400;
    font-size: 15px;
}

.footer address {
    font-style: normal;
    color: #999;
}

.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(33, 33, 33, 0.07);
    border-radius: 100px;
    color: #2f2f2f;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;
}

.footer a {
    text-decoration: none;
}

.footer__nav {
    display: flex;
    flex-flow: row wrap;
}

.footer__nav > * {
    flex: 1 50%;
    margin-right: 1.25em;
}

.nav__ul a {
    color: #555;
}

.nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
}

.legal {
    display: flex;
    flex-wrap: wrap;
    color: #555;
}

.legal__links {
    display: flex;
    align-items: center;
}

.heart {
    color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
    .legal .legal__links {
        margin-left: auto;
    }
}

@media screen and (min-width: 40.375em) {
    .footer__nav > * {
        flex: 1;
    }

    .nav__item--extra {
        flex-grow: 2;
    }

    .footer__addr {
        flex: 1 0px;
    }

    .footer__nav {
        flex: 2 0px;
    }
}


footer .news-letter .inner {
    text-align: center;
}

footer .news-letter input[type="text"] {
    outline: none;
    border-radius: 31px;
    border: 1px solid #adadad;
    padding: 7px 20px;
    width: 100%;
    margin-bottom: 10px;
}

footer .news-letter input[type="submit"] {
    outline: none;
    border-radius: 31px;
    border: none;
    padding: 7px 20px;
    background-color: #FF5722;
    color: #fff;
    text-transform: uppercase;
}


.footer-bottom {
    color: #333;
    background-color: #d5d5d5;
    padding: 10px 0
}

.ui-front {
    z-index: 999999999;
}

.ui-front li {
    border-bottom: 1px solid #ddd;
}

.ui-front .search-item {
    display: flex;
}

.ui-front .search-item.ui-state-active {
    background-color: unset;
    color: #333;
    border: 1px solid transparent;
}

.ui-front .search-item.ui-state-active .title {
    color: #ff335c;
}

.ui-front .search-item .thumb {
    width: 50px;
    margin-right: 10px;
}

.ui-front .title {
    font-size: 14px;
    font-weight: bold;
}

.ui-front .price {
    font-size: 13px;
    font-weight: bold;
    color: #555;
}

.ui-front .price-range {
    display: inline-block;
}

.ui-front .old-price {
    color: #aaa;
}


.home-posts .item {
    padding: 10px;
}

.home-posts .item .title {
    margin: 10px 0;
}

.home-posts .item .title a {
    color: #333;
    text-decoration: none;
}

.home-posts .item .title a:hover {
    color: #E91E63;
}


.post-detail .post-title {
    margin: 20px 0;
    font-size: 35px;
}

.post-list .item {
    margin-bottom: 2em;
}

.post-list .item a {
    margin-bottom: 2em;
    text-decoration: none;
}

.post-list .item a:hover .post-title {
    color: #E91E63;
}

.post-list .item .post-title {
    color: #333;
    font-size: 30px;
}


.testimonials-wrap .inner {
    background-color: #ebebeb;
}

.testimonials-wrap .author-img {
    padding: 15px 0;
    width: 30%;
    display: flex;
    align-items: center;
}

.testimonials-wrap .author-text {
    flex: 1;
}


#scrollUp {
    bottom: 20px;
    right: 20px;
    display: block;
    width: 40px;
    height: 40px;
    color: #fff;
    background: url("/img/top.png") no-repeat;
    background-size: 100%;
}


.latest-product{}
.latest-product .name a{
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}
.latest-product ul{
    margin: 0;
    padding-left: 25px;
    font-size: 12px;
}
.latest-product .old-price,
.latest-product .new-price{
    font-weight: bold;
}
.latest-product .new-price .value{
    color: red;
    font-size: 16px;
}