/*
Theme Name: lbk
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.19.1
*//*************** ADD CUSTOM CSS HERE.   ***************/
:root {
  --radius: 8px;
  counter-reset: post-ranking;
}

#main, #wrapper {
  background-color: #f5f2eb;
}

.is-divider {
  display: none;
}

.nav.header-nav-main > li > a {
  font-size: 16px;
}

.header-main .hide-for-medium.flex-right .header-nav-main {
  justify-content: space-between;
}

ul.header-nav.header-nav-main.nav.nav-left.nav-uppercase {
  padding-top: 12px;
  padding-left: 30px;
}

ul.header-nav.header-nav-main.nav.nav-left.nav-uppercase>li>a {
  text-transform: unset !important;
}

.header .sub-menu {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.header .nav-dropdown .menu-item:not(:last-child) {
  border-bottom: 1px solid #eee
}

.header .nav-dropdown .menu-item a {
  border: none
}

.header .nav-dropdown a {
  border: none;
  position: relative;
  overflow: hidden
}

.header .nav-dropdown .menu-item a:before {
  content: "\f345";
  font-family: 'dashicons';
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  color: var(--primary-color);
  opacity: 0;
  transition: .3s
}

.header .nav-dropdown .menu-item:hover>a:before {
  left: 0;
  opacity: 1
}

.header .nav-dropdown .menu-item {
  transition: .3s
}

.header .nav-dropdown .menu-item:hover>a {
  padding-left: 20px;
  color: var(--primary-color)!important
}

.menu-item .nav-dropdown .menu-item-has-children {
  position: relative;
  width: 100%
}

.menu-item .nav-dropdown .menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 100%;
  min-width: 260px;
  background-color: #fff;
  box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
  transition: 0.3s;
  opacity: 0;
  z-index: -1;
}

.menu-item-has-children .menu-item-has-children:hover .sub-menu {
  top: 0;
  opacity: 1;
  z-index: 1;
}

.nav-dropdown-col>a {
  font-weight: 500!important;
  text-transform: none!important
}

.nav-dropdown>li.nav-dropdown-col {
  min-width: 260px
}

.sub-menu a {
  color: var(--black-color)!important;
  font-size: 1rem!important
}

.nav-dropdown-col::after {
  content: "\f345";
  font-family: 'dashicons';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: .5s
}

.nav-dropdown-col:hover:after {
  color: var(--primary-color);
  right: -10px;
  opacity: 0
}

.section-title b {
  opacity: 0;
}

.section-product-categories h3 {
  font-size: 1.1rem;  
}

.section-product-categories .icon-box {
  position: relative;
  padding-bottom: 15px;
}

.section-product-categories .icon-box-img {
  margin-bottom: 30px;
}

.section-product-categories .icon {
  position: relative;
}

.section-product-categories .icon-inner {
  position: relative;
  z-index: 1;
}

.section-product-categories .icon:after {
  content: '';
  display: inline-block;
  width: 66px;
  height: 66px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-53%, 10px);
  z-index: 0;
  transition: .5s;
}

.section-product-categories .row > .col:nth-child(1) .icon:after {
  background-color: #cba396;
}
.section-product-categories .row > .col:nth-child(2) .icon:after {
  background-color: #cc5e56;
}
.section-product-categories .row > .col:nth-child(3) .icon:after {
  background-color: #f59160;
}
.section-product-categories .row > .col:nth-child(4) .icon:after {
  background-color: #fff46e;
}

.section-product-categories .icon-box:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 80%;
  background-color: #eee;
  border: 1px solid #00ff4ec4;
  position: absolute;
  left: 0;
  bottom: -15px;
  z-index: -1;
  border-radius: var(--radius);
}

.section-product-categories .plain img {
  transition: .5s;
}

.section-product-categories .plain:hover img {
  transform: scale(1.25);
}

.section-product-categories .plain:hover .icon:after {
  width: 10px;
  height: 10px;
  bottom: 50%;
}

