@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,500;0,700;0,900;1,300;1,400;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root{
    --white: #fff;
    --blue: #003099;
    --green: #2e970f;
    --btn: #1c77fd;
    --gray:#ccc;
    --red: #bd110f;
    --blueshadow : rgba(44, 50, 227, 0.6);
}

body{
     padding: 0;
     margin: 0;
     overflow-x: hidden;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: 0 !important;
    padding-left:0 !important;
    margin-right: auto;
    margin-left: auto;
}

.top_bar {
    background: linear-gradient(to bottom, #2e970f, #219903);
    height: auto;
    padding: 6px 0;
}

.top_bar .row {
    /* height: 100%; */
}

.icon_topbar a {
    color: white;
    margin-right: 10px;
    font-size: 16px;
}

.hotline_topbar h3 {
    color: white;
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotline_topbar .hotline_sdt {
    background: var(--blue);
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

.hotline_topbar .hotline_sdt:hover{
    background-color: var(--white);
    color: var(--blue);
    cursor: pointer;
}


.category {
    background-color: #fff;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    cursor: pointer;
}

.category i {
    padding: 0 4px;
}

.search_header {
    position: relative;
}

.search_header .search_input{
    border: none;
    padding: 10px 10px;
    outline: none;
    border-radius: 16px;
    padding-right: 30px;
}

.search_header .icon_search{
    position: absolute;
    top:50%;
    right: 24px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--blue);
}

.icon_map {
   position: relative;
   padding: 0 12px;
}

.icon_map i{
    color: var(--white);
    text-decoration: none;
    font-size: 26px;
}

.icon_map .quantity{
    position: absolute;
    top: -25px;
    right: -5px;
    color: var(--white);
    background-color: #5da802;
    padding: 1px 4px;
    border-radius: 16px;
}

.cart {
    background : var(--blue);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
}

.cart_category {
    position: absolute;
    right: 0;
    bottom: -45px;
    width: 400px;
    background-color: #fff;
    color: black;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
}

.cart:hover .cart_category{
    display: block;
}

.menu{
    padding: 4px 0;
    margin-bottom: 4px;
}
.menu li {
    list-style: none;
    padding-left:16px;
}

.menu li a {
    color: var(--white);
    font-size: 16px;
}


.menu li a {
  color: var(--white);
  font-size: 16px;
  padding: 10px 12px;
  display: inline-block;
  white-space: nowrap;
  transition: all 0.3s;
}

.menu li a.active {
  background-color: var(--white);
  color: var(--green);
  border-radius: 6px;
}

.menu {
  display: flex;
  /* overflow-x: auto; */
  white-space: nowrap;
  scrollbar-width: none;
}

.login_res{
    padding: 6px 9px;
    background-color: var(--blue);
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
}

.icon-bar-mobile{
    background-color: var(--blue);
    padding: 10px 10px;
    font-size: 22px;
    color: var(--white);
    border-radius: 6px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4); /* màu tối mờ */
  z-index: 100;
  display: none;
}

.overlay.show {
  display: block;
}

.shopping{
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transition: right 0.4s ease;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    z-index: 111;
}

.icon_close{
    float: right;
    padding: 10px;
    font-size: 22px;
}

.shopping.open {
  right: 0;
  display: block;
}

.img_logo{
    background: linear-gradient(to bottom, #4d90fe, #3b78dd);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo{
    width: 200px;
}

#logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.hotline_topbar{
  position: relative;
}

.hotline_topbar h3::before{
   content: "|";
   position: absolute;
   top: 3px;
   left: -7px;
}

.icon-close{
    display: none;
    padding: 10px ;
    color: #ebedf0;
    z-index: 111;
    position: fixed;
    right: 0;
    top: 0;
    font-size: 22px;
}

/* Menu Mobile */
.menu_mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100vh;
    background: #fff;
    transition: left 0.4s ease;
    z-index: 111;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
}



/* Khi menu mở */
.menu_mobile.open {
    left: 0;
}

.menu_active a.active{
    color:var(--blue) !important;
}

