body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*----------------------------------------------*/
/* General Style */
/*----------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 500;
  text-transform: none;
}
/* Override the bootstrap defaults */
h1 {
  font-size: 33px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 21px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10.2px;
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.fa {
  font-size: 14px;
}
legend {
  font-size: 18px;
  padding: 7px 0px;
  border-color: var(--border-color);
}
label {
  font-size: 14px;
  font-weight: normal;
}
select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="datetime"].form-control,
input[type="datetime-local"].form-control,
input[type="date"].form-control,
input[type="month"].form-control,
input[type="time"].form-control,
input[type="week"].form-control,
input[type="number"].form-control,
input[type="email"].form-control,
input[type="url"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="color"].form-control {
  font-size: 14px;
}
.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 14px;
}
.input-group .input-group-addon {
  font-size: 14px;
  height: 30px;
}
.container,
.row {
  --bs-gutter-x: 30px;
}
@media(max-width: 991px) {
  .row {
    --bs-gutter-x: 10px;
  }
}
body .daterangepicker {
  z-index: 10001;
}
/* Fix some bootstrap issues */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
  display: inline;
}
a:focus,
a:hover,
div:focus,
img:focus {
  text-decoration: none;
  outline: none;
  color: var(--primary-color);
}
div.required .control-label:before,
div.required .col-form-label:before {
  content: "* ";
  color: #f00;
  font-weight: bold;
}
.btn.focus:active,
.btn:active:focus,
.btn:focus,
.addcart:focus {
  outline: none;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
div:focus,
img:focus,
.form-control:focus,
i:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
/*----------------------------------------------*/
/* scrollToTop */
/*----------------------------------------------*/
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 70px;
  z-index: 5;
  background: var(--secondary-color);
  color: var(--primary-color);
  height: 40px;
  width: 40px;
  border-radius: 0;
  text-align: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
}
.scrollToTop i {
  font-size: 22px;
  line-height: 40px;
}
.scrollToTop:hover,
.scrollToTop:focus {
  background: var(--primary-hover-color);
  color: var(--secondary-color);
}
@media (max-width: 991px) {
  .scrollToTop {
    height: 40px;
    width: 40px;
    right: 15px;
    bottom: 15px;
  }
  .scrollToTop i {
    line-height: 40px;
  }
}

/*----------------------------------------------*/
/* loader */
/*----------------------------------------------*/
.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../image/ajax_loader.gif") 50% 50% no-repeat
    rgb(255, 255, 255);
  opacity: 1;
}

/*----------------------------------------------*/
/* QuickView Loader*/
/*----------------------------------------------*/
.quickview-wrapper {
  background-color: var(--secondary-color);
  display: none;
  height: 80vh;
  left: 0;
  margin: 0 auto;
  overflow: auto;
  padding: 20px 5px;
  position: fixed;
  right: 0;
  top: 7%;
  width: 70%;
  z-index: 9999;
}
.quickview-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: fixed;
  z-index: 99;
}
.quickview-btn {
  position: absolute;
  z-index: 200;
  top: 0;
  right: 0;
  font-size: 12px;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--primary-color);
  background: var(--background-color);
  border-radius: 0;
}
.quickview-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.quickview-loader {
  display: none;
  position: fixed;
  top: 0;
  width: 50px;
  height: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 9999;
  margin: auto;
  background-color: transparent;
  line-height: 50px;
}
.quickview-loader-inner {
  font-size: 16px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .quickview-wrapper {
    width: 90%;
  }
}

/*----------------------------------------------*/
/* alert */
/*----------------------------------------------*/
.alert.alert-success {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  margin: 0 0 20px 0;
}
.alert {
  padding: 9px 30px 9px 15px;
  border-radius: 0;
  text-align: center;
  position: relative;
  line-height: 20px;
  z-index: 1;
}
.alert-dismissable .close,
.alert-dismissible .close {
  opacity: 1;
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 38px;
  text-shadow: none;
}
.newsletterblock .alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
}
#form-review .alert.alert-success,
#post_comment .alert {
  position: relative;
}

/*----------------------------------------------*/
/* Start Newsletter Popup */
/*----------------------------------------------*/
.newsletter-wrap {
  display: block;
  text-align: center;
  padding: 30px;
  background: var(--secondary-color);
}
.newsletter-wrap .newsletter-image {
  background: url(../image/newsletter-popup.jpg) no-repeat center center;
  background-size: cover;
  height: 340px;
}

.newsletter-popup .subscribe-btn {
  padding: 10px 30px;
  border-radius: 0;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}
#newsletter-popup .modal-content {
  background: transparent;
  box-shadow: none;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  border: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--secondary-color);
  background-clip: padding-box;
  border-radius: 0;
}

.newsletter-popup .modal-dialog {
  margin: 20px auto;
  max-width: 700px;
  text-align: center;
}
.newsletter-wrap h3 {
  font-size: 24px;
  line-height: 24px;
  margin: 0 0 15px;
  font-weight: 600;
  text-transform: uppercase;
}
.newsletter-btn-close.close {
  position: absolute;
  top: 0;
  width: 30px;
  height: 30px;
  opacity: 1;
  text-shadow: none;
  font-size: 12px;
  right: 0;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}

.newsletter-btn-close.close:hover {
  background: var(--primary-color);
}

.newsletter-btn-close.close i {
  display: block;
}

.newsletter-popup .modal-body {
  padding: 0;
  z-index: 1;
}

.newsletter-popup .newsletter-content {
  padding: 30px 30px 0;
}

.newsletter-content-innner h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  color: var(--primary-color);
}

.newsletter-content-innner p {
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 20px;
  color: var(--secondary-light-color);
}

.newsletter-content-innner input[type="text"] {
  width: 70%;
  margin: 0 auto;
  height: 42px;
  border: 1px solid #ddd;
  padding: 0 10px;
}

.newsletter-content-bottom {
  margin-top: 20px;
}

.newsletter-content-innner .alert {
  margin: 15px 0 10px;
  display: table;
  position: relative;
  width: 100%;
}

.newsletter-content-innner .newsletter_usr_popup_email {
  height: 40px;
  border: none;
  padding: 10px;
  background: var(--background-color);
  border: none;
  border-radius: 0;
  width: 100%;
  text-align: center;
}

.newsletter-content-innner input::placeholder {
  color: var(--secondary-light-color);
}

#frmnewsletterpopup button {
  background: var(--primary-hover-color);
  color: var(--secondary-color);
  margin-top: 30px;
  padding: 10px 25px;
}

#frmnewsletterpopup button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.newsletter-content-bottom label {
  margin: 0;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .newsletter-popup .modal-dialog {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .newsletter-popup .subscribe-btn {
    padding: 7px 20px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .popup-image {
    display: none;
  }
  .newsletter-wrap h3 {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 10px;
  }
  .newsletter-wrap {
    padding: 20px 15px;
  }
  .newsletter-popup .newsletter-content {
    padding: 20px 20px 0;
  }
  .newsletter-content-innner p {
    font-size: 16px;
  }
  .newsletter-btn-close.close {
    height: 24px;
    width: 24px;
    font-size: 10px;
  }
}

@media (max-width: 680px) {
  .newsletter-popup .modal-dialog {
    width: 90%;
  }
}

@media (max-width: 575px) {
  .newsletter-popup .newsletter-content {
    padding: 15px 10px 0;
  }
  .newsletter-content-innner p {
    font-size: 14px;
    margin: 0 0 15px;
  }
  .newsletter-wrap .newsletter-image {
    height: 270px;
  }
  .newsletter-wrap h3 {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 7px;
  }
}

/*----------------------------------------------*/
/* brands */
/*----------------------------------------------*/
.mt-banner .slick-item {
  border-left: 1px solid var(--border-color);
}
.mt-banner {
  border-top: 1px solid var(--border-color);
}
#index #main .page-home .brand-section {
  padding: 0;
}
.brand-section {
  border-top: 1px solid #e5e5e5;
}

.brand-section .owl-stage-outer .owl-item {
  border-left: 1px solid #e5e5e5;
}

.brand-section .owl-stage .owl-item.active:nth-child(1) {
  border-left: none;
}
.brand-item {
  padding-top: 30px;
  padding-bottom: 30px;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  -moz-transition-duration: 500ms;
  -ms-transition-duration: 500ms;
  -o-transition-duration: 500ms;
}

.brand-items.owl-carousel .owl-item img {
  width: auto;
  margin: 0 auto;
}
.mt-banner .text-center {
  padding-top: 30px;
  padding-bottom: 30px;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  -moz-transition-duration: 500ms;
  -ms-transition-duration: 500ms;
  -o-transition-duration: 500ms;
}
@media (max-width: 1440px) {
  .brand-item {
    padding: 50px 0;
  }
}

@media (max-width: 1199px) {
  .brand-item {
    padding: 40px 0;
  }
}

@media (max-width: 991px) {
  .brand-item {
    padding: 30px 0;
  }
  .mt-banner .text-center {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .brand-item {
    padding: 20px 0;
  }
}

/*----------------------------------------------*/
/* Start header */
/*----------------------------------------------*/
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-animation: fadeInDown 0.5s ease-out forwards;
  -moz-animation: fadeInDown 0.5s ease-out forwards;
  -o-animation: fadeInDown 0.5s ease-out forwards;
  animation: fadeInDown 0.5s ease-out forwards;
  z-index: 9;
  border: none;
  background: var(--secondary-color);
  -moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-fixed #logo img {
  /*    max-width: 140px;*/
}
.header-fixed .header-top {
  /*    padding: 15px 0;*/
}

#alert {
  width: 100%;
  pointer-events: auto;
}
body .alert-dismissible .btn-close {
  padding: 0.75rem 1rem;
}

/*header*/
header {
  position: relative;
}
.header-center {
  text-align: center;
}
.common-home .header-center {
  text-align: left;
}
.header-top-inner [class*='col-'] {
  float: left;
  padding: 0 15px;
}
/*logo*/
#logo {
  vertical-align: top;
  display: inline-block;
}
#logo img {
  image-rendering: -webkit-optimize-contrast;
}

/*header search*/
.btn_search {
  position: relative;
  cursor: pointer;
}
.search-btn i {
  font-size: 20px;
  display: block;
}
.btn_search {
  position: relative;
}
.btn_search .form-control {
  padding: 2px 10px;
  border: none;
  height: 40px;
}
.header-search .icon-close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 12px;
}
.header-search {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 30px;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-search.active {
  opacity: 1;
  visibility: visible;
}
#mahardhiSearch .input-lg,
#search .input-lg {
  height: 40px;
  border: none;
}
#mahardhiSearch .input-lg {
  padding: 5px 10px;
}
.category-search {
  position: relative;
}
.category-search:after {
  border-left: 1px solid var(--border-color);
  content: "";
  height: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 9;
  margin: auto;
}
/*-- mahardhi edit --*/
#mahardhiSearch,
#search {
  display: flex;
  position: relative;
  margin: 0 auto;
  width: 65%;
  border-bottom: 1px solid var(--border-color);
  background: var(--secondary-color);
}
#mahardhiSearch > *,
#search > * {
  background: transparent;
  color: var(--secondary-light-color);
  display: block;
}
#mahardhiSearch .input-lg::placeholder {
  color: var(--secondary-light-color);
}
#mahardhiSearch .btn-search,
#search .input-group-btn {
  width: auto;
  background: transparent;
}
#mahardhiSearch .btn-search button,
#search .input-group-btn button {
  padding: 10px 3px;
  font-size: 20px;
  border: none;
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
}
#mahardhiSearch .btn-search button i,
#search .input-group-btn button i {
  display: block;
}
.ui-autocomplete.ui-menu .ui-menu-item {
  list-style-image: none;
}
.ui-autocomplete .mahardhi-search {
  position: relative;
  display: table;
  width: 100%;
  padding: 5px 0px;
}
.ui-autocomplete.ui-widget-content {
  background: var(--secondary-color) !important;
  border: 1px solid var(--border-color) !important;
}
.ui-autocomplete .mahardhi-search > div {
  font-size: 14px;
  display: table-cell;
  vertical-align: top;
}
.ui-autocomplete .mahardhi-search .images {
  width: 80px;
  padding-right: 10px;
}
.ui-autocomplete .mahardhi-search .product-detail .price-old {
  color: var(--secondary-light-color);
  text-decoration: line-through;
  margin-left: 10px;
}
#mahardhiSearch select.form-control.input-lg {
  border: none;
  padding: 6px 0;
  line-height: 1.42857143;
  width: auto;
  background: transparent;
  color: var(--primary-color);
}
/*header right*/
.header-right-inner {
  float: right;
  display: flex;
  align-items: center;
}
#header_ac > a span {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 0 9px;
}
#header_ac > a i,
.btn_search .search-btn i {
  font-size: 20px;
  display: block;
}
.header-right-inner > div + div {
  margin: 0 0 0 30px;
}
#header_ac > a,
.btn_search .search-btn {
  display: flex;
  /*    padding: 15px;*/
  color: var(--primary-color);
}
#header_ac .dropdown-menu {
  padding: 7px 15px;
  width: 200px;
}
#form-currency .dropdown-toggle,
#form-language .dropdown-toggle {
  border-bottom: 1px solid var(--border-color);
  width: 100%;
  padding: 5px 0;
  margin: 2px 0;
  border-radius: 0;
  font-weight: 500;
  color: var(--primary-color);
}
#form-currency .dropdown-toggle span,
#form-language .dropdown-toggle span {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
}
.language-dropdown,
.currency-dropdown {
  padding: 0;
  display: block !important;
}
.language-dropdown li,
.currency-dropdown li {
  display: block;
}
.language-box ul {
  padding: 0;
}
.language-box ul li {
  list-style: none;
}

/*account*/
#header_ac .dropdown-menu > li > a {
  padding: 5px 0;
  font-size: 14px;
  text-align: left;
  border: none;
  color: var(--primary-color);
}
#header_ac button {
  text-align: left;
  padding: 5px 10px;
  text-transform: none;
  border: none;
  color: var(--secondary-light-color);
}
#header_ac button:hover,
#header_ac .dropdown-menu > li > a:hover {
  color: var(--primary-color);
}

