:root{
	--main-color: #10218b;
  --sub-color: #e51e22;
}
.header_bottom.customize-header {
	background: var(--main-color);
	border-bottom: #fff;
}
.main_menu nav > ul > li > a.customize-a {
	color: #fff;
}

.main_menu nav > ul > li {
  margin-right: 2rem;
}


/* ===============================
   Customize sticky header
================================ */

.customize-sticky-header.sticky {
	position: fixed;
	z-index: 98;
	width: 100%;
	top: 0;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,.11);
	box-shadow: 0 1px 3px rgba(0,0,0,.11);
	-webkit-animation: .9s cubic-bezier(.2,1,.22,1) fadeInDown;
	animation: .9s cubic-bezier(.2,1,.22,1) fadeInDown;
	display: block;
	padding: 0 20px;
	left: 0;
	right: 0;
	border-top: 0;
}

.categories_menu_toggle {
  z-index: 9;
}

/* ===============================
   Categories Submenu
================================ */

.categories_menu_toggle .submenu {
  position: absolute;
  top: 0;
  left: calc(100% - 0px);

  width: calc(300% + 15px);

  padding: 15px 20px;

  border: 1px solid #ddd;
  border-left-color: #e1e1e1;

  box-shadow: -2px 0 8px rgba(0,0,0,.06);
  z-index: 1;

  overflow-y: auto;
  font-size: 14px;

  /* animation-friendly */
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity .2s ease, transform .2s ease;
}

/* Hover show */
.categories_menu_toggle .menu-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 900;
}

/* Grid list */
.categories_menu_toggle .submenu__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 5px;

  padding: 0;
  margin: 0;
  list-style: none;
}

/* Main item */
.categories_menu_toggle .submenu__item--main {
  font-size: 14px;
  font-weight: 400;
}

/* Link */
.categories_menu_toggle a.link {
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
}

.categories_menu_toggle a.link:hover {
  color: var(--main-color);
  font-weight: bold;
}

.categories_menu_toggle ul > li.menu-item > a.link {
  font-size: 14px;
}

.categories_menu_toggle .submenu .submenu__list .submenu__item a.link {
  font-size: 12px;
}

/* ===============================
   Main menu Submenu
================================ */

.main_menu .submenu {
  position: absolute;
  top: auto;
  left: 0px;

  width: 600px;

  padding: 15px 20px;

  border: 1px solid #ddd;
  border-left-color: #e1e1e1;

  box-shadow: -2px 0 8px rgba(0,0,0,.06);
  z-index: 1;

  overflow-y: auto;
  font-size: 14px;

  /* animation-friendly */
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity .2s ease, transform .2s ease;
}

/* Hover show */
.main_menu .menu-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 900;
}

/* Grid list */
.main_menu .submenu__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 10px;

  padding: 0;
  margin: 0;
  list-style: none;
}

/* Main item */
.main_menu .submenu__item--main {
  font-size: 14px;
  font-weight: 400;
}

/* Link */
.main_menu .submenu .submenu__list .submenu__item a.link {
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}

.main_menu .submenu .submenu__list .submenu__item a.link:hover {
  color: var(--main-color);
  font-weight: bold;
}

/* ===============================
   On Scroll Animations
================================ */

.none-opacity {
  opacity: 0;
}

.js-scroll {
  opacity: 0;
}

.scrolled.ShortFadeInDown {
  -webkit-animation: ShortFadeInDown 1s ease-in-out both;
          animation: ShortFadeInDown 1s ease-in-out both;
}
.scrolled.ShortFadeInUp {
  -webkit-animation: ShortFadeInUp 1s ease-in-out both;
          animation: ShortFadeInUp 1s ease-in-out both;
}
.scrolled.ShortFadeInLeft {
  -webkit-animation: ShortFadeInLeft 1s ease-in-out both;
          animation: ShortFadeInLeft 1s ease-in-out both;
}
.scrolled.ShortFadeInRight {
  -webkit-animation: ShortFadeInRight 1s ease-in-out both;
          animation: ShortFadeInRight 1s ease-in-out both;
}