i.fa-solid.fa-chevron-down.toggle-icon {
    font-size: 14px;
}

.menu {
  list-style: none;
  padding-left: 0;
}

.menu li {
  padding: 5px 0;
  cursor: pointer;
}

.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu {
  display: none;
  padding-left: 20px;
  list-style-type: disc;
  color: #0d6efd; /* Bootstrap blue */
}

.submenu li {
  color: #000;
}

/* Hiện submenu khi có class "open" */
.has-submenu.open .submenu {
  display: block;
}

.toggle-icon {
  transition: transform 0.3s;
}

.has-submenu.open .toggle-icon {
  transform: rotate(180deg);
}

#sub_menu .sub_menu_list a:hover {
  color: var(--btn) !important;
}

/* Responsive header start*/
@media (max-width:1200px) {
    .position-absolute.bg-white.shadow.p-3.sub_menu_list{
        min-width: 840px !important;
    }

    .catogory_sub_menu {
    width: 750px !important;
    left: -7px !important;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    padding: 10px;
  }
}

@media (max-width: 1024px) {
  .menu li a {
    padding: 6px 8px !important;
    font-size: 13px !important;
  }

  .menu li a.active {
    padding: 6px 8px !important;
  }

  .col-lg-4.d-flex.justify-content-end.align-items-center {
     padding-top: 10px;
  }

  .icon_map .quantity{
    font-size: 13px;
    top: -13px;
    right: 3px;
  }
   .category_mobile{
       margin: 10px 0;
   }

   .hotline_pc{
      display: none !important;
   }

   .menu li:first-child{
      padding-left: 0px;
   }

  ul.row.sub_menu_list.list-unstyled.position-absolute.bg-white.shadow.p-3 {
      display: none;
      width: 800px;
  }

  .catogory_sub_menu {
    width: 850px !important;
    left: -100px !important;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    padding: 10px;
  }

  .login_res{
      margin:6px 0;
  }
}

@media (max-width: 992px) {
  .hotline_mobile {
    display: none;
  }

  .btn_res {
    padding: 8px 4px !important;
  }

  .catogory_sub_menu {
    width: 750px !important;
    left: -2px !important;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    padding: 10px;
  }

  .category{
     margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .menu li a {
    font-size: 13px;
    padding: 6px 8px;
  }

  .menu li a.active {
    padding: 6px 8px;
  }

  .icon_map {
    position: relative;
    padding: 0 8px;
}

.icon_map i {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
}

.cart {
    background: var(--blue);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 13px;
    cursor: pointer;

}

.icon-bar-mobile {
    background-color: var(--blue);
    padding: 8px 8px;
    font-size: 18px;
    color: var(--white);
    border-radius: 6px;
}

.icon_map .quantity {
    position: absolute;
    top: -12px;
    right: 2px;
    color: var(--white);
    background-color: #5da802;
    padding: 0px 3px;
    border-radius: 14px;
}

#timer {
    margin-top: 10px !important;
  }

  #timer span {
    color: var(--white);
    background-color: var(--green);
    padding: 1px 6px !important;
    margin: 0 8px !important;
    text-align: center;
    border-radius: 5px;
 }

 .btn_res {
    padding: 7px 14px !important;
    color: var(--white);
    cursor: pointer;
    font-size: 14px !important;
}

.input_email {
    padding: 4px 4px !important;
    max-width: 250px !important;
    font-size: 14px;
    width: 100%;
    height: 35px !important;
}

.input_mobile{
   margin: 0 6px !important;
}

footer{
   margin: 0 10px !important;
}


.swiper-slide_img {
    padding: 4px 4px 0px 4px !important;
    border-radius: 6px;
}

.swiper-slide_img img{
   width: 70% !important;
   height: 75px !important;
}

.swiper-slide_img img{
   font-size: 10px;
}