/*cart*/
.header_cart {
  position: relative;
}
#cart {
  vertical-align: top;
}
#cart > .btn {
  background: transparent;
  padding: 0;
  border: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  box-shadow: none;
}
#cart > .btn:before {
  content: "\e956";
  font-family: "Mahardhi-Fonts";
  font-size: 20px;
  margin-right: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#cart-total {
  position: absolute;
  right: -1px;
  top: 12px;
  font-size: 12px;
  padding: 0 4.4px;
  line-height: 16px;
  border-radius: 50%;
  color: var(--secondary-color);
  background: var(--primary-color);
}
#cart .dropdown-menu {
  overflow: hidden;
  margin: 0;
  padding: 0px;
  width: 300px;
}
#cart .dropdown-menu li {
  float: none;
  padding: 0px 20px;
}
#cart .dropdown-menu li p {
  margin: 0;
  font-size: 14px;
  color: var(--primary-color);
}
#cart .dropdown-menu li p .btn {
  padding: 8px 15px;
}
.product-cart-empty {
  padding: 20px 0;
}
#cart .dropdown-menu .cart-content-product {
  max-height: 281px;
  overflow-y: auto;
  overflow-x: hidden;
}
#cart .dropdown-menu table {
  margin-bottom: 10px;
  border: none;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: transparent;
}
#cart .dropdown-menu > li.cart-content-product .table > tbody > tr:last-child {
  border-bottom: none;
  padding-bottom: 10px;
  margin-bottom: 0px;
}
#cart .dropdown-menu > li.cart-content-product .table > tbody > tr {
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  display: block;
}
#cart .dropdown-menu .table > tbody > tr > td,
#account-address .table > tbody > tr > td {
  vertical-align: top;
}
#cart .dropdown-menu table td.product-cart-thumb {
  padding: 0;
}
#cart .dropdown-menu table td {
  background: none;
  border: none;
  padding: 5px 4px;
  color: var(--primary-color);
  --bs-table-bg-type: transparent;
}
#cart .dropdown-menu li td,
td.cart-total-price {
  font-size: 14px;
  font-weight: 500;
}
#cart .img-thumbnail {
  padding: 0;
  border-radius: 0;
}
#cart .dropdown-menu table td.product-cart-details {
  padding-left: 10px;
  padding-right: 10px;
}
#cart .dropdown-menu .product-item-name,
#cart .product-cart-info .product-cart-qty {
  font-weight: normal;
  color: var(--primary-color);
  display: inline-block;
}
.product-cart-info {
  margin-top: 8px;
}
#cart .product-cart-info .product-cart-price,
.product-cart-total {
  color: var(--primary-hover-color);
}
#cart .dropdown-menu li tr:last-child td:last-child,
tr:last-child td.cart-total-price:last-child {
  font-size: 16px;
  color: var(--primary-hover-color);
}
#cart .dropdown-menu table td.product-cart-close,
#cart .dropdown-menu table td.voucher-close {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 0;
}
#cart .dropdown-menu .btn-danger {
  background: transparent;
  color: var(--primary-color);
  border-radius: 0;
  line-height: 20px;
  font-size: 12px;
  padding: 0;
  border: none;
  box-shadow: none;
  -webkit-box-shadow: none;
}
#cart .dropdown-menu li + li {
  border-top: 1px solid var(--border-color);
  padding: 10px 20px 0px 20px;
}
#cart .dropdown-menu li td strong,
#cart .dropdown-menu li small,
td.cart-total-title {
  font-size: 14px;
  font-weight: 500;
}
.product-cart-button {
  padding: 0px 0px 20px 0px;
}
.header-top-inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-left,
.header-right {
  width: auto;
  flex: auto;
}
.header-right-inner > div {
  position: relative;
}
.btn_search .search-btn,
#cart {
  padding: 45px 0;
}
/* Header Bottom */

@media only screen and (max-width: 1440px) {
  #logo img {
    max-width: 150px;
  }
  .header-right-inner > div + div {
    margin: 0 0 0 20px;
  }
  .btn_search .search-btn, #cart {
    padding: 35px 0;
  }
}
@media only screen and (max-width: 1199px) {
  #logo img {
    width: 130px;
  }
  #header_ac > a span {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .btn_search {
    margin: 0 0 0 15px;
  }
  #header_ac > a i,
  .btn_search .search-btn i,
  #cart > .btn:before {
    font-size: 18px;
  }
  .cart-item {
    display: block;
  }
  .cart-price {
    display: none;
  }
  #cart > .btn {
    padding: 0;
  }
  .search-downs.first {
    display: none;
  }
  .header-search {
    background: rgba(255, 255, 255, 1);
  }
  .header-right .btn_search .search-btn {
    display: block;
    padding: 0;
  }
  #header_ac {
    padding: 0;
  }
  .btn_search .dropdown-menu.secound.show {
    padding: 0 0px 0 10px;
  }
  #mahardhiSearch,
  #search {
    display: flex;
    position: relative;
    margin: 0 auto;
    width: 310px;
    background: var(--secondary-color);
  }
  #cart-total {
    top: -5px;
    right: 0;
    font-size: 10px;
    line-height: 15px;
  }
  .header-right-inner > div + div {
    margin: 0 0 0 15px;
  }
  .header-top-inner [class*='col-'] {
    padding: 0 5px;
  }
  .header-top-inner {
    padding: 20px 0;
  }
  .btn_search .search-btn, #cart {
    padding: 0;
  }
}
@media(max-width: 767px) {
  #header_ac > a i,
  .btn_search .search-btn i {
    font-size: 16px;
  }
  #cart > .btn:before {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  #cart-total {
    top: -3px;
    padding: 0 3.4px;
    line-height: 13px;
  }
}
@media (max-width: 540px) {
  #mahardhiSearch select.form-control.input-lg {
    max-width: 90px;
  }
  #mahardhiSearch .input-lg {
    padding: 6px 10px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  #logo img {
    width: 120px;
  }
  #cart > .btn:before,
  #header_ac > a i,
  .btn_search .search-btn i {
    font-size: 16px;
  }
  #mahardhiSearch select.form-control.input-lg,
  #mahardhiSearch .input-lg {
    font-size: 10px;
  }
  #mahardhiSearch select.form-control.input-lg {
    max-width: 65px;
  }
}
/* common home */
.common-home .header-top .container {
  max-width: -webkit-fill-available;
  max-width: -moz-available;
  margin: 0 35px;
}
.common-home .home-sidebar > div.slideshow,
.common-home .home-sidebar > div.carousel.brand {
  padding: 0;
}
.common-home footer .container {
  max-width: 100%;
}
.common-home .home-sidebar > .mt-banner:first-child {
  padding: 0;
}
@media (min-width: 992px) {
  .common-home .home-sidebar {
    box-shadow: inset 1px 0 20px rgb(0 0 0 / 5%);
    -moz-box-shadow: inset 1px 0 20px rgb(0 0 0 / 5%);
    -webkit-box-shadow: inset 1px 0 20px rgb(0 0 0 / 5%);
  }
  .common-home .home-sidebar > div {
    padding: 0 50px;
  }
  .common-home header {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
  }
  .common-home .header-top-inner {
    padding: 0;
    position: relative;
  }
  .common-home .header-left {
    width: auto;
    position: relative;
  }
  .common-home .header-center {
    position: absolute;
    width: auto;
    top: 100%;
  }
  div#common-home,
  .common-home footer {
    position: relative;
    overflow: hidden;
    padding-left: 330px;
  }
  .common-home .header-center .nav {
    display: block;
  }
  .common-home header {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
  }
  .header-center .nav > li {
    padding: 10px 18px;
  }
  .common-home header.header-fixed {
    position: fixed;
    box-shadow: none;
  }
  .header-fixed .btn_search .search-btn,
  .header-fixed #header_ac > a,
  .header-fixed #cart {
    padding: 30px 0;
  }
  .common-home #cart-total {
    top: -2px;
  }
  .common-home #menu #topCategoryList .nav {
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 220px;
    margin-top: 17px;
  }
  .common-home #menu .nav > li + li {
    margin: 0;
  }
  .common-home #menu .nav > li {
    padding: 10px 0;
  }
  .common-home #menu .nav > li > a {
    word-break: break-word;
    padding: 0;
  }
  .common-home footer {
    margin-top: 0;
    /*        padding-left: 330px;*/
  }
  .common-home .footer-top {
    padding: 50px 65px;
  }
  .common-home .footer-center {
    padding: 30px 80px;
  }
  .common-home .footer-bottom {
    padding: 23px 65px;
  }
}
@media (min-width: 992px) and (max-width: 1440px) {
  .common-home .home-sidebar > div {
    padding: 0 30px;
  }
  .common-home .home-sidebar > div.mt-banner {
    padding: 0;
  }
  .common-home .footer-top {
    padding: 50px 15px;
  }
  .common-home .footer-center {
    padding: 30px 15px;
  }
  .common-home .footer-bottom {
    padding: 23px 15px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  div#common-home,
  .common-home footer {
    padding-left: 220px;
  }
  .common-home #menu #topCategoryList .nav {
    max-width: 170px;
  }
}
@media (max-width: 1199px) {
  .common-home .header-top .container {
    margin: 0 15px;
  }
}
@media (max-width: 991px) {
  .common-home .home-sidebar > div {
    padding: 0 30px;
  }
  .common-home .header-top .container {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .common-home .header-top .container {
    margin: 0;
  }
  .common-home .home-sidebar > div {
    padding: 0 15px;
  }
}
/*----------------------------------------------*/
/* menu start */
/*----------------------------------------------*/
.header-menu {
  text-align: center;
}

#menu {
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  min-height: unset;
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  padding: 10px 0;
}

#menu .nav > li > a {
  padding: 15px 0;
  font-weight: 500;
  font-size: 14px;
  border-radius: 0;
  background: transparent;
  text-transform: uppercase;
}
.nav > li {
  position: relative;
}
#menu .dropdown-inner,
#navCategory .dropdown-inner {
  display: table;
}

#menu .dropdown-inner ul,
#navCategory .dropdown-inner > ul {
  display: table-cell;
}

#menu .menulist .dropdown-menu a {
  font-size: 14px;
  text-transform: none;
}

#menu .dropdown-inner ul.mega-dropdown-menu.childs_1 > li > a:hover,
#menu .nav.navbar-nav li:hover > span,
#menu .dropdown-inner li:hover > a,
#navCategory .dropdown-inner li a:hover,
.vertical-category ul > li:hover > a,
#menu #topCategoryList .dropdown-inner li:hover > a,
#menu .column-1 .dropdown-inner li.dropdown-submenu:hover > .fa {
  color: var(--primary-hover-color);
  background-color: transparent;
}

#menu .dropdown-inner .dropdown-submenu,
#navCategory .dropdown-inner .dropdown-submenu {
  position: relative;
}

#menu .column-1 .dropdown-inner li.dropdown-submenu > .fa {
  position: absolute;
  right: 10px;
  top: 0;
  padding: 8px 0;
}

#menu .see-all {
  display: block;
  margin-top: 0.5em;
  border-top: 1px solid #ddd;
  padding: 3px 20px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 3px 3px;
  font-size: 12px;
}

#menu .see-all:hover,
#menu .see-all:focus {
  text-decoration: none;
  color: var(--primary-hover-color);
  background-color: #229ac8;
  background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
  background-repeat: repeat-x;
}

@media (min-width: 992px) {
  #menu
    .dropdown-menu.navcol-menu.item-column
    .dropdown-submenu.sub-menu-item
    > a {
    font-weight: 600;
  }
  #menu .dropdown-inner a {
    display: block;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    min-width: 180px;
    text-align: left;
    color: var(--secondary-light-color);
  }
  #menu ul li.hiden_menu .dropdown-inner .dropdown-menu {
    display: none;
  }
  #menu .dropdown-menu,
  #menu .hiden_menu.menu_drop .dropdown-inner {
    display: block;
    top: 50px;
    left: 0px;
    min-width: 180px;
    z-index: 999;
    text-align: left;
    right: auto;
    padding: 10px 0;
  }
  #menu .dropdown-menu,
  #menu .hiden_menu.menu_drop .dropdown-inner,
  #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
    position: absolute;
    /*    top: 125px;*/
    padding: 10px 0;
    visibility: hidden;
    background: var(--secondary-color);
    border: none;
    margin-left: 0 !important;
    border-top: 2px solid var(--primary-hover-color);
    opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    transform-origin: 15% 15% 0;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    filter: alpha(opacity=0);
    transform-origin: center top 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
    -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);
  }
  #menu .dropdown:hover .dropdown-menu,
  #menu ul li.hiden_menu.menu_drop:hover .dropdown-inner,
  #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {
    display: block;
    top: 100%;
    visibility: visible;
    opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    visibility: visible;
    filter: alpha(opacity=100);
  }
  #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
    left: 100%;
    top: 100%;
  }
  #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {
    top: 0px;
  }
  #menu ul.nav .item-column {
    padding: 10px;
  }
  #menu
    .dropdown-menu.navcol-menu.item-column
    .dropdown-submenu.sub-menu-item
    > a {
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px 5px;
    padding: 5px 0 5px 0;
  }
  #menu ul.nav .item-column ul.list-unstyled li a {
    padding-left: 0;
    padding-right: 0;
    margin: 0 10px;
  }
  #menu .nav > li:hover > a {
    color: var(--primary-hover-color);
  }
}

@media (max-width: 1199px) {
  #menu .nav > li > a {
    padding: 15px 0;
  }
}

@media (max-width: 991px) {
  #menu {
    padding: 0;
    margin: 0;
  }
  #topCategoryList {
    background: var(--secondary-color);
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 350px;
    z-index: 999;
    margin: 0;
    -webkit-transform: translate(-400px, 0);
    -moz-transform: translate(-400px, 0);
    -ms-transform: translate(-400px, 0);
    -o-transform: translate(-400px, 0);
    transform: translate(-400px, 0);
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: auto;
  }
  #topCategoryList.box-menu {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .menu-close {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 15px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .menu-close i {
    line-height: 20px;
    font-size: 12px;
  }
  #menu li i {
    font-size: 12px;
  }
  #menu .btn-navbar.open-menu:after {
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    display: block;
    position: fixed;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
    transition-delay: 0.1s;
  }
  #menu .btn-navbar span:before,
  #menu .btn-navbar span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
  }
  #menu .btn-navbar span:after {
    top: 6px;
  }
  #menu .btn-navbar span:before {
    top: -6px;
  }
  #menu .btn-navbar span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
  }
  #menu .nav > li > a,
  #menu #topCategoryList .dropdown-inner a {
    color: var(--primary-color);
    font-weight: 400;
    padding: 6px 30px 6px 15px;
    display: block;
    font-size: 14px;
    text-transform: none;
  }
  #menu .nav > li > a,
  #menu #topCategoryList .menu_drop > .dropdown-inner > li > a {
    font-size: 14px;
  }
  #menu #topCategoryList ul {
    float: none;
    display: block;
    text-align: left;
    margin: 0;
    background: transparent;
  }
  #menu #topCategoryList ul.category-list {
    margin-bottom: 10px;
  }
  #menu .dropdown-inner,
  #navCategory .dropdown-inner {
    display: block;
  }
  #topCategoryList .dropdown.menulist .dropdown-menu .dropdown-inner {
    display: block;
    padding: 0 10px;
  }
  #topCategoryList .dropdown.menulist .dropdown-menu {
    position: relative;
    float: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: none;
    padding: 0;
  }
  #menu #topCategoryList .dropdown-inner .dropdown-submenu ul.sub-menu {
    display: none;
    position: unset;
    border: none;
    padding: 0 10px;
  }
  #topCategoryList li .toggle-menu {
    position: absolute;
    right: 0;
    top: 0;
    padding: 9px 10px;
    color: var(--primary-color);
  }
  #topCategoryList .dropdown-submenu > .fa {
    display: none;
  }
  #topCategoryList ul li {
    float: none;
  }
  #topCategoryList #more_cat {
    display: none;
  }
  #menu .btn-navbar {
    display: block;
    font-size: 20px;
    z-index: 2;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--primary-color);
    background: var(--secondary-color);
  }
  .category-list .menu-item.dropdown .dropdown-menu {
    position: relative;
    box-shadow: none;
    width: 100%;
    border: none;
    padding: 0 15px;
    float: none;
  }
  #menu #topCategoryList > ul {
    margin: 0 0 10px;
  }
}

