* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: "Inter", sans-serif;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text-color);
    font-size: 14px;
}

:root {
    --primary-color: #9c1921;
    --primary-color-hover: #ce1f2a;
    --secondary-color: #003c5f;
    --third-color: #fff;
    --fourth-color: #666666;


    --text-color: #333333;
    --text-gray: #999999;

    --border-color: #999999;
    --border-2-color: #eee;
}

ul, li {
    list-style: none;
    margin: 0;
}

a {
    color: var(--text-color);
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img.lazy {
    display: block;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

button {
    border: none;
    border-radius: 0;
}

.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.adm-glyphicon span {
	background: url('./img/setting.png');
	background-size: cover;
	width: 12px;
	height: 12px;
	display: block;
    float: left;
}

.wrap {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.wrap-img {
  display: block;
}

.img-100 {
  position: relative;
  height: 0;
  overflow: hidden;
  display: block;
}

.img-100 > img {
  object-fit: cover;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
}

.mt-30 {
    margin-top: 30px;
}

/* --------------------header-------------------------------- */
.header {
    padding-top: 18px;
    background-color: var(--third-color);
    box-shadow: 0 0 15px 1px rgba(0,0,0,0.07);
}

.header-top {
    display: flex;
    align-items: end;
}

.header-top .logo {
    max-width: 224px;
    margin-right: 30px;
}

.header-search {
    flex: 1;
    margin-right: 30px;
}

.header-search p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 10px 0;
}

.form-search {
    position: relative;
}

.form-search input {
    width: 100%;
    padding: 6px 50px 6px 15px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    line-height: 25px;
}

.btn-search {
    background: none;
    position: absolute;
    top: 8px;
    right: 20px;
}

.header-search {
    position: relative;
}

.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 540px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / .25);
    background-color: var(--third-color);
    transform-origin: top left;
    transition: 0.4s ease-out 0s;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: scale(1, 0);
    z-index: 10;
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1, 1);
}

.search-box h4 {
    padding: 10px 0;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 21px;
}

.search-box ul li {
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url(./img/icon-li.svg);
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}

.search-category .row-cus {
    margin: 0 -5px;
}

.search-category .col-cus {
    padding: 0 5px;
}

.search-category-item {
    padding: 10px;
    text-align: center;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: all .2s linear;
    margin-bottom: 10px;
}

.search-category-item img {
    width: 55px;
}

.search-category-img {
    margin-bottom: 5px;
}

.search-category-item p {
    font-size: 13px;
    line-height: 19px;
    padding: 0;
    margin: 0;
    font-weight: 700;
}

.search-category-item:hover {
    background-color: #e0e0e0;
}

.search-brand .row-cus {
    margin: 0 -7.5px;
}

.search-brand .col-cus {
    padding: 0 7.5px;
}

.search-brand-item {
    margin-bottom: 15px;
}

.search-brand-item .wrap-img {
    padding-bottom: 70%;
}

.header-info {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.header-info .info-item {
    padding: 0 7.5px;
}

.header-info .info-item a {
    display: flex;
    align-items: center;
}

.header-info .info-icon {
    margin-right: 10px;
}

.header-btn .btn-item {
    position: relative;
}

.header-btn .btn-item:first-child {
    margin-right: 30px;
}

.header-btn .btn-item span {
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 18px;
    border-radius: 8px;
    text-align: center;
    right: -8px;
    top: -25px;
    background-color: var(--primary-color);
    color: var(--third-color);
}

.header-menu {
    margin-top: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    float: left;
    width: 100%;
    border-top: 1px solid var(--border-2-color);
}

.header-menu li {
    position: relative;
    float: left;
    margin-right: 15px;
}

.header-menu li:hover .list-menu {
    transform: translateY(0) scaleY(1);
    visibility: visible;
    opacity: 1;
}

.header-menu li .list-menu {
    position: absolute;
    min-width: 200px;
    left: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 10px 22px 0px rgba(45, 77, 108, 0.15);
    margin-top: 10px;
    z-index: 2;
    transform-origin: top;
    transform: translateY(-10px) scaleY(0.5);
    background-color: var(--third-color);
    transition: 0.4s ease-out 0s;
    opacity: 0;
    visibility: hidden;
}

.header-menu li .list-menu a {
    font-size: 14px;
    line-height: 21px;
    padding: 10px 20px;
    display: block;
}

.header-menu li .list-menu li {
    margin-right: 0;
    width: 100%;
}

.header-menu li .list-menu a:hover {
    background-color: var(--primary-color);
    color: var(--third-color);
}

.header-menu li .list-menu a:hover::after {
    display: none;
}

.header-menu li a {
    position: relative;
    text-transform: uppercase;
}

.header-menu li>a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -3px;
    left: 0;
    transform: scale(0);
    transition: 0.4s ease-out 0s;
    background: var(--primary-color);
}

