@font-face {
    font-family: ATSurtVN;
    font-style: normal;
    font-weight: normal;
    src: url('/tp/T0457/fonts/ATSurtVN-Regular.otf');
}

body {
    font-family: ATSurtVN;
}

ul {
    list-style: none;
    padding-left: 0;
}

svg {
    width: 25px;
    height: 25px;
    fill: #000;
}

a {
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #000;
}

img {
    width: 100%;
    height: auto;
}

button:focus {
    outline: none;
}

main {
    padding-top: 58px;
}

.site-overlay {
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms linear;
}

.site-overlay.active {
    opacity: 1;
    visibility: visible;
}

/*header*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 58px;
    z-index: 100;
    border-bottom: 1px solid #ececec;
}

.header .nav {
    display: grid;
    grid-template-columns: 10% 1fr 10%;
    grid-template-rows: 1fr;
    grid-gap: 10px;
    transition: all ease-in-out 0.3s;
    height: 100%;
    align-items: center;
    padding: 0 2%;
    background-color: #ffffff;
}

.header .nav-logo {
    display: grid;
    place-content: center;
    width: 100%;
}
.header .nav-logo img{
    max-height: 55px;
}
.header .nav-logo a {
    display: grid;
}

.header .nav-menu {
    display: grid;
    place-content: center;
    z-index: 999;
}

.header .nav-menu .nav-menu-items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.header .nav-menu .nav-menu-items li {
    font-size: medium;
    text-align: center;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin: 0 10px;
    position: relative;
}

.header .nav-menu .nav-menu-items li a {
    font-size: 13px;
    text-align: center;
    font-weight: 500;
}

.header .nav-menu .nav-menu-items li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all ease-in-out 0.3s;
    width: 0%;
    height: 3px;
    background-color: #000000;
}

.header .nav-menu .nav-menu-items li:hover::after {
    width: 100%;
}

.header .nav-icon {
    display: grid;
    place-content: center end;
}

.header .nav-icon .nav-icon-items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.header .nav-icon .nav-icon-items div {
    transition: all ease-in-out 0.3s;
    border: thin solid transparent;
    border-radius: 4px;
    border-collapse: collapse;
    position: relative;
    padding: 7.5px 10px;
    gap: 10px;
    white-space: nowrap;
}

.header .nav-icon .nav-icon-items div svg {
    fill: #fff;
}

.header .nav-icon .nav-icon-items div:hover {
    background-color: rgba(241, 241, 241, 0.6);
    cursor: pointer;
}

.header .nav-icon .nav-icon-items div.active {
    background-color: rgba(241, 241, 241, 0.6);
}

.header .nav-icon .nav-icon-items div span {
    display: inline-block;
    font-size: 12px;
    position: absolute;
}

.search-sec {
    box-shadow: 1px 5px 4px #f1f1f1;
    display: none;
    width: 100%;
    padding: 20px 5%;
    background-color: #ffffff;
    position: fixed;
    z-index: 101;
}

.search-sec.active {
    -webkit-animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    display: block;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.search-sec .search-sec-header {
    display: grid;
    grid-template-columns: 30px 1fr 30px;
    grid-gap: 10px;
    font-size: medium;
    text-align: center;
    font-weight: bold;
    padding: 10px 15px;
    text-transform: uppercase;
    border-bottom: thin solid #f1f1f1;
    background-color: #ffffff;
}

.search-sec .search-sec-header svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.search-sec .search-sec-header h1 {
    text-transform: uppercase;
    font-size: 16px;
}

.search-sec .search-sec-form {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    margin-top: 20px;
}

.search-sec .search-sec-form form {
    border: thin solid #aeaeae;
    border-collapse: collapse;
    width: 50%;
    padding: 10px;
}

.search-sec .search-sec-form input {
    width: 100%;
    border: none;
}

.search-sec .search-sec-form input:focus {
    outline: none;
}

/*end header*/

/*cart*/
.cart-sec {
    display: none;
    grid-template-columns: 1fr;
    width: 25%;
    background-color: transparent;
    position: fixed;
    z-index: 101;
    right: 0;
    top: 0;
    bottom: 0;
    place-items: start end;
}

.cart-sec.active {
    -webkit-animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
    display: grid;
}