@-webkit-keyframes ShortFadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ShortFadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes ShortFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ShortFadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes ShortFadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ShortFadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes ShortFadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ShortFadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ===============================
   Customize elementor
================================ */

.elementor-icon-box-icon {
  margin: 1rem;
}

.elementor-icon {
  cursor: pointer;
  background: #c02426;
  color: #fff;
  font-size: 40px;
  border-radius: 50%;
  display: inline-block;
  line-height: 1;
  transition: .3s;
  text-align: center;
  padding: .5em;
}

.elementor-icon i, .elementor-icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  position: relative;
  display: block;
}

.elementor-icon i::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.elementor-icon:hover {
  background-color: var(--main-color);
}

/* ===============================
   Customize section
================================ */

.welcome_title hr {
  border-color: #10218b;
}

/* ===============================
   Customize single product
================================ */

.product_items .single_product {
  border: solid 1px #ddd;
}

.slick-slide img {
  display: block;
  border: solid 1px #ddd;
}

.product_related_section .product_thumb {
  text-align: center;
}

.product_related_section .figure.primary_img {
  max-width: 60%;
}

.product-short-desc #product-attribute-specs-table .modal-attribute .description p {
  margin-bottom: .5em
}

#group_accessories hr,
#group_maylikes hr {
  border-color: #10218b;
  max-width: 70%;
  margin: 0px;
}

.product-single-tabs .tab-content {
  max-width: 90%;
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}

.product-single-tabs ul.nav li {
  width: 19%;
}

.product_instructionalarticle_section .single_blog,
.blog_area .single_blog {
  border: solid 1px #ddd;
}

.product-single-tab-description-item.show_less_desc {
  max-height: 400px;
  overflow: hidden;
  opacity: .5;
}

.product-single-tab-description-item.show_less_desc.de_showless {
  max-height: 100%;
  overflow: inherit;
  opacity: 1;
}

.product-single-tab-description .st_read_more {
  text-align: center;
  color: var(--main-color);
}

a.st_read_more {
  text-decoration: none;
  font-weight: 700;
  line-height: 2rem;
  border: 1px solid #ddd;
  height: 40px;
  align-content: center;
  box-shadow: 0 0 7px 0 rgba(0,0,0,.15);
  transition: color 200ms ease-in-out,background-color 200ms ease-in-out,border-color 200ms ease-in-out;
  -webkit-transition: color 200ms ease-in-out,background-color 200ms ease-in-out,border-color 200ms ease-in-out;
}

.st_read_more {
  margin: 1rem;
  background: linear-gradient(to bottom,rgba(255,255,255,.001),#fff 50%);
  overflow: hidden;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
}

.product-single-table .table-responsive ul {
  list-style: inherit;
  line-height: 2em;
  margin: 1em 0 1em 1em;
}

.product__details__button .contact-now.contact_now,
.product__details__button .contact-now.zalo_now {
  border: 1px solid var(--main-color);
  min-width: 250px;
}

.single-product__thumbnail--img.bestseller, .single-product__thumbnail--img.collection, .single-product__thumbnail--img.hot, .single-product__thumbnail--img.mostloved, .single-product__thumbnail--img.new, .single-product__thumbnail--img.playinn, .single-product__thumbnail--img.saleoff, .single-product__thumbnail--img.travel, .single-product__thumbnail--img.trend {
  display: flex;
  margin: -20px 0 0 -20px;
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 25px;
}

.single-product__info--addtocart {
  padding: 0 10px;
  font-size: 11px;
  height: 30px;
  line-height: 30px;
  width: 100%;
  font-weight: 500;
  text-transform: uppercase;
  background: #10218B;
  margin: 10px 0;
  cursor: pointer;
  border-radius: 50px;
  text-align: center;
  letter-spacing: .2em;
}
.single-product__info--addtocart {
  font-size: 11px;
  line-height: 30px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  letter-spacing: .2em;
}

.product_content_inner .buy-now-quick, .product_content_inner .view-product-detail {
  padding: 0 10px;
  font-size: 12px;
  background-color: #10218B;
  color: #fff;
}
.product_content_inner .buy-now-quick, .product_content_inner .view-product-detail {
  height: 40px;
  line-height: 40px;
  width: 100%;
  border-radius: 3px;
  font-weight: 500;
  text-transform: uppercase;
  background: #10218B;
  margin: 10px 0;
  cursor: pointer;
}

/* ===============================
   Widget products
================================ */

.widget_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 10px 0px 0px;
  border-bottom: 1px solid #ebebeb;
}