.header-menu li:hover>a::after {
    transform: scale(1);
}

.header-menu li:hover>a {
    color: var(--primary-color);
}

.btn-menu {
    display: none;
}

/* ---------------------------menu-mobile-------------------------------- */
.menu-mobile {
  position: fixed;
  width: 300px;
  top: 0;
  left: -100%;
  z-index: 999999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s linear;
}

.menu-mobile .menu-m {
  width: 300px;
  padding: 20px 30px;
  background-color: var(--third-color);
  height: 100%;
  overflow-y: auto;
  position: fixed;
}

.menu-mobile.active {
  opacity: 1;
  visibility: visible;
  left: 0;
}

.close-menu {
  position: absolute;
  top: 10px;
  right: -45px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--third-color);
  cursor: pointer;
}

.close-menu svg {
  color: var(--text-color);
  margin-bottom: -2px;
}

.menu-mobile .logo-mb {
  text-align: center;
  margin-bottom: 20px;
}

.menu-mobile .logo-mb img {
  width: 120px;
}

.menu-mobile .header-search-box {
  display: block !important;
  height: 40px;
  margin-bottom: 20px;
  border-color: var(--border-color);
}

.menu-mobile .header-search-box input {
  height: 38px;
}

.menu-mobile .search-btn {
  width: 40px;
  height: 40px;
  background-color: unset;
  border: none;
}

.menu-mobile .search-btn svg {
  color: var(--text-color);
}

.menu-mobile .cate-m {
  float: left;
  width: 100%;
}

.menu-mobile .menu-m-list {
  float: left;
  width: 100%;
  margin-top: 20px;
}

.menu-mobile .menu-m-item a {
  padding: 5px 0;
  line-height: 26px;
  display: block;
}

.menu-mobile .menu-m-item a svg {
  float: right;
  margin-top: 3px;
}

.menu-mobile .menu-m-item a svg.open-cate {
  margin-top: 12px;
}

.menu-mobile .menu-m-item a .close-cate {
  display: none;
}

.menu-mobile .menu-m-item a .open-cate {
  display: block;
}

.menu-mobile .menu-m-item a.collapsed .close-cate {
  display: block;
}

.menu-mobile .menu-m-item a.collapsed .open-cate {
  display: none;
}

.menu-mobile .menu-m-child {
  padding-left: 15px;
  border-left: 1px solid var(--border-2-color);
}

.menu-mobile .menu-m-child a {
  color: var(--text-color);
  opacity: 0.5;
}

.navbar-other-link li {
  display: inline-block;
}

.navbar-other-link li:hover a,
.navbar-other-link li:hover svg
{
    color: var(--text-color);
}

.menu-mobile .navbar-other-link {
  float: left;
  width: 100%;
  margin-top: 20px;
  padding-bottom: 150px;
}

.menu-mobile .nsocial-list {
  text-align: center;
  width: 100%;
}

.menu-mobile .nsocial-list svg {
  color: var(--primary-color);
}

.menu-mobile .nsocial-list a {
  padding: 0 10px;
}

.backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(24,24,24,.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ---------------------------------------slider--------------------------------- */
.slider-owl {
    margin-bottom: 50px;
}

.owl-dots {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 30px;
}

.owl-dots button {
    transition: all .2s linear;
    width: 20px;
    height: 4px;
    margin: 0 8px;
    border-radius: 4px;
    background-color: var(--text-gray) !important;
}

.owl-dots button.active {
    width: 40px;
    background-color: var(--third-color) !important;
}

/* ---------------------------------------home-product--------------------------------- */
.home-product {
    padding: 25px 0;
}

.home-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
}

.home-title h2 {
    padding: 10px 0;
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
}

.home-title .btn-readmore svg {
    margin-bottom: -1px;
} 

.product-item {
    position: relative;
    padding: 10px;
    transition: all .2s linear;
    border-radius: 8px;
    margin: 10px 0;
    background-color: var(--third-color);
}

.product-item:hover {
    box-shadow: 2px 3px 17px 5px #ccc;
}

.product-item:hover .btn-quickview a {
    bottom: 0;
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img .wrap-img {
    padding-bottom: 70%;
}

.product-img .wrap-img img {
    object-fit: contain;
}

.product-img .btn-quickview a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -100px;
    background-color: var(--primary-color);
    color: var(--third-color);
    text-align: center;
    border-radius: 3px;
    padding: 5px 0;
    width: 75%;
    transition: all .2s linear;
}

.product-img .btn-quickview a:hover {
    background-color: var(--primary-color-hover);
}

.product-info {
    text-align: center;
}