@-webkit-keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-right {
    0% {
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.cart-sec .cart-sec-main {
    box-shadow: 1px 1px 5px 4px #f1f1f1;
    width: 100%;
    background-color: #ffffff;
}

.cart-sec .cart-sec-main .cart-sec-header {
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-gap: 10px;
    font-size: medium;
    text-align: center;
    font-weight: bold;
    align-items: center;
    padding: 10px 15px;
    text-transform: uppercase;
    border-bottom: thin solid #f1f1f1;
}

.cart-sec .cart-sec-main .cart-sec-header h1 {
    text-align: right;
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 0;
}

.cart-sec .cart-sec-main ul {
    width: 100%;
    padding: 20px 0;
    max-height: 40vh;
    overflow: auto;
}

.cart-sec .cart-sec-main ul li {
    display: grid;
    grid-template-columns: 20% 1fr 15%;
    grid-template-rows: 1fr;
    grid-gap: 20px;
    align-items: self-start;
    padding: 5px;
    position: relative;
    margin: 10px;
}

.cart-sec .cart-sec-main ul li a:not(.quan-btn) {
    display: block;
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cart-sec .cart-sec-main ul li div h6 {
    margin-bottom: 5px;
    font-size: small;
    text-transform: uppercase;
}

.cart-sec .cart-sec-main ul li div .cart-item-price {
    font-size: 12px;
    margin-bottom: 2px;
}

.cart-sec .cart-sec-main ul li div .cart-item-price p {
    display: inline-block;
}

.cart-sec .cart-sec-main ul li div .cart-item-quantity {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
}

.cart-sec .cart-sec-main ul li div .cart-item-quantity input {
    border: thin solid #aeaeae;
    border-radius: 4px;
    border-collapse: collapse;
    width: 60px;
    padding: 5px;
    text-align: center;
}

.cart-sec .cart-sec-main ul li div .cart-item-quantity .quan-btn {
    background-color: transparent;
    border: transparent;
    padding: 6px 12px;
    font-size: large;
    cursor: pointer;
}

.cart-sec .cart-sec-main ul li .cart-item-delete {
    position: absolute;
    top: 0;
    right: 0;
    place-self: center;
    opacity: 0.3;
    padding: 10px;
}

.cart-sec .cart-sec-main ul li .cart-item-delete svg {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.cart-sec .cart-sec-main .cart-sec-total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px 10px;
}

.cart-sec .cart-sec-main .cart-sec-total p {
    font-size: medium;
    text-align: center;
    font-weight: 600;
    margin-right: 15px;
}

.cart-sec .cart-sec-main .cart-sec-total strong {
    font-size: large;
    text-align: center;
    font-weight: bold;
}

.cart-sec .cart-sec-main .cart-sec-total small {
    font-size: small;
    text-align: center;
    font-weight: bold;
    color: #808080;
}

.cart-sec .cart-sec-main .cart-sec-button {
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.cart-sec .cart-sec-main .cart-sec-button a {
    box-shadow: 1px 1px 5px #f1f1f1;
    transition: all ease-in-out 0.3s;
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    border: transparent;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

.cart-sec .cart-sec-main .cart-sec-button a.checkout-btn {
    background-color: #000000;
    color: #ffffff;
}

/*end cart*/

/*trang chu*/
.home .category-banner-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-gap: 10px;
    padding: 20px 0;
}

.home .new-product-sec {
    padding: 25px 0;
}

.home .new-product-sec h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.home .hot-product-sec {
    padding: 5%;
    background-color: #adbabf;
}

.home .hot-product-sec h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 50px;
    cursor: pointer;
    text-transform: uppercase;
}

.product-item .product-thumb {
    position: relative;
}

.product-item .product-thumb a {
    width: 100%;
}

.product-item .product-detail {
    padding: 0 6px;
    margin-top: 5px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
}

.product-item .product-detail .product-info {
    width: 100%;
}

.product-item .product-detail .product-info .product-name {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 5px 0;
    font-weight: 500;
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    letter-spacing: 1.3px;
    text-transform: capitalize;
    cursor: pointer;
}

.hot-product-sec .product-item .product-detail .product-info .product-name a,
.hot-product-sec .product-item .product-detail .product-info .product-price {
    color: #fff;
}

.product-item .product-detail .product-info .product-price {
    font-size: 15px;
    margin: 5px 0;
    font-weight: 700;
}

.product-item .product-detail .product-info .product-price p {
    margin-bottom: 0;
}

.hot-product-sec .product-item .product-detail .product-info .product-price {
    margin-bottom: 10px;
}

.product-item .product-detail .product-info .product-color {
    margin-bottom: 4px;
    font-size: 11px;
    display: none;
}

.home .new-sec {
    padding: 5%;
}

.home .new-sec h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
    cursor: pointer;
    text-transform: uppercase;
}

.home .new-sec .new-sec-ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, 30%);
    grid-gap: 5%;
    margin: 20px 0;
}

.home .new-sec .new-sec-ul li, .home .new-sec .new-sec-ul li a {
    width: 100%;
}

.home .new-sec .new-sec-ul li a p {
    font-size: large;
    text-align: center;
    font-weight: 600;
    word-break: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    padding: 5px;
    cursor: pointer;
}

.home .new-sec .new-sec-ul li a p:hover {
    color: #808080;
}

.home .weekly-product-sec {
    padding: 25px 0;
}

.home .weekly-product-sec h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.home .weekly-product-sec .weekly-product-list.active {
    visibility: visible;
    height: auto;
}

.home .weekly-product-sec .weekly-product-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    visibility: hidden;
    height: 0;
}

.home .category-toggle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.home .category-toggle button {
    font-size: medium;
    text-align: center;
    font-weight: 600;
    border: thin solid transparent;
    background-color: transparent;
    margin: 0 10px;
    padding: 10px;
    position: relative;
}

.home .category-toggle button.active::before, .home .category-toggle button:hover::before {
    opacity: 1;
}

.home .category-toggle button::before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #c1272d;
    border-radius: 50px;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}

.home .category-toggle button.active::after, .home .category-toggle button:hover::after {
    width: 100%;
}

.home .category-toggle button::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0%;
    height: 3px;
    background-color: #000000;
    border-radius: 4px;
    transition: all ease-in-out 0.3s;
}

.update-product-status {
    text-align: center;
}

/*end trang chu*/

/*danh muc*/
.category-page {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px 10px;
}

.category-page .category-info {
    grid-area: 1/1/2/7;
    padding: 2.5% 5% 0 5%;
}

.category-page .category-info h1 {
    font-size: x-large;
    text-align: start;
    font-weight: bold;
    text-transform: uppercase;
}

.category-page .category-info p {
    margin-top: 15px;
    color: #adadad;
    margin-bottom: 40px;
}

.category-page .category-list {
    grid-area: 2/1/3/7;
    padding: 0 5%;
}

.category-page .category-list ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(auto, 18%));
    grid-gap: 10px;
    transition: all ease-in-out 0.3s;
}

.category-page .category-list ul li {
    font-size: 13px;
    text-align: start;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
}

.category-page .category-products {
    grid-area: 3/2/5/7;
    width: 100%;
    padding: 0 10px;
    position: relative;
}

.category-page .category-products > ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
    grid-gap: 10px;
    position: relative;
}

.category-page .category-products > ul li {
    width: 100%;
}

.category-page .category-filters {
    grid-area: 3/1/5/2;
    padding-left: 30%;
    position: relative;
}

.category-page .category-filters .category-filter-list {
    position: sticky;
    top: 100px;
}

.category-page .category-filters .category-filter-list ul {
    width: 100%;
    height: 80%;
    overflow: auto;
}

.category-page .category-filters .category-filter-list ul li {
    border-bottom: thin solid #f1f1f1;
    transition: all ease-in-out 0.2s;
    margin-bottom: 15px;
}