.mt{
    margin-top: 16px !important;
}

 .post_title_one{
        display: flex;
        align-items: center;
  }

  .content_post h3{
      padding: 0px 0px 0 30px;
  }

  .content_post h3 a{
      font-size: 14px;

  }

  .content_post p {
      margin-bottom: 0 !important;
      padding: 0px 0px 0 26px;
  }

 .content_post .des_mobile a {
       display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      padding: 0px 0px 0px 0px;
 }

 .img_post {
    width: 143%;
    height: 78%;
 }

 /*.fs-5 {*/
 /*   font-size: 10px !important;*/
 /*}*/

 .about p{
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
 }

 .category {
        display: none !important;
  }
  .mobile_icon {
        display: none !important;
  }

  .menu-wrapper{
     padding: 10px 0;
  }
}

@media (max-width: 540px) {
  .top_bar {
    padding: 6px 10px;
  }

  .top_bar .row {
    height: 100%;
    padding: 4px 0;
  }

    .cart {
        padding: 6px 9px;
        border-radius: 10px;
    }

    .icon_map i {
        font-size: 14px;
    }

    .icon_map .quantity {
        position: absolute;
        top: -12px;
        right: 4px;
        color: var(--white);
        background-color: #5da802;
        padding: 0px 2px;
        border-radius: 10px;
    }

      .icon-bar-mobile {
        background-color: var(--blue);
        padding: 6px 6px;
        font-size: 16px;
        color: var(--white);
        border-radius: 6px;
    }

    .col-lg-4.d-flex.justify-content-end.align-items-center {
        padding-top: 10px;
        padding-left: 0px !important;
    }

    .mobie_img{
         width: 50%;
         height: auto;
    }
}

.menu_mobile .menu_active ul li a:hover {
  color: var(--btn) !important;
}

#sub_menu {
  position: relative;
  z-index: 1000;
}

.sub_menu_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 83%;
  transform: translateX(-20%);
  /* width: 1300px; */
  background-color: #fff;
  z-index: 1200;
  box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.33);
  transition: .3s ease-in !important;
  padding: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
  overflow: visible;
  max-height: none;
  border-radius: 6px;
}

/* Hiển thị khi hover */
#sub_menu:hover .sub_menu_list {
  display: flex;
}

ul.row.sub_menu_list.list-unstyled.position-absolute.bg-white.shadow.p-3 {
    display: none;
}

#news_menu {
  position: relative;
  z-index: 1000;
}

/* Ẩn mặc định */
.sub_menu_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  z-index: 1200;
  box-shadow: 0px 2px 6px 0px rgba(50, 50, 50, 0.33);
  transition: .3s ease-in !important;
  padding: 1rem;
  border-radius: 6px;
}

/* Hover để hiển thị */
#news_menu:hover .sub_menu_dropdown {
  display: block;
}

.sub_menu_item a {
  transition: all 0.3s ease;
  padding: 6px 12px;
  display: block;
  width: 100%;

}

.sub_menu_item a:hover {
  background: var(--btn);
  color: var(--white) !important;
  border-radius: 4px;
}

.sub_menu_dropdown .sub_menu_item a{
      color: var(--black);
}

/* Responsive header end */

.menu-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}
.menu-wrapper > * {
  display: inline-block;
  margin-right: 12px;
}

.menu-wrapper::-webkit-scrollbar {
  height: 3px; /* chiều cao thanh cuộn ngang */
}

.menu-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.menu-wrapper::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.menu-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.menu-scroll {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-scroll .menu_list {
  flex: 0 0 auto;
  margin-right: 10px;
}

.menu-scroll .menu_list a {
  display: block;
  padding: 10px 15px;
  background-color: #f0f0f0;
  border-radius: 5px;
  white-space: nowrap;
}

/* Slider Show */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  overflow: hidden;
}


swiper-container {
      width: 100%;
      height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
}

swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.cod_box {
    display: flex;
    align-items: center;
    border: 1px solid var(--blue);
    border-radius: 6px;

}

.content{
  padding: 0 10px;
  flex: 1;
}

.img_box{
   border-right: 1px solid var(--blue);
   padding: 10px 10px 10px 3px;
}

 .cod_box{
    margin: 0 5px;
}