.product-brand {
    font-weight: 600;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    line-height: 21px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-info h3 {
    font-weight: 600;
    font-size: 14px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.product-info h3 a {
    color: #666;
}

.product-price span {
    color: var(--primary-color);
    font-weight: 700;
}

.product-capacity {
    margin-top: 5px;
    font-size: 13px;
    color: var(--fourth-color);
}

.product-item .btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.product-item .btn-wishlist svg {
    color: var(--third-color);
    transition: all .2s linear;
}

.product-item .btn-wishlist:hover svg {
    color: var(--primary-color-hover);
}

.owl-prev
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -50px;
}

.owl-next
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
}

.home-product.border .product-item {
    border: 3px solid var(--border-2-color);
    margin: 0;
}

.home-product.border .product-item:hover {
    box-shadow:  none;
}

/* ---------------------------------------home-banner--------------------------------- */
.home-banner {
    padding: 25px 0;
}

.home-banner-item .wrap-img {
    padding-bottom: 60%;
}

.home-banner-owl .owl-dots {
    bottom: 10px;
}

.hang-item {
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.hang-item img {
    object-fit: contain;
    margin: auto;
    width: auto;
    max-height: 100px;
    max-width: 100%;
    padding: 0 10px;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.hang-item .wrap-img {
    padding-top: 79%;
}

/* ---------------------------------------product-tab--------------------------------- */
.product-tab {
    text-align: center;
    margin-bottom: 50px;
}

.product-tab li {
    display: inline-block;
}

.product-tab li a {
    border: 1px solid var(--border-color) !important;
    margin-left: 6px;
    margin-right: 6px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    border-radius: 4px;
    display: inline-block;
    padding: 5px 10px;
    min-width: 200px;
    cursor: pointer;
    transition: all .2s linear;
}

.product-tab li.active a,
.product-tab li:hover a
{
    background-color: var(--fourth-color);
    border-color: var(--fourth-color) !important;
    color: var(--third-color);
}

.product-tab li a::after {
    background-image: url(./image/icon-tab.png);
    content: '';
    display: inline-block;
    width: 18px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    position: absolute;
    opacity: 0;
}

.product-tab li.active a::after {
    opacity: 1;
    bottom: -9px;
    transition: 0.4s ease-out 0s;
}

/* ---------------------------------------home-img--------------------------------- */
.home-img {
    padding: 25px 0;
}

.home-img-item {
    border-radius: 8px;
    overflow: hidden;
}

.home-img-item .wrap-img {
    padding-bottom: 129.31%;
}

.home-img-item img {
    transition: all .2s linear;
}

.home-img-item:hover img {
    transform: scale(1.1);
}

/* ---------------------------------------home-video--------------------------------- */
.home-video-img.wrap-img {
    padding-bottom: 150%;
    border-radius: 6px;
}

.home-video-item:hover img {
    transform: scale(1.1);
}

.home-video-img img {
    transition: all .2s linear;
}

.home-video-item p {
    font-weight: 600;
    margin-top: 5px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
}

.home-video-item {
    cursor: pointer;
}

/* ------------------modal-video----------------------------- */
#video-modal .modal-dialog {
  width: 900px !important;
  top: 10%;
}

#video-modal iframe {
  width: 900px !important;
  height: 560px !important;
  border: none;
}

#video-modal .video-box {
  position: relative;
}

#video-modal .video-close {
  position: absolute;
    top: -50px;
  right: 0;
  color: var(--text-gray);
  transition: all 0.3s linear;
  cursor: pointer;
    font-size: 30px;
}

#video-modal .video-close:hover {
    color: var(--primary-color-hover);
}

/* ------------------home-news----------------------------- */
.home-news {
    padding: 25px 0;
}

.news-item img {
    transition: all .2s linear;
}

.news-item:hover img {
    transform: scale(1.1);
}

.news-img {
    overflow: hidden;
    border-radius: 8px;
}

.news-img .wrap-img {
    padding-bottom: 56.5%;
}

.news-title {
    margin-top: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-size: 15px;
}

/* ------------------home-subcriber----------------------------- */
.home-subcriber-title {
    text-align: center;
}

.home-subcriber-title h2 {
    font-family: 'Philosopher';
    font-weight: 700;
    font-size: 28px;
    padding: 10px 0;
}

.form-subcriber {
    position: relative;
    margin: 24px auto;
    max-width: 380px;
    width: 100%;
}

.form-subcriber input {
    width: 100%;
    border-radius: 50px;
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 6px 100px 6px 10px;
    height: 38px;
    line-height: 1.3;
}

.form-subcriber button {
    position: absolute;
    height: 38px;
    top: 0;
    right: 0;
    background-color: var(--border-2-color);
    border: 1px solid #ddd;
    padding: 8.5px 15px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: all .2s linear;
}

.form-subcriber button:hover {
    background-color: var(--primary-color-hover);
    color: var(--third-color);
}

/* ------------------footer----------------------------- */
.footer-wrap {
    padding: 27px 30px;
    border-radius: 8px 8px 0px 0px;
    background-color: var(--border-2-color);
}

