@import url("comp/_normal.css");
@import url("comp/_animation.css");
@import url("comp/_header.css");
@import url("comp/_layout.css");
@import url("comp/_post.css");
/*@import url("comp/_report.css");*/
@import url("comp/_contactform.css");
@import url("comp/_comments.css");
@import url("comp/_footer.css");

:root {
  --sb-menu-height: 80px;
  --sb-spacing-default: var(--sb-spacing-40);
  --sb-spacing-40: 40px;
  --sb-gap-column: 15px;
  --sb-site-width: 1140px;
  --ep-scroll-bar-w: 0 !important;
}

@media (max-width: 1280px) {
  :root {
    --sb-menu-height: 69px;
  }
}

.swiper-wrapper {
  height: auto !important;
}

.container {
  position: relative;
  width: 100%;
  max-width: calc(var(--sb-site-width) + var(--sb-gap-column)* 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--sb-gap-column);
  padding-left: var(--sb-gap-column);
}

.site-main{
  min-height: calc(100vh - var(--height));
}

.sb-section {
  position: relative;
  padding-bottom: var(--sb-spacing-default);
}

.sb-section:first-child {
  padding-top: 0;
}

.sb-section-header {
  position: relative;
  margin-bottom: 20px;
}

.sb-section-header .title {
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  font-family: var(--sb-font-heading);
  color: var(--sb-color-heading);
  margin-bottom: 0;
}

.sb-section-header .swiper-control {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sb-section-header .description {
  width: 50%;
  margin-left: auto;
}

.sb-section-moreLink {
  font-size: 14px;
  color: #898889;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.swiper {
  padding: 1px;
}

.swiper-control-btn {
  --btn-width: 40px;
  --btn-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: var(--btn-width);
  height: var(--btn-height);
  border-radius: 100%;
  /* background: #FFF;
  border: 1px solid rgba(0,0,0,.2); */
  transition: 0.3s ease-in-out;
  z-index: 5;
  position: relative;
  overflow: hidden;
  color: var(--sb-color-text);
}

.swiper-control-btn svg{
  width: 40px;
  height: 40px;
  stroke-width: 1.5px;
}


.swiper-control-btn>i {
  font-size: 24px;
}

.swiper-button-disabled {
  opacity: .3;
  cursor: no-drop;
}

/* .swiper-control-btn:hover{
  background: #F6E9E9;
} */

.swiper-control-absolute .swiper-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-control-absolute .swiper-next {
  right: -40px;
}

.swiper-control-absolute .swiper-prev {
  left: -40px;
}

.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #D8D7D8;
  opacity: 1;
  width: 8px !important;
  height: 3px !important;
  border-radius: 4px;
}

.swiper-pagination-bullet-active {
  width: 25px !important;
  background: var(--sb-color-primary) !important;
}

.swiper-pagination-absolute {
  position: absolute;
  bottom: 8px;
}

.swiper-pagination-absolute .swiper-pagination-bullet-active {
  background: #FFF !important;
}

.wrap-slider {
  position: relative;
}

.wrap-slider .swiper-slide {
  height: initial;
}

/* Easy Select */

.easy-select {
  --es-text: var(--sb-color-text);
  --es-text-hover: var(--sb-color-primary);
  --es-border: 1px solid rgba(0, 0, 0, .2);
  --es-border-hover: 1px solid rgba(0, 0, 0, .2);
  --es-radius: 0;
}

.easy-popup-master{
  backdrop-filter: none;
}

.es-current .es-option::after {
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  content: "\e931";
  font-family: 'icomoon', fantasy;
  font-size: 10px;
  margin: 0;
  transition: none;
}

.easy-select.es-dropdown-open .es-current .es-option::after {
  transform: translateY(-50%) rotate(180deg);
}

.es-current {
  border-radius: 0;
}

.es-option {
  padding: 5px 15px;
  min-height: 40.4px;
}

[data-eta-trigger]{
  cursor: pointer;
}