.section-product-categories .plain:hover h3 {
  color: var(--primary-color);
}

.section-benefit .icon-inner {
  border: 1px solid var(--primary-color);
  padding: 8px;
  width: 50px;
  height: 50px;
}

.section-benefit .icon-box-text {
  font-size: 12px;
}

.section-benefit .icon-box-text h4 {
  margin-bottom: 0;
  font-size: 14px;
}

.product-small.box {
  border: 1px solid #31993529;
  background-color: #fff;
  border-radius: var(--radius);
}

.product-small.box > .box-image {
  padding: 15px;
}

.product-small.box > .box-image:after {
  content: '';
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
  position: absolute;
  left: 0;
  bottom: 0;
}

.product-small.box > .box-text-products {
  padding-inline: 15px;
}

.product-small.box > .box-text-products .category {
  color: var(--primary-color);
  text-transform: unset;
}

.product-small.box > .box-text-products .woocommerce-loop-product__title a {
  font-size: 16px;
  color: #141414;
  font-weight: 700;
  margin-bottom: 7px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
          line-clamp: 2; 
  -webkit-box-orient: vertical;
  height: 42px;
}

.product-small.box > .box-text-products .woocommerce-loop-product__title a:hover {
  color: var(--primary-color);
}

.single-product ins .woocommerce-Price-amount {
  color: #ff0000;
}

.product-small.box > .box-text-products bdi {
  font-size: 18px;
  color: #ff0000;
}

.product-small.box > .box-text-products del bdi {
  font-size: 12px;
  color: #6c6c6c;
}

.product-small.box:hover {
  transform: scale(1.02);
}

.section-product .button {
  border: 1px solid #31993529;
}

.section-product .button span {
  color: #141414;
}

.section-product .button:hover {
  background-color: var(--primary-color) !important;
}

.section-product .button:hover span {
  color: #fff !important;
}

.section-product:before {
  content: '';
  width: 200px;
  height: 300px;
  background: url(/wp-content/uploads/2023/11/pellets-natto.png);
  transform: rotate(180deg);
  position: absolute;
  display: inline-block;
  background-size: contain;
  top: -30px;
  left: 0;
}

.section-product:after {
  content: '';
  width: 200px;
  height: 267px;
  background: url(/wp-content/uploads/2023/11/sugar.png);
  position: absolute;
  display: inline-block;
  background-size: contain;
  bottom: -15px;
  right: 0;
}

#secondary .widget {
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background-color: #fff;
}

aside .widget-title {
  display: block;
  border-bottom: 1px solid var(--primary-color);
  padding: 15px;
  text-transform: unset;
}

#secondary .widget li {
  padding-inline: 15px;
}

.widget>ul>li+li {
  border-top: none;
}

.widget:not(#woocommerce_products-3)>ul>li+li a {
  border-top: 1px dashed var(--primary-color);
  width: 100%;
}

#block_widget-4 .col.post-item {
  padding: 0;
  position: relative;
}

.widget .post-item:after {
  position: absolute;
  content: counter(post-ranking);
  top: 10px;
  left: -10px;
  border: 1px solid #eee;
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 100%;
  background: var(--primary-color);
  color: #fff;
  font-size: 9px;
  counter-increment: post-ranking;
  z-index: 1;
}

#block_widget-4 .row {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

#block_widget-4 .post-item .col-inner {
  padding-block: 15px;
}

#block_widget-4 .post-item:not(:last-of-type) .col-inner {
  border-bottom: 1px dotted #ccc;
}

#block_widget-4 .post-item .box-text {
  padding: 0 0 0 10px;
}

#shop-sidebar .widget:not(#block_widget-2) {
  box-shadow: 0 0 5px #ccc;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #fff;
}

#shop-sidebar .widget:not(#block_widget-2) ul {
  padding-left: 15px;
  padding-right: 15px;
}

#shop-sidebar .widget:not(#block_widget-2) ul i {
  padding-right: 5px;
}

#shop-sidebar .widget:not(#block_widget-2) .page_item i {
  padding-right: 10px;
}