.footer-wrap-2 {
    padding: 27px 30px;
    border-radius: 0px 0px 8px 8px;
    background-color: var(--fourth-color);
}

.footer-item {
    text-align: center;
}

.footer-item img {
    max-width: 90px;
    margin-bottom: 10px;
}

.footer-item p {
    font-size: 16px;
    color: var(--secondary-color);
}

.footer-item-r {
    margin-top: 30px;
}

.footer-r-icon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-r-icon svg {
    margin-right: 10px;
}

.footer-r-icon span {
    font-size: 16px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
}

.footer-btn {
    border-radius: 20px;
    line-height: 24px;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: var(--third-color);
    display: block;
    text-align: center;
    font-weight: 700;
}

.footer-btn:hover {
    color: var(--third-color);
    background-color: var(--primary-color-hover);
}

.footer-wrap-2 h3 {
    font-size: 13px;
    margin-bottom: 15px;
    color: var(--third-color);
    font-weight: 700;
    text-transform: uppercase;
    pointer-events: none;
}

.footer-menu li {
    margin-bottom: 5px;
}

.footer-menu li a {
    font-size: 13px;
    line-height: 19.5px;
    transition: all .2s linear;
    color: var(--third-color);
}

.footer-menu li a:hover {
    color: var(--primary-color-hover);
}

.footer-coop p {
    font-size: 13px;
    line-height: 19.5px;
    color: var(--third-color);
    margin-bottom: 5px;
}

.socials {
    display: flex;
    margin-bottom: 15px;
}

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

.socials li img {
    width: 40px;
}

/* ------------------footer-content----------------------------- */
.footer-content {
    padding-top: 30px;
}

.content h1 {
    font-size: 32px;
    color: var(--secondary-color);
    padding: 10px 0;
    line-height: 36px;
}

.content h2 {
    font-size: 28px;
    color: var(--secondary-color);
    padding: 10px 0;
    line-height: 34px;
}

.content h3 {
    font-size: 25px;
    color: var(--secondary-color);
    padding: 10px 0;
    line-height: 29px;
}

.content h4 {
    font-size: 22px;
    color: var(--secondary-color);
    padding: 10px 0;
    line-height: 26px;
}
.content h5 {
    font-size: 18px;
    color: var(--secondary-color);
    padding: 10px 0;
    line-height: 22px;
}
.content h6 {
    font-size: 16px;
    color: var(--secondary-color);
    padding: 10px 0;
    line-height: 20px;
}

.content p,
.content li
{
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.content img {
    margin-bottom: 20px;
}

.content ul {
    padding-left: 20px;
}

.content ul li {
    list-style: disc;
}

.content ol {
    padding-left: 20px;
}

.content ol li {
    list-style: decimal;
}

.content table {
    max-width: 100%;
}

.content table {
    /* width: 100%; */
    max-width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.content table thead {
    background: var(--primary-color);
    color: #fff;
}

.content table th,
.content table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border-2-color);
}

.content table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
}

.content table tbody tr {
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.content table tbody tr:hover {
    background: #f5fdf9;
}

.content table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* ------------------footer-bottom----------------------------- */
.footer-bottom-wrap {
    display: flex;
}

.footer-bottom-item {
    margin-top: 30px;
    width: calc(100% / 5);
}

.footer-bottom-item h3 {
    pointer-events: none;
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--fourth-color);
    font-weight: 700;
}

.footer-bottom-item li {
    margin: 5px 0;
}

.footer-bottom-item li a {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    position: relative;
}

.footer-bottom-item li a:hover {
    color: var(--primary-color-hover);
}

.footer-bottom-item li span {
    padding: 0 3px;
    display: inline-block;
}

/* ------------------footer-copyright----------------------------- */
.footer-copyright {
    margin-top: 30px;
}

.copyright-title {
    display: flex;
    align-items: center;
}

.copyright-title p {
    font-size: 16px;
    color: var(--fourth-color);
    font-weight: 700;
}

.copyright-title .line {
    height: 1px;
    background-color: #cccccc;
    flex: 1;
}

.copyright-content {
    text-align: center;
}

.copyright-content p {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-gray);
}

/* ------------------breadcrumb-page----------------------------- */
.breadcrumb-page {
    padding: 15px 0;
}

.breadcrumb-page li {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 18px;
}

.breadcrumb-page li:not(:last-child)::after {
    content: "/";
    margin: 0 4px;
}

.breadcrumb-page li:last-child a {
    pointer-events: none;
}

.breadcrumb-page li a {
    color: var(--text-gray);
    transition: all .2s linear;
}

.breadcrumb-page li:hover a {
    color: var(--primary-color-hover);
}

/* ------------------sidebar-product----------------------------- */
.sidebar-product {
    padding-right: 40px;
}