@media (max-width: 575px) {
  #menu .btn-navbar span {
    width: 16px;
  }
  #menu .btn-navbar span:before {
    top: -5px;
  }
  #menu .btn-navbar span:after {
    top: 5px;
  }
}

@media (max-width: 480px) {
  #topCategoryList {
    max-width: 280px;
  }
}

/*----------------------------------------------*/
/* slider start */
/*----------------------------------------------*/
.common-home .swiper-viewport {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  background: transparent;
}
.slideshow img {
  width: 100%;
}
/*----------------------------------------------*/
/* slider start */
/*----------------------------------------------*/
.common-home .swiper-viewport {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  background: transparent;
}
#common-home .mt-banner {
  margin: 80px 0 0;
}
#common-home .mt-banner:first-child {
  margin: 0;
}
#common-home .mt-banner:first-child .slick-dots li {
  display: block;
}
#common-home .mt-banner:first-child .slick-slider {
  width: auto;
  display: block;
  position: relative;
  padding: 0;
}
.mt-banner:first-child .slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.mt-banner .slick-dots li {
  display: none;
}

.mt-banner .slick-theme .slick-arrow.slick-prev {
  left: 10px;
  right: auto;
}
.mt-banner .slick-theme .slick-arrow.slick-next {
  right: 10px;
  left: auto;
}
.mt-banner .slick-item:first-child {
  border-left: none;
}
.mt-banner:first-child {
  border-top: none;
}
.mt-banner:first-child .text-center {
  padding-top: 0;
  padding-bottom: 0;
}
.mt-banner:first-child .slick-theme .slick-arrow .fa,
.mt-banner:first-child .swiper-viewport .fa {
  font-size: 16px;
}
#common-home .mt-banner:first-child .slick-theme .slick-arrow {
  color: var(--primary-color);
  background: var(--secondary-color);
  top: auto;
  margin: 0;
  font-size: 20px;
  height: 50px;
  width: 50px;
  padding-right: 0px;
  border-radius: 0px;
  bottom: 30px;
}
.mt-banner:first-child .slick-theme .slick-arrow.slick-next {
  right: 30px;
  left: auto;
}
div:not(.container) .mt-banner:first-child .slick-theme .slick-arrow.slick-prev {
  left: auto;
  right: 90px;
}
@media (max-width: 1440px) {
  #common-home .mt-banner {
    margin: 50px 0 0;
  }
}
@media (max-width: 1199px) {
  #common-home .mt-banner {
    margin: 40px 0 0;
  }
}
@media (max-width: 991px) {
  #common-home .mt-banner {
    margin: 30px 0 0;
  }
  .mt-banner:first-child .slick-slide img {
    width: 100%;
  }
  .mt-banner:first-child .col-12 {
    padding: 0 10px;
  }
  .mt-banner:first-child .text-center {
    padding-top: 0;
    padding-bottom: 0;
  }
  #common-home .mt-banner:first-child .slick-theme .slick-arrow {
    height: 8px;
    width: 8px;
    bottom: 15px;
    margin: auto;
  }
  #common-home .mt-banner:first-child .slick-theme .slick-arrow i {
    font-size: 0;
  }
  div:not(.container) .mt-banner:first-child .slick-theme .slick-arrow.slick-prev {
    right: 12px;
    left: 0;
  }
  .mt-banner:first-child .slick-theme .slick-arrow.slick-next {
    left: 12px;
    right: 0;
  }
}
@media(max-width: 575px) {
  #common-home .mt-banner {
    margin: 10px 0 0;
  }
}
/*----------------------------------------------*/
/* feature category */
/*----------------------------------------------*/
.category-thumb {
  position: relative;
  overflow: hidden;
}
.category-thumb .image img {
  width: 100%;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
}
.category-thumb:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.category-thumb .caption {
  position: absolute;
  bottom: 30px;
  left: 75px;
  right: 75px;
  margin: auto;
  padding: 14px 5px 11px;
  text-align: center;
  background: var(--secondary-color);
}
.category-thumb .cat-title h4 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 5px;
  text-transform: none;
}
.category-thumb .cat-title h4 a {
  display: block;
  color: var(--primary-color);
}
.category-thumb .cat-title h4:hover a {
  color: var(--primary-hover-color);
}
.category-thumb .number-product {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: var(--secondary-light-color);
}
@media (max-width: 1800px) {
  .category-thumb .caption {
    left: 30px;
    right: 30px;
  }
}
@media (max-width: 1440px) {
  .category-thumb .caption {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 991px) {
  .category-featured {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .category-featured {
    margin-top: 20px;
  }
}
/*----------------------------------------------*/
/* banners */
/*----------------------------------------------*/
.html1-category,
.html2 .banners {
  position: relative;
  overflow: hidden;
}
.video-img img,
.html2 .inner1 img {
  width: 100%;
}
.inner1 > a {
  display: block;
}

/*html1*/
.html1-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.video-img {
  position: relative;
  overflow: hidden;
  width: 62%;
}
.video-desc {
  position: relative;
  width: 38%;
  z-index: 1;
}
.content-block {
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  height: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  width: fit-content;
  width: -moz-fit-content;
  width: -webkit-fit-content;
}
.video-btn {
  position: relative;
  display: inline-block;
}
.video-btn i {
  position: relative;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;
  line-height: 36px;
  color: var(--secondary-color);
  background: transparent;
  z-index: 4;
  border: 2px solid var(--secondary-color);
}
.video-btn i.fa-play:before {
  margin: 0 0 0 4px;
}
.video-desc .promo-text-box {
  padding: 0 0 0 50px;
}
.html1-inner:after {
  position: absolute;
  content: "";
  border: 1px solid var(--border-color);
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 38%;
  border-left: 0;
}
.video-desc .promo-sale {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  word-break: break-word;
  color: var(--secondary-light-color);
}
.video-desc .promo-title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 500;
  margin: 18px 0 37px;
  text-transform: uppercase;
  color: var(--primary-color);
  word-break: break-word;
}
.video-desc .button,
.html3 .button {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 0;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  background: transparent;
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}
.video-desc .button:hover,
.html3 .button:hover {
  background: transparent;
  color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}

/* html2 */
.html2 .banners .inner1 a::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 900ms ease 0s;
}
.html2 .banners:hover .inner1 a::before {
  background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
  bottom: 51%;
  top: 50%;
}
.html2 .inner2 {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary-color);
  padding: 20px;
}
.html2 .promo-title {
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  text-transform: none;
  color: var(--primary-color);
}
.html2 .button {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  padding: 10px 30px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-color);
}
.html2 .button:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}

/* html3 */
.html3 .banners {
  position: relative;
  width: 86.6%;
  margin: auto;
}
.html3-inner {
  position: relative;
  background: #f6ece7;
  padding: 60px 0 0;
  margin: 0 0 200px;
}
.banner3 h1 {
  font-size: 150px;
  line-height: 120px;
  font-weight: 600;
  margin: 0;
  text-align: right;
  text-transform: none;
  color: var(--secondary-color);
}
.html3 .inner1 > a {
  display: inline-block;
  margin: -25px 0 -150px 0;
}
.html3 .inner-box {
  position: relative;
  display: flex;
  align-items: center;
}
.html3 .inner-box > div {
  padding: 0;
}
.html3 .promo-title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 500;
  margin: 0 0 22px;
  text-transform: none;
  color: var(--primary-color);
}
@media (min-width: 992px) {
  .html1-category > .row {
    display: flex;
  }
}
@media (min-width: 768px) {
  .html2-special > div {
    display: flex;
    align-items: center;
    /*        margin-left: -15px;*/
    /*        margin-right: 0;*/
  }
  .html3 .inner1 {
    width: 62.7%;
  }
  .html3 .inner2 {
    width: 37.3%;
  }
  .html3 .promo-title > span {
    display: block;
  }
  .html3 .inner2 .promo-text-box {
    margin: 11% 0 0 -8.3%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .html3 .inner2 .promo-text-box {
    margin: 0 0 0 -8.3%;
  }
}
@media (max-width: 1800px) {
  .video-desc .promo-text-box {
    padding: 0 0 0 30px;
  }
  .html2 .inner2 {
    display: block;
    text-align: center;
    padding: 15px;
  }
  .html2 .promo-title {
    margin: 0 0 15px;
  }
  .banner3 h1 {
    font-size: 120px;
    line-height: 110px;
  }
  .html3 .promo-title {
    font-size: 30px;
    line-height: 42px;
  }
}
@media (max-width: 1440px) {
  .video-desc .promo-text-box {
    padding: 0 0 0 15px;
  }
  .video-desc .promo-sale {
    font-size: 14px;
  }
  .video-desc .promo-title {
    font-size: 24px;
    line-height: 30px;
    margin: 14px 0 25px;
  }
  .html2 .inner2 {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .html2 .promo-title {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px;
  }
  .html3-inner {
    padding: 40px 0 0;
    margin: 0 0 130px;
  }
  .banner3 h1 {
    font-size: 90px;
    line-height: 80px;
  }
  .html3 .inner1 > a {
    margin: -17px 0 -100px 0;
  }
  .html3 .promo-title {
    font-size: 24px;
    line-height: 34px;
  }
}
@media (max-width: 1199px) {
  .video-desc .promo-title {
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0 18px;
  }
}
@media (max-width: 991px) {
  .html2 .button {
    font-size: 12px;
    padding: 7px 20px;
  }
  .html3 .banners {
    width: 100%;
    padding: 0 50px;
  }
  .html3-inner {
    padding: 30px 0 0;
    margin: 0 0 70px;
  }
  .html3 .inner1 > a {
    margin: -15px 0 -50px 0;
  }
  .banner3 h1 {
    font-size: 70px;
    line-height: 65px;
  }
  .video-desc .button,
  .html3 .button {
    font-size: 12px;
  }
  .special .row > * {
    margin-left: 0px;
    /*        padding-left: 20px;*/
    /*        padding-right: 20px;*/
  }
}
@media (max-width: 767px) {
  .html3-inner {
    padding: 30px 0;
    margin: 0 0 15px;
  }
  .html3 .inner-box {
    display: block;
    text-align: center;
  }
  .html3 .inner1 > a {
    margin: -15px 0 0;
  }
  .html3 .banners {
    padding: 0 30px;
  }
  .html3 .inner2 .promo-text-box {
    padding: 10px 0 0;
  }
  .html3 .promo-title {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 10px;
  }
}
@media (max-width: 600px) {
  .html3 .banners {
    padding: 0 15px;
  }
  .html3-inner {
    padding: 20px 0;
  }
  .banner3 h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .html3 .inner1 > a {
    margin: -12px 0 0;
  }
}
@media (max-width: 480px) {
  .video-desc .promo-text-box {
    padding: 0 0 0 10px;
  }
  .video-desc .promo-sale {
    font-size: 12px;
  }
  .video-desc .promo-title {
    font-size: 14px;
    line-height: 20px;
  }
  .banner3 h1 {
    font-size: 32px;
    line-height: 32px;
  }
  .html3 .inner1 > a {
    margin: -7px 0 0;
  }
  .html3 .promo-title {
    font-size: 16px;
    line-height: 20px;
  }
}

/*----------------------------------------------
/* buttons 
/*----------------------------------------------*/
.buttons {
  margin: 1em 0;
}
#tab-review .buttons {
  margin: 1em 0 0;
}
.btn {
  font-size: 14px;
  line-height: 20px;
  border-radius: 0;
}
.btn-xs {
  font-size: 9px;
}
.btn-sm {
  font-size: 10.2px;
}
.btn-lg {
  padding: 8px 20px;
  font-size: 14px;
}
.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 14px;
}
.btn-group > .btn-xs {
  font-size: 9px;
}
.btn-group > .btn-sm {
  font-size: 10.2px;
}
.btn-group > .btn-lg {
  font-size: 14px;
}
#cart .text-right .addtocart-btn,
#cart .text-right .checkout-btn,
.btn-default,
.btn-primary {
  width: auto;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 30px;
  border: none;
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 0;
  font-weight: 400;
}
.btn-warning {
  color: var(--secondary-color);
  background-color: #faa732;
  border-radius: 5px;
}
.btn-danger {
  color: var(--secondary-color);
  background-color: #da4f49;
  text-transform: uppercase;
  padding: 10px 30px;
  border: none;
  border-radius: 0;
}
.btn-success {
  color: var(--secondary-color);
  background-color: #5bb75b;
  background-repeat: repeat-x;
  border-radius: 5px;
}
.btn-info {
  color: var(--secondary-color);
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 8px 30px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 0;
  font-weight: 400;
}
.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: var(--primary-color);
  border-radius: 5px;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}
.btn-inverse {
  color: var(--primary-color);
  background-color: #363636;
  background-repeat: repeat-x;
  border-color: var(--primary-color) var(--primary-color) #000000;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: var(--primary-color);
}
.btn-link:focus,
.btn-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
  outline: none;
}
#cart .text-right .addtocart-btn:hover,
#cart .text-right .addtocart-btn:focus,
#cart .text-right .checkout-btn:hover,
#cart .text-right .checkout-btn:focus,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
.btn-default:hover,
.btn-default:focus,
.btn-default:active:hover,
.btn-default:active:before,
.btn-default:active:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled],
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled],
.btn-info.focus,
.btn-info:focus,
.btn-info:active:focus,
.btn-info:active:hover {
  color: var(--secondary-color);
  border-color: var(--primary-hover-color);
  background: var(--primary-hover-color);
}

/* list group */
.list-group a {
  border: none;
  color: var(--secondary-light-color);
  padding: 8px 12px;
}
.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
  color: var(--primary-color);
  background: transparent;
}