#woocommerce_products-3 .product-title {
  font-size: 14px;
}

#woocommerce_products-3 .woocommerce-Price-amount {
  font-size: 14px;
}

#woocommerce_products-3 .woocommerce-Price-amount bdi {
  color: #ff0000;
}

#woocommerce_products-3 li a {
  margin-bottom: 0;
}

.shop-page-title.category-page-title.page-title {
  display: none;
}

.bb-product-content .info-title {
	border-bottom: 1px solid #BDBDBD;
	padding-bottom: 4px;
}

.bb-product-content .readmore {
	border: solid 1px #0072bb;
	color: #0072bb;
	background-color: #fff !important;
	line-height: 1.5;
	padding-top: 7px;
	padding-bottom: 7px;
	width: 100%;
}

.bb-product-content .cart > span {
	line-height: 35px;
	margin-right: 6px;
}

.bb-product-content .cart .quantity {
	margin-bottom: 12px;
}

.bb-product-content .secondary {
    margin-right: 0;
    font-size: 1.25rem;
    min-height: 0;
    height: 40px;
    text-transform: unset;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-inline: 0;
    justify-content: center;
}

.bb-product-content .secondary span {
	line-height: 23px;
}

.bb-product-content .benefit .col-inner {
	border: 1px solid #D0D0D0;
}

.bb-product-content .benefit .icon-box {
	padding-inline: 12px;
}

.bb-product-content .benefit h4 {
	margin-bottom: 24px;
}

.bb-product-content .benefit .icon-box-text p {
	font-size: 12px;
}

.bb-product-content .benefit .icon-box-text strong {
	font-size: 14px;
}

.product-widget-title {
  line-height: 40px;
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  background-color:var(--primary-color);
  padding: 0px 15px;
}