.sidebar-title {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-2-color);
    color: var(--fourth-color);
}

.sidebar-title svg {
    margin-bottom: -2px;
    margin-right: 5px;
}

.sidebar-close {
    display: none;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color-hover);
    cursor: pointer;
    margin-top: 0;
}

.filter-group {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-2-color);
    margin-bottom: 20px;
}

.filter-select {
    overflow: hidden;
    transition: 0.3s ease;
    max-height: 145px;
    overflow-y: auto;
}

.filter-title {
    margin-bottom: 10px;
    padding: 10px 0;
    font-weight: 700;
    font-size: 16px;
}

.form-filter .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.form-filter label {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    margin-left: 8px;
    line-height: 20px;
}

/* input range */
.range-slider {
  position: relative;
  width: 100%;
  height: 50px;
  text-align: center;
  margin-top: 30px;
}

.rangeValues-g {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

.range-slider input[type="range"] {
  pointer-events: none;
  position: absolute;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 14px;
  background: rgb(241, 239, 239);
  box-shadow: inset 0 1px 0 0 rgb(205, 198, 198),
    inset 0 -1px 0 0 rgb(217, 212, 212);
  -webkit-box-shadow: inset 0 1px 0 0 rgb(205, 198, 198),
    inset 0 -1px 0 0 rgb(217, 212, 212);
  /* overflow: hidden; */
  left: 0;
  top: 0;
  width: 100%;
  outline: none;
  height: 6px;
  margin: 0;
  padding: 0;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  position: relative;
  z-index: 1;
  outline: 0;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 14px;
  background: var(--primary-color);
}

.range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 14px;
  background: var(--primary-color);
}

.range-slider input[type="range"]::-ms-thumb {
  pointer-events: all;
  position: relative;
  z-index: 10;
  -ms-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 14px;
  border: 0;
  background: var(--primary-color);
}

.range-slider input[type="range"]::-moz-range-track {
  position: relative;
  z-index: -1;
  background-color: rgba(0, 0, 0, 1);
  border: 0;
}

.range-slider input[type="range"]:last-of-type::-moz-range-track {
  -moz-appearance: none;
  background: none transparent;
  border: 0;
}

.range-slider input[type="range"]::-moz-focus-outer {
  border: 0;
}

/* ------------------product-list----------------------------- */
.product-title {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 15px;
}

.product-title h1 {
    font-size: 28px;
    line-height: 42px;
    font-weight: 600;
}

.product-filter {
    padding: 12px 15px;
    margin-bottom: 30px;
    border: 1px solid var(--border-2-color);
}

.product-filter span {
    font-size: 13px;
    margin-right: 10px;
}

.product-filter button {
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: var(--third-color);
    margin-right: 15px;
    transition: all .2s linear;
}

.product-filter button:hover,
.product-filter button.active
{
    color: var(--third-color);
    background-color: var(--border-color);
    border-color: var(--border-color);
}

.filter-wrap {
    display: inline-block;
}