/*----------------------------------------------*/
/* products */
/*----------------------------------------------*/
.owl-item.active.center .row-items,
.owl-item.active .image-additional,
.owl-item.active .product-layout,
.owl-item.active .category-layout {
  -moz-animation: zoomIn 500ms ease;
  -o-animation: zoomIn 500ms ease;
  -webkit-animation: zoomIn 500ms ease;
  animation: zoomIn 500ms ease;
}
.page-title {
  position: relative;
}
.page-title h3 {
  font-size: 30px;
  line-height: 30px;
  margin: -3px 0 25px;
  text-transform: none;
  position: relative;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
}
.product-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.special .product-thumb,
.related-products-block .product-thumb {
  margin-bottom: 0;
}
.special .block_box.row {
  margin-left: -10px;
  margin-right: -10px;
}
.product-thumb .image {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.product-thumb .button-group {
  position: absolute;
  visibility: hidden;
  display: flex;
  bottom: -45px;
  right: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.product-thumb:hover .button-group {
  visibility: visible;
  bottom: 0;
}
.product-thumb .button-group button {
  position: relative;
  font-size: 16px;
  height: 40px;
  width: 40px;
  border: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  border-radius: 0;
  border: none;
  color: var(--primary-color);
  background: var(--secondary-color);
}
.product-thumb .button-group button i {
  display: block;
}
.product-thumb .button-group button:hover {
  background: var(--secondary-color);
  color: var(--primary-hover-color);
}
.sale-text {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  line-height: 12px;
  padding: 4px 8px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  text-align: center;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.product-list .product-thumb .description {
  display: block;
  color: var(--secondary-light-color);
  line-height: 24px;
  font-size: 16px;
  margin: 16px 0 0;
}
.thumb-description {
  position: relative;
}
.product-thumb .caption {
  padding: 10px 0 0;
  position: relative;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-thumb .price {
  font-size: 16px;
  margin: 9px 0 0 0;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-thumb .price-new {
  font-size: 16px;
  margin-right: 5px;
}
.product-thumb .price-old {
  text-decoration: line-through;
  color: var(--secondary-light-color);
  font-size: 16px;
  display: inline-block;
}
.product-thumb .product-title {
  margin: 0;
}
.product-thumb .product-title a {
  text-transform: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  display: block;
}
.product-thumb .product-title a:hover {
  color: var(--primary-hover-color);
}
.product-thumb .price-tax {
  display: none;
}
.product-thumb .rating {
  font-weight: 400;
  text-transform: none;
  font-size: 0;
  margin: 0 0 8px;
  display: block;
}
.product-thumb .description {
  display: none;
}
/* latest and special */
.box.combo .box-content {
  padding: 0 105px;
}
.combo .product-thumb {
  margin-bottom: 0;
}

.product-thumb .thumb-description .all-btn,
.product-list .product-thumb .image .button-group {
  display: none;
}
.product-list .product-thumb .caption .all-btn {
  display: flex;
  align-items: center;
  margin: 27px 0 0;
}
.product-list .product-thumb .btn-list {
  display: flex;
  align-items: center;
  position: unset;
  visibility: visible;
  margin: 0;
}
.product-list .product-thumb .btn-list button {
  height: 40px;
  width: 40px;
  opacity: 1;
  position: unset;
  visibility: visible;
  display: inline-block;
  margin: 0 0 0 10px;
  color: var(--primary-color);
  background: var(--background-color);
}
.product-list .product-thumb .btn-list button:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
}
.product-list .product-thumb .caption {
  padding: 8px 0 0;
  text-align: left;
}
.product-list .product-thumb .all-btn .addcart {
  display: inline-block;
  position: relative;
  line-height: 20px;
  margin: 0;
  padding: 10px 30px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-color);
}
.product-list .product-thumb .thumb-description .addcart:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.product-list .product-thumb .price {
  display: block;
  margin: 14px 0 0;
}
.product-list .product-thumb .rating {
  display: block;
  float: unset;
  margin: 0 0 11px;
}
#product-page .nav-tabs li {
  margin: 0 25px;
}
#product-page .nav-tabs > li > a {
  padding: 15px 0;
}
#product-page .nav-tabs > li > a::after {
  content: "";
  background: var(--primary-hover-color);
  width: 0;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  position: absolute;
  bottom: -1px;
  transition: all 350ms ease-out 0s;
  -moz-transition: all 350ms ease-out 0s;
  -o-transition: all 350ms ease-out 0s;
  -webkit-transition: all 350ms ease-out 0s;
}
#product-page .nav-tabs > li:hover > a:after,
#product-page .nav-tabs > li.active > a:after {
  width: 100%;
}
#product-page .nav-tabs > li.active > a,
#product-page .nav-tabs > li:hover > a {
  color: var(--primary-color);
}
.nav-tabs > li > a {
  padding: 12px 25px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border: none;
  margin: 0;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--secondary-light-color);
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li > a:hover,
.nav > li > a:focus,
.nav > li > a:hover {
  background: transparent;
  color: var(--primary-hover-color);
  border: none;
}

/*product hover */
.product-thumb .hover-img {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
}
.product-thumb:hover .hover-img {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
}

/*product tab*/
.product-tab-block .product-tabs,
.product-tab-block .mahardhi-tabs {
  position: relative;
}
.mahardhi-tabs .nav-tabs {
  border: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  position: relative;
  justify-content: center;
}
.mahardhi-tabs .nav-tabs::-webkit-scrollbar {
  display: none;
}
.mahardhi-tabs .nav-tabs li {
  margin: 0;
  float: none;
  display: inline-block;
}
.mahardhi-tabs .nav-tabs li + li {
  margin: 0 0 0 44px;
}
.mahardhi-tabs .nav-tabs > li > a {
  position: relative;
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  border: none;
  margin: 0;
  padding: 0 0 18px;
  text-transform: none;
  background: transparent;
  color: var(--secondary-light-color);
}
.mahardhi-tabs .nav-tabs > li > a span {
  display: block;
}
.mahardhi-tabs .nav-tabs > li > a:hover,
.mahardhi-tabs .nav-tabs > li > a:focus,
.mahardhi-tabs .nav-tabs > li > a.selected {
  background: transparent;
  color: var(--primary-color);
}
.mahardhi-tabs .nav-tabs > li > a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.2s ease-in-out 0s;
}
.mahardhi-tabs .nav-tabs > li > a.selected::after,
.mahardhi-tabs .nav-tabs > li > a:hover::after {
  transform: scaleX(1);
}

@media (min-width: 992px) {
  .html1-latest > div > div,
  .special-html2 > div > div {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1440px) {
  .page-title h3 {
    font-size: 24px;
    line-height: 24px;
  }
  .box.combo .box-content {
    padding: 0 85px;
  }
}
@media (max-width: 991px) {
  .page-title h3 {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 15px;
  }
  .box.combo .box-content {
    padding: 0;
  }
  #product-page .nav-tabs li {
    margin: 0 15px;
  }
  .product-tab-block .mahardhi-tabs {
    position: relative;
    width: 100%;
    right: auto;
  }
  .mahardhi-tabs .nav-tabs {
    text-align: center;
    margin: 0 0 20px;
  }
  .mahardhi-tabs .nav-tabs li + li {
    margin: 0 0 0 30px;
  }
  .mahardhi-tabs .nav-tabs > li > a {
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 5px;
  }
  .product-thumb {
    margin-bottom: 20px;
  }
  .row.category-row,
  .box .row,
  .blog-category-inner.row,
  .category-box .row {
    margin: 0 -5px;
  }
  .mblog .blog-block,
  .blog-layout {
    padding: 0 5px;
  }
  .px-3 {
    padding: 0 5px !important;
  }
  .special .block_box.row {
    margin-left: 0;
    margin-right: 0;
  }
  .product-thumb .price {
    font-size: 14px;
    margin: 6px 0 0 0;
    display: block;
  }
  .product-thumb .price-old {
    font-size: 14px;
  }
  .product-thumb .rating {
    margin: 0 0 5px;
  }
  .product-thumb:hover .button-group,
  .product-thumb .button-group {
    visibility: visible;
    bottom: 0;
  }
  .product-thumb .caption {
    padding: 10px 0 0;
  }
  .product-thumb .product-title a {
    font-size: 14px;
  }
  .product-thumb .button-group button {
    font-size: 14px;
    height: 30px;
    width: 30px;
  }
  .product-list .product-thumb .rating {
    margin: 0 0 7px;
  }
  .product-list .product-thumb .price {
    margin: 10px 0 0;
  }
  .product-thumb .description {
    display: none;
  }
  #product-page .nav-tabs > li > a {
    font-size: 14px;
    padding: 10px 0;
  }
  .product-list .product-thumb .caption .all-btn {
    margin: 15px 0 0;
  }
  .product-list .product-thumb .thumb-description .addcart {
    font-size: 12px;
    padding: 7px 20px;
  }
  .product-list .product-thumb .btn-list button {
    height: 34px;
    width: 34px;
  }
  .sale-text {
    font-size: 10px;
    line-height: 10px;
    top: 5px;
    left: 5px;
    padding: 4px 6px;
  }
  .box.special {
    margin-top: 20px;
  }
  .product-list .product-thumb .description {
    margin: 10px 0;
  }
}
@media (max-width: 680px) {
  .product-list .product-thumb .image img {
    width: auto;
    margin: 0;
  }
}
@media(max-width: 575px) {
  .product-list .product-thumb .description {
    font-size: 14px;
    margin: 10px 0;
    line-height: 22px;
  }
}
@media (max-width: 480px) {
  .page-title h3 {
    font-size: 16px;
  }
  .mahardhi-tabs .nav-tabs {
    padding: 0 20px;
  }
  .mahardhi-tabs .nav-tabs > li > a {
    font-size: 14px;
    line-height: 20px;
    padding: 0 0 4px;
  }
  .mahardhi-tabs .nav-tabs li + li {
    margin: 0 0 0 15px;
  }
}

.slick-theme .slick-item.slick-slide .col-2 {
  width: 100%;
}
.row.slick-theme .col.col-12 {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media (max-width: 991px) {
  .row.slick-theme .col.col-12 {
    padding-right: 05px;
    padding-left: 05px;
  }
  .row.slick-theme .col.col-12 {
  }
}
@media (max-width: 575px) {
  .row.slick-theme .col.col-12 {
    padding-right: 5px;
    padding-left: 5px;
  }
}
/*----------------------------------------------
/* swiper pager */
/*----------------------------------------------*/
.swiper-viewport .swiper-pager > div,
.slick-theme .slick-arrow {
  height: 24px;
  width: 24px;
  background: transparent;
  color: var(--primary-color);
  border: none;
  padding: 0;
  text-align: center;
  border-radius: 5px;
  margin: 0;
  opacity: 1;
  text-shadow: none;
  transition: all 0.3s ease;
  position: absolute;
  top: 45%;
  box-shadow: none;
}
.slick-theme .slick-arrow:hover {
  color: var(--primary-hover-color);
}
div:not(.container) .slick-theme .slick-arrow.slick-next {
  right: 0px;
}
.slick-theme .slick-arrow.slick-next {
  right: -8px;
  left: auto;
}
div:not(.container) .slick-theme .slick-arrow.slick-prev {
  left: 0px;
}
.slick-theme .slick-arrow.slick-prev {
  left: -8px;
  right: auto;
}
.slick-theme .slick-arrow.slick-disabled {
  opacity: 0.6;
}
.swiper-viewport {
  border: unset;
}
.swiper-pagination {
  display: none;
}
.swiper-viewport .swiper-button-prev:before,
.swiper-viewport .swiper-button-next:before {
  content: "";
}
.slick-theme .slick-arrow .fa,
.swiper-viewport .fa {
  font-size: 24px;
  display: block;
}

/*carousel*/
.owl-carousel.owl-theme .owl-nav {
  margin: 0;
}
.carousel .swiper-viewport:hover .swiper-button-next,
.carousel .swiper-viewport:hover .swiper-pager .swiper-button-prev {
  opacity: 1;
}
.owl-carousel.owl-theme .owl-nav .owl-next:hover,
.owl-carousel.owl-theme .owl-nav .owl-prev:hover {
  color: var(--primary-color);
  background: transparent;
}

footer .mblog .blog-carousel.slick-theme .slick-arrow:hover {
  color: var(--secondary-color);
}
footer .mblog .blog-carousel.slick-theme .slick-arrow {
  margin: 0;
  position: absolute;
  top: -48px;
  right: 20px;
  color: var(--secondary-color);
  background: transparent;
}
footer .mblog .blog-carousel.slick-theme .slick-arrow.slick-prev {
  left: auto;
  right: 50px;
}
footer .mblog .blog-carousel.slick-theme .slick-arrow .fa {
  font-size: 20px;
}

/*dots*/
.slick-theme .slick-dots li + li {
  margin-left: 15px;
}

.swiper-pagination span,
.slick-theme .slick-dots button {
  width: 14px;
  height: 14px;
  background: transparent;
  margin: 2px 5px;
  border: 2px solid transparent;
  box-shadow: none;
  font-size: 0px;
}
.swiper-pagination span:before,
.slick-theme .slick-dots button:before {
  content: "";
  background: var(--primary-color);
  height: 10px;
  width: 10px;
  display: block;
}
.swiper-pagination span,
.slick-theme .slick-dots button {
  border-radius: 0;
}
.swiper-pagination span.swiper-pagination-bullet-active:before,
.swiper-pagination span:hover:before,
.slick-theme .slick-dots li.slick-active button:before,
.slick-theme .slick-dots li button:hover:before {
  background: transparent;
}
.swiper-pagination span.swiper-pagination-bullet-active,
.swiper-pagination span:hover,
.slick-theme .slick-dots li.slick-active button,
.slick-theme .slick-dots li button:hover {
  border-color: var(--primary-color);
  background: transparent;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin: 0;
}
.testimonial-block .owl-theme .owl-nav.disabled + .owl-dots {
  margin: 12px 0 0 0;
}

/*slideshow*/
.slideshow .swiper-pagination {
  display: block;
  bottom: 30px;
}
.slideshow .swiper-viewport .swiper-pager > div {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
}
.slideshow .swiper-viewport .swiper-pager .swiper-button-prev {
  left: 20px;
}
.slideshow .swiper-viewport .swiper-pager .swiper-button-next {
  right: 20px;
}

/* slick-carousel */
.slick-carousel > button {
  border: none;
  background: transparent;
  padding: 2px 7px;
  box-shadow: none;
}
.slick-carousel > button i {
  font-size: 20px;
}
.slick-vertical .slick-arrow {
  position: relative;
  top: auto;
  height: 30px;
}
@media (max-width: 991px) {
  .mblog .owl-carousel.owl-theme .owl-nav {
    top: -35px;
    right: 0;
  }
  .slideshow .swiper-pagination {
    bottom: 0;
  }
  .swiper-pagination span {
    width: 10px;
    height: 10px;
    margin: 2px;
  }
  .swiper-pagination span:before {
    height: 6px;
    width: 6px;
  }
}
/*----------------------------------------------*/
/* testimonial */
/*----------------------------------------------*/
.testimonial-block .page-title h3 {
  font-size: 16px;
  line-height: 20px;
  color: var(--secondary-color);
  text-align: center;
  margin: -2px 0 60px;
}

.testimonial-block .slick-list {
  padding: 20px 0;
  margin: -20px 0;
}

.testimonial-images {
  position: relative;
  display: inline-block;
}
.testimonial-images::before {
  position: absolute;
  content: "\e940";
  font-family: "Mahardhi-Fonts";
  font-size: 24px;
  color: #888888;
  left: -17px;
  top: -14px;
  z-index: -1;
}
.testimonial-container.box-module.container {
  background: var(--background-color);
  padding: 91px 50px;
}

.testimonial-items {
  width: 72%;
  margin: auto;
  text-align: center;
}

.testimonial-text {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-color);
}