.category-page .category-filters .category-filter-list ul li h4 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
    padding: 10px 0;
    font-weight: 400;
    font-size: small;
}

.category-page .category-filters .category-filter-list ul li h4 svg {
    width: 15px;
    height: 15px;
    fill: none;
    fill: #aeaeae;
    transition: all ease-in-out 0.2s;
}

.category-page .category-filters .category-filter-list ul li ul.active {
    height: auto;
    padding: 5%;
}

.category-page .category-filters .category-filter-list ul li ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
    height: 0;
    padding: 0 5%;

}

.category-page .category-filters .category-filter-list ul li ul li {
    margin: 0;
}

.category-page .category-filters .category-filter-list ul li ul li label {
    display: block;
    cursor: pointer;
    width: 100%;
    padding: 10px 5px;
}

.category-page .category-filters .category-filter-list ul li ul li label input {
    display: none;
}

.category-page .category-filters .category-filter-list ul li ul li label span {
    display: block;
    position: relative;
    text-transform: capitalize;
    line-height: 15px;
    height: 15px;
    padding-left: 25px;
    font-size: 14px;
}

.category-page .category-filters .category-filter-list ul li ul li label span::before {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
    background: #d1d7e3;
    transition: background 0.2s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 2);
}

.category-page .category-filters .category-filter-list ul li ul li label span::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 50%;
    left: 0;
    top: 0;
    position: absolute;
    background: #fff;
    transform: scale(0.78);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
}

.category-page .category-filters .category-filter-list ul li ul li.has label input:checked + span:before {
    transform: scale(1.04);
    background: #e9a246;
}

.category-page .category-filters .category-filter-list ul li ul li.has label input:checked + span:after {
    transform: scale(0.4);
    transition: transform 0.3s ease;
}

.paginator {
    text-align: center;
    margin-bottom: 10px;
}

.paginator .labelPages, .paginator .titlePages {
    display: none;
}

.paginator a, .paginator .currentPage {
    padding: 5px 10px;
    border: 1px solid #000;
    display: inline-block;
    margin-right: 5px;
}

.paginator a.paging-first:before {
    content: "\f100";
    font-family: "Font Awesome 5 Free";
}

.paginator a.paging-previous:before {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
}

.paginator a.paging-next:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
}

.paginator a.paging-last:before {
    content: "\f101";
    font-family: "Font Awesome 5 Pro";
}
.search-page .search-products-sec .text-center {
    margin-bottom: 30px;
}
/*end danh muc*/

/*chi tiet*/
.home .product-page {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.product-page .gallery-sec {
    grid-area: 1/1/2/5;
    width: 100%;
}

.product-page .gallery-sec ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.product-page .product-view-info-sec {
    grid-area: 1/5/6/7;
    padding: 0 5%;
    position: relative;
}

.product-page .product-view-info-sec > div {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.product-page .product-view-info-sec > div .product-view-detail {
    margin-bottom: 24px;
}

.product-page .product-view-info-sec > div .product-view-detail h1 {
    font-size: large;
    text-align: start;
    font-weight: bold;
    text-transform: uppercase;
}

.product-page .product-view-info-sec > div .product-view-detail .product-view-price {
    display: grid;
    grid-template-columns: repeat(2, 145px);
    margin: 10px 0;
}

.product-page .product-view-info-sec > div .product-view-detail .product-view-price p {
    font-size: x-large;
    text-align: start;
    font-weight: 600;
}

.product-page .product-view-info-sec > div .product-view-color {
    margin: 26px 0 34px;
}

.product-page .product-view-info-sec > div .product-view-color p {
    font-size: 14px;
    text-align: start;
    font-weight: 500;
    text-transform: capitalize;
}

.product-page .product-view-info-sec > div .product-view-color ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 80px));
    grid-gap: 16px;
    margin-top: 10px;
}

.product-page .product-view-info-sec > div .product-view-color ul li {
    display: block;
    width: 100%;
    padding-top: 100%;
    transition: all ease-in-out 0.3s;
    box-sizing: content-box;
    position: relative;
}

.product-page .product-view-info-sec > div .product-view-color ul li a {
    border: thin solid #f1f1f1;
    border-radius: 0;
    border-collapse: collapse;
    display: block;
    width: 100%;
    padding-top: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-page .product-view-info-sec > div .product-view-color ul li a:hover,
.product-page .product-view-info-sec > div .product-view-color ul li a.active {
    border: 0.5px solid #000000;
}

.product-page .product-view-info-sec > div .product-view-size {
    margin: 0 0 16px;
}

.product-page .product-view-info-sec > div .product-view-size p {
    font-size: 14px;
    text-align: start;
    font-weight: 500;
    text-transform: capitalize;
}

.product-page .product-view-info-sec > div .product-view-size ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 50px));
    grid-gap: 18px;
    margin-top: 10px;
}

.product-page .product-view-info-sec > div .product-view-size ul li {
    display: block;
    width: 100%;
    padding-top: 100%;
    transition: all ease-in-out 0.3s;
    position: relative;
    box-sizing: content-box;
}

.product-page .product-view-info-sec > div .product-view-size ul li a {
    border: thin solid #f1f1f1;
    border-radius: 0;
    border-collapse: collapse;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-page .product-view-info-sec > div .product-view-size ul li a span {
    font-size: 14px;
}

.product-page .product-view-info-sec > div .product-view-size ul li a:hover,
.product-page .product-view-info-sec > div .product-view-size ul li a.active {
    border: 0.5px solid #000000;
}

.product-page .product-view-info-sec > div .product-view-color ul li a,
.product-page .product-view-info-sec > div .product-view-size ul li a {
    cursor: pointer;
}

.product-page .product-view-info-sec > div .product-view-button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-page .product-view-info-sec > div .product-view-button button.add-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out 0.3s;
    width: 85%;
    background-color: #ffffff;
    color: #000000;
    margin: 15px 0;
    text-transform: uppercase;
    padding: 10px;
    border: thin solid #000000;
    font-size: large;
}