.paging-n {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.paging-n div a,
.paging-n div.prev
{
  border: none;
  background:  #f6f6f6;
  color: var(--text-color);
  margin: 0 2.5px;
  border-radius: 5px !important;
  width: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  line-height: 28px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.paging-n div a:hover,
.paging-n div.current a {
  background: var(--primary-color);
  color: var(--third-color);
}

/* ------------------product-detail----------------------------- */
.product-img-owl {
    margin-bottom: 30px;
}

.product-img-owl .owl-prev {
    left: 0;
}

.product-img-owl .owl-next {
    right: 0;
}

.product-img-owl .wrap-img {
    padding-bottom: 70%;
}

.product-dots .wrap-img {
    padding-bottom: 70%;
}

.product-dots .item-img {
    border-radius: 8px;
    border: 1px solid #fff0;
    transition: all .2s linear;
}

.product-dots .item-img img {
    max-height: 80%;
    max-width: 80%;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-dots .focus .item-img {
    border-color: var(--primary-color);
}

.btn-wishlist-detail {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
}

.btn-wishlist-detail a {
    transition: all .2s linear;
    color: var(--third-color);
}

.btn-wishlist-detail a:hover {
    color: var(--primary-color-hover);
}

.product-infor {
    padding-left: 40px;
}

.product-infor h1,
.sidebar-product-title
{
    font-size: 28px;
    padding: 10px 0;
    padding-bottom: 15px;
    font-family: 'Philosopher';
    font-weight: 700;
    line-height: 42px;
}

.product-availability {
    display: flex;
    align-items: center;
}

.product-status {
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.product-status::before {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 5px;
}

.product-status.green
{
    color: #00a759;
    
}

.product-status.green::before {
    background-color: #00a759;
}

.product-status.red {
    color: var(--primary-color-hover);
}

.product-status.red::before {
    background-color: var(--primary-color-hover);
}

.product-gender {
    border: 1px solid #ccc;
    color: var(--text-gray);
    padding: 0 10px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 21px;
    border-radius: 2.5px;
}

.product-hang {
    margin-top: 15px;
}

.product-hang p {
    text-transform: uppercase;
    font-weight: 700;
}

.product-hang p span {
    color: var(--primary-color);
}

.product-price {
    margin-top: 30px;
}

.product-price p,
.capacity-price
{
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 36px;
}

.product-detail-capacity {
    margin-top: 15px;
}

.product-detail-capacity span,
.product-quatity span
{
    font-size: 13px;
    margin-right: 10px;
}

.product-detail-capacity .btn-capacity {
    border: 2px solid var(--text-color);
    padding: 2px 8px;
    margin-right: 10px;
    border-radius: 5px;
    transition: linear 0.3s;
    line-height: 19px;
}

.product-detail-capacity .btn-capacity:hover,
.product-detail-capacity .btn-capacity.active
{
    background-color: var(--text-color);
    color: var(--third-color);
}

.capacity-price {
    margin: 10px 0;
}

.product-quatity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-custom button,
.quantity-custom input
{
    width: 28px;
    color: var(--text-gray);
    height: 28px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    background-color: var(--third-color);
}

.quantity-custom input {
    width: 36px;
    color: var(--text-color);
    font-weight: 700;
    margin-left: 4px;
    margin-right: 4px;
}

.product-btn a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--primary-color);
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease-out 0s;
}

.product-btn a::before {
    border-radius: 8px;
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    display: inline-block;
    transition: 0.3s ease-out 0s;
    z-index: -1;
}

.product-btn a:hover::before {
    width: 100%;
    background-color: var(--primary-color);
}

.product-btn a:hover {
    color: var(--third-color);
}

.product-btn a:last-child {
    min-width: 200px;
    margin-left: 20px;
    background-color: var(--primary-color);
    color: var(--third-color);
}

.product-btn a svg {
    margin-left: 10px;
}


.btn-buy-now:hover::before {
    width: 100%;
    background-color: var(--third-color) !important;
}

.btn-buy-now:hover {
    color: var(--primary-color) !important;
}

.btn-buy-now::before {
    z-index: 1 !important;
}

.btn-buy-now span,
.btn-buy-now svg
{
    position: relative;
    z-index: 2;
}

.product-phone {
    margin: 30px 0;
}

.product-phone a {
    display: flex;
    align-items: center;
}

.product-phone span {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    display: inline-block;
    text-transform: uppercase;
    margin-left: 10px;
}

.product-phone span.first {
    padding-right: 10px;
    border-right: 1px solid var(--border-color);
}

.product-phone span:last-child {
    font-weight: 700;
    font-size: 20px;
}

.product-policy {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid var(--border-2-color);
    border-bottom: 1px solid var(--border-2-color);
}

.policy-item {
    display: flex;
    color: var(--fourth-color);
    align-items: center;
    justify-content: center;
}

.policy-item span {
    font-size: 20px;
    margin-left: 15px;
}

.product-detail-tab {
    display: flex;
    justify-content: space-between;
}

.product-detail-tab li a {
    font-size: 24px;
    padding: 5px 10px;
    font-family: 'Philosopher', sans-serif;
    font-weight: 700;
    color: var(--text-gray);
}

.product-detail-tab li.active a {
    color: var(--text-color);
}

.product-content {
    margin-top: 30px;
    padding: 30px;
    border: 1px solid var(--border-2-color);
    border-radius: 8px;
}

.content2 p,
.product-content p,
.content2 li
{
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 400;
}

.content2 p {
    margin-bottom: 15px;
}

.product-content .border {
    border: 1px solid var(--border-2-color);
    margin: 15px 0;
}

.content2 h1 {
    color: var(--text-color);
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
}

.content2 h2 {
    color: var(--text-color);
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
}

.content2 h3 {
    color: var(--text-color);
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
}

.content2 h4,
.content2 h5,
.content2 h6
{
    color: var(--text-color);
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
}

.product_content {
    max-height: 280px;
    overflow: hidden;
}

.product_content.active {
    max-height: unset;
}

.product-content-btn {
    text-align: center;
    margin: 20px 0;
}

.product-content-btn button,
.btn-comment
{
    padding: 6px 15px;
    border-radius: 6px;
    text-transform: uppercase;
    color: var(--third-color);
    background-color: var(--primary-color);
    font-weight: 600;
    transition: all .2s linear;
}

.product-content-btn button:hover,
.btn-comment:hover
{
    background-color: var(--primary-color-hover);
}

.comment-product {
    margin-bottom: 30px;
}

/* ----------COMENT---------- */
.form__control {
  height: 40px;
  width: 100%;
  font-size: 14px;
  background: var(--second-color);
  border: 0;
  padding: 10px 12px;
  color: var(--primary-color);
}

.comment__form .form__control {
  border: 1px solid var(--border-2-color);
  margin-bottom: 20px;
}

.comment__show {
  margin-bottom: 20px;
}

.form-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-2-color);
}