.testimonial-text i {
  font-size: 34px;
  line-height: 30px;
  display: inline-block;
  color: var(--primary-hover-color);
}

.testimonial-text i.icon-quote {
  margin: 0 18px 17px 0;
  vertical-align: bottom;
}

.testimonial-text i.icon-rightquote {
  margin: 20px 0 0 27px;
  vertical-align: top;
}
.testimonial-images img {
  margin-bottom: 18px;
}
.testimonial-author {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 7px;
  color: var(--secondary-color);
}
.testimonial-customer {
  color: var(--secondary-light-color);
}

@media (max-width: 1540px) {
  .testimonial-items {
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .testimonial-block .page-title h3 {
    margin: 0 0 40px;
  }
}

@media (max-width: 991px) {
  .testimonial-images img {
    margin: 0px auto 17px;
  }
  .testimonial-customer {
    margin: 0;
  }
  .testimonial-block .owl-carousel.owl-theme .owl-nav div {
    height: 30px;
    width: 30px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .testimonial-text p {
    margin: 10px 0;
  }
  .testimonial-content {
    margin: 0 0 10px;
  }
  .testimonial-block .page-title h3 {
    margin: 0 0 30px;
  }
  .testimonial-block .slick-dots {
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonial-text {
    font-size: 14px;
    line-height: 25px;
  }
  .testimonial-author {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .testimonial-block .page-title h3 {
    margin: 0 0 15px;
  }
  .testimonial-images::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonial-items {
    width: 100%;
  }
  .testimonial-text {
    line-height: 20px;
  }
  .testimonial-block .owl-carousel.owl-theme .owl-nav {
    top: 49px;
  }
  .owl-carousel.owl-theme .owl-nav .owl-next:hover {
    background: transparent;
  }
}

@media (max-width: 320px) {
  div:not(.container) .slick-theme .slick-arrow.slick-prev {
    left: -10px;
  }
  div:not(.container) .slick-theme .slick-arrow.slick-next {
    right: -10px;
  }
}
/*----------------------------------------------*/
/* blog */
/*----------------------------------------------*/
.blog-block {
  margin-bottom: 30px;
  position: relative;
}
.blog-carousel .slick-track .product-block:nth-child(even) {
  margin-top: 50px;
}
.blog-info .image {
  overflow: hidden;
  position: relative;
}
.blog-block .zoom-post {
  position: absolute;
  left: -45px;
  top: 20px;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
}
.blog-block:hover .zoom-post {
  left: 20px;
}
.blog-block .zoom-post a {
  display: block;
  color: var(--primary-color);
  background: var(--secondary-color);
  height: 40px;
  width: 40px;
  margin: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.blog-block .zoom-post a:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.blog-block .zoom-post a + a {
  margin: 10px 0 0;
}
.blog-block .hover-zoom::before,
.blog-block .hover-post:before {
  font-family: FontAwesome;
  font-size: 14px;
  margin: 0;
  display: block;
  text-align: center;
  line-height: 40px;
}
.blog-block .hover-zoom::before {
  content: "\f002";
}
.blog-block .hover-post:before {
  content: "\f0c1";
}
.blog-block:hover .hover-post:before,
.blog-block:hover .hover-zoom::before {
  opacity: 1;
}
.product-list .blog-block.product-thumb .image {
  box-shadow: none;
  margin: 0;
}
.blog-block .caption {
  position: relative;
  text-align: center;
  padding: 25px 30px 0;
  background: var(--secondary-color);
}
.blog-block h4,
h3.article-page-title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 32px;
  text-transform: none;
}
.blog-block h4 a {
  display: block;
  color: var(--primary-color);
}
.blog-block h4 a:hover {
  color: var(--primary-hover-color);
}
.blog-block .blog-read {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  padding: 0;
  margin: 24px 0 0;
  border: none;
  text-transform: uppercase;
  color: var(--primary-hover-color);
  background: transparent;
  border-radius: 0;
  border-bottom: 2px solid var(--primary-hover-color);
}
.blog-block .blog-read:hover {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/*----------------------------------------------*/
/* blog page */
/*----------------------------------------------*/
.blog-category.col-sm-6:nth-child(2n + 1) {
  clear: left;
}
.blog-category .blog-img {
  position: relative;
  overflow: hidden;
  display: block;
}
h4.article-page-title {
  margin: 20px 0 15px;
}
.caption-blog p,
.info_blog p {
  margin: 20px 0 0;
}
.blog-block img,
#content-blogs .thumbnails .thumbnail img {
  width: 100%;
}
.blog-text {
  color: var(--secondary-light-color);
  margin: 16px 0 0;
  line-height: 24px;
  font-size: 16px;
}
.block-date,
.blog-comment {
  font-size: 14px;
  color: var(--secondary-light-color);
  margin: 0 15px 0 0;
  display: inline-block;
}
.blog-comment i,
.block-date i {
  padding: 0 7px 0 0;
}

/*----------------------------------------------*/
/* article blog page */
/*----------------------------------------------*/
.article-container .singblog-description {
  background: var(--secondary-color);
  padding: 22px 0 0;
  margin: 0;
}

.article-container .blog-block {
  margin-bottom: 0;
}

#content-blogs .thumbnails .thumbnail {
  border: unset;
  margin: 0;
  padding: 0;
}
.article-container .leave-hedding {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 15px 20px;
  line-height: 20px;
  margin: 0;
  background: var(--primary-color);
  color: var(--secondary-color);
}

.article-container .page-title {
  margin-bottom: 30px;
}

.article-container .post-comment .form-group {
  margin-right: 0;
  margin-left: 0;
}

#post_comment #commnt_form.form-horizontal .control-label {
  text-align: left;
}

.comment_cust h4 {
  margin-bottom: 20px;
}

.commentlist ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.commentlist ul li:last-child {
  padding-bottom: 0;
}

.commentlist ul li + li {
  padding-top: 10px;
}

.comment_cust .comment-text .user_img {
  float: left;
  height: 60px;
  width: 60px;
  background-color: var(--background-color);
  text-align: center;
  color: var(--primary-color);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}

.comment_cust .comment-text .user_img i {
  font-size: 26px;
  line-height: 60px;
}

.comment_cust .comment-desc {
  padding-left: 80px;
  line-height: 26px;
}

.comment_cust .comment-desc .name {
  font-weight: 400;
  text-transform: none;
  font-size: 16px;
}

.comment_cust .comment-desc .date {
  color: var(--secondary-light-color);
}

.comment-dis {
  color: var(--secondary-light-color);
  line-height: 22px;
}

#post_comment {
  background: var(--secondary-color);
  padding: 30px 30px 1px;
  border: 1px solid var(--border-color);
}

.comment_cust {
  padding: 10px;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
}

.comment-text {
  padding: 20px;
  border: 1px solid var(--border-color);
}

.singblog-description .blog-text {
  margin: 0;
}
@media (max-width: 1440px) {
  .blog-carousel .slick-track .product-block:nth-child(2n) {
    margin-top: 0;
  }
  .blog-block .caption {
    padding: 15px 15px 0;
  }
}
@media (max-width: 1199px) {
  .blog-block h4,
  h3.article-page-title {
    font-size: 18px;
    line-height: 24px;
  }
  .blog-text {
    margin: 10px 0;
  }
  .blog-category .link_info {
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .block-date:after {
    width: 25px;
    right: -25px;
  }
  .blog-block {
    margin-bottom: 20px;
  }
  .article-container .page-title {
    margin-bottom: 15px;
  }
  .article-container .leave-hedding {
    padding: 10px 15px;
    font-size: 14px;
  }
  .blog-text {
    font-size: 14px;
  }
  #post_comment {
    padding: 15px 15px 1px;
  }
  .blog-block .zoom-post {
    left: 10px;
    opacity: 1;
  }
  .blog-block:hover .zoom-post {
    left: 10px;
  }
  .article-container .singblog-description {
    margin: 0;
  }
  .product-block.blog-block .link_info {
    opacity: 1;
    transform: scale(1);
  }
  .blog-block h4,
  h3.article-page-title {
    margin: 0 0 10px;
  }
  .blog-category .blog-block .blog-description {
    padding: 15px;
  }
  .blog-block .zoom-post a:before {
    line-height: 34px;
    font-size: 12px;
  }
  .blog-block .zoom-post a {
    height: 34px;
    width: 34px;
  }
}

@media (max-width: 575px) {
  .blog-block h4,
  h3.article-page-title {
    line-height: 20px;
    margin: 0 0 7px;
  }
  .blog-text {
    margin: 0px;
  }
  .blog-block .zoom-post a:before {
    font-size: 10px;
    line-height: 30px;
  }
  .blog-block .zoom-post a {
    height: 30px;
    width: 30px;
    top: 10px;
  }
}

@media (max-width: 540px) {
  .blog-block h4,
  h3.article-page-title {
    font-size: 16px;
    line-height: 20px;
  }
  .blog-text {
    margin: 5px 0 10px;
  }
  .comment-text {
    padding: 10px;
  }
  .comment_cust .comment-desc {
    padding-left: 70px;
  }
}
/*----------------------------------------------*/
/* newsletter block */
/*----------------------------------------------*/
.news {
  position: relative;
  text-align: center;
}
.newsletterblock {
  position: relative;
  padding: 50px 15px;
  background: var(--background-color);
}
.news-description {
  font-size: 16px;
  line-height: 20px;
  margin: 25px 0 27px;
  color: var(--secondary-light-color);
}
.subscribe-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: auto;
  border-radius: 0;
}
.subscribe-form #newsletter_usr_email {
  height: 50px;
  padding: 5px 20px;
  border: none;
  background: var(--secondary-color);
  color: var(--secondary-light-color);
  border-radius: 0;
}
.subscribe-form #newsletter_usr_email::placeholder {
  color: var(--secondary-light-color);
}
.subscribe-btn {
  font-size: 14px;
  font-weight: 400;
  padding: 15px 30px;
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-color);
  margin: 0 0 0 10px;
  transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
  -moz-transition-duration: 500ms;
  -ms-transition-duration: 500ms;
  -o-transition-duration: 500ms;
}
.subscribe-btn:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}

@media (max-width: 991px) {
  .newsletterblock {
    padding: 30px 15px;
  }
  .news-description {
    font-size: 14px;
    margin: 15px 0;
  }
  .subscribe-form #newsletter_usr_email {
    height: 40px;
  }
  .subscribe-btn {
    padding: 10px 15px;
  }
}
@media (max-width: 575px) {
  .subscribe-form {
    max-width: unset;
  }
}
@media (max-width: 480px) {
  .newsletterblock {
    padding: 20px 15px;
  }
  .subscribe-form {
    display: block;
    text-align: center;
  }
  .subscribe-btn {
    margin-top: 10px;
  }
}
/*----------------------------------------------*/
/* footer start */
/*----------------------------------------------*/
footer {
  position: relative;
}
.footer-top .col-lg-4,
.footer-top .col-lg-2 {
  padding: 0 15px;
}
.common-home footer {
  margin-top: 0;
}
.footer-inner {
  background: var(--primary-color);
}
.footer-top {
  position: relative;
  padding: 50px 0;
  color: var(--secondary-color);
}
footer h5 {
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  padding: 0;
  margin: -2px 0 34px;
  position: relative;
  font-weight: 500;
  color: var(--secondary-color);
}
footer .footer-content a {
  font-size: 16px;
  padding: 8px 0;
  display: block;
  color: var(--secondary-color);
}
footer a:hover,
footer a:focus {
  color: var(--primary-hover-color);
}

/* footer left */
.position-footer-left h5 {
  margin: -2px 0 37px;
}
.contact_title {
  display: inline-block;
  text-transform: none;
  margin: 0;
  color: var(--secondary-color);
}
.contact_site {
  display: inline;
}
.position-footer-left li > div {
  display: inline-block;
  padding: 4px 0;
  font-size: 16px;
  line-height: 24px;
}
.position-footer-left li .contact_site a {
  padding: 0;
  display: initial;
  color: var(--secondary-color);
}

/* footer right */
.position-footer-right li > div {
  display: flex;
  margin: 8px 0;
  line-height: 24px;
  font-size: 14px;
}

.position-footer-bottom .social-footer {
  display: flex;
  justify-content: space-between;
  padding: 22px 30px;
}