.product-page .product-view-info-sec>div .product-view-button button.add-now{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all ease-in-out .3s;
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    text-transform: uppercase;
    padding: 10px;
    border: thin solid #000000;
    font-size: large;
}

.add-now h2{
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 0;
}

.product-page .product-view-info-sec > div .product-view-button button.add-btn h1 {
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 0;
}

.product-page .product-view-info-sec > div .product-view-button button {
    border: none;
    background-color: transparent;
}

.product-page .product-view-info-sec > div .product-view-button button svg {
    transition: all ease-in-out 0.3s;
    width: 25px;
    height: 25px;
}

.product-page .product-view-info-sec > div .product-view-button button.add-btn:hover,
.product-page .product-view-info-sec>div .product-view-button button.add-now:hover{
    background-color: #000000;
    color: #ffffff;
}

.product-page .product-view-info-sec > div .product-view-button button.add-btn.oos-btn {
    cursor: not-allowed;
    pointer-events: none;
}

.product-page .product-view-info-sec > div .product-view-guide {
    padding-bottom: 5%;
}

.product-page .product-view-info-sec > div .product-view-guide li a {
    transition: all ease-in-out 0.3s;
    cursor: pointer;
    margin: 20px 0;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: thin solid #f1f1f1;
    font-size: 14px;
}

.product-page .product-view-info-sec > div .product-view-guide li a svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #aeaeae;
    transition: all ease-in-out 0.2s;
}

.product-page .product-des-sec {
    grid-area: 3/1/4/5;
    text-align: justify;
}

.product-page .product-des-sec h1 {
    font-size: 2rem;
    margin: 20px 0 0;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-page .product-des-sec ul {
    display: grid;
    grid-template-columns: 1fr;
}

.product-page .product-des-sec ul li {
    padding: 0 1%;
}

.product-page .product-view-info-sec > div .product-view-quantity {
    display: none;
}

.wishlistItems.active svg {
    fill: red;
}

.notify-wrapper {
    width: 100%;
    height: 0px;
    left: 0;
    top: 0;
    text-align: right;
    position: fixed;
    z-index: 11111;
    display: none;
}

.notify-wrapper > span {
    border-radius: 6px;
    margin: 9px;
    padding: 20px 40px;
    font-size: 13px;
    display: inline-block;
}

.notify-wrapper .server-success {
    background: #444;
    border: 0;
    color: #eee;
}

.notify-wrapper .server-warning {
    background-color: #fff3d1;
    border: 1px solid #d6aa25;
    color: #b77a1f;
}

.notify-wrapper .server-fail {
    background-color: #c1272d !important;
    border: 1px solid #c74820;
    color: #ffffff;
}

.notify-wrapper.active {
    display: inline-block;
}

.product-page .product-view-info-sec > div .product-view-size ul li a.deactive::before {
    content: "✗";
    color: #c1272d;
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.7;
    transform: translate(-50%, -50%);
}

.product-page .product-view-info-sec > div .product-view-size ul li a.deactive:hover {
    cursor: not-allowed;
    border: thin solid #f1f1f1;
}

/*end chi tiet*/

/*thanh toan*/
.checkout-form {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
    background-color: #f1f1f1;
}

.checkout-form .checkout-info-sec {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
    border: thin solid #aeaeae;
    border-radius: 0;
    border-collapse: collapse;
    grid-area: 1/1/3/4;
    margin-top: 20px;
    margin-left: 40px;
    padding: 20px;
    background-color: #ffffff;
}

.checkout-form .checkout-info-sec h1 {
    font-size: medium;
    text-align: start;
    font-weight: bold;
    text-transform: uppercase;
}

.checkout-form .checkout-info-sec input {
    border: thin solid #aeaeae;
    border-radius: 4px;
    border-collapse: collapse;
    padding: 10px 15px;
    width: 100%;
    margin: 10px 0;
    font-size: 14px;
}

.checkout-form .checkout-info-sec div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin: 10px 0;
}

.checkout-form .checkout-info-sec div select {
    display: block;
    border: thin solid #aeaeae;
    border-radius: 4px;
    border-collapse: collapse;
    padding: 10px 15px;
    font-size: 14px;
}

.checkout-form .checkout-info-sec small {
    color: grey;
}

.checkout-form .checkout-method-sec {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0;
    border: thin solid #aeaeae;
    border-radius: 0;
    border-collapse: collapse;
    background-color: #ffffff;
    padding: 20px;
    margin-left: 40px;
    grid-area: 3/1/4/4;
}

.checkout-form .checkout-method-sec h1 {
    font-size: medium;
    text-align: start;
    font-weight: bold;
    text-transform: uppercase;
}

.checkout-form .checkout-method-sec label {
    border: thin solid #aeaeae;
    border-radius: 4px;
    border-collapse: collapse;
    font-size: medium;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    transition: all ease-in-out 0.3s;
    padding: 10px 15px;
    margin: 10px 0;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
}

.checkout-form .checkout-method-sec label p {
    margin-bottom: 0;
}

.checkout-form .checkout-method-sec label svg {
    margin-right: 10px;
    width: 25px;
    height: 25px;
}

.checkout-form .checkout-method-sec label::before {
    content: "";
    width: 15px;
    flex: 0 0 15px;
    height: 15px;
    margin-right: 15px;
    background-color: transparent;
    border: thin solid #e9a246;
    border-radius: 100px;
    border-collapse: collapse;
}

.checkout-form .checkout-method-sec input:checked + label {
    border: thin solid #e9a246;
    border-radius: 4px;
    border-collapse: collapse;
}

.checkout-form .checkout-method-sec input:checked + label::before {
    background-color: #e9a246;
}

.checkout-form .checkout-cart-sec {
    grid-area: 1/4/4/7;
    border: thin solid #aeaeae;
    border-radius: 0;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: 4px;
    margin-top: 20px;
    margin-right: 20px;
    padding: 20px;
}