.comment__show--item:not(:last-child) {
  margin-bottom: 20px;
}

.comment__show--img {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: var(--primary-color);
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--third-color);
  border-radius: 50%;
  float: left;
}

.comment__show--right {
  padding-left: 100px;
}

.comment__show--name {
  font-weight: 500;
  font-size: 20px;
  color: var(--primary-color);
}

.comment__show--name span {
  transform: translateY(-3px);
  margin-right: 10px;
  text-transform: capitalize;
}

.comment__show--created {
  font-size: 16px;
  color: var(--fourth-color);
  margin-bottom: 10px;
}

.comment__show--des {
  font-size: 16px;
  color: var(--fourth-color);
}

/* ----------RATE----------- */
.starscmt {
  display: inline-block;
}

.starscmt li {
  display: inline-block;
  font-size: 0;
}

.rate__count {
  transform: translateY(-3px);
  display: inline-block;
  font-size: 15px;
}

.element__rate {
  margin-bottom: 10px;
}

/* ----------END RATE----------- */
.product-rate {
    margin-bottom: 60px;
}

.product-rate h3 {
    font-family: 'Philosopher';
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
    padding: 10px 0;
    margin-bottom: 30px;
}

.product-rate p {
    font-weight: 700;
    margin-bottom: 30px;
}

.rate-item {
    text-align: center;
    padding: 0 15px;
}

.rate-item svg {
    height: 60px;
}

.rate-item p {
    margin: 10px 0;
}

.product-rate .col-sm-2 {
    border-right: 1px solid var(--border-2-color);
}

.product-rate .col-sm-2:last-child {
    border: none;
}

.rate-progress {
    border-radius: 8px;
    height: 8px;
    max-width: 80px;
    margin: 0 auto;
}

/* ----------sidebar-product----------- */
.sidebar-product-detail {
    padding-left: 40px;
    border-left: 1px solid var(--border-2-color);
}

.sidebar-product-title {
    padding-top: 0;
}

/* ----------product-watched----------- */
.product-watched {
    margin: 25px 0;
    padding: 16px 21px;
    border-radius: 8px;
    background-color: var(--border-2-color);
}

.news-detail-title {
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 32px;
}

.detail-mucluc {
  margin: 20px 0;
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid var(--border-2-color);
}

.muluc-head {
  position: relative;
}

.muluc-head svg {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--second-color);
}

.muluc-head p {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
}

.muluc-head p a.collapsed .close-d {
  display: none;
}

.muluc-head p a.collapsed .open-d {
  display: inline;
}

.muluc-head p a .open-d {
  display: none;
}

.muluc-head p a .close-d {
  display: inline;
}

.muluc-head a {
  font-weight: 400;
}

.muluc-head a:hover {
  color: var(--fouth-color);
}

/* ----------banner-page----------- */
.banner-page {
    position: relative;
}

.banner-page .wrap-img {
    padding-bottom: 35%;
}

.banner-page-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(180deg, #fff0 0, rgb(0 0 0 / 58%) 100%);
}

.banner-page-content h1 {
    font-size: 51px;
    line-height: 76px;
    color: var(--third-color);
}

/* ----------contact-page----------- */
.contact-content {
    text-align: center;
}