/*.position-footer-right li .contact_site a{
  padding: 0;
  display: initial;    
  color: var(--secondary-light-color);
}

.contact_title {
  text-transform: none;
  margin-right: 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

.contact_site {
  color: var(--secondary-light-color);
  line-height: 30px;
  font-size: 18px;
  font-weight: 600;
}

.position-footer-left li > div {
  display: flex;
  padding: 4px 0;
  line-height: 24px;
}*/
/* social media*/
.social-media {
  margin-top: 20px;
}
.social-media a {
  display: inline-block;
}
.social-media a + a {
  margin: 0 0 0 6px;
}
.social-media a i {
  display: inline-block;
  font-size: 16px;
  height: 34px;
  width: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  color: var(--secondary-color);
}
.social-media a .fa-facebook-f {
  background: #3b5998;
}
.social-media a .fa-twitter {
  background: #00acee;
}
.social-media a .fa-youtube {
  background: #c4302b;
}
.social-media a .fa-google-plus-g {
  background: #db3236;
}
.social-media a .fa-pinterest-p {
  background: #c8232c;
}
/* footer bottom*/
.footer-bottom {
  position: relative;
  padding: 23px 0;
  text-align: center;
}
.footer-bottom::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}
footer .footer-bottom p {
  font-size: 16px;
  margin: 0;
  color: var(--secondary-color);
}
footer .footer-bottom p a {
  color: var(--secondary-color);
}
.toggled.active .fa-chevron-down:before {
  content: "\f077";
}
@media (min-width: 992px) {
  .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-top {
    display: flex;
  }
  .footer-top > div + div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-left {
    text-align: center;
  }
}
@media (min-width: 1701px) {
  .position-footer-left {
    margin: 0 60px;
  }
}
@media (max-width: 1440px) {
  footer h5 {
    margin: -2px 0 20px;
  }
  .footer-top {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .footer-top {
    padding: 10px 0;
  }
  footer h5,
  .position-footer-left h5 {
    margin: 0 0 10px;
    font-size: 14px;
  }
  .social-media {
    text-align: center;
  }
  .footer-inner .row {
    margin: 0;
  }
  footer .footer-content a {
    padding: 4px 0;
    font-size: 14px;
  }
  .position-footer-left li > div {
    font-size: 14px;
  }
  .footer-top > div {
    width: 100%;
    float: unset;
    margin: 15px 0;
    /*padding: 0;*/
  }
  .footer-top .col-lg-4,
  .footer-top .col-lg-2 {
    padding: 0;
  }
  .social-media a i {
    font-size: 14px;
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
  .footer-bottom {
    padding: 15px 0;
  }
  footer .footer-bottom p {
    font-size: 14px;
    margin: 0 0 10px;
  }
}
@media (max-width: 767px) {
  .footer-top {
    padding: 5px 0;
  }
}
/*----------------------------------------------*/
/* service */
/*----------------------------------------------*/
.footer-center {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-box {
  position: relative;
  overflow: hidden;
}
.service {
  display: flex;
  align-items: center;
}
.service-icon {
  font-size: 50px;
  margin: 0 28px 0 0;
  color: var(--primary-hover-color);
}
.service .service-icon i {
  display: inline-block;
}
.service .promo-title {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 9px;
  text-transform: none;
  color: var(--secondary-color);
}
.service .promo-desc {
  display: block;
  font-size: 14px;
  text-transform: none;
  color: var(--secondary-color);
}
.service-box .service-item {
  float: left;
}
.position-footer-center {
  padding: 0;
}
@media (max-width: 1800px) {
  .service-icon {
    margin: 0 10px 0 0;
  }
}
@media (max-width: 1600px) {
  .service-icon {
    font-size: 36px;
  }
  .service .promo-title {
    font-size: 14px;
    margin: 0 0 5px;
  }
  .service .promo-desc {
    font-size: 12px;
  }
}
@media (max-width: 1440px) {
  .footer-center {
    padding: 30px 0;
  }
  .footer-center .row {
    margin: 0 -5px;
  }
  .service-item {
    padding: 0 5px;
  }
  .service {
    display: block;
    text-align: center;
    justify-content: unset;
  }
  .service-icon {
    margin: 0 0 10px;
  }
}
@media (max-width: 991px) {
  .footer-center .row > * {
    padding-right: 0;
    padding-left: 0;
  }
  .service-box .service-item {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .footer-center .service-item.col-lg-3 {
    width: 50%;
    float: left;
  }
  .service-box {
    display: block;
  }
  .footer-center {
    padding: 20px 0;
  }
  .service {
    display: flex;
    align-items: center;
    text-align: left;
  }
  .service-icon {
    margin: 0 10px 0 0;
  }
  .service-item:nth-child(3),
  .service-item:nth-child(4) {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .service {
    display: block;
    text-align: center;
  }
  .service-icon {
    margin: 0 0 10px;
  }
  .service .promo-title {
    font-size: 12px;
    margin: 0 0 2px;
  }
  .service .promo-desc {
    font-size: 11px;
  }
}

/*----------------------------------------------*/
/* pagetitle */
/*----------------------------------------------*/
.page_title,
.breadcrumb-row h1 {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 12px;
  line-height: 20px;
}
.page-title h3,
.blog-title h3 {
  font-size: 30px;
  line-height: 30px;
  margin: -3px 0 25px;
  text-transform: none;
  position: relative;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
}
.blog-title h3 {
  margin: -3px 0 32px;
}
.page-sub-title h1 {
  position: relative;
  font-size: 24px;
  line-height: 26px;
  margin: 0 0 23px 0;
  font-weight: 600;
  color: var(--primary-hover-color);
}

.team .page-sub-title h1 {
  margin: 0 0 24px 0;
}

.category-featured .page-sub-title h1:after {
  left: 190px;
}
.category-thumb img {
  transition: all 350ms ease-out 0s;
  -moz-transition: all 350ms ease-out 0s;
  -o-transition: all 350ms ease-out 0s;
  -webkit-transition: all 350ms ease-out 0s;
}
.category-thumb img:hover {
  -o-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.page-sub-title h1:after {
  content: "";
  background: var(--primary-hover-color);
  width: 100px;
  height: 2px;
  left: 188px;
  top: 2px;
  bottom: 0;
  margin: auto;
  display: block;
  position: absolute;
  transition: all 350ms ease-out 0s;
  -moz-transition: all 350ms ease-out 0s;
  -o-transition: all 350ms ease-out 0s;
  -webkit-transition: all 350ms ease-out 0s;
}

.product-tab-block .page-sub-title h1:after {
  left: 164px;
}

.banner1 .page-title h3 {
  text-align: center;
}

@media (max-width: 1440px) {
  .category-featured .page-sub-title h1:after {
    left: 180px;
  }
  .banner-inner .page-title h3 {
    font-size: 25px;
    line-height: 25px;
    margin: 0 0 7px;
    text-align: center;
  }
  .bannner1-text {
    margin: 0 0 25px;
  }
  .banner1 .middle-dec {
    width: 100%;
  }
  .page-sub-title h1 {
    font-size: 22px;
    line-height: 24px;
    margin: 0 0 15px 0;
  }
  .product-tab-block .page-sub-title h1:after {
    left: 155px;
  }
  .page-title h3,
  .blog-title h3 {
    font-size: 24px;
    line-height: 24px;
  }
}

@media (max-width: 1199px) {
  .category-featured .page-sub-title h1:after {
    left: 19%;
  }
  .page-sub-title h1 {
    margin: 0 0 20px 0;
  }
  .Gallery-icon i {
    font-size: 25px;
    line-height: 50px;
  }
  .bannner1-title {
    font-size: 18px;
    line-height: 18px;
    margin: 0 0 5px;
  }
  /* .page-title h3{
      font-size: 40px;
      margin: -3px 0 25px;
  } */
  .page-sub-title h1:after {
    left: 150px;
  }
  .banner-inner .page-title h3 {
    font-size: 25px;
    margin: 0px 0 15px;
  }
  .bannner1-text {
    font-size: 16px;
    line-height: 24px;
    margin: 0 auto 30px;
    width: 90%;
  }
  .banner-inner .page-title h3 {
    font-size: 32px;
    line-height: 38px;
    margin: 0 0 10px;
  }
  .html1-inner.col-md-6.col-xs-12 {
    padding-left: 60px;
  }
  .page-sub-title h1 {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 10px;
  }
  .team .page-sub-title h1 {
    margin: 0 0 20px;
  }
  .team .page-sub-title h1:after {
    left: 200px;
  }
  .product-tab-block .page-sub-title h1:after {
    left: 130px;
  }
}

@media (max-width: 991px) {
  .category-featured .page-sub-title h1:after {
    display: none;
    left: 21%;
  }
  .category-featured .row {
    margin: 0;
  }
  .page-sub-title h1:after {
    left: 18%;
  }
  .banner-special .page-sub-title h1:after {
    display: none;
  }
  .page-sub-title h1 {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 8px 0;
  }
  .page-title h3,
  .blog-title h3 {
    font-size: 35px;
    margin: -3px 0 20px;
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 26px;
  }
  .page-sub-title h1:after {
    display: none;
  }
  .team .page-sub-title h1 {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 8px 0;
  }
  .html1-inner.col-md-6.col-xs-12 {
    padding-left: 15px;
  }
}

@media (max-width: 767px) {
  .page-sub-title h1:after {
    left: 18%;
  }
}
@media (max-width: 575px) {
  .category-featured .page-sub-title h1:after {
    left: 28%;
  }
  .page-sub-title h1:after {
    left: 24%;
  }
  .bannner1-text {
    margin: 0 0 10px;
  }
  .category-featured .page-sub-title h1:after,
  .testimonial-block .page-sub-title h1:after,
  .testimonial-block .page-sub-title h1::after,
  .page-sub-title h1:after {
    display: none;
  }
  .bannner1-text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
    width: 94%;
  }
  .banner-outer.html2.col-lg-4.col-4.clearfix {
    width: 100%;
  }
  .box-content.special.col-lg-8.col-8 {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .category-featured .page-sub-title h1:after {
    left: 34%;
  }
  .page-sub-title h1:after {
    left: 29%;
  }
  .right-image a:after {
    width: 156px;
    height: 191px;
  }
}

@media (max-width: 375px) {
  .category-featured .page-sub-title h1:after {
    left: 45%;
  }
  .page-sub-title h1:after {
    left: 39%;
  }
  .page-sub-title h1 {
    margin: 0 0 5px 0;
  }
  .banner-inner2.col-sm-3 {
    width: 100%;
    margin-bottom: 50px;
  }
  .right-image a:after {
    width: 114px;
    height: 140px;
  }
  .bannner1-text {
    margin: 0;
    width: 100%;
  }
  .banner1 .promo-btn {
    margin: 20px 0 0;
  }
}

@media (max-width: 320px) {
  .category-featured .page-sub-title h1:after {
    left: 54%;
  }
  .page-sub-title h1:after {
    left: 46%;
  }
  .banner-special .page-sub-title h1:after {
    left: 39%;
  }
}

/*----------------------------------------------*/
/* breadcrumb */
/*----------------------------------------------*/

.breadcrumb-back {
  padding: 15px 0;
  margin: 0 0 30px 0;
  background: var(--background-color);
}
.breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb {
  padding: 0;
  border: none;
  background: transparent;
  margin: 0;
  font-size: 14px;
  text-transform: none;
  text-align: center;
}
.breadcrumb > li {
  position: relative;
}
.breadcrumb > li .fa-home {
  font-size: 15px;
}
.breadcrumb li a,
.breadcrumb a {
  color: var(--primary-color);
}
.breadcrumb li:last-child a,
.breadcrumb a:hover {
  color: var(--primary-hover-color);
}
.breadcrumb > li + li:before {
  content: "/";
  font-family: FontAwesome;
  color: var(--primary-color);
  padding: 0px 8px 0px 5px;
  font-size: 16px;
  line-height: 19px;
}
.breadcrumb-back h2 {
  margin: 0;
}
@media (max-width: 767px) {
  .breadcrumb-back {
    margin: 0 0 20px;
  }
  .breadcrumb-row {
    display: block;
    text-align: center;
  }
  .breadcrumb {
    justify-content: center;
  }
  .breadcrumb-back h2 {
    margin: 0 0 5px;
  }
  .page_title,
  .breadcrumb-row h1 {
    font-size: 14px;
    margin: 0 0 5px;
  }
}

/*----------------------------------------------*/
/* column-left-right */
/*----------------------------------------------*/
#column-left > div,
#column-right > div {
  margin: 30px 0 0;
  box-shadow: none;
  border: none;
  width: auto;
  background: var(--secondary-color);
}
#column-left > div.swiper-viewport,
#column-right > div.swiper-viewport {
  border: none;
  padding: 0;
}
#column-left > div:first-child,
#column-right > div:first-child {
  margin-top: 0;
}
#column-left h3,
#column-right h3,
#column-left .box-content h3,
#column-right .box-content h3 {
  display: block;
  padding: 15px 20px;
  margin: 0;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  color: var(--secondary-color);
  background: var(--primary-color);
  font-weight: 500;
  line-height: 20px;
  border: none;
  border-radius: 0;
}
a.list-group-item.active,
a.list-group-item.active:focus,
a.list-group-item.active:hover,
a.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus,
button.list-group-item:hover {
  color: var(--primary-hover-color);
  text-decoration: none;
  background-color: transparent;
}
.filter_box,
#column-left .block_box,
#column-right .block_box,
.category-list #selectMe-desk,
.account-content .list-unstyled,
.sidebar .list-unstyled {
  margin: 0;
  padding: 30px 20px;
  background: var(--secondary-color);
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}
#column-left .box .container,
#column-right .box .container,
#column-left .box .container-fluid,
#column-right .box .container-fluid {
  width: auto;
  padding: 0;
}
.category-list .list-group-item,
.sidebar li,
.account-content .list-group a {
  border: none;
  border-radius: 0;
  margin: 0;
  background: transparent;
  padding: 8px 0;
  text-transform: none;
  color: var(--primary-color);
  font-size: 14px;
}
.category-list .list-group-item {
  padding: 8px 13px 8px 0;
}
.category-list .child-categories .list-group-item {
  padding: 10px 20px 10px 0;
}
.category-list ul#selectMe-desk > li:first-child > a.list-group-item,
.account-content .list-group ul > li:first-child a,
.sidebar li:first-child {
  padding-top: 0;
  margin-top: -4px;
}
.category-list ul.list-unstyled.parent > li:last-child > a.list-group-item,
.account-content .list-group ul > li:last-child a,
.sidebar li:last-child {
  padding-bottom: 0;
}
.sidebar li a {
  color: var(--primary-color);
}
.category-list .has-more-category .toggled {
  position: absolute;
  right: 0;
  padding: 0 5px;
}
.child-categories {
  display: none;
}
.main-item.active .toggled > .fa-plus:before,
.toggle-menu.active > .fa-plus:before {
  content: "\f068";
}

/*sidebar category*/
.box-category .list-unstyled.childs_1 {
  display: none;
}
.parent li .toggled span {
  color: var(--primary-color);
  font-size: 12px;
  position: absolute;
  right: 5px;
  padding: 0 5px;
}
.parent .active .open-menu::after {
  color: var(--primary-color);
  content: "\f068";
  font-family: "FontAwesome";
  font-size: 14px;
}
.parent .open-menu::after {
  color: var(--primary-color);
  content: "\f067";
  font-family: "FontAwesome";
  font-size: 14px;
}

/*REFINE SEARCH*/
.list-group-filter {
  margin-bottom: 27px;
}
.panel-default.filter {
  border: none;
}
.panel {
  border-radius: 0;
  box-shadow: none;
}
.filter_box .list-group a {
  color: var(--primary-color);
  text-transform: none;
  margin: 0 0 13px;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
}
.filter_box .checkbox,
.filter_box .checkbox .radio {
  margin: 10px 0;
  color: var(--secondary-light-color);
}
.filter_box .list-group-item {
  border: none;
  padding: 0px;
  background: transparent;
}
.filter_box .list-group-items + .list-group-items {
  margin: 28px 0 0;
}
.checkbox label,
.radio label {
  text-transform: none;
}
#filter .panel-footer {
  text-align: left;
  padding: 0;
  background: transparent;
}

/*banner*/
#column-left .swiper-slide img,
#column-right .swiper-slide img {
  width: 100%;
}