.product-short-description {
  border: 2px dashed var(--primary-color);
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.product-short-description p {
  margin-bottom: 0;
}

.bb-product-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.bb-product-title h1 {
	margin-bottom: 0;
}

.bb-product-content .price {
	display: flex;
    align-items: flex-end;
}

.bb-product-content .price ins {
	order: 1
}

.bb-product-content .price del {
	order: 2;
}

.bb-product-content .price del bdi {
	font-size: 14px;
	color: #5B5B5B;
}

.bb-product-content .price ins bdi,.bb-product-content span.amount {
  font-size: 24px;
  font-weight: 700;
  margin-right: 12px;
}

.product-type-variable .woocommerce-Price-amount bdi {
	font-size: 16px;
    font-weight: 300;
}

.product-type-variable .product-page-price {
	color: #d9282f;
}

.product-type-variable .product-page-price .woocommerce-Price-amount:first-child {
	margin-right: 5px;
}

.product-type-variable .product-page-price .woocommerce-Price-amount:last-child {
	margin-left: 5px;
}

.woocommerce-tabs .product-tabs {
  list-style: none;
  display: flex;
  margin-bottom: 0;
}

.woocommerce-tabs .product-tabs li {
  border: 1px solid var(--primary-color);
  border-bottom: none;
  margin-right: 10px;
  text-transform: uppercase;
  font-weight: 700;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-left: 0;
  margin-bottom: 0;
  width: fit-content;
}

.woocommerce-tabs .product-tabs li a {
  display: inline-block;
  padding: 5px 12px;
  font-size: 16px;
  color: #141414;
}

.woocommerce-tabs .product-tabs li a:before {
  content: unset;
}

.woocommerce-tabs .product-tabs li.active,
.woocommerce-tabs .product-tabs li:hover {
  background-color: var(--primary-color);
}

.woocommerce-tabs .product-tabs li.active a,
.woocommerce-tabs .product-tabs li:hover a {
  color: #fff;
}

.woocommerce-tabs .tab-panels {
  border: 1px solid var(--primary-color);
  padding: 15px;
}

.related-products-wrapper .product-section-title {
  display: none;
}

.related-products-wrapper.product-section {
  border: none;
}

.goi-mua-hang {
	align-items: center;
}

.goi-mua-hang.icon-box h3 {
	line-height: 1.2;
	font-size: 14px;
	font-weight: 500;
}

.goi-mua-hang.icon-box h3 a {
	font-size: 24px;
	font-weight: 500;
}

.goi-mua-hang .icon-box-img {
	background-color: #eee;
	border-radius: 50%;
	width: 48px !important;
	height: 48px;
	display: flex;
	align-items: center;
}

.goi-mua-hang .icon-box-img img {
	padding-top: 0;
	transform: scale(1.3);
}

.block_widget .goi-mua-hang .icon-box-img {
	background-color: #eee;
}

.popup.form-bao-gia {
  display: none;
}

.popup.form-bao-gia.active {
  display: inline-block;
}

.form-bao-gia {
  background-color: var(--secondary-color);
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

.form-bao-gia h3 {
  color: #141414;
  text-transform: uppercase;
}

.form-bao-gia .wpcf7-submit,
.form-bao-gia .wpcf7-form {
  margin: 0;
}

.form-bao-gia .wpcf7-spinner {
  display: none;
}

.form-bao-gia .wpcf7-form-control {
  border-radius: 8px;
}

.form-bao-gia.active {
  background-color: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 0 10px #434343;
  padding-inline: 15px;
  z-index: 9999;
}

.form-bao-gia .close {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #141414;
  text-decoration: underline;
  font-size: 12px;
}

.form-bao-gia.active .close {
  display: inline-block;
}

.form-bao-gia .wpcf7-submit {
  background-color: #fff;
}

nav.lbk-breadcrumb {
  line-height: 50px;
}

.breadcrumbs {
  background: #eee;
  color: #141414;
}

.breadcrumbs a:hover {
  color: var(--shop-sidebar-color);
}

.rank-math-breadcrumb p {
  margin-bottom: 0;
}

.bb-slide {
  position: relative;
  height: 480px;
  width: 1170px !important;
  max-width: 1170px;
  overflow: hidden;
  user-select: none;
}

.bb-slide .col:not(.action) {
  position: absolute;
  width: 33.33333333333333%;
  transition: .3s;
}

.bb-slide .col:nth-child(1) {
  left: 0;
}

.bb-slide .col:nth-child(2) {
  left: 33.333333333333333%;
}

.bb-slide .col:nth-child(3) {
  left: 66.666666666666666%;
}

.bb-slide .col:nth-child(4) {
  left: 100%;
}

.bb-slide .action {
  position: absolute;
  left: 33.3333333333%;
  bottom: 0;
  padding-bottom: 0;
}

.bb-slide .col:not(.active):not(.action) p {
  display: none;
}

.bb-slide .dots {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 5px;
}

.bb-slide .dots:not(:last-child) {
  margin-right: 10px;
}

.bb-slide .dots.active,
.bb-slide .dots:hover {
  background-color: var(--primary-color);
  box-shadow: 0px 0px 0px 3px #fff, 0px 0px 0px 4px var(--primary-color);
}

.bb-slide .dots:not(.active):hover {
  cursor: pointer;
}

.bb-slide .action-btn a {
  background-color: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
}

.bb-slide .action-btn .dashicons {
  font-size: 16px;
  line-height: 16px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.bb-slide .action-btn a.disable {
  background-color: #eee;
  cursor: no-drop;
}

.bb-slide .action-btn a.disable .dashicons {
  color: #ccc;
}

.bb-slide .action-btn a:first-child {
  margin-right: 5px;
}

.bb-slide .action .col-inner {
  display: flex;
  justify-content: space-between;
  padding-left: 5px;
}

.bb-slide .action .action-btn {
  display: flex;
}

.section-story {
  padding-top: 60px !important;
  padding-bottom: 30px !important;
}

.section-story .bg {
  background: rgb(118,249,162);
  background: linear-gradient(90deg, #f9f0e7 70%, rgba(255,255,255,1) 60%);
}

.section-story .box-text {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px;
  font-size: 16px;
}

.section-story .box-text h4 {
  color: #fff;
  font-size: 18px;
}

.page-header-wrapper .title-content {
  display: none;
}

.single-product-socials .share-icons-title {
  color: #111;
  font-size: 14px;
}

.posted_in {
  font-weight: bold;
  font-size: 14px;
}

.posted_in a {
  font-weight: normal;
}

ul.policy-search {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  color: #141414;
  font-size: 12px;
  margin-top: 10px;
}

ul.policy-search li {
  display: flex;
  align-items: center;
  padding-right: 30px;
}

ul.policy-search li img {
  height: 20px;
  padding-right: 5px;
}

.header .header-search-form {
  width: 90%;
}

.header .searchform-wrapper {
  border-radius: 5px;
  overflow: hidden;
}

.header .searchform-wrapper .search-field {
  height: 40px;
}

.header .searchform .flex-row .flex-col:nth-child(2) {
  position: absolute;
  right: 3px;
}

.header .searchform .flex-row .flex-col:nth-child(2) .ux-search-submit {
  width: 70px;
  border-radius: 5px !important;
  height: 34px;
}

.header .custom.html_topbar_left {
  margin-top: 10px;
  margin-left: 0;
}

.header-block-block-1 h3 {
  color: #141414;
}

.header-block-block-1 h3 a {
  color: #141414;
  display: inline-block;
  width: 100%;
}

.header-main .flex-right {
  width: 20%;
}

.header-bottom .nav>li {
  margin-right: 10px;
}

.blog-wrapper .large-9 .post-item .col-inner {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
}

#related-posts .post-title {
  padding-inline: 10px;
}

#related-posts .post-item .col-inner {
  height: 100%;  
}

.custom-product-page .quantity.buttons_added.form-normal:before {
  content: 'Số lượng :';
  padding-right: 10px;
  font-weight: 700;
  transform: translateY(20%);
}

.custom-product-page .lbk-2 button {
	width: 100%;
  margin-bottom: 0px;
  font-size: 0.9em;
}

.bb-fixed-contact {
  position: fixed;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-top-left-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 8px 5px;
}

.bb-fixed-contact a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 30px;
  background: var(--primary-color);
  border: 2px solid #fff;
  position: relative;
  margin-inline: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s all ease;
}

.bb-fixed-contact a img {
  max-width: 25px;
}

.bb-fixed-contact:before {
  content: "";
  position: absolute;
  height: 15px;
  width: 20px;
  bottom: -1px;
  left: -20px;
  border-radius: 0 0 30px 0;
  box-shadow: 10px 0 0 0 var(--primary-color);
  pointer-events: none;
}

.bb-fixed-contact .phone-box img {
  animation: ring 1.5s ease infinite;
}

.bb-fixed-contact a:hover {
  transform: translateY(-5px);
}

.form-lienhe .wpcf7-form-control {
  border-radius: 8px;
}

.header-bottom .nav > li:not(:last-of-type) > a {
  border-right: 1px solid #ffffff3b;
  padding: 5px 15px 5px 0;
}

.section-blog .tab a {
  border: 2px solid #eee;
  border-radius: 4px;
  background-color: #fff;
  transform: skew(15deg);
  padding-inline: 15px;
  font-size: 16px;
}

.section-blog .tab.active a,
.section-blog .tab a:hover {
  border: 2px solid var(--primary-color);
}

.section-blog .tab a span {
  transform: skew(-15deg);
}

.section-description {
  font-size: 14px;
}

.bb-copy-alert {
  display: none;
  position: absolute;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  background-color: #141414bf;
  color: #fff;
  padding: 5px 15px;
}

h2.section-title.section-title-center:before {
  content: "";
  display: table;
  clear: both;
  background: url('/wp-content/uploads/2025/10/title-divide.png');
  width: 100%;
  height: 28px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  padding-top: 30px;
  position: absolute;
  bottom: -30px;
}

.badge-container {
  display: none;
}

.discount-badge img {
  position: absolute;
  width: 48px;
  z-index: 1;
}

.section-customer-reviews .icon-box {
  background-color: var(--primary-color);
  padding: 10px 15px 20px 15px;
  position: relative;
  margin-bottom: 5px;
}

.section-customer-reviews .icon-box .icon {
  border: 2px solid #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.section-customer-reviews .icon-box .icon img {
  padding-top: 0;
}

.section-customer-reviews .icon-box .icon-box-text {
  color: #fff;
}

.section-customer-reviews .icon-box .icon-box-text h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
}