.contact-content h2 {
    margin: 30px 0;
    padding: 10px 0;
    font-size: 51px;
    line-height: 76px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-content p {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 15px;
}

.form-contact {
    margin: 24px 0;
    padding: 30px;
}

.form-contact input,
.form-contact textarea
{
    border: 1px solid #ccc;
    padding: 6px 10px;
    height: 38px;
    width: 100%;
    font-size: 16px;
    border-radius: 2px;
    line-height: 1.3;
}

.form-contact textarea {
    height: 120px;
    resize: vertical;
}

.form-contact label {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.form-contact button {
    padding: 10px 15px;
    background-color: var(--border-2-color);
    border: 1px solid #ddd;
}

.form-contact button:hover {
    background-color: #ddd;
    border: 1px solid #ccc;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 0;
}

@media (max-width: 768px) {
  .comment__show--img {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }

  .comment__show--right {
    padding-left: 75px;
  }

  .comment__show--created {
    font-size: 14px;
  }

  .comment__show--des {
    font-size: 14px;
  }
}

/* ----------END COMENT---------- */

@media (max-width: 1500px) {
    .owl-next
    {
        right: 0;
    }

    .owl-prev
    {
        left: 0;
    }
}

@media (max-width: 1100px) {
    .header {
        padding-bottom: 18px;
    }

    .header-search, .header-info, .header-menu {
        display: none;
    }
    
    .btn-menu {
        display: block;
    }

    .header-top {
        justify-content: space-between;
    }

    .header-top .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }

    .header-top svg {
        width: 20px;
        margin-bottom: -4px;
    }

    .header-btn .btn-item:first-child {
        margin-right: 15px;
    }

    .header-top .logo {
        max-width: 150px;
    }

    .header-btn .btn-item span {
        top: -20px;
    }

    /* -------------------------------------------slider----------------------------------- */
    .slider-owl .owl-dots {
        bottom: 10px;
    }

    /* ---------------------------------------home-product--------------------------------- */
    .home-title {
        margin-bottom: 17px;
    }
    
    .home-title h2 {
        font-size: 24px;
        line-height: 35px;
    }

    .home-title .btn-readmore {
        font-size: 12px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .product-price span {
        font-size: 11px;
    }

    /* ---------------------------------------home-banner--------------------------------- */
    .home-banner-owl {
        margin-bottom: 25px;
    }

    /* ---------------------------------------product-tab--------------------------------- */
    .product-tab li a {
        min-width: auto;
        margin-bottom: 10px;
    }

    .product-tab {
        margin-bottom: 25px;
    }

    .owl-nav svg
    {
        height: 30px;
    }

    #video-modal .modal-dialog {
        width: 100% !important;
        top: 9%;
        margin: 0;
        padding: 20px;
    }

    #video-modal iframe {
        width: 100% !important;
        /* height: 300px !important; */
    }

    #video-modal .video-close {
        right: 20px;
    }

    /* ------------------footer----------------------------- */
    .footer-item {
        margin-bottom: 25px;
    }

    .footer-item img {
        width: 60px;
    }

    .footer-item-r.first {
        margin-top: 0;
    }

    .footer-wrap-2 h3,
    .footer-bottom-item h3
    {
        pointer-events: all;
        position: relative;
    }

    .footer-wrap-2 h3.collapsed::after,
    .footer-bottom-item h3.collapsed::after
    {
        content: "+";
        position: absolute;
        right: 0px;
        font-size: 15px;
        font-weight: bold;
        top: -2px;
    }

    .footer-wrap-2 h3::after,
    .footer-bottom-item h3::after
    {
        content: "-";
        position: absolute;
        right: 0px;
        font-size: 15px;
        font-weight: bold;
        top: -2px;
    }

    .footer-menu, .footer-coop {
        margin-top: 12px;
    }

    /* ------------------footer-bottom----------------------------- */
    .footer-bottom-wrap {
        display: block;
    }

    .footer-bottom-item {
        width: 100%;
        margin-top: 0;
    }

    /* ------------------sidebar-product----------------------------- */
    .sidebar-product {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--third-color);
        z-index: 9999;
        padding: 24px 16px;
        width: 90%;
        overflow-y: auto;
        height: 100%;
        transition: all .3s linear;
        max-width: 400px;
    }

    .sidebar-product.active {
        right: 0;
    }

    .sidebar-close {
        position: absolute;
        top: 20px;
        right: 20px;
        display: block;
    }

    .control-sidebar {
        display: flex !important;
        position: fixed;
        justify-content: center;
        height: 34px;
        width: 34px;
        top: 60%;
        right: 0;
        background-color: var(--primary-color);
        color: var(--third-color);
        line-height: 34px;
        font-size: 18px;
        align-items: center;
        z-index: 9;
    }

    /* ------------------product-list----------------------------- */
    .filter-wrap {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }

    .product-filter {
        display: flex;
        align-items: center;
    }

    .product-filter span {
        white-space: nowrap;
    }

    /* ------------------product-detail----------------------------- */
    .product-infor {
        padding-left: 0;
    }

    .product-infor h1 {
        font-size: 23px;
    }

    .product-price p, .capacity-price {
        font-size: 19px;
    }

    .product-btn a {
        line-height: 40px;
        font-size: 15px;
        height: 40px;
        margin-bottom: 10px;
    }

    .product-btn a:last-child {
        margin-left: 0;
    }

    .policy-item {
        justify-content: start;
        margin-bottom: 25px;
    }

    .product-detail-tab {
        display: block;
    }

    .product-detail-tab li {
        width: 50%;
        float: left;
        margin-bottom: 8px;
        line-height: 32px;
    }

    .product-detail-tab li a {
        font-size: 16px;
    }

    .product-content {
        margin-top: 24px;
    }

    .product-rate .col-sm-2:nth-child(2n) {
        border: none;
        margin-bottom: 25px;
    }
    
    .sidebar-product-detail {
        padding-left: 0;
        border: none;
    }

    /* ----------contact-page----------- */
    .contact-content h2 {
        font-size: 42px;
        line-height: 63px;
    }

    .contact-info {
        margin-bottom: 20px;
    }

    .form-contact {
        padding: 0;
    }
}