.widget_title h3 {
  border-bottom: 0px;
  padding: 0px;
  margin: 0px;
}

.widget_title span.toogle-widget {
  cursor: pointer;
}

.widget_list.widget_categories.product-type.show.de_show,
.widget_list.widget_categories.product-group.show.de_show,
.widget_list.widget_categories.product-brand.show.de_show {
  max-height: 0px;
  overflow: hidden;
  transition: .5s;
}

/* ===============================
   Product is new, is bestseller
================================ */

.label_product span.label_new,
.label_product span.label_bestseller {
  background: var(--main-color);
  border: 1px solid var(--main-color);
}

/* ===============================
   Search box
================================ */

.search_box button:hover {
  background-color: var(--sub-color);
  color: #fff;
  opacity: 1;
}

/* ===============================
   Wishlist wrapper, Minicart wrapper
================================ */

.mini_cart_wrapper .mini_cart_action:hover {
  color: var(--sub-color);
}

.mini_wishlist_wrapper .mini_wishlist_action:hover {
  color: var(--sub-color);
}

/* ===============================
   Wishlist button, Addtocart button sidebar
================================ */

.wishlist_text h3 {
  border-bottom: 2px solid var(--main-color);
}

.wishlist_button a.active, .wishlist_button a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.cart_button a.active, .cart_button a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}

.cart_text h3 {
  border-bottom: 2px solid var(--main-color);
}

/* ===============================
   Cart empty, wishlist empty
================================ */

.cart-empty__btn:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}


/* ===============================
   Bottom bar
================================ */

#bottombar{
  width:100%;
  border:none;
  position: fixed;
  bottom: 0px;
  z-index :95;
  left: 0px;
  background:var(--main-color);
  opacity: 0.9;
  color:#ccc;
  font-size:15px;
}
#bottombar .inner{
  width:990px;
  margin:0 auto;
  text-align:left;
}
#bottombar .inner, #bottombar .t, #bottombar .hotline, #bottombar .zalo {
  height:40px;
}
#bottombar .hotline,
#bottombar .zalo {
  line-height:40px;
  vertical-align:middle;
  padding-left:80px;
  float:left;
  white-space:nowrap;
}
#bottombar .hotline {
  background:url(../images/hotline.png) no-repeat left;
}
#bottombar .zalo {
  background:url(../images/zalo.png) no-repeat left;
}
#bottombar .hotline span,
#bottombar .zalo span {
  font-size:20px;
  font-weight:bold;
}
#bottombar .hotline  span a,
#bottombar .zalo  span a { 
  color:inherit;
  text-decoration:none;
  color:#fff;
}
#bottombar .line2 {
  margin-left:50px;
}
#bottombar .line3 {
  float:right;
}
#bottombar .t {
  float:right;
  margin-right:25px;
  white-space:nowrap;
  line-height:45px;
  text-shadow: 2px 2px 2px #333;
  font-size:18px;
}
#bottombar .t a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  margin-left: 15px;
}
#bottombar .t a.button {
  color: #ffffff;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  padding: 5px 20px;
  line-height:1.3;
}