.checkout-form .checkout-cart-sec .checkout-cart-list {
    width: 100%;
    height: 45vh;
    overflow: auto;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li {
    display: grid;
    grid-template-columns: 20% 1fr 15%;
    grid-template-rows: 1fr;
    grid-gap: 20px;
    position: relative;
    align-items: self-start;
    margin: 0 0 14px;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li a:not(.quan-btn) {
    display: block;
    width: 100%;
    padding-top: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li div h6 {
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li div .checkout-cart-item-price {
    font-size: 12px;
    margin-bottom: 2px;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li div .checkout-cart-item-price p {
    display: inline-block;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li div .checkout-cart-item-quantity {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 5px;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li div .checkout-cart-item-quantity .quan-btn {
    background-color: transparent;
    margin: 0 5px;
    border: transparent;
    padding: 5px;
    font-size: large;
    cursor: pointer;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li div .checkout-cart-item-quantity input {
    border: thin solid #aeaeae;
    border-radius: 4px;
    border-collapse: collapse;
    width: 60px;
    padding: 5px;
    text-align: center;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li .checkout-cart-item-delete {
    position: absolute;
    top: 0;
    right: 0;
    place-self: center;
    opacity: 0.3;
    padding: 10px;
}

.checkout-form .checkout-cart-sec .checkout-cart-list li .checkout-cart-item-delete svg {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.checkout-form .checkout-cart-sec .checkout-cart-coupon {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 10px;
}

.checkout-form .checkout-cart-sec .checkout-cart-coupon input {
    margin: 0;
    border: 1px solid #aeaeae;
    height: 100%;
    padding: 10px;
    border-radius: 0;
}

.checkout-form .checkout-cart-sec .checkout-cart-coupon button {
    background-color: #eaeaea;
    color: #333;
    font-weight: 700;
    border: none;
    font-size: 14px;
    padding: 10px;
    width: auto;
    margin: 0;
    height: 100%;
}

.checkout-form .checkout-cart-sec .checkout-cart-total {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    margin: 4px 0;
}

.checkout-form .checkout-cart-sec .checkout-cart-total p {
    font-size: medium;
    text-align: center;
    font-weight: 600;
    margin-right: 15px;
}

.checkout-form .checkout-cart-sec .checkout-cart-total strong {
    font-size: large;
    text-align: center;
    font-weight: bold;
}

.checkout-form .checkout-cart-sec .checkout-cart-total small {
    font-size: small;
    text-align: center;
    font-weight: bold;
    color: #808080;
}

.checkout-form .checkout-cart-sec .confirm-btn {
    border: thin solid #aeaeae;
    border-radius: 4px;
    border-collapse: collapse;
    width: 100%;
    padding: 15px;
    background-color: #000000;
    color: #ffffff;
    display: block;
    text-align: center;
}

/*end thanh toan*/

/*tim kiem*/
.search-page {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px 10px;
}

.search-page .search-form-sec {
    grid-area: 1/1/2/7;
    width: 100%;
    padding: 40px 5%;
    background-color: #ffffff;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    border-bottom: thin solid #f1f1f1;
}

.search-page .search-form-sec form {
    border: thin solid #aeaeae;
    border-collapse: collapse;
    width: 50%;
    padding: 10px;
}

.search-page .search-form-sec input {
    width: 100%;
    border: none;
}

.search-page .search-form-sec input:focus {
    outline: none;
}

.search-page .search-products-sec {
    grid-area: 3/1/5/7;
    padding: 0 5%;
    width: 100%;
}

.search-page .search-products-sec ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(auto, 18%));
    grid-gap: 10px;
}

/*end tim kiem*/

/*tin tuc*/
.news-page .latest-sec {
    display: flex;
    flex-wrap: wrap;
}

.news-page .latest-sec .latest-item a {
    width: 100%;
}

.news-page .latest-sec .latest-item p {
    font-size: medium;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 15px;
    padding: 20px 30px;
    font-size: 16px;
}

.news-page .news-category-sec {
    padding: 5% 10%;
    background-color: #f1f1f1;
}

.news-page .news-category-sec h1 {
    font-size: x-large;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

.news-page .news-category-sec ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    margin-top: 40px;
}

.news-page .news-category-sec li {
    width: 100%;
}

.news-page .news-category-sec ul li a {
    width: 100%;
}

.news-page .news-category-sec ul li p {
    font-size: medium;
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
}

.new-detail-page .new-related-sec {
    border-bottom: thin solid #f1f1f1;
}

.new-detail-page .new-related-sec ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 2.5% 10%;
}

.new-detail-page .new-related-sec ul li {
    display: grid;
    grid-template-columns: 30% 1fr;
    grid-gap: 20px;
    align-items: center;
    cursor: pointer;
}

.new-detail-page .new-related-sec ul li a {
    width: 100%;
}

.new-detail-page .new-related-sec ul li p a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.new-detail-page .new-related-sec ul li p a i {
    margin: 5px 0;
    font-size: 14px;
}

.new-detail-page .new-related-sec ul li p a strong {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 250px;
    margin-top: 10px;
    line-height: 1.5;
    text-transform: capitalize;
}

.new-detail-page .new-content {
    padding: 2.5% 15%;
}

.new-detail-page .new-header h1 {
    font-size: 48px;
    text-align: start;
    font-weight: bold;
    padding: 20px 0;
    line-height: 1.5;
}

.new-detail-page .new-header .author-info {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.new-detail-page .new-header .author-info .author-img img {
    border-radius: 50%;
    width: 50px;
    height: auto;
    border: thin solid #f1f1f1;
}

.new-detail-page .new-header .author-info .author-name p.name {
    font-size: medium;
    text-align: start;
    font-weight: 600;
    color: #000000;
}

.new-detail-page .new-header .author-info .author-name p {
    margin: 10px 0;
    color: #aeaeae;
}

.new-detail-page .new-header .new-banner {
    margin-top: 20px;
}

.new-detail-page .new-content .new-body {
    margin-top: 50px;
    padding: 0 5%;
}

.new-body-main {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}

.loadMoreNewsHome {
    text-align: center;
    width: 100%;
    margin: 10px 0;
}

.loadMoreNewsHome a {
    cursor: pointer;
    padding: 5px 40px;
    border: 1px solid #aeacac;
    border-radius: 5px;
    color: #000;
}

/*end tin tuc*/

/*footer*/
.footer {
    grid-area: 4/1/5/7;
}

.footer {
    width: 100%;
    padding: 60px 5% 40px;
    background-color: #f7f7f7;
}

.footer .footer-row {
    display: grid;
    grid-gap: 24px;
    color: #acacac;
}

.footer .footer-row h4 {
    margin-bottom: 12px;
    font-weight: 600;
    color: #191919;
    text-transform: uppercase;
    font-size: 14px;
}

.footer .footer-row .about {
    width: 80%;
}

.footer .footer-row p {
    margin-bottom: 4px;
    font-size: 14px;
}

.footer .copy {
    padding-top: 38px;
    margin-top: 58px;
    font-size: 12px;
    color: #acacac;
    border-top: 1px solid #bbb;
    margin-bottom: 0;
}

.loadings {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .8);
    width: 100%;
    height: 100%;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: center;
}

.loadings.is {
    display: flex;
}

.footer .footer-row a {
    display: inline-block;
    margin-right: 16px;
    opacity: 0.6;
}

.footer .footer-row a svg {
    height: 24px;
}

/*end footer*/

/*wishlist*/
.favorite__products {
    padding: 0 5%;
    width: 100%;
    height: 100vh;
}

.favorite__products h1 {
    font-size: x-large;
    text-align: start;
    font-weight: 700;
    padding: 20px 0;
    text-transform: uppercase;
}

.favorite__products ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(auto, 22%));
    grid-gap: 40px;
    position: relative;
}

.favorite__products ul li {
    width: 100%;
    position: relative;
    transition: all ease-in-out 0.3s;
    margin: 10px 0;
}

/*end wishlist*/
/*menu_mobile*/
.site-nav.style--sidebar {
    position: fixed;
    width: 480px;
    height: 100vh;
    right: 0;
    top: 0;
    background: #fff;
    z-index: 8888;
    overflow: hidden;
    -ms-transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    -webkit-transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@media (max-width: 767px) {
    .site-nav.style--sidebar {
        width: 345px;
    }

    .site-nav.style--sidebar .site-nav-container {
        width: 100%;
    }

    .menu-collection li.navi1 > a {
        font-size: 16px;
    }

    .menu-collection ul.subnav-children li.navi2 > a {
        padding: 8px 0 8px 25px;
        font-size: 16px;
        font-weight: 700;
    }
}

.menu-collection ul.submenu {
    display: none;
}

.menu-collection li.navi1 span.icon-subnav {
    text-align: center;
    width: 40px;
    cursor: pointer;
    font-size: 25px;
    display: inline-block;
    vertical-align: middle;
    transition: 1s cubic-bezier(.175, .885, .32, 1.275) all;
}

.site-nav.style--sidebar.active {
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.site-nav.style--sidebar .site-nav-container {
    height: 100%;
    overflow-y: scroll;
}

#mobile_top_menu_wrapper.box-menu {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.primary-menu {
    padding: 10px;
}

.menu-collection ul.subnav-children li.navi2 > .subnav-child {
    padding-left: 35px;
    font-size: 16px;
    font-weight: 700;
}

#mobile_top_menu_wrapper {
    background: #fff;
    flex-direction: column;
}

#mobile_top_menu_wrapper {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 350px;
    z-index: 99;
    margin: 0;
    padding: 0;
    webkit-transform: translate(-400px, 0);
    -moz-transform: translate(-400px, 0);
    -ms-transform: translate(-400px, 0);
    -o-transform: translate(-400px, 0);
    transform: translate(-400px, 0);
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -moz-transition-duration: .9s;
    -o-transition-duration: .9s;
    -webkit-transition-duration: .9s;
    transition-duration: .9s;
    overflow: auto;
}

.menu-close {
    background: #253237;
    color: #fff;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    pointer-events: none;
}

.menu-close i {
    line-height: 40px;
    display: block;
    height: 40px;
    pointer-events: visible;
    float: right !important;
}

.menu-collection {
    margin-bottom: 50px;
}

.menu-about li a {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.menu-collection li.navi1 {
    margin-bottom: 10px;
    min-height: 35px;
    line-height: 35px;
}

.menu-collection li.navi1 > a {
    font-weight: 700;
    font-size: 18px;
}

.menu-collection li a {
    display: inline-block;
    width: calc(100% - 45px);
    vertical-align: middle;
}
/*end_menu_mobile*/
/*promotion*/
.breadcrumb>li {
    display: inline-block;
}
.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}
.col-left-account .page-title {
    text-align: center;
}
.col-left-account .page-title h1 {
    font-size: 26px;
    line-height: 31px;
    color: #303030;
    text-transform: uppercase;
    margin-top: 40px;
}
.col-left-account .page-title p {
    font-size: 16px;
    color: #333;
    margin-bottom: 56px;
}
.col-left-account .listPromotion .productItem {
    margin-bottom: 20px;
}
.listPromotion .productInfo .productName {
    color: #303030;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 13px 0 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.f-collection {
    background: #f5f5f5;
    text-align: center;
}
.f-collection h1 {
    font-size: 25px;
    font-weight: 700;
    padding: 20px 0;
}
.wrap-collection-title {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    background: #fff;
}
.wrap-collection-title .heading-collection {
    margin: 0 0 50px;
}

.filter-box {
    margin-top: 20px;
}
.filter-box .browse-tags {
    width: 50%;
    text-align: center;
    background-color: #eee;
    padding: 15px 10px;
    font-weight: 700;
    border-right: 1px solid #e3e3e3;
}

.pull-left {
    float: left;
}
.filter-box .browse-tags * {
    color: #000 !important;
}

.custom-dropdown {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    max-width: 100%;
    overflow: hidden;
    border-radius: 0;
}
.filter-box .browse-tags select {
    background: 0 0;
    border: none;
    font-size: 12px;
    padding: 0 7px;
    height: 25px;
    color: #fff;
    text-transform: uppercase;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
    font-weight: 600;
}

.filter-box .browse-tags * {
    color: #000 !important;
}
select {
    display: inline-block;
    min-width: 60px;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    box-shadow: 0 0 0 0 transparent inset;
    padding: 0.6em 0.8em;
    color: rgba(0,0,0,.5);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.filter-box .browse-tags select option {
    color: #000;
    background: #e7e7e7;
}

.filter-box .browse-tags * {
    color: #000 !important;
}

.filter-box .product-filter, .filter-box .product-filter:hover .filter-title {
    background-color: #eee;
}

.filter-box .product-filter {
    position: relative;
    width: 50%;
    text-align: center;
    /*background-color: transparent;*/
    padding: 15px 10px;
    font-weight: 700;
    border-right: 1px solid #e3e3e3;
}
.filter-box .product-filter .filter-title {
    background: 0 0;
}
.filter-box .product-filter:hover .filter-title {
    color: #fff;
}
.filter-box .product-filter:hover .filter-container {
    display: block;
}
.filter-box .product-filter .filter-title {
    border: none;
    font-size: 12px;
    padding: 0 7px;
    line-height: 25px;
    color: #2d2d2d;
    text-transform: uppercase;
    /*background: #e3e3e3;*/
    display: block;
    cursor: pointer;
    padding: 0 15px;
}
.filter-box .product-filter .filter-title i {
    margin-left: 5px;
}
.filter-box .product-filter .filter-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% + 1px);
    background: #e7e7e7;
    padding: 12px 0 9px;
    z-index: 99;
    display: none;
}
.filter-box .product-filter .filter-container .filter-item {
    float: left;
    width: calc(100%/4);
    padding: 0 12px;
    min-height: 100px;
    border-right: 1px solid #404040;
}
.filter-box .product-filter .filter-container .filter-item h4 {
    font-size: 13px;
    margin-bottom: 5px;
}
.filter-box .product-filter .filter-container .filter-item ul {
    max-height: 135px;
    overflow-y: auto;
    padding-right: 5px;
}
.filter-box .product-filter .filter-container .filter-item ul li {
    font-size: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 5px;
}
.filter-box .product-filter .filter-container .filter-item ul li:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -5px;
    width: 10px;
    height: 10px;
    line-height: 10px;
    border: 1px solid #404040;
    content: "";
    text-align: center;
}
.filter-box .product-filter .filter-container .filter-item ul li:hover, .filter-box .product-filter .filter-container .filter-item ul li.active {
    color: #b37c0a;
}
.filter-box .product-filter .filter-container .filter-item ul li:hover:before, .filter-box .product-filter .filter-container .filter-item ul li.active:before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    border-color: #b37c0a;
    font-size: 11px;
}
.content-product-list .pro-loop:nth-child(4n+1) {
    clear: both;
}

.pro-loop {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    background: #fff;
    padding-top: 7px;
    padding-bottom: 7px;
}
.pro-loop .product-img {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.text-sale {
    position: absolute;
    background: #fbd91e;
    padding: 3px 10px;
    text-transform: uppercase;
    right: 10px;
    top: 10px;
    font-weight: 600;
    z-index: 1;
}
img{
    object-fit: scale-down !important;
}
img.lazyloaded {
    opacity: 1;
    transition: .2s;
}
.pro-loop .product-img .button-add {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 37%;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.pro-loop .product-img .add-to-cart {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    border: 0;
    background: #191919;
    color: #fff;
    padding: 6px 20px;
}
.pro-loop .product-img .add-to-cart i {
    margin-left: 8px;
    font-size: 14px;
}
.pro-loop .product-detail {
    padding: 20px 0;
    padding-bottom: 0;
}
.product-detail .box-pro-detail {
    z-index: 9;
    width: 100%;
}
.pro-loop .product-detail h3 {
    margin: 0 0 5px;
    font-size: 14px;
    position: relative;
    text-align: center;
    font-weight: 400;
}
.pro-loop .product-detail h3 a {
    line-height: 16px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
p.pro-price {
    color: #000;
    font-size: 14px;
    margin: 0;
    text-align: center;
}
.giaban {
    color: #000;
    font-weight: 700;
}
p.pro-price span.pro-price-del {
    text-decoration: line-through;
}

p.pro-price span.pro-price-del {
    color: #939393;
    font-size: 13px;
    margin-left: 5px;
}
.pagination {
    justify-content: center;
}

.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}
/*end-promotion*/
.bestseller {
    padding: 30px 0;
}
.title-bestseller h2 {
    text-align: center;
    margin-bottom: 20px;
}
/*map*/
.main-map {
    padding: 50px 0;
}
.item-col-4 .content-right {
    display: inline-block;
    vertical-align: top;
    padding: 5px 0 0 6px;
}

.item-col-4 .content-right .text-top {
    color: #e32124;
    font-size: 25px;
}

.item-col-4 .content-right .text-bot {
    font-size: 15px;
    color: #333;
}

.item-col-4:hover img {
    transform: rotateY(360deg);
}

.item-col-4 img {
    transform: rotateY(0deg);
    transition: all ease 0.5s;
}

.listMap .storeMap {
    display: none;
}

.listMap .storeMap.storeMap-active {
    display: block;
}

.slider-collection-store img {
    width: 100%;
}

.item-col-3 {
    max-width: 33.33333%;
}

.bottom-bar {
    margin-bottom: 20px;
}

.right-side {
    text-align: left;
    color: #333;
    font-size: 16px;
    line-height: 23px;
    vertical-align: top;
    margin-top: -5px;
}

.listAgency > h2 {
    display: block;
    padding: 5px 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
}

.listAgency > span {
    display: block;
}

@media screen and (min-width: 1024px) {
    .item-col-4 .content-right {
        width: 65%;
    }
}

.top_info_maps .title {
    font-size: 18px;
    text-transform: uppercase;
}

.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;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.list_shop {
    padding: 10px;
    max-height: 505px;
    overflow: auto;
    color: #666;
    font-size: 14px;
    margin: 0;
    border: 1px solid #d7d7d7;
}

.list_shop .item {
    padding: 10px 0;
    border-bottom: 1px solid #d7d7d7;
    cursor: pointer;
}

.list_shop .item.active h3, .list_shop .item:hover h3 {
    color: #f67227;
}

.list_shop h3 {
    color: #000;
    font-size: 15px;
    margin-bottom: 10px;
}

.list_shop ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.map__Store {
    display: flex;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
/*end_map*/
.echbay-sms-messenger {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    z-index: 3;
}
.echbay-sms-messenger img {
    width: 45px;
    margin-bottom: 10px;
}
img.hotline {
    filter: invert(6%) sepia(99%) saturate(7284%) hue-rotate(210deg) brightness(129%) contrast(95%);
}
.wrapbox-heading-page{
    margin-bottom: 80px;
    display:flex;
    display:-webkit-flex;
    -webkit-align-items:center;
    align-items:center;
    -webkit-justify-content:center;
    -moz-justify-content:center;
    justify-content:center
}
.wrapbox-heading-page .header-page{
    position: relative;
}
.wrapbox-heading-page .header-page:after {
    content: "";
    background:#000;
    display: block;
    height: 4px;
    margin-top: 70px;
}
.wrapbox-heading-page .header-page h1{
    font-size: 54px;
    font-weight: 700;
    margin: 0px 0;
    line-height: initial;
}
.wrapbox-heading-page .header-page p{
    font-size: 14px;
    opacity: .66;
    margin: 20px 0 0 0;
    position: relative;
}
.wrapbox-heading-page .header-page p span{
    font-weight: 600;
}
.wrapper-row {
    margin-top:30px;
}
p.news-content{
    overflow: hidden;
    text-overflow: ellipis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 30px;
}
h1.category-title {
    text-align: center !important;
}
.product-view-price span{
    /*text-decoration: line-through;*/
    color: #000;
    margin-right: 2px;
}
.product-item{
    position: relative;
}
.product-item .qiv {
    visibility: hidden;
    padding: 0;
    position: absolute;
    bottom: 80px;
    width: 100%;
    display: flex;
}
.product-item:hover .qiv {
    visibility: visible;
}
.product-item .qiv a {
    padding: 5px 0;
    background: #fff;
    border: 1px solid;
    width: 50%;
    text-align: center;
}
.product-page .product-view-info-sec>div .product-view-detail .product-view-price {
    grid-template-columns: repeat(2, 100px);
}
.header .nav-menu .nav-menu-items{
    margin-bottom: 0;
}
/*.header .nav-menu .nav-menu-items .sub_menu{*/
/*    display: none;*/
/*}*/
.header .nav-menu .nav-menu-items>li .sub_menu {
    border: 1px solid #333;
    background: #fff;
    position: absolute;
    z-index: 999;
    transition: .5s;
}
.header .nav-menu .nav-menu-items>li .sub_menu li{
    position: relative;
}
.header .nav-menu .nav-menu-items>li .sub_menu li a {
    padding: 9px 18px;
    white-space: nowrap;
    text-align: left;
    display: block;
    font-size: 14px;
    color: #000;
}

.nav-menu-items>li:hover  .sub_menu {
    top: 100%;
    margin-top: -2px;
    border-top: 2px solid #5c5c5c;
    display: block;
}
.nav-menu-items .sub_menu {
    display: none;
    margin-left: -35px
}
.header .nav-menu .nav-menu-items>li .sub_menu li {
    text-transform: lowercase;
    margin: 0;
    border-bottom: 1px solid #333;
}
.header .nav-menu .nav-menu-items>li .sub_menu li:last-child {
    border-bottom: none;
}
.header .nav-menu .nav-menu-items>li .sub_menu li:after{
    content: none;
}
.header .nav-menu .nav-menu-items>li .sub_menu li .sub_menu{
    display: none;
}
.header .nav-menu .nav-menu-items>li .sub_menu li:hover .sub_menu{
    display: block;
}
.header .nav-menu .nav-menu-items>li .sub_menu li .sub_menu {
    left: 222px;
    top: 1px;
}
.header .nav-menu .nav-menu-items>li .sub_menu li i{
    margin-left: 5px;
}
a.tiktok {
    width: 45px;
    height: 45px;
    display: flex;
    background: black;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    justify-content: center;
    align-items: center;
}
.checkout-form .checkout-info-sec div.descriptionCustomer textarea{
    border: thin solid #aeaeae;
    padding: 15px;
}
.checkout-form .checkout-info-sec div.descriptionCustomer textarea::placeholder {
    color: #8a8a8a;
    font-size: 15px;
}

.proceed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
    text-align: center;
}

#modalConfirm .modal-dialog {
    width: 350px;
    margin: 0 auto;
}

#modalConfirm .modal-content {
    border-radius: 7px;
    border: none;
}

#modalConfirm p {
    font-size: 13px;
    margin-bottom: 5px;
}

#modalConfirm i {
    font-size: 20px;
}

#modalConfirm b {
    font-size: 18px;
}

.btn-proceed {
    font-size: 13px;
    font-weight: 600;
    padding-left: 25px;
    padding-right: 25px;
}
.main-banner-owl.owl-carousel .owl-nav button.owl-next, .main-banner-owl.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #fff;
}
.main-banner-owl.owl-carousel .owl-nav button.owl-next {
    right: 15px;
}
.main-banner-owl.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}
.panigation-center li {
    padding-right: 15px;
}
.panigation-center li:last-child {
    padding-right: 0;
}
.panigation-center li a {
    cursor: pointer;
}
.latest-item img {
    aspect-ratio: 4/3;
    height: auto;
    width: 100%;
    object-fit: cover !important;
}
.album-title {
    padding: 20px 15px;
    font-size: 32px;
    text-align: center;
}
.viewlink-more{
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}