/*INFORMATION*/
.sidebar li a:hover,
.account-content .list-group a:hover {
  color: var(--primary-hover-color);
}
.account-content .list-group {
  margin: 0;
}

/*product*/
#column-left .col:last-child .product-layout .product-thumb,
#column-right .col:last-child .product-layout .product-thumb {
  margin: 0;
}
#column-left .mt-banner .text-center,
#column-right .mt-banner .text-center {
  padding: 0;
}
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
  padding: 0;
}
#column-left .product-thumb,
#column-right .product-thumb {
  padding: 0;
  border: none;
  box-shadow: none;
}
#column-left .product-thumb > .image,
#column-right .product-thumb > .image {
  float: left;
  width: 75px;
  margin-right: 15px;
  border: none;
}
#column-left .product-thumb > .thumb-description,
#column-right .product-thumb > .thumb-description {
  float: left;
  width: 62%;
  border: none;
  margin: 0;
}
#column-left .sale-text,
#column-right .sale-text,
#column-left .product-thumb .button-group,
#column-right .product-thumb .button-group,
#column-left .product-thumb .product-btn-quantity,
#column-right .product-thumb .product-btn-quantity {
  display: none;
}
#column-left .product-thumb .caption,
#column-right .product-thumb .caption {
  padding: 3px 0 0;
  text-align: left;
}
#column-left .product-thumb .price,
#column-right .product-thumb .price {
  margin: 12px 0 0 0;
  display: block;
}
#column-left .product-thumb .rating,
#column-right .product-thumb .rating {
  float: unset;
  display: block;
  margin: 0 0 9px;
}
@media (min-width: 992px) {
  /*#common-home #column-left, 
    #common-home #column-right {
        width: 16.929%;
        padding: 0;
        position: sticky;
        top: 0;
    }
    #common-home #content {
        width: 83.071%;
        padding: 0;
    }*/
  /*#common-home > .row {
        margin: 0;
    }
    #common-home #content > div {
        padding: 0 50px;
    }
    #common-home #content > div.slideshow,
    #common-home #content > div.carousel.brand {
        padding: 0;
    }*/
}
@media (min-width: 1200px) {
  #column-left,
  #column-right {
    width: 20%;
  }
  #content.col-sm-9 {
    width: 80%;
  }
}
@media (min-width: 1441px) and (max-width: 1800px) {
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 57%;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 50%;
  }
  #column-left .product-thumb > .image,
  #column-right .product-thumb > .image {
    width: 70px;
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #column-left .product-thumb > .image,
  #column-right .product-thumb > .image {
    width: 60px;
    margin-right: 5px;
  }
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 62%;
  }
  #column-left .product-thumb .price,
  #column-right .product-thumb .price {
    margin: 6px 0 0 0;
    font-size: 14px;
  }
  #column-left .product-thumb .rating,
  #column-right .product-thumb .rating {
    margin: 0 0 5px;
  }
}
@media (max-width: 1800px) {
  #column-left .product-thumb .caption,
  #column-right .product-thumb .caption {
    padding: 0;
  }
}
@media only screen and (max-width: 1440px) {
  .filter_box,
  #column-left .block_box,
  #column-right .block_box,
  .category-list #selectMe-desk,
  .account-content .list-unstyled,
  .sidebar .list-unstyled {
    padding: 20px 15px;
  }
  #column-left .product-thumb .product-title a,
  #column-right .product-thumb .product-title a {
    font-size: 14px;
  }
  #column-left .product-thumb .price,
  #column-right .product-thumb .price {
    margin: 7px 0 0;
  }
  #column-left .product-thumb .price-new,
  #column-right .product-thumb .price-new {
    font-size: 14px;
  }
  #column-left .product-thumb .price-old,
  #column-right .product-thumb .price-old {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .list-group-filter {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 58.5%;
  }
  .toggled .toggle-open {
    position: absolute;
    right: 15px;
  }
  footer .toggled .toggle-open {
    right: 0;
  }
  #selectMe-desk {
    display: none;
  }
  #column-left .swiper-viewport,
  #column-right .swiper-viewport {
    display: none;
  }
  #column-left > div:first-child,
  #column-right > div:first-child {
    margin: 20px 0 0;
  }
  #column-left > div,
  #column-right > div {
    margin: 15px 0 0;
  }
  #column-left h3,
  #column-right h3,
  #column-left .box-content h3,
  #column-right .box-content h3 {
    padding: 10px 15px;
  }
  #column-left .product-thumb .price,
  #column-right .product-thumb .price {
    margin: 7px 0 0;
  }
  #column-left .mt-banner,
  #column-right .mt-banner {
    display: none;
  }
}
/*----------------------------------------------*/
/* category page */
/*----------------------------------------------*/
.cat-banner {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin: 0 0 14px;
}
.cat-description p {
  margin: 0 0 25px;
  color: var(--secondary-light-color);
  line-height: 24px;
}
.cat_info {
  margin: 0 0 30px;
  background: var(--secondary-color);
  padding: 10px 20px;
  box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);
}
.refine-search {
  margin: 0 0 20px;
}
#content .refine-text {
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: 500;
}
.cat-name {
  padding: 0;
  margin: 0;
  text-transform: none;
}
.cat-name li {
  display: inline-block;
}
.cat-name li a {
  border-radius: 0;
  background: var(--background-color);
  color: var(--secondary-light-color);
  padding: 6px 20px;
  display: inline-block;
  margin: 0 6px 10px 0;
  border: none;
}
.cat-name li a:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
#button-list.btn-default i,
#button-grid.btn-default i {
  font-size: 16px;
  display: block;
}
#button-list.btn-default,
#button-grid.btn-default {
  height: 40px;
  width: 40px;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
  color: var(--primary-color);
  background: var(--background-color);
}
#button-grid.btn-default.active,
#button-list.btn-default.active,
#button-grid.btn-default:hover,
#button-list.btn-default:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}
#button-grid.btn-default {
  margin: 0 10px 0 0;
}
.com-total span {
  text-decoration: none;
  outline: none;
  padding: 8px 0;
  border: none;
  text-transform: none;
  font-weight: 400;
  color: var(--primary-color);
}
#compare-total i {
  display: none;
}
.com-total .btn-link {
  text-decoration: none;
}
.cat-pagination-right {
  text-align: right;
}
.cat-pagination-right > div {
  display: inline-block;
  vertical-align: top;
}
.cat-pagination-right .cat-show {
  padding-left: 20px;
}
.text-right.show-text {
  padding: 0px 5px;
}
.text-right.show-text,
.text-right.show-select {
  width: auto;
  float: left;
}
.text_limit,
.text_sort {
  margin: 8px 0;
}
.select-filter-sort,
.select-filter-show {
  position: relative;
}
.cat-pagination-right .form-control {
  padding: 4px 25px 4px 10px;
  margin: 0;
  height: 36px;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--border-color);
}
select.form-control,
.form-control {
  appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.form-control:focus {
  border-color: var(--border-color);
}
.select-filter-show::after,
.select-filter-sort::after {
  font-family: "fontawesome";
  content: "\f0dd";
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 4px;
  pointer-events: none;
  color: var(--primary-color);
}
.product-grid .description,
.product-grid .pro_description {
  display: none;
}
.product-list .product-thumb,
.product-list .thumb-description {
  overflow: hidden;
}
.rating .fa-stack,
#tab-review .fa-stack {
  font-size: 12px;
  width: 1.3em;
}
.rating .fa-star-o,
#tab-review .fa-star-o {
  color: #ffb503;
}
.rating .fa-star,
.rating .fa-star + .fa-star-o,
#tab-review .fa-star + .fa-star-o,
#tab-review .fa-star {
  color: #ffb503;
}
#product-category #product-list > * {
  width: 25%;
}
#product-category #product-list.product-list > * {
  width: 100%;
}
@media (max-width: 1199px) {
  #product-category #product-list > * {
    width: 33.33333333%;
  }
  #product-category #product-list.product-list > * {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .product-list .product-thumb .image {
    float: left;
    margin-right: 30px;
  }
}
@media (max-width: 1199px) {
  .cat_info {
    padding: 10px 15px;
  }
  .cat-pagination-right .cat-show {
    padding-left: 10px;
  }
  .cat_info > div > div {
    padding: 0 5px;
  }
  .cat_info .row {
    margin: 0 -5px;
  }
  #button-list.btn-default,
  #button-grid.btn-default {
    height: 36px;
    width: 36px;
  }
}
@media (max-width: 991px) {
  .refine-search {
    margin: 0 0 10px;
  }
  .cat-name li a {
    font-size: 13px;
    padding: 3px 10px;
  }
  .cat_info {
    margin: 0 0 20px;
  }
  .cat-description p {
    margin: 0 0 15px;
  }
  .product-list .product-thumb .image {
    margin-right: 20px;
  }
  #list-view.btn-default,
  #grid-view.btn-default {
    height: 34px;
    width: 34px;
  }
  #list-view.btn-default i,
  #grid-view.btn-default i {
    font-size: 14px;
  }
  #product-category #product-list > * {
    padding: 0 5px;
  }
  #product-category .cat-info .row {
    margin-right: 0;
    margin-left: 0;
  }
  .product-category .col-sm-12 {
    padding: 0 5px;
  }
  #display-control .d-flex.justify-content-lg-end {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cat-pagination-right {
    text-align: left;
    margin: 5px 0 0;
    padding: 0 10px;
  }
  .product-list .product-thumb .image {
    display: inline-block;
    margin: 0;
  }
}
@media (max-width: 680px) {
  .com-total {
    padding: 0;
  }
}
@media(max-width: 575px) {
  #product-category #product-list > * {
    width: 50%;
  }
  #product-category #product-list.product-list > * {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cat-pagination-right > * {
    display: inline-block;
    vertical-align: top;
    width: 100%;
  }
  .cat-pagination-right .cat-show {
    padding: 5px 0 0 0;
  }
  .cat-pagination-right {
    display: block;
    text-align: left;
  }
  #compare-total.btn.btn-link {
    font-size: 13px;
  }
}
@media(max-width: 375px) {
  #product-category #product-list > * {
    width: 100%;
  }
}
/*----------------------------------------------*/
/* pagination css */
/*----------------------------------------------*/
.pro_pagination {
  clear: both;
  background: var(--secondary-color);
  padding: 10px 5px;
  box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 0;
}

.pro_pagination > div > div {
  line-height: 36px;
  float: left;
  font-size: 14px;
  color: var(--primary-color);
}
.pro_pagination .text-left {
  line-height: 36px;
  float: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.pagination {
  padding: 0;
  margin: 0;
  vertical-align: top;
}
.pro_pagination > div:last-child {
  padding: 0 15px;
}
.pro_pagination .pagination > li.active > span,
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
  cursor: pointer;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-color: var(--primary-color);
}

.pagination > li > a,
.pagination > li > span {
  color: var(--primary-color);
  background: var(--background-color);
  float: left;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  border: none;
  font-size: 16px;
  box-shadow: none;
  font-weight: 400;
}
.page-item:not(:first-child) .page-link {
  margin-left: 5px;
}
.pagination > li > a:last-child {
  border-radius: 0;
}

.pagination > li + li > a,
.pagination > li + li > span {
  margin: 0 0 0 5px;
}

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

@media (max-width: 991px) {
  .pro_pagination .text-left,
  .pro_pagination .text-right {
    width: 100%;
    float: unset;
    text-align: center;
    clear: both;
  }
  .pro_pagination .text-right {
    padding-top: 10px;
  }
  .pro_pagination .text-left {
    line-height: 20px;
  }
  .pagination > li > a,
  .pagination > li > span {
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
  }
  .pro_pagination > div > div {
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .pagination {
    justify-content: center;
  }
  .pro_pagination .col-sm-6.text-end {
    text-align: center !important;
  }
  .pro_pagination .col-sm-6.text-start {
    padding-bottom: 10px;
  }
}

/*----------------------------------------------*/
/* product page */
/*----------------------------------------------*/
.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
a.thumbnail {
  padding: 0;
  border: none;
  margin: 0;
}
.product-img .thumbnails {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pro-image img {
  width: 100%;
}
#product-info .product-additional {
  text-align: center;
  position: relative;
  max-width: 80px;
  width: 100%;
  float: left;
}
#product-info .pro-image {
  margin: 0 0 0 30px;
  float: left;
}
#additional-carousel .image-additional {
  margin: 20px 0;
}
#additional-carousel .image-additional img {
  margin: auto;
  padding: 0;
}
#quick-carousel.owl-carousel.owl-theme .owl-nav {
  position: unset;
  margin: 0;
}
.quickview-container .pro-image {
  margin-bottom: 20px;
}
#quick-carousel .image-additional a {
  margin: 0 10px;
  display: block;
}
#quick-carousel {
  max-width: 440px;
  margin: auto;
  padding: 0 20px;
}
#product .btn-group .btn-light {
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin: 0 5px 0 0;
  padding: 0;
  border: none;
  text-align: center;
  border-radius: 0;
  color: var(--primary-color);
  background: var(--background-color);
  float: left;
}
#product .btn-group .btn-light i {
  font-size: 18px;
  display: block;
}
#product .btn-group .btn-light:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
}
.pro_wish:hover,
.pro_comper:hover {
  color: var(--primary-hover-color);
}
#additional-carousel .owl-nav div,
#quick-carousel .owl-nav div {
  top: 0;
  bottom: 0;
  margin: auto;
  height: 30px;
  border: none;
  width: 30px;
  background: transparent;
  position: absolute;
  box-shadow: none;
}
#quick-carousel .owl-nav .owl-prev,
#additional-carousel .owl-nav .owl-prev {
  left: 0;
  right: auto;
}
#quick-carousel .owl-nav .owl-next,
#additional-carousel .owl-nav .owl-next {
  right: 0;
  left: auto;
}
#additional-carousel .owl-nav div::before,
#additional-carousel .owl-nav div::after,
#quick-carousel .owl-nav div::before,
#quick-carousel .owl-nav div::after {
  display: none;
}
#additional-carousel.owl-carousel.owl-theme .owl-nav .fa,
#quick-carousel.owl-carousel.owl-theme .owl-nav .fa {
  font-size: 22px;
  line-height: 30px;
}
.right_info h1,
.quick-product-right h1 {
  font-size: 24px;
  text-transform: none;
  margin: 0 0 15px;
  font-weight: 500;
  color: var(--secondary-light-color);
}
.rating .product-rating {
  float: left;
  margin-right: 20px;
}
.rating .write-review {
  padding: 0 0 0 15px;
  margin: 0 0 0 15px;
  position: relative;
}
.pro-deatil .rating .write-review:before {
  content: "";
  background: var(--border-color);
  height: 14px;
  width: 1px;
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}
.rating .fa-pencil {
  padding-right: 5px;
  color: var(--primary-color);
}
.right_info .disc {
  color: var(--primary-color);
  margin-right: 5px;
  line-height: 27px;
  min-width: 125px;
  display: inline-block;
}
.right_info .disc1 {
  color: var(--secondary-light-color);
  margin-right: 10px;
}
.price-new {
  font-size: 24px;
  display: inline-block;
  font-weight: 500;
}
.price-old {
  color: var(--secondary-light-color);
  text-decoration: line-through;
  font-size: 16px;
}
.right_info .tax {
  margin: 7px 0 5px;
  color: var(--secondary-light-color);
}
.product-options h3 {
  font-size: 18px;
  text-transform: none;
  font-weight: 500;
}
.right_info .control-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-transform: none;
  margin-bottom: 0;
}
.right_info .checkbox,
.right_info .radio {
  margin-top: 0;
}
.product-options .alert {
  margin-top: 15px;
}
.product-btn-quantity .minus-plus {
  margin: 0 20px 0 0;
  display: inline-flex;
}
#product .minus-plus > * {
  text-align: center;
  border: none;
  background: var(--background-color);
  padding: 0 5px;
  font-size: 13px;
  width: 37px;
  height: 38px;
}
.product-btn-quantity #input-quantity {
  width: 44px;
}
.right_info .control-label.qty {
  margin: 0 0 10px 0;
  display: block;
}
#button-cart,
#quick-cart {
  margin: 0 10px 0 0;
}
button.pro_wish,
button.pro_comper {
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin: 0 5px 0 0;
  padding: 0;
  border: none;
  text-align: center;
  color: var(--secondary-light-color);
  background: var(--background-color);
  float: left;
}
button.pro_wish:hover,
button.pro_comper:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}
#product .product-btn-quantity {
  float: left;
}
.tab-content #tab-description {
  font-size: 15px;
}
#product-info #tab-description ul:last-child,
#product-info #tab-specification .table {
  margin: 0;
  border-color: var(--border-color);
}
.propage-tab h2 {
  font-size: 18px;
  margin: 25px 0 15px 0;
}
.propage-tab {
  margin-top: 80px;
  background: var(--secondary-color);
}
.propage-tab li.nav-item {
  position: relative;
}
#form-review.form-horizontal .control-label {
  padding: 0;
}
.quickview-wrapper-inner.container {
  max-width: none;
}
#button-upload222 {
  margin-left: 10px;
}
.related-products-block {
  clear: both;
  padding-top: 80px;
}
.propage-tab {
  margin-top: 80px;
}
.propage-tab .nav-item + .nav-item {
  margin-left: 50px;
}
#product-info .nav-tabs .nav-link.active,
#product-info .nav-tabs .nav-item.show .nav-link,
#product-info .nav-tabs > li > a:hover {
  color: var(--primary-color);
}
#product-info .nav-tabs > li > a {
  margin: 0;
  border: none;
  font-size: 16px;
  padding: 15px 0;
  font-weight: 500;
  border-radius: 0;
  line-height: 20px;
  background: transparent;
  text-transform: uppercase;
  color: var(--secondary-light-color);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