.img_box{
    position: relative;
    border-right: 1px solid var(--blue);
    min-height: 100px;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
  cursor: pointer;
  font-size: 20px;
  color: #333;
}

.custom-prev {
  left: 10px;
}

.custom-next {
  right: 10px;
}

.custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(233, 233, 233, 0.74);
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    border-radius: 0 100px 100px 0;
}

.swiper-button-next{
   font-size: 10px;
}

.swiper-button-prev:after {
    width: 30px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(233, 233, 233, 0.74);
    transition: .3s;
    outline: none;
    border-radius: 0 100px 100px 0;
}

.swiper-button-next:after {
    width: 30px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(233, 233, 233, 0.74);
    transition: .3s;
    outline: none;
    border-radius:  100px 0 0 100px ;
}

.swiper-button-prev:hover::after {
    background-color: var(--btn);
    color: var(--white);
}

.swiper-button-next:hover::after {
    background-color: var(--btn);
    color: var(--white);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px !important;
}

.img_box::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid var(--blue);
  border-color: transparent var(--blue) var(--blue) transparent;
  position: absolute;
  top: -8px;
  left: 100%;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 50%;
  clip-path: inset(10% 0 0 0);
}

.img_box::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid var(--blue);
  border-color: var(--blue) transparent transparent var(--blue);
  position: absolute;
  bottom: -8px;
  left: 100%;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 50%;
  clip-path: inset(0 0 10% 0);
}

.content-top p{
  margin-bottom: 0 !important;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.content-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  gap: 10px;
}

.content-bottom p {
   font-size: 13px;
   margin-bottom: 0 !important;
}

.content-bottom .btn_copy{
   padding: 10px 10px;
   background-color: var(--blue);
   color: var(--white);
   border-radius: 6px;
   cursor: pointer;
   text-align: right;
   white-space: nowrap;
   flex-shrink: 0;
}


.content-bottom .btn_copy:hover{
   background-color: var(--green);
   color: var(--white);
}


.row_product_sale{
    padding: 10px 10px;
    background-color: var(--green);
    border-radius: 6px;
}

#timer span{
    color: var(--white);
    background-color: var(--green);
    padding: 1px 10px;
    margin: 0 10px;
    text-align: center;
    border-radius: 5px;
}


#timer {
  display: flex;
  align-items: center;
}

#timer span {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#timer .number {
  color: var(--white);
  background-color: var(--green);
  padding: 0px 12px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
}

#timer p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--white);
}

.separator {
  font-size: 20px;
  font-weight: bold;
  color: var(--white);
}


/* Product */
.flashsale-wrap .flashsale-progressbar {
    display: block;
    width: 100%;
    height: 8px;
    background: #dfdfdf;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.flashsale-wrap .flashsale-progressbar .flashsale-percent {
    background-color: var(--green) !important;
}

.flashsale-wrap .flashsale-progressbar .flashsale-percent {
    width: 0%;
    height: 100%;
    background-color: var(--blue);
    border-radius: 5px;
    position: absolute;
    top: 0;
    z-index: 1;
    -webkit-animation: progress_bar_fill 2s linear infinite;
    animation: progress_bar_fill 2s linear infinite;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.card i.fa-solid.fa-cart-shopping.card-shopping_product {
    padding: 10px 10px;
    background-color: var(--blue);
    border-radius: 20px;
    color: var(--white);
    cursor: pointer;
}

.card .card-body span p {
   margin-bottom: 0px !important;
}

.card .card-body span .cart-current {
    margin-bottom: 0px !important;
    color: var(--green);
    font-weight: 500;
    font-size: 20px;
}

.card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    font-size: 1rem !important;
}

.card-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    color: black;
    text-decoration: none;
    font-size: 1rem !important;
}

.card .card-text del {
  display: inline-block;
  min-height: 1em;
  color: #999;
}

.card .flashsale-label {
  min-height: 24px;
}

.product-all{
  padding: 10px 10px;
  border: 2px solid var(--white);
  border-radius: 6px;
  text-decoration: none;
  color: var(--white) !important;
}