/* Easy popup */

/* .easy-popup-container{
  padding: 0 15px;
}

.ep-close-button{
  top: 20px;
  right: 30px;
  background-color: #2b2a2a;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  transform: none;
}

.easy-popup-content{
  padding: 20px 30px;
  border-radius: 0;
} */

/* Align */

p {
  margin: 0 0 10px 0;
  line-height: 21px;
}

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

.has-dropdown {
  cursor: pointer;
  position: relative;
}

.has-dropdown>a::after {
  content: '';
  position: absolute;
  height: 30px;
  width: 120px;
  top: 18px;
  left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 10px;
  margin: 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

/* Quick view */

#yith-quick-view-modal .yith-wcqv-main {
  transform: none !important;
}

/* Socials */

.woo-slg-social-wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.woo-slg-login-wrapper{
  position: relative;
  margin-right: 0;
  margin-bottom: 0;
  display: block;
}

.woo-slg-social-btn{
  width: 100%;
  max-width: 100% !important;
  font-size: 14px !important;
  box-shadow: none !important;
  border: none !important;
  padding: 9px 15px !important;
  padding-left: 60px !important;
  border-radius: 4px !important;
  margin: 0 !important;
}

.woo-slg-icon{
  width: 54px !important;
  border: none !important;
}

.woo-slg-social-container-login span{
  display: none !important;
}