#product-info .nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  background: transparent;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
#product-info .nav-tabs > li > a::after {
  content: "";
  background: var(--primary-hover-color);
  width: 0;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  position: absolute;
  bottom: -1px;
  transition: all 350ms ease-out 0s;
  -moz-transition: all 350ms ease-out 0s;
  -o-transition: all 350ms ease-out 0s;
  -webkit-transition: all 350ms ease-out 0s;
}
#product-info .nav-tabs > li > a:hover::after,
#product-info .nav-tabs > li > a.active:after {
  width: 100%;
}
#product-info .tab-content {
  padding: 28px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--secondary-light-color);
}
#product-info .tab-content strong {
  font-weight: 500;
  text-transform: none;
}
@media (max-width: 1440px) {
  .related-products-block {
    padding-top: 50px;
  }
  .propage-tab {
    margin-top: 50px;
  }
}
@media (max-width: 1199px) {
  #additional-carousel {
    max-width: 410px;
  }
  .rating .product-rating {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .propage-tab {
    margin-top: 40px;
  }
  .related-products-block {
    padding-top: 40px;
  }
  .right_info h1,
  .quick-product-right h1 {
    margin: 0 0 8px;
    font-size: 18px;
  }
  .price-new {
    font-size: 20px;
  }
  .related-products-block {
    padding-top: 40px;
  }
  .propage-tab {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  #additional-carousel {
    max-width: 290px;
  }
  .related-products-block {
    padding-top: 25px;
  }
  .propage-tab {
    margin-top: 20px;
  }
  #product-info .pro-image {
    margin: 0 0 0 15px;
  }
  #product .product-btn-quantity {
    float: unset;
    margin-bottom: 15px;
  }
  #product-info .tab-content {
    padding: 15px;
  }
  .related-products-block {
    padding-top: 30px;
  }
  .propage-tab {
    margin-top: 30px;
  }
  #product-info .nav-tabs > li > a {
    font-size: 14px;
    padding: 10px 0;
  }
  .propage-tab .nav-item + .nav-item {
    margin-left: 35px;
  }
  .product-thumb .price-new {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .product-img {
    width: 480px;
    margin: 0 auto;
  }
  .right_info {
    margin-top: 20px;
  }
  .related-products-block {
    padding-top: 20px;
  }
  .propage-tab {
    margin-top: 20px;
  }
  #product .btn-group .btn-light {
    height: 36px;
    width: 36px;
    line-height: 36px;
  }
  #product .btn-group .btn-light i {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  #product-info #content {
    width: 100%;
  }
  #product-info .nav-tabs > li > a {
    font-size: 12px;
    padding: 7px 0;
  }
  .propage-tab .nav-item + .nav-item {
    margin-left: 20px;
  }
}
@media (max-width: 540px) {
  .product-img {
    width: auto;
  }
}
@media (max-width: 320px) {
  .product-list .product-thumb .button-group {
    margin-top: 5px;
  }
}

/*----------------------------------------------*/
/* Contact Us */
/*----------------------------------------------*/
.information-contact .contact-left .title i.fa {
  background: var(--background-color);
  font-size: 16px;
  height: 34px;
  line-height: 34px;
  margin: 0px 10px 10px 0;
  text-align: center;
  width: 34px;
}
.information-contact .contact-left .title {
  font-size: 16px;
  color: var(--primary-color);
}
.content-address {
  margin-bottom: 15px;
}
.contact-left .btn-info i {
  font-size: 16px;
}
.content-details {
  padding: 15px;
  border: 1px solid var(--border-color);
  color: var(--secondary-light-color);
  border-radius: 0;
}
.contact-left .content-details > div {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}
.contact-left .content-details .comment-info {
  border: none;
  padding: 0;
  margin: 0px;
}
#information-contact .panel-body .col-sm-3 {
  float: left;
  width: 100%;
  padding: 15px;
  line-height: 25px;
}
.contact-title {
  margin: 0 0 20px 0;
  font-size: 20px;
}
.location-info .btn-info {
  padding: 8px 20px;
}
@media (max-width: 991px) {
  .contact-left {
    margin-bottom: 30px;
  }
}

/*----------------------------------------------*/
/* checkout-cart */
/*----------------------------------------------*/
#accordion .panel-heading h4.panel-title a i.fa-caret-down {
  float: right;
}
#accordion.panel-group .panel {
  border-radius: 4px;
}
#accordion.panel-group .panel + .panel {
  margin-top: 15px;
}
#accordion.panel-group .panel-default > .panel-heading {
  background: var(--background-color);
  padding: 10px 15px;
  color: var(--primary-color);
  border: none;
}
#accordion.panel-group .panel-default > .panel-heading .panel-title {
  line-height: 20px;
  text-transform: uppercase;
}
.checkout .input-group .form-control {
  z-index: 1;
  background: transparent;
}

/*----------------------------------------------*/
/* other page */
/*----------------------------------------------*/
#button-search {
  margin: 0 0 20px 0;
}
h3.search-criteria {
  font-size: 17px;
}
#product-search #input-search {
  margin-bottom: 10px;
}

/* manufacture page */
.manufacturer-list {
  margin-bottom: 20px;
  padding: 5px;
  border: 1px solid var(--border-color);
}
.manufacturer-heading {
  background: var(--background-color);
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 5px 8px;
}
.manufacturer-content {
  padding: 8px;
}

/*account*/
#account-account .account-list-content {
  margin-bottom: 20px;
}
#account-account .account-list-content:last-child {
  margin-bottom: 0;
}
.well {
  padding: 19px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  background: transparent;
}
.well h2 {
  margin: 0px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}
.well strong {
  font-weight: 500;
}
.account-list-heading {
  font-size: 18px;
  margin: 0 0 10px;
}
.account-list-content li a {
  padding: 3px 0;
  display: inline-block;
}

/*sitemap*/
#information-sitemap #content .row li > a {
  padding: 5px 0;
  display: block;
}

/*compare*/
#product-compare .table {
  display: inherit;
  border-style: solid none none none;
  overflow: auto;
}
.product-compare .btn-primary {
  margin: 5px 0 5px;
}
#product-compare .table > tbody + tbody {
  border-top: 1px solid #ddd;
}

/*checkout*/
#checkout-cart .img-thumbnail {
  border: none;
  padding: 0;
}

/*about us*/
#information-information #content .about-us {
  padding: 20px 5px;
  background: var(--background-color);
}
.about-us img {
  width: 100%;
}
.about-us h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}
.about-us h4 {
  font-size: 16px;
  color: var(--primary-hover-color);
  margin: 15px 0;
  font-weight: 400;
}
.about-us p {
  line-height: 26px;
  color: var(--secondary-light-color);
}
@media (max-width: 767px) {
  .cms-block {
    margin-bottom: 15px;
  }
}

/*----------------------------------------------*/
/* common css */
/*----------------------------------------------*/
.mt-80 {
  margin-top: 80px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.img-thumbnail {
  border: none;
}
#content {
  min-height: 600px;
}
.common-home #content {
  min-height: unset;
}
#content > h3 {
  margin-top: 0;
  font-size: 18px;
}
.relative {
  position: relative;
}
.m-auto {
  margin: 0px auto;
}
.m-image-auto {
  width: auto !important;
}
ul.list-unstyled {
  margin: 0;
}
.owl-carousel {
  touch-action: manipulation;
}
.dropdown-menu {
  background: var(--secondary-color);
  z-index: 1001;
  margin: 0;
  border-radius: 0;
  border-top: 2px solid var(--primary-hover-color);
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
}
#sResultContainer .dropdown-menu.show {
  box-shadow: none;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background-color: transparent;
}
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 10px 15px;
  vertical-align: middle;
  border-color: var(--border-color);
}
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border-bottom-width: 1px;
}
.table > tbody > tr > td {
  border-top: none;
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 15px;
  font-size: 15px;
  line-height: 20px;
  color: var(--secondary-light-color);
  background: var(--secondary-color);
  background-color: var(--secondary-color);
  background-image: none;
  border: 1px solid var(--border-color);
  box-shadow: none;
  border-radius: 0;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^="quantity"] {
  min-width: 60px;
}
.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container-fluid {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    width: 970px;
  }
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .container-fluid {
    width: 1170px;
  }
}
@media (min-width: 1341px) and (max-width: 1440px) {
  .container-fluid {
    width: 1300px;
  }
}
@media (min-width: 1441px) and (max-width: 1540px) {
  .container-fluid {
    width: 1400px;
  }
}
@media (min-width: 1541px) and (max-width: 1640px) {
  .container-fluid {
    width: 1500px;
  }
}
@media (min-width: 1641px) and (max-width: 1740px) {
  .container-fluid {
    width: 1600px;
  }
}
@media (min-width: 1741px) and (max-width: 1900px) {
  .container-fluid {
    width: 1700px;
  }
}
@media (min-width: 1901px) {
  .container-fluid {
    width: 1850px;
  }
}
@media (min-width: 1751px) {
  .container {
    max-width: 1560px;
  }
}
@media (min-width: 1441px) and (max-width: 1800px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1200px) {
  .col-lg-2:nth-child(6n + 1),
  .col-lg-3:nth-child(4n + 1),
  .col-lg-4:nth-child(3n + 1),
  .col-lg-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .col-md-2:nth-child(6n + 1),
  .col-md-3:nth-child(4n + 1),
  .col-md-4:nth-child(3n + 1),
  .col-md-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 601px) and (max-width: 991px) {
  .col-sm-2:nth-child(6n + 1),
  .col-sm-3:nth-child(4n + 1),
  .col-sm-4:nth-child(3n + 1),
  .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (max-width: 600px) and (min-width: 320px) {
  .block_box :not(.owl-carousel) .col-xs-4,
  .product-layout.product-grid.col-xs-4 {
    width: 50%;
  }
  .col-xs-2:nth-child(6n + 1),
  .col-xs-3:nth-child(4n + 1),
  .col-xs-4:nth-child(2n + 1),
  .col-xs-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media screen and (max-width: 319px) {
  .block_box :not(.owl-carousel) .col-xs-4,
  .product-layout.product-grid.col-xs-4 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  /* Mahardhi */
  #content,
  #column-left,
  #column-right {
    width: 100%;
  }

  #content{
    min-height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 1px solid #ddd;
  }
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-left: 0;
  }
}
/* mahardhi */
@media (max-width: 1199px) {
  .checkout-cart .input-group.btn-block .form-control {
    margin-bottom: 5px;
  }
}
@media (max-width: 1440px) {
  .mt-80 {
    margin-top: 50px;
  }
  .mt-60 {
    margin-top: 50px;
  }
  .mt-50 {
    margin-top: 40px;
  }
  .mt-20 {
    margin-top: 10px;
  }
}
@media (max-width: 991px) {
  .mt-80 {
    margin-top: 30px;
  }
  .mt-60 {
    margin-top: 40px;
  }
  .mt-50 {
    margin-top: 30px;
  }
  .mt-40 {
    margin-top: 20px;
  }
  .mt-30 {
    margin-top: 15px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  #cart .dropdown-menu li p .btn,
  .btn-default,
  .btn-primary,
  .btn-info,
  .btn-danger {
    font-size: 14px;
    padding: 7px 20px;
  }
}
@media (max-width: 767px) {
  #column-left,
  #column-right {
    display: block !important;
  }
  .mt-80 {
    margin-top: 20px;
  }
  .mt-60 {
    margin-top: 20px;
  }
  .mt-50 {
    margin-top: 20px;
  }
  .mt-20 {
    margin-top: 0;
  }
  #cart .dropdown-menu li p .btn,
  .btn-default,
  .btn-primary,
  .btn-info,
  .btn-danger {
    padding: 6px 15px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .mt-80 {
    margin-top: 20px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mt-50 {
    margin-top: 20px;
  }
  .mt-20 {
    margin-top: 0;
  }
}