.product-all:hover{
   background-color: var(--green);
   border: 0px solid var(--green);
}

.card .card-title:hover{
     color: var(--blue);
     cursor: pointer;
}

.col-lg-2-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 10px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: var(--white);
    background-clip: border-box;
    border: 0px solid transparent !important;
    box-shadow: rgba(60, 64, 67, 0.1) 0px 0px 2px 0px, rgba(60, 64, 67, 0.25) 0px 0px 6px 0px;
    border-radius: 4px;
    cursor: pointer;
}

.card_price_sale{
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: var(--red);
  border-radius: 4px;
  color: var(--white);
  padding: 6px;
  cursor: grab;
}

.heart_add{
   position: absolute;
   top: 4px;
   right: 4px;
   border: 1px solid var(--gray);
   width: 30px;
   height: 30px;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   color: var(--gray);
   display: none;
}

.heart_add:hover{
   border-color: var(--red);
   color: var(--red);
   cursor: pointer;
}

.swiper.mySwiper.swiper-product.mb-3.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding: 10px;
}

.swiper-product .swiper-slide {
    box-shadow: rgba(60, 64, 67, 0.1) 0px 0px 2px 0px, rgba(60, 64, 67, 0.25) 0px 0px 6px 0px !important;
}

.card:hover .heart_add{
   display: flex;
}

.swiper-product .swiper-slide:hover {
  box-shadow: var(--blue) 0px 0px 2px 0px, var(--blue) 0px 0px 6px 0px !important;
  transition: box-shadow 0.3s ease !important;
}