@media (max-width: 930px) {
  #bottombar .t {
    float:left !important;
    margin-left:25px;
  }
}

@media (max-width: 640px) {
  #bottombar {
    font-size:15px;
  }
  #bottombar .t {
    display:none;
  }
  #bottombar .hotline span,
  #bottombar .zalo span{
    font-size:18px;
  }
  #cfacebook {
    bottom:0 !important;
    right:0 !important;
  }
}

/* ===============================
   Customize blog post
================================ */

.blog__item {
  border: 1px solid #ddd;
  padding: 10px;
  margin: 5px 0px 5px 0px;
  box-shadow: 0 0 7px 0 rgba(0,0,0,.15);
}

/* ===============================
   Customize product main
================================ */

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item_product_main {
  margin-top: 0px;
  margin-bottom: 0px;
  background: #fff;
}
.item_product_main .product_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  text-transform: uppercase;
}
.item_product_main .product_name a {
  text-decoration: none;
  color: #0a21a0;
}
.item_product_main .price_box,
.item_product_main .single-product__info--price {
  min-height: inherit!important;
  margin-bottom: 0.25rem; 
}
.item_product_main .price_box span.current_price,
.single-product__info--price ins {
  font-size: 16px!important;
  color: #eb4b06!important;
  font-weight:500!important;
}
.item_product_main .price_box span.old_price,
.single-product__info--price del {
  font-size: 14px!important;
  color:#666!important;
}
.item_product_main .product_rating {
  margin: 5px auto!important;
}
.item_product_main .product_vendor {
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  line-height: initial;
  color: #7a8189 !important;
  letter-spacing: 1.4px;
}

@media only screen and (max-width: 480px) {
  .item_product_main .price_box span.current_price {
    font-size: 14px!important;
  }
  .item_product_main .price_box span.old_price {
    font-size: 12px!important;
  }
  .single-product__info--price ins {
    font-size: 14px!important;
  }
  .single-product__info--price del {
    font-size: 12px!important;
  }
}

@media only screen and (max-width: 767px) {
  .item_product_main .price_box span.current_price {
    font-size: 14px;
  }
  .item_product_main .price_box span.old_price {
    font-size: 12px;
  }
  .single-product__info--price ins {
    font-size: 14px!important;
  }
  .single-product__info--price del {
    font-size: 12px!important;
  }
}

/* ===============================
   Product Related, Maylikes, Accessories
================================ */

.rs-product-related,
.rs-product-maylikes,
.rs-product-accessories {
  position: relative;
}
.rs-product-related .owl-nav {
  display: flex;
  position: absolute;
  top: 0;
  right: 10px;
  color: var(--sub-color);
}
.rs-product-maylikes .owl-nav,
.rs-product-accessories .owl-nav {
  display: flex;
  position: absolute;
  top: -15px;
  right: 10px;
  color: var(--sub-color);
}
.rs-product-related.owl-carousel .owl-stage-outer {
  margin-top: 1.5rem;
}
.rs-product-maylikes.owl-carousel .owl-stage-outer,
.rs-product-accessories.owl-carousel .owl-stage-outer {
  margin-top: 1rem;
}
.rs-product-related .owl-nav .owl-prev,
.rs-product-maylikes .owl-nav .owl-prev,
.rs-product-accessories .owl-nav .owl-prev {
  margin: 0px 10px 0px 0px;
}
.rs-product-related .owl-nav .owl-prev,
.rs-product-related .owl-nav .owl-next,
.rs-product-maylikes .owl-nav .owl-prev,
.rs-product-maylikes .owl-nav .owl-next,
.rs-product-accessories .owl-nav .owl-prev,
.rs-product-accessories .owl-nav .owl-next {
  font-size: 1.5rem;
}

/* ===============================
   Product categories
================================ */