.woo-slg-social-googleplus{
  position: absolute;
  top: 0;
  height: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Home.css */

.wrap-slider {
  position: relative;
}

.wrap-brands {
  display: flex;
  flex-wrap: wrap;
}

.wrap-brands>div {
  width: 50%;
}

.brand-items {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  border-bottom: 1px solid #F7F7F7;
}

.brand-items .brand-logo {
  border: unset !important;
  background: #fff;
  width: 25%;
  float: left;
  height: fit-content;
}

/* Product List */

.home-productList .sb-section-header {
  margin-bottom: 50px;
}

.productCat-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.productCat-banner-item .c-item-thumb {
  --c-ratio: 600 / 757;
  --c-radius: 0;
  margin: 0;
}

.productCat-banner-item .c-item-info {
  position: absolute;
  bottom: 30px;
  z-index: 1;
  width: 100%;
  align-items: center;
}

.productCat-banner-item .c-item-info .title {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.productCat-banner-item .c-item-info .title img {
  margin-left: 4px;
}

/* Videos */

.youtubeList-item .c-item-thumb {
  --c-ratio: 10 / 6;
}

.youtubeList-item .c-item-info {
  margin-top: 10px;
  padding: 0 15px 0;
}

.youtubeList-item .c-item-info .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  overflow: hidden;
  font-weight: 400;
  font-size: 14px;
}

.youtubeList-item .c-item-meta {
  font-size: 12px;
  color: #898889;
  margin: 5px 0 0 0;
}

.home-blog-slider .c-item-thumb {
  --c-ratio: 10 / 6;
}

.home-youtubeList:not(.home-nmagazine) .youtubeList-item .c-item-thumb>picture::before {
  content: "";
  width: 33.33%;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 999;
}

.home-youtubeList:not(.home-nmagazine) .youtubeList-item .c-item-thumb>picture::after {
  content: "";
  width: 33.33%;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  z-index: 999;
}

/* Nmagazine */

.home-nmagazine {
  padding-bottom: 84px;
}

/* Tabs */

.home-tabs-2 {
  padding-bottom: 0 !important;
}

.home-tabs .tabs-header {
  padding: 60px 0 35px 0;
  background: #F7F7F7;
}

.home-tabs .tabs-body {
  padding: 80px 0 40px 0;
}

.home-tabs .tabs-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.home-tabs .tab-content.active{
  display: block !important;
  height: auto;
}

.tabs-header ul.nav-tabs {
  list-style: none;
  display: flex;
  justify-content: space-around;
  margin-top: 80px;
}

.tabs-header ul.nav-tabs li {
  cursor: pointer;
  text-align: center;
  min-width: 120px;
}

.tabs-header ul.nav-tabs li span {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #FFFFFF;
  border: 3px solid #fff;
}

.tabs-header ul.nav-tabs li.active span {
  border-color: #3A393A;
}

.tabs-header ul.nav-tabs li h4 {
  font-size: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.tabs-header ul.nav-tabs li.active h4 {
  font-weight: bold;
}

.home-tabs .tab-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

.home-tabs .tab-content p:last-child {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  margin-top: 80px;
}

/* box register */
.sb-section.home-register {
  text-align: center;
  padding: 100px 0;
  background: url(../images/baner-ngang.webp) no-repeat;
  background-size: 100% auto;
}

.sb-section.home-register .sb-section-header{
  margin-bottom: 40px;
}

.sb-section.home-register .sb-section-header .title, .sb-section.home-register .sb-section-header p{
  color: #fff;
}

.sb-section.home-register .sb-section-header .title{
  margin-bottom: 10px;
}

.form-group .form-input {
  width: 100% !important;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 2px;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  display: block;
  float: none;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #ccc;
  padding:  10px 15px;
  height: 38px;
  width: 100%;
  line-height: 1.3;
  border-radius: 50px;
}

.form-group {
  margin-top: 24px;
  position: relative;
  max-width: 40%;
  margin: auto;
}

.form-field.form-field-submit {
     position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 8rem;
}

.form-group .form-btn {
  font-weight: 600;
  background: var(--sb-color-primary);
  color: #fff;
  padding: 10px 15px;
  height: 38px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 100%;
}


/* responsive */

@media (max-width:1024px) and (min-width: 768px) {
  .swiper-control-absolute .swiper-prev {
    left: -30px;
  }

  .swiper-control-absolute .swiper-next {
    right: -30px;
  }

  .home-brands .wrap-slider {
    display: none;
  }

  .wrap-brands>div {
    width: 100%;
  }

  .sb-section.home-register {
    background-size: 100% 100%;
  }

  .form-group {
    max-width: 60%;
  }
}

@media (max-width:767px) {

  .sb-section.home-register{
    padding: 60px 0;
    background-size: auto 100%;
  }

  .swiper-control-absolute .swiper-prev {
    left: -30px;
  }

  .swiper-control-absolute .swiper-next {
    right: -30px;
  }

  .home-brands .wrap-slider {
    display: none;
  }

  .wrap-brands>div {
    width: 100%;
  }

  .home-youtubeList .sb-section-header{
    padding: 0 15px;
  }

  .home-youtubeList .container{
    padding: 0;
  }

  .youtubeList-item .c-item-info{
    padding: 0;
  }
  
  .brand-items .brand-logo{
    height: 80px;
  }

 .site-content .brand-gallery .brand-items .brand-logo{
    height: fit-content;
  }
  .site-content .brand-items .brand-logo img {
    object-fit: contain;
    aspect-ratio: 4 / 2;
}

  .sb-section.home-register {
    background-size: 100% 100%;
  }

  .form-group {
    max-width: 60%;
  }

}

@media (max-width:576px) {

  .swiper-control {
    display: none;
  }

  .sb-section-header .title {
    font-size: 20px !important;
    font-weight: 500 !important;
  }

  .home-brands .wrap-slider {
    display: none;
  }

  .wrap-brands>div {
    width: 100%;
  }

  .home-productList .container {
    padding: 0;
  }

  .home-productList .sb-section-header {
    margin-bottom: 18px;
    padding: 0 15px;

  }

  .productCat-banner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tabs-header ul.nav-tabs {
    width: 100%;
    overflow: scroll;
    justify-content: start;
  }

  .form-group {
    max-width: 100%;
  }

  .form-field-flex {
    flex-direction: column;
  }
  .wrap-youtubeList {
    padding: 0 15px;
  }

}