.card:hover {
  box-shadow: var(--blueshadow) 0px 0px 2px 0px, var(--blueshadow) 0px 0px 6px 0px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.mr-l{
   margin-left: 10px;
}

.product_sale_btn {
    border: 2px solid var(--btn);
    padding: 10px 10px;
    text-decoration: none;
    border-radius: 6px;
}

.product_sale_btn:hover{
   border: none;
   background-color: var(--blue);
   color: var(--white);
}

.img_about {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon_about {
  background-color: var(--blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon_abouts{
    width: 70px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img_icon {
  width: 60%;
  height: auto;
}

.category_product_list{
    color: var(--black) !important;

}

.menu .menu_list a.active{
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.search-bottom .btn_copy:hover {
    background-color: var(--green);
    color: var(--white);
}

.search-bottom .btn_copy {
    padding: 5px 10px;
    background-color: var(--blue);
    color: var(--white);
    border-radius: 6px;
    cursor: pointer;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 10px;
}

/* Post */
.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.des_line_2{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-trent {
    background-color: var(--white);
    box-shadow: 0 0px 2px 0 rgba(60, 64, 67, 0.1), 0 0px 6px 0px rgba(60, 64, 67, 0.25);
    padding: 3px 16px 0px 10px;
    border-radius: 8px;
}

.swiper-slide_img {
    background-color: var(--white);
    box-shadow: 0 0px 2px 0 rgba(60, 64, 67, 0.1), 0 0px 6px 0px rgba(60, 64, 67, 0.25);
    padding: 10px 10px 0px 10px;
    border-radius: 8px;
}

.swiper-slide_img p {
   display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper_category{
   margin: 8px 0px;
}

.swiper-slide_img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 4px 0px 4px;
}

.swiper-slide_img img {
  max-width: 100%;
  height: auto;
}

.input_email{
    padding: 6px 6px;
    color: var(--black);
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    max-width: 280px;
    font-size: 14px;
    outline: none;
    border: none;
    width: 100%;
    height: 40px;
}

.bg{
  background-color: #1b74e7;
}

.btn_res{
    background-color: #003cbf;
    padding: 8px 16px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    color: var(--white);
    cursor: pointer;
}

.footer_link{
  color: var(--black) !important;
}

.footer_link:hover{
  color: var(--btn) !important;
}

.category_mobile {
    position: relative;
}

.catogory_sub_menu{
    background-color: var(--white);
    width: 500px;
    padding: 14px 10px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, .15);
    border-radius: 8px;
    z-index: 1121;
    position: absolute;
    top: 100%;
    left: -112px;
    margin-top: 6px;
    display: none;
}

.catogory_sub_menu.show {
  display: block;
}

.text_category{
    color: var(--black);
}

.catogory_sub_menu ul li{
    position: relative;
    padding: 10px 10px;
    background-color: blue;
    margin: 4px 0;
    border-radius: 10px;
    color: var(--white);
     cursor: pointer;
}

.catogory_sub_menu ul li a span::after{
    content: ">";
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
}

.category_vatical{
    background-color: var(--white);
    box-shadow: 1px 1px 15px rgba(0, 0, 0, .15);
    border-radius: 10px;
}

.category_vatical:hover{
    box-shadow: 1px 1px 15px rgba(0, 0, 255, 0.15);
    border: 1px solid var(--blue);
    cursor: pointer;
}

.catogory_sub_menu ul li.active {
  background-color: green;
  color: white;
  padding: 10px 10px;
  border-radius: 10px;

}

.text_category {
  pointer-events: none;
}

.category:hover{
    background-color: var(--blue);
    color: var(--white);
}

.carousel-indicators [data-bs-target] {
  background-color: #00b300;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: #009900;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px !important;
    height: 10px !important;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

/* Video */
.video-card {
  text-align: left;
  font-family: Arial, sans-serif;
}

.video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 0px 4px 4px rgba(0 , 0 , 0 , 0.1);
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border: 1px solid var(--white);
}

.video-card:hover .play-button {
    border-color: var(--blue);
    color: var(--blue);
}
.video-title {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  cursor: pointer;
}

swiper-container::part(container) {
  width: 100%;
  height: 100%;
}

swiper-slide::part(slide) {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.video-swiper-wrapper {
  position: relative;
}

.swiper-button-next:after {
 position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 60px;
  background: rgba(233, 233, 233, 0.74);
  transition: .3s;
  outline: none;
  border-radius:  100px 0 0 100px ;
}

.swiper-button-prev:after {
 position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 60px;
  background: rgba(233, 233, 233, 0.74);
  transition: .3s;
  outline: none;
  border-radius: 0 100px 100px 0;
}

.custom-video-prev {
  left: -10px;
}

.custom-video-next {
  right: -10px;
}


@media (min-width: 1025px) {
  .swiper-mobile-only .swiper-wrapper {
    display: flex !important;
    transform: none !important;
    transition: none !important;
  }

  .swiper-mobile-only .swiper-slide {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .swiper-mobile-only .swiper-pagination,
  .swiper-mobile-only .swiper-button-prev,
  .swiper-mobile-only .swiper-button-next {
    display: none !important;
  }

  .swiper-mobile-only {
    overflow: visible !important;
  }
}

.res-login{
   position: fixed;
   top: 0;
   left: 0;
   background-color: rgba(0 , 0 , 0 , 0.5);
   width: 100%;
   height: 100%;
   bottom: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 111;
   display: none;
}

.res-login.open{
   display: flex;
}

.form-control{
   position: relative;
   top: 30%;
   transform: translateY(-50%);
   z-index: 1111;
}

.form-label {
    margin-bottom: 2.5rem !important;
}

.form-control{
    display: block;
    width: 62% !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    padding: 10px 10px !important;
}

.icon_res_login{
    z-index: 111;
    position: absolute;
    top: 0;
    right: 0;
    color: var(--white);
    padding: 10px 10px;
    font-size: 18px;
    cursor: pointer;
}

@keyframes progress_bar_fill{
  0% {
      background-position : 0 0;
  }

  100% {
      background-position: 40px 0;
  }
}

#sub_menu .sub_menu_list li a:hover {
    color: var(--btn) !important;
}


.submenu2 {
  display: none;
}

.submenu2.d-block {
  display: block !important;
}

.product_suggest {
    display: none;
}
.product_suggest.active {
    display: block;
}
.cart-header {
    list-style: none;
}