.rs-product-categories {
  position: relative;
}
.rs-product-categories .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* quan trọng */
}
.rs-product-categories .owl-nav .owl-prev, 
.rs-product-categories .owl-nav .owl-next {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: all .3s ease;
  color: var(--sub-color);
  font-size: 2rem;
  opacity: 0.5;
}

/* ===============================
   Customize banner first
================================ */

.rs-banner-first {
  position: relative;
}
.rs-banner-first .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* quan trọng */
}
.rs-banner-first .owl-nav .owl-prev, 
.rs-banner-first .owl-nav .owl-next {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: all .3s ease;
  color: var(--sub-color);
  font-size: 2rem;
  opacity: 0.5;
}

/* ===============================
   Blog Article
================================ */

.rs-blog-related,
.rs-blog-sharing {
  position: relative;
}

.rs-blog-related .owl-nav,
.rs-blog-sharing .owl-nav {
  display: flex;
  position: absolute;
  top: 0;
  right: 10px;
  color: var(--sub-color);
}
.rs-blog-related.owl-carousel .owl-stage-outer,
.rs-blog-sharing.owl-carousel .owl-stage-outer {
  margin-top: 2rem;
}
.rs-blog-related .owl-nav .owl-prev,
.rs-blog-sharing .owl-nav .owl-prev {
  margin: 0px 10px 0px 0px;
}
.rs-blog-related .owl-nav .owl-prev,
.rs-blog-related .owl-nav .owl-next,
.rs-blog-sharing .owl-nav .owl-prev,
.rs-blog-sharing .owl-nav .owl-next {
  font-size: 1.5rem;
}

/* ===============================
   Shop
================================ */

.shop__sidebar {
  border: 1px solid var(--main-color);
  border-radius: 5px;
  background-color: #fff;
  padding: 10px;
}

@media only screen and (max-width: 480px) {
  .shop__sidebar {
    border: 0px;
    border-radius: 0px;
    background-color: #fff;
    padding: 0px;
    box-shadow: none;
  }
}

@media only screen and (max-width: 767px) {
  .shop__sidebar {
    border: 0px;
    border-radius: 0px;
    background-color: #fff;
    padding: 0px;
    box-shadow: none;
  }
}

/* ===============================
   Customize Blog
================================ */

.item_blog_main {
  margin-top: 0px;
  margin-bottom: 0px;
  background: #fff;
}
.item_blog_main .blog_name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  text-transform: uppercase;
}
.item_product_main .blog_title a {
  text-decoration: none;
  color: #0a21a0;
}
.item_blog_main .blog_desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  min-height: calc(1.4em * 4);
  text-align: justify;
}

@media only screen and (max-width: 480px) {
  .item_blog_main .blog_desc {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .item_blog_main .blog_desc {
    font-size: 12px;
  }
}

/* ===============================
   Product detail description
================================ */

.product-single-tab-description-item p img {
    width: auto;
    height: auto;
}

.product-single-tab-description-item figure,
.product-single-tab-description-item p figure {
  text-align: center;
}

/* ===============================
   Product detail button
================================ */

@media only screen and (max-width: 480px) {
  .product-details-view-content .product-info .product__details__button 
  {
    display: flex;
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .product-details-view-content .product-info .product__details__button 
  {
    display: flex;
    font-size: 12px;
  }
}

/* ===============================
   Customize footer
================================ */

.footer_widgets {
  background-image: url("../img/bg/bg-22.webp");
}

.footer_contact_inner div p {
  color: #111;
  margin: 10px 0px 0px 0px;
}

.footer_top .widgets_container h3 {
  color: #111!important;
}

.footer_menu ul li a {
  color: #111;
}

.footer_menu ul.grid-2-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer_menu ul.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


@media only screen and (max-width: 480px) {
  .product_d_info, .product_details {
    padding: 5px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .product_d_info, .product_details {
    padding: 5px 0px;
  }
}

.footer_bottom {
  padding: 10px 0px 50px 0px;
}