.section-customer-reviews .icon-box .icon-box-text p {
  margin-bottom: 0;
}

.section-customer-reviews .icon-box .icon-box-text .star {
  display: flex;
}

.section-customer-reviews .icon-box .icon-box-text .dashicons-star-filled {
  font-size: 12px;
  height: 12px;
  width: 12px;
  color: yellow;
}

.section-customer-reviews .icon-box:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 0px;
  border-color: transparent transparent #f5f2eb transparent;
  position: absolute;
  bottom: 0;
  left: 50px;
}

.section-customer-reviews .review-content {
  background-color: #eee;
  padding: 15px;
  font-size: 14px;
}

.section-customer-reviews .review-content p {
  margin-bottom: 0;
}

@media only screen and (min-width: 1024px) {
  .post-sidebar {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .large-9:has(+ .post-sidebar) {
    padding-right: 30px;
    max-width: calc(75% - 30px);
  }
}

@media only screen and (max-width: 1023px) {
  .single-product-socials {
    width: 100%;
  }

  .section-product-categories .col-inner,
  .section-product-categories .col-inner .icon-box {
    height: 100%;
  }

  .section-product-categories .icon-box-img {
    margin-bottom: 15px;
  }

  .section-product-categories .icon-box {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 600px) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
  .bb-slide {
    height: 530px;
    width: calc(100% + 30px) !important;
  }

  .bb-slide .col:not(.action) {
    width: 100%;
  }

  .bb-slide .action {
    left: 0;
    bottom: 0;
  }

  .bb-slide .col:nth-child(1) {
    left: 0;
  }

  .bb-slide .col:nth-child(2) {
    left: 100%;
  }

  .bb-slide .col:nth-child(3) {
    left: 200%;
  }

  .bb-slide .col:nth-child(4) {
    left: 300%;
  }

  .mobile-sidebar .nav>li>a {
    color: #141414;
  }

  .form-bao-gia.active {
    width: calc(100% - 30px);
  }

  .mobile-nav i {
    color: #434343;
  }
  #main-menu a {
    color: #fff;
  }

  .off-canvas-left .mfp-content, .off-canvas-right .mfp-content {
    background-color: var(--primary-color);
  }

  .section-product:before {
    top: 10px;
  }

  .section-product-categories h3 {
    font-size: 1rem;
  }

  .lbk-fixed-contact {
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
    height: 60px;
    box-shadow: 0 4px 10px 0 #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
  }

  .lbk-fixed-contact .item {
    flex-basis: 25%;
    max-width: 25%;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
  }

  .lbk-fixed-contact .item img {
    max-width: 36px;
  }

  .lbk-fixed-contact .item.phone-box {
    margin-bottom: 15px;
  }

  .lbk-fixed-contact .item.phone-box img{
    background-color: #a4ed10;
    border-radius: 50%;
    border: 2px solid #fff;
    max-width: 50px;
    padding: 8px;
  }

  .post-item .box-text {
    padding-inline: 10px;
  }
}

@keyframes ring {
  0% {
    transform: rotate(0deg) scale(1) skew(1deg);
  }
  10% {
      transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
      transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
      transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
      transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
      transform: rotate(0deg) scale(1) skew(1deg);
  }
  100% {
      transform: rotate(0deg) scale(1) skew(1deg);
  }
}

#dvls_district {
	display : none;
}