@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* --- Typography override: use Source Sans Pro site-wide --- */
html, body {
  font-family: 'Source Sans Pro', sans-serif;
}
input, button, select, textarea {
  font-family: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}
/* --- end typography override --- */

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.common-home {
  background: var(--secondary-color);
}
/*----------------------------------------------*/
/* 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;
  overflow: hidden;
  right: 60px;
  bottom: 60px;
  z-index: 99;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  text-align: center;
  box-shadow: none;
  color: var(--primary-color);
  background: var(--secondary-color);
  border: none;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  box-shadow: 0 1px 10px rgb(0 0 0 / 11%);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.11);
  -webkit-box-shadow: 0 1px 10px rgb(0 0 0 / 11%);
}
.scrollToTop i {
  font-size: 18px;
  line-height: 40px;
}
.scrollToTop:hover,
.scrollToTop:focus {
  color: var(--secondary-color);
  background: var(--primary-color);
}
@media (max-width: 991px) {
  .scrollToTop {
    height: 34px;
    width: 34px;
    right: 15px;
    bottom: 40px;
  }
  .scrollToTop i {
    line-height: 34px;
  }
}

/*----------------------------------------------*/
/* 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: 65vh;
  left: 0;
  margin: 0 auto;
  overflow: auto;
  padding: 20px 5px;
  position: fixed;
  right: 0;
  top: 17%;
  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;
}
.mfp-bg {
  z-index: 99999 !important;
}

.mfp-wrap {
    z-index: 100000 !important;
}
.mfp-content img {
  margin: auto;
  display: block;
}
@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 {
  position: relative;
}
.newsletter-popup-image {
  background: url(../image/newsletter-popup.png) no-repeat center center;
  /* background-size: cover; */
  height: 390px;
  /* width: 40.3%; */
}
.newsletter-content {
  position: relative;
  z-index: 1;
  width: auto;
  text-align: center;
  padding: 50px;
  display: flex;
  align-items: center;
  background: var(--secondary-color);
}
.newsletter-content span {
  display: block;
}
#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: auto;
  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 {
  max-width: 800px;
  margin: 20px auto;
}
.newsletter-popup .modal-content {
  background: transparent;
  box-shadow: none;
}
.newsletter-popup-img {
  width: 50%;
  height: 400px;
  background: url(../image/newsletter-popup.jpg) no-repeat center center;
  background-size: cover;
}
.newsletter-btn-close.close {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 1;
  z-index: 1;
  padding: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 10px;
  font-weight: 400;
  text-shadow: none;
  background: transparent;
  color: var(--primary-color);
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.newsletter-btn-close.close:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  background: transparent;
  color: var(--primary-color);
}
.newsletter-popup .modal-body {
  padding: 0;
  z-index: 1;
}
.newsletter-content-innner .newsletter_usr_popup_email::placeholder {
  color: var(--primary-color);
}
.newsletter-content-innner {
  width: 50%;
  text-align: center;
  padding: 15px 0 15px 30px;
}
.newsletter-content-innner h3 {
  position: relative;
  font-size: 34px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
  color: var(--primary-color);
}
.newsletter-content p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 30px 0 0;
  text-transform: none;
  color: var(--primary-color);
}
.newsletter-popup-text {
  font-weight: 600;
  color: var(--primary-hover-color);
  text-transform: uppercase;
  margin: 0;
  font-size: 28px;
  line-height: 32px;
}
.frmnewsletterpopup {
  display: block;
  margin: 30px auto 0;
}
.newsletter-content-innner .newsletter_usr_popup_email {
  text-align: center;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  padding: 5px 15px;
  height: 50px;
  border: none;
  background: transparent;
  border-bottom: 2px solid var(--primary-color);
  width: 100%;
}
.frmnewsletterpopup button {
  font-size: 14px;
  line-height: 20px;
  padding: 15px 30px;
  margin: 20px 0 0;
  width: 100%;
  display: block;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-color);
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.frmnewsletterpopup button:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.newsletter-popup-welcome {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 30px 0 0;
  text-transform: uppercase;
  color: var(--primary-color);
}
.newsletter-popup-welcome span {
  border-bottom: 1px solid var(--primary-hover-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-bottom input[type="checkbox"] {
  margin: 0;
}
.newsletter-content-innner .alert {
  margin: 15px 0 10px;
  display: table;
  position: relative;
  width: 100%;
}
.newsletter-content-bottom label {
  margin: 0;
}
@media (min-width: 768px) {
  .newsletter-popup .modal-dialog {
    width: 100%;
  }
}
@media(max-width: 1440px) {
  .frmnewsletterpopup {
    margin: 40px auto 0;
  }
}
@media(max-width: 1199px) {
  .frmnewsletterpopup {
    width: 100%;
  }
}
@media(max-width: 991px) {
  .frmnewsletterpopup button {
    font-size: 14px;
    padding: 10px 20px;
    margin: 15px 0 0;
  }
  .newsletter-popup .modal-dialog {
    width: 700px;
  }
  .newsletter-content p {
    font-size: 14px;
  }
  .newsletter-content {
    padding: 30px;
  }
  .newsletter-content-innner .newsletter_usr_popup_email {
    height: 40px;
  }
  .newsletter-content-innner h3 {
    font-size: 28px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .newsletter-popup .modal-dialog {
    width: 90%;
    max-width: unset;
  }
  .newsletter-content-innner h3 {
    font-size: 24px;
    line-height: 24px;
    margin: 25px 0 15px;
  }
  .newsletter-popup-text {
    font-size: 20px;
    line-height: 26px;
  }
  .frmnewsletterpopup {
    margin: 20px 0 0;
  }
  .newsletter-logo img {
    width: 120px;
  }
}

@media(max-width: 680px) and (min-width: 576px) {
  .newsletter-popup .modal-dialog {
    width: 80%;
  }
}
@media(max-width: 680px) {
  .newsletter-popup-img {
    display: none;
  }
  .newsletter-content-innner {
    width: 100%;
    padding: 0;
  }
  .newsletter-content p {
    margin: 20px 0 0;
  }
  .newsletter-content-innner h3 {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .newsletter-content-bottom label {
    font-size: 14px;
  }
  .newsletter-content-innner h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .newsletter-content p {
    margin: 30px 0 0;
  }
  .frmnewsletterpopup {
    margin: 15px 0 0;
  }
}
@media (max-width: 480px) {
  .newsletter-popup-text {
    font-size: 16px;
    margin-top: 10px;
  }
  .newsletter-popup-welcome {
    font-size: 12px;
  }
  .newsletter-btn-close.close {
    font-size: 12px;
  }
  .newsletter-logo img {
    width: 100px;
  }
  .newsletter-content p {
    margin: 20px 0 0;
  }
  .newsletter-content-innner h3 {
    font-size: 18px;
  }
  .newsletter-content {
    padding: 20px 30px;
  }
}
@media(max-width: 425px) {
  .newsletter-content {
    padding: 20px;
  }
}
/*----------------------------------------------*/
/* Start top */
/*----------------------------------------------*/
#top {
  position: relative;
  padding: 15px 0;
  background: var(--primary-hover-color);
}
#top .welcome-text {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--secondary-color);
}
#menu {
  padding: 0;
}
#menu div {
  /* padding: 3px 0; */
}
#menu .nav > li {
  padding: 0;
  position: relative;
  display: block;
}
#menu .nav > li > a {
  padding: 8px 15px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  line-height: 20px;
  position: relative;
  background: transparent;
  text-transform: none;
  color: var(--primary-color);
}
#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 .nav > li:hover > a {
  background: transparent;
  color: var(--primary-color);
}

#menu .nav > li + li {
  margin: 0 0 0 4px;
}
#menu .column-1 .dropdown-inner li.dropdown-submenu > .fa {
  position: absolute;
  right: 10px;
  top: 0;
  padding: 8px 0;
}
/*top-left*/
.contact a,
.email-dec a {
  display: flex;
  align-items: center;
  color: var(--primary-hover-color);
}
.header-right .nav i.fa-angle-right {
  display: none;
}
.header-top-right {
  display: flex;
  align-items: center;
}
.header-top-right .email .icon-mail1 {
  font-size: 32px;
}
.contact-dec,
.email-dec,
.wishlist-dec {
  padding-left: 10px;
  color: var(--primary-hover-color);
}
.wishlist-dec span {
  color: var(--secondary-light-color);
  text-transform: none;
}
.header-top-right > div:not(:last-child):after {
  content: "";
  position: absolute;
  background: var(--border-color);
  width: 1px;
  height: 50px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-top-right > div:not(:last-child) {
  margin-right: 31px;
  padding: 30px 28px 30px 0;
}

/*top-right*/
.top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.language-box .lang,
.currency-dropdown {
  padding: 0;
}
.language-box li,
.currency-dropdown li {
  display: block;
}
.top-right > div {
  position: relative;
}
.top-right > div + div {
  margin: 0 0 0 26px;
}
#form-currency .dropdown-toggle,
#form-language .dropdown-toggle {
  width: 100%;
  padding: 5px 0;
  margin: 2px 0;
  border-radius: 0;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-color);
}
.top-right > div .dropdown-toggle:hover,
#header_ac > a:hover,
#cart > .btn:hover,
.btn_search .search-btn:hover {
  color: var(--primary-hover-color);
}
.top-right > div .dropdown-toggle .code {
  text-transform: uppercase;
  margin-right: 7px;
}
.top-right ul.dropdown-menu {
  padding: 5px 10px;
  right: 0;
  left: auto;
  border: none;
  border-top: 2px solid var(--primary-hover-color);
}
.top-right ul.dropdown-menu button {
  padding: 5px 0;
  text-align: left;
  border: none;
  color: var(--secondary-light-color);
}
.top-right ul.dropdown-menu button:hover,
#header_ac .dropdown-menu > li > a:hover {
  color: var(--primary-color);
}
.dropdown-menu {
  background: var(--secondary-color);
  z-index: 1001;
  margin: 0;
  border-radius: 0;
  border: none;
  border-top: 2px solid var(--primary-hover-color);
  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);
}
#header_ac .dropdown-menu {
  padding: 7px 15px;
  width: 200px;
}
/*----------------------------------------------*/
/* 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: 11;
  border: none;
  background: var(--secondary-color);
  -webkit-box-shadow: 0 1px 3px rgb(0 0 0 / 11%);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  box-shadow: 0 1px 3px rgb(0 0 0 / 11%);
}
.header-fixed .header-top-inner {
  padding: 20px 0;
}
.header-fixed .header-bottom {
  display: none;
}

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

/*header*/
.header-main,
.common-home header {
  position: relative;
}
.common-home header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.15;
  background: var(--primary-hover-color);
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-bottom-right {
  display: flex;
  justify-content: space-between;
}
/*logo*/
.header-center {
  text-align: center;
}
.top-inner {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#logo img {
  image-rendering: -webkit-optimize-contrast;
}
/*header search*/
.btn_search {
  position: relative;
  cursor: pointer;
}
.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;
}

.top-right-inner .btn_search .dropdown-menu {
  left: auto !important;
  right: 0 !important;
  width: 280px;
  padding: 0;
}
#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 {
  width: 65%;
  display: flex;
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
#mahardhiSearch > *,
#search > * {
  display: block;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  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 4px;
  border: none;
  font-size: 20px;
  line-height: unset;
  background: transparent;
  color: var(--primary-color);
}
#mahardhiSearch .btn-search button i,
#search .input-group-btn button i {
  display: block;
}
#sResultContainer {
  position: absolute;
  top: 100%;
}
.ui-autocomplete.ui-menu .ui-menu-item {
  list-style-image: none;
  padding: 1px;
}
.ui-autocomplete.ui-menu .ui-menu-item a {
  padding: 3px 1em 3px 0.4em;
}
.ui-autocomplete.ui-menu .ui-menu-item a.ui-state-active {
  background-color: #f9f9f9;
  border-color: #f9f9f9;
  color: var(--primary-color);
}
.ui-autocomplete .mahardhi-search {
  position: relative;
  display: table;
  width: 100%;
  padding: 5px 0px;
}
.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;
  font-size: 12px;
}
.ui-autocomplete .mahardhi-search .price-new {
  font-size: 14px;
  font-weight: 500;
}
.ui-autocomplete.ui-widget-content {
  background: var(--secondary-color) !important;
  border: 1px solid var(--border-color) !important;
}
#mahardhiSearch select.form-control.input-lg {
  border: none;
  padding: 6px 0;
  line-height: 1.42857143;
  width: auto;
  width: 110px;
  background: transparent;
  color: var(--primary-color);
}
#mahardhiSearch .input-lg::placeholder {
  color: var(--seconddary-light-color);
}
.search-down {
  position: absolute;
  z-index: 11;
  right: 0;
  top: 100%;
  left: auto;
  width: 280px;
  display: none;
  background: var(--secondary-color);
  box-shadow: 0 1px 5px rgb(0 0 0 / 11%);
  -moz-box-shadow: 0 1px 5px rgba(0,0,0,0.11);
  -webkit-box-shadow: 0 1px 5px rgb(0 0 0 / 11%);
}
.search-btn i {
  font-size: 20px;
  display: block;
}
.header-search .icon-close {
  right: 10px;
}
.btn_search .search-btn.active i::before {
  content: "\e906";
}
/*header right*/
#header_ac a > i {
  font-size: 20px;
  display: block;
}
#header_ac > a {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.header-links > div + div {
  margin: 0 0 0 27px;
}
.header-left a {
  image-rendering: -webkit-optimize-contrast;
}

.contact,
.email,
.wishlist {
  display: flex;
  align-items: center;
  position: relative;
  color: var(--primary-hover-color);
}
.contact .icon-phone-2,
.email .icon-mail1,
.header-top-right .wishlist .icon-heart {
  font-size: 28px;
  color: var(--primary-hover-color);
}
.contact span,
.email span {
  display: block;
  color: var(--secondary-light-color);
}
#header_ac > a span {
  margin: 0 5px 0 0;
}
#wishlist-total i {
  font-size: 20px;
  display: block;
}
#wishlist-total {
  display: flex;
  padding: 0;
  color: var(--primary-hover-color);
}
/*account*/
#header_ac .dropdown-menu li > a {
  padding: 5px 0;
  font-size: 14px;
  color: var(--secondary-light-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);
  background: transparent;
}
#header_ac .dropdown-menu li > a:active {
  background: transparent;
}
/*cart*/
.header_cart {
  position: relative;
}
#cart .cart-text {
  display: block;
  color: var(--secondary-light-color);
}
#cart .cart-items {
  font-size: 12px;
  padding: 0;
  min-width: 16px;
  min-height: 16px;
  line-height: 16px;
  position: absolute;
  text-align: center;
  top: 10px;
  left: 12px;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
#cart {
  position: relative;
  vertical-align: top;
}
#cart > .btn {
  background: transparent;
  padding: 10px 0;
  border: none;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  box-shadow: none;
}
.cart-item {
  display: block;
  position: absolute;
  left: 17px;
  top: 8px;
  font-size: 0;
  padding: 2.5px;
  line-height: 1;
  border-radius: 50%;
  background: var(--primary-color);
}
#cart #cart-total .cart-item[data-value="0"] {
  display: none;
}
#cart .cart-price {
  font-size: 16px;
  font-weight: 500;
}
#cart > .btn:before {
  content: "\e95e";
  font-family: "Mahardhi-Fonts";
  font-size: 22px;
  margin-right: 4px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#cart .dropdown-menu {
  margin: 0;
  padding: 0px;
  width: 300px;
  overflow: hidden;
  border-radius: 0;
  border-top: 2px solid var(--primary-hover-color);
}
#cart .dropdown-menu li {
  float: none;
  padding: 0px 20px;
}
#cart .dropdown-menu li p {
  margin: 0;
  font-size: 14px;
  color: var(--secondary-light-color);
}
#cart .dropdown-menu li p .btn {
  padding: 6.5px 20px;
  font-size: 14px;
}
.product-cart-empty {
  padding: 20px 0;
}
.header_cart i.fa.fa-shopping-cart {
  display: none;
}
#cart .dropdown-menu .cart-content-product {
  max-height: 241px;
  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;
}
.header_cart .table-bordered tr {
  border: none;
}
#cart .dropdown-menu li td,
td.cart-total-price {
  font-size: 14px;
  font-weight: 500;
}
#cart .img-thumbnail {
  padding: 0;
  border-radius: 0;
  max-width: unset;
}
#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;
}
@media (min-width: 992px) {
  header {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 11;
    background: transparent;
  }
  header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
    width: 100%;
    background: var(--primary-color);
    opacity: 0.1;
  }
  .common-home header::after {
    display: none;
  }
  .hidden-lg-up {
    display: none !important;
  }
  .header-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-hover-color);
    padding: 0;
  }
  .text_sm_center {
    display: none;
  }
  #menu .nav > li.active > a::before,
  #menu .nav > li > a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    opacity: 1;
    z-index: -1;
    background-color: var(--primary-hover-color);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    border-radius: 25px;
    opacity: 0.5;
  }
  #menu .nav > li.active:hover > a::before,
  #menu .nav > li:hover > a::before {
    width: 100%;
    opacity: 1;
  }
  #menu .nav > li > a::before {
    width: 0;
  }
}
@media (max-width: 1440px) {
  .header-right.header-links {
    padding: 0;
  }
  .header-top-right > div:not(:last-child) {
    padding: 20px 28px 20px 0;
  }
  .top-inner {
    padding: 20px 0;
  }
  #menu .nav > li > a {
    padding: 8px 10px;
  }
}
@media (max-width: 1199px) {
  .top-inner {
    padding: 15px 0;
  }
  .header-top-right > div:not(:last-child) {
    padding: 20px 20px 20px 0;
    margin-right: 25px;
  }
  .contact .icon-phone-2,
  .header-top-right .email .icon-mail1,
  .header-top-right .wishlist .icon-heart {
    font-size: 22px;
  }
  .contact-dec,
  .email-dec,
  .wishlist-dec {
    padding-left: 8px;
  }
  #menu .nav > li {
    padding: 15px 0;
  }
  #logo img {
    width: 150px;
  }
  .top-right > div + div {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 991px) {
  header {
    position: relative;
  }
  .top-right > div .dropdown-toggle {
    padding: 10px 0;
  }
  #top .top-left {
    padding: 10px 0;
  }
  #top {
    padding: 10px 0;
  }
  #top .welcome-text {
    font-size: 14px;
  }
  #cart .cart-text, 
  #cart .cart-price {
    display: none;
  }
  .top-right {
    justify-content: center;
  }
  .header-top {
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
    -webkit-box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
    -ms-box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
    -o-box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
  }
  .header-right .email,
  .header-right .contact {
    display: none;
  }
  .header-top-right > div:not(:last-child) {
    margin-right: 15px;
    padding: 20px 15px 20px 0;
  }
  .contact .icon-phone-2,
  .email .icon-mail1,
  .header-top-right .wishlist .icon-heart {
    font-size: 20px;
  }
  .header-top-right > div:not(:last-child):after {
    height: 30px;
  }
  .header-top-right #menu {
    position: relative;
    margin-right: 15px;
    padding: 18px 15px 18px 0;
  }
  .header-top-right #menu:after {
    content: "";
    position: absolute;
    height: 30px;
    width: 1px;
    right: 0;
    background: var(--border-color);
  }
  .dropdown-menu {
    border: none;
  }
  #header_ac .dropdown-menu {
    padding: 5px 10px;
  }
  .header-bottom-inner {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-bottom-inner > div {
    padding: 0 5px;
  }
  .header-bottom .row {
    margin: 0 -5px;
  }
  .header-top-right #mahardhiSearch {
    padding: 0;
  }
  #mahardhiSearch .btn-search button,
  #search .input-group-btn button {
    padding: 12px;
    font-size: 16px;
  }
  #mahardhiSearch .input-lg,
  #search .input-lg {
    height: 34px;
    font-size: 14px;
  }
  .btn_search .search-downs {
    display: none;
  }
  .btn_search .search-btn {
    display: block;
    padding: 12px 0;
  }
  .header-links > div + div {
    margin: 0 0 0 15px;
  }
  #header_ac > a {
    display: block;
  }
  #cart > .btn {
    padding: 0;
  }
  #mahardhiSearch,
  #search {
    width: 100%;
    max-width: unset;
  }
  .hidden-md-down {
    display: none !important;
  }
  #cart > .btn:before {
    margin: 0 5px 0 0;
  }
  #cart .dropdown-menu li p .btn {
    font-size: 12px;
    padding: 8px 20px;
  }
  .wishlist-dec span,
  .contact-dec,
  .email-dec,
  .wishlist-dec {
    display: none;
  }
  #cart .cart-items {
    top: -5px;
  }
  .header-bottom {
    display: none;
  }
  .header-bottom-left {
    display: none;
  }
  .header-top-right #menu .menu-close {
    padding: 10px 15px;
    margin-right: 0;
  }
  #top .top-left {
    display: none;
  }
  #menu {
    margin: 0 15px 0 0;
  }
  #cart > .btn:before {
    font-size: 20px;
  }
  .search-btn i,
  #header_ac a > i {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .top-right > div + div {
    margin: 0 0 0 15px;
  }
  .product-cart-empty  {
    padding: 15px 0;
  }
  #mahardhiSearch .btn-search button,
  #search .input-group-btn button {
    padding: 10px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .top-inner {
    padding: 10px 0;
  }
  .top-right > div .dropdown-toggle .code {
    display: none;
  }
  #logo img {
    max-width: 120px;
  }
  #cart .dropdown-menu {
    width: 270px;
  }
  #cart > .btn:before {
    font-size: 18px;
  }
  .search-btn i,
  #header_ac a > i {
    font-size: 16px;
  }
}
@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) {
  #mahardhiSearch select.form-control.input-lg {
    max-width: 70px;
  }
  #top .welcome-text {
    font-size: 12px;
  }
  .top-right span.drop-text:after,
  .top-right > div .dropdown-toggle .code {
    display: none;
  }
  .top-right ul.dropdown-menu.currency-dropdown {
    left: 0;
    right: auto;
  }
  .top-right > div .dropdown-toggle {
    font-size: 13px;
  }
  .header-top-right > div:not(:last-child) {
    margin-right: 10px;
    padding: 17px 10px 17px 0;
  }
  .contact .icon-phone-2,
  .email .icon-mail1,
  .header-top-right .wishlist .icon-heart {
    font-size: 16px;
  }
  .btn_search a:before {
    display: none;
  }
  #cart .cart-items {
    font-size: 10px;
    min-width: 12px;
    min-height: 12px;
    line-height: 12px;
  }
  #cart .cart-items {
    left: 10px;
  }
  #logo img {
    max-width: 100px;
  }
  .header-top-right #menu {
    padding: 13px 10px 13px 0;
    margin-right: 10px;
  }
}

/*----------------------------------------------*/
/* Categoty Menu */
/*----------------------------------------------*/
ul.category-list > li {
  width: 100%;
}
.main-category.left-column-main-category {
  position: relative;
}
.main-category .vertical-category {
  position: relative;
}
#column-left .main-category .page-title h3,
#column-right .main-category .page-title h3 {
  margin-bottom: 0;
}
.vertical-category-wrapper {
  padding: 0;
  box-shadow: none;
  z-index: 11;
  background: var(--secondary-color);
  width: -moz-available;
}
.vertical-category ul li a {
  color: var(--primary-color);
  padding: 5px 15px;
  font-size: 14px;
  text-transform: none;
  position: relative;
  display: block;
}
.category-list {
  width: 100%;
  padding: 0;
}
.vertical-category ul li a.more-menu {
  cursor: pointer;
  position: relative;
}
.vertical-category .dropdown-wrapper ul li + li > a {
  border: none;
}
.category-list > li .icon-menu {
  margin-right: 5px;
  display: inline-block;
}
.category-list > li .icon-menu img {
  border-radius: 25px;
  border: 1px solid var(--border-color);
}
.vertical-category ul li a.more-menu:after {
  content: "\f107";
  font-family: fontawesome;
  font-size: 14px;
  position: absolute;
  right: 0;
}
.vertical-category ul li a.more-menu.active:after {
  content: "\f106";
}
.box-categories {
  font-size: 14px;
  background: transparent;
  font-weight: 500;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  border-radius: 0;
  color: var(--primary-color);
}
.main-category-social {
  position: absolute;
  z-index: 11;
}
#menu .dropdown-inner .dropdown-submenu,
#navCategory .dropdown-inner .dropdown-submenu {
  position: relative;
}
@media (min-width: 992px) {
  #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,
  #menu .column-1 .dropdown-inner .dropdown.menulist:hover ul.childs_1 {
    display: block;
    top: 100%;
    visibility: visible;
    opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    visibility: visible;
    filter: alpha(opacity=100);
  }
  #menu .dropdown-inner a {
    display: block;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    min-width: 160px;
    text-align: left;
    color: var(--secondary-light-color);
  }
  #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: 14px;
    font-weight: 400;
    padding-bottom: 7px;
    margin: 0 10px 3px;
  }
  #menu .dropdown-inner ul,
  #navCategory .dropdown-inner > ul {
    display: table-cell;
  }
  #menu ul.nav .item-column ul.list-unstyled li {
    margin: 0 10px;
  }
  #menu ul.nav .item-column ul.list-unstyled li a {
    padding-left: 0;
    padding-right: 0;
  }
  #menu .dropdown-menu,
  #menu .hiden_menu.menu_drop .dropdown-inner,
  #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
    position: absolute;
    top: 100px;
    border: none;
    padding: 8px 0;
    visibility: hidden;
    border-radius: 0;
    background: var(--secondary-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);
    margin: 0!important;
  }
  #menu .dropdown-menu,
  #menu .hiden_menu.menu_drop .dropdown-inner,
  #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
    display: block;
    top: 50px;
    left: 0px;
    min-width: 160px;
    z-index: 999;
    text-align: left;
    right: auto;
    padding: 8px 0;
}
  ul.category-list li .dropdown-menu {
    display: block;
    left: 100%;
    right: auto;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    border: none;
    border-bottom: 3px solid var(--primary-hover-color);
    background: var(--secondary-color);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 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;
  }
  #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu,
  #menu .hiden_menu.menu_drop .dropdown.menulist  .dropdown-inner {
    left: 100%;
    top: 100%;
  }
  #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {
    top: 0px;
  }
  #menu .hiden_menu.menu_drop .dropdown.menulist .dropdown-menu {
    padding: 0;
  }
  ul.category-list li:hover > .dropdown-menu {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
  .category-list .dropdown-inner a {
    min-width: 200px;
    display: block;
    clear: both;
    font-size: 14px;
  }
  .vertical-category
    .dropdown-wrapper
    .megamenu-dropdown
    > li
    .dropdown-menu
    li
    a {
    padding: 5px 10px;
  }
  ul.category-list li.dropdown > a:after {
    content: "\f105";
    font-family: fontawesome;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    padding: 10px;
    align-items: center;
  }
  .vertical-category > ul > li.dropdown > a:after {
    padding: 10px 20px;
  }
  ul.category-list li.dropdown:hover > a:after {
    color: var(--primary-hover-color);
  }
  .dropdown-wrapper .megamenu-dropdown .dropdown-menu {
    position: unset;
    display: block;
    min-width: inherit;
    border: none;
    left: inherit;
    right: inherit;
    box-shadow: none;
    float: none;
    padding: 5px 0;
    visibility: unset;
    transition: 0s;
    opacity: 1;
  }
  ul.category-list li.dropdown .dropdown-wrapper a:after {
    display: none;
  }
  .vertical-category .dropdown-wrapper .megamenu-dropdown > li {
    display: table-cell;
    /*width: 33.33%;*/
    float: left;
  }
  .vertical-category .dropdown-wrapper ul.megamenu-dropdown {
    width: 680px;
    margin: 0 10px;
    display: table;
  }
  .vertical-category .dropdown-wrapper ul.megamenu-dropdown.column2 {
    width: 500px;
  }
  .vertical-category .dropdown-wrapper .megamenu-dropdown.column2 > li {
    /*float: unset;*/
  }
  .vertical-category .dropdown-wrapper .megamenu-dropdown > li > a {
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 400;
    padding-bottom: 10px;
    margin: 0 9px;
    padding-left: 0;
    padding-right: 0;
  }
  .category-list .single-dropdown .dropdown-inner .dropdown li:first-child a {
    border-top: none;
  }
  .vertical-category > ul > li > a {
    padding: 11px 20px 11px 0;
    position: unset;
  }
  .vertical-category > ul > li:hover > a,
  .vertical-category ul > li:hover > a {
    color: var(--primary-hover-color);
  }
}
@media (max-width: 1440px) and (min-width: 1200px) {
  .vertical-category > ul > li > a {
    padding: 8px 20px 8px 0;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .main-category.left-column-main-category {
    padding: 0;
  }
  .vertical-category > ul > li > a {
    padding: 5px 20px 5px 0;
  }
}
@media (max-width: 1199px) {
  .box-categories {
    font-size: 12px;
    padding: 10px 20px;
  }
}
@media (max-width: 991px) {
  .vertical-category > ul > li + li > a {
    border: none;
  }
  .vertical-category ul li a.more-menu:after {
    right: 15px;
  }
  .home #column-left {
    display: none !important;
  }
  #topCategoryList .dropdown.menulist .dropdown-menu {
    position: relative;
    float: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: none;
    padding: 0;
  }
  #topCategoryList .dropdown.menulist .dropdown-inner {
    display: block;
    padding: 0 10px;
  }
  #topCategoryList .dropdown-submenu > .fa {
    display: none;
  }
  #menu #topCategoryList .dropdown-inner .dropdown-submenu ul.sub-menu {
    display: none;
    position: unset;
    border: none;
    padding: 0 10px;
  }
}

/*----------------------------------------------*/
/* vertical menu */
/*----------------------------------------------*/

.header-bottom .row {
  margin: 0;
}
.box-categories {
  color: var(--secondary-color);
  position: relative;
  padding: 0;
  vertical-align: middle;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 0;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
}
.box-categories span {
  padding: 0 15px;
}
.header-bottom-left {
  width: 22.964%;
  padding: 0 3px 0 5px;
}
.box-categories .fa-angle-down {
  position: absolute;
  right: 12px;
  font-size: 22px;
}
.box-categories .icon-menu-1 {
  padding: 16px;
  font-size: 18px;
  background: var(--primary-hover-color);
}
.vertical-category-wrapper {
  position: absolute;
  padding: 0;
  width: 100%;
  display: none;
  z-index: 2;
  background: var(--secondary-color);
  box-shadow: 0 0 10px 1px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
#column-left .vertical-category-wrapper,
#column-right .vertical-category-wrapper {
  position: relative;
  display: block;
}
#column-left .page-title,
#column-right .page-title {
  margin: 0;
}
ul.category-list > li {
  width: 100%;
  color: var(--secondary-light-color);
}
.main-category.left-column-main-category {
  position: relative;
}
#column-left .main-category .page-title h3,
#column-right .main-category .page-title h3 {
  margin-bottom: 0;
}
.vertical-category ul li a {
  color: var(--secondary-light-color);
  padding: 10px 0;
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
  position: relative;
}
.vertical-category ul li a.more-menu {
  cursor: pointer;
}
.vertical-category .dropdown-wrapper ul li + li > a {
  border: none;
}
#common-home .vertical-category-wrapper {
  position: absolute;
  z-index: 11;
}
.category-list > li .icon-menu {
  margin-right: 5px;
  display: inline-block;
}
.category-list > li .icon-menu img {
  border-radius: 25px;
  border: 1px solid var(--border-color);
}
.vertical-category ul li a.more-menu:before {
  content: "\f067";
  font-family: fontawesome;
  font-size: 14px;
  position: relative;
  margin-right: 10px;
}
.vertical-category ul li a.more-menu.active:before {
  content: "\f068";
}
@media (max-width: 1199px) {
  .box-categories .icon-menu-1 {
    padding: 13px;
    font-size: 16px;
  }
  .box-categories .fa-angle-down {
    font-size: 16px;
  }
  .box-categories span {
    padding: 0 10px;
  }
  .btn_search a:before {
    right: 60px;
    bottom: 10px;
  }
}
@media (min-width: 992px) {
  .category-list {
    padding: 0 20px;
    margin: 0;
    width: 100%;
  }
  .vertical-category ul.category-list > li + li > a {
    border-top: 1px solid var(--border-color);
  }
  ul.category-list li .dropdown-menu {
    display: block;
    left: 107%;
    right: auto;
    margin: 0;
    padding: 0 20px;
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    border: none;
    border-top: 3px solid var(--primary-hover-color);
    background: var(--secondary-color);
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
    border-radius: 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;
  }
  ul.category-list li:hover > .dropdown-menu {
    top: 0;
    visibility: visible;
    opacity: 1;
  }
  .category-list .dropdown-inner a {
    min-width: 160px;
    display: block;
    clear: both;
    font-size: 14px;
  }
  .category-list .single-dropdown .dropdown-inner li + li a {
    border-top: 1px solid var(--border-color);
  }
  .vertical-category
    .dropdown-wrapper
    .megamenu-dropdown
    > li
    .dropdown-menu
    li
    a {
    padding: 5px 10px;
  }
  .vertical-category > ul > li > a {
    padding: 12px 0;
  }
  ul.category-list li.dropdown > a:after {
    content: "\f105";
    font-family: fontawesome;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    padding: 15px 0;
    align-items: center;
    color: var(--secondary-light-color);
  }
  ul.category-list > li.dropdown:hover > a:after {
    color: var(--primary-hover-color);
  }
  .dropdown-wrapper .megamenu-dropdown .dropdown-menu {
    position: unset;
    display: block;
    min-width: inherit;
    border: none;
    left: inherit;
    right: inherit;
    box-shadow: none;
    float: none;
    padding: 5px 0;
    visibility: unset;
    transition: 0s;
    opacity: 1;
  }
  ul.category-list li.dropdown .dropdown-wrapper a:after {
    display: none;
  }
  .vertical-category .dropdown-wrapper .megamenu-dropdown > li {
    display: table-cell;
    width: 33.33%;
    float: left;
  }
  .vertical-category .dropdown-wrapper ul.megamenu-dropdown {
    width: 600px;
    margin: 10px 0;
    display: table;
  }
  .vertical-category .dropdown-wrapper ul.megamenu-dropdown.column2 {
    width: 500px;
  }
  .vertical-category .dropdown-wrapper .megamenu-dropdown.column2 > li {
    float: unset;
  }
  .vertical-category .dropdown-wrapper .megamenu-dropdown > li > a {
    border-bottom: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 400;
    padding-bottom: 10px;
    margin: 0 9px;
    padding-left: 0;
    padding-right: 0;
  }
  .category-list .single-dropdown .dropdown-inner .dropdown li:first-child a {
    border-top: none;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .vertical-category > ul > li > a {
    padding: 10px 0;
  }
}
@media (max-width: 1199px) {
  .box-categories {
    font-size: 14px;
  }
  .box-categories:before {
    margin-right: 5px;
  }
  .vertical-category > ul > li > a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  #menu .nav > li + li {
    margin-left: 0;
    padding: 0;
  }
  #menu .nav > li {
    padding: 0;
  }
  .header-top-right .menu-close {
    margin-right: 0;
  }
  #menu .btn-navbar {
    display: block;
    font-size: 20px;
    z-index: 2;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    color: var(--primary-color);
  }
  #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: .5s;
    -o-transition-duration: .5s;
    -webkit-transition-duration: .5s;
    transition-duration: .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 .btn-navbar.open-menu:after {
    content: "";
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    transition-delay: 0.1s;
    transition: opacity 0.2s cubic-bezier(0,0,.3,1);
    background: rgb(0, 0, 0, 0.5);

  }
  .menu-close {
    background: var(--primary-hover-color);
    color: var(--secondary-color);
    padding: 12px 15px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
  }
  #menu .nav > li > a, 
  #menu #topCategoryList .dropdown-inner a {
    color: var(--secondary-light-color);
    font-weight: 400;
    padding: 6px 30px 6px 15px;
    display: block;
    font-size: 14px;
    text-transform: none;
  }
  #menu #topCategoryList ul {
    float: none;
    display: block;
    text-align: left;
    background: transparent;
  }
  #menu #topCategoryList > ul {
    margin: 10px 0 0;
  }
  #topCategoryList li .toggle-menu {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 0;
    padding: 10px 0;
    color: var(--secondary-light-color);
  }
  #menu .nav > li > a:hover {
    color: var(--primary-hover-color);
  }
  #menu .btn-navbar span {
    position: absolute;
    width: 20px;
    height: 2px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    background: var(--primary-hover-color);
  }
  #menu .btn-navbar span:before,
  #menu .btn-navbar span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    background: var(--primary-hover-color);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
  }
  #menu .btn-navbar span:before {
    top: -5px;
  }
  #menu .btn-navbar span:after {
    top: 5px;
  }
  #menu .vertical-category {
    display: none;
  }
}
@media(max-width: 481px) {
  #topCategoryList {
    max-width: 280px;
  }
  #menu .btn-navbar span {
    width: 16px;
  }
}
/*----------------------------------------------*/
/* slider start */
/*----------------------------------------------*/
.common-home .swiper-viewport {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  background: transparent;
}
#common-home .mt-banner {
  margin: 100px 0 0;
}
#common-home .mt-banner:first-child {
  margin: 0;
  padding: 0;
}
.mt-banner:first-child .page-title {
  display: none;
}
#common-home .mt-banner:first-child .slick-dots li {
  width: 100%;
}
#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;
  bottom: 0;
  margin: auto;
}
.mt-banner:first-child .text-center {
  padding: 0;
  box-shadow: none;
}
.mt-banner .text-center {
  display: block;
}
.mt-banner:first-child .row {
  padding: 0;
}
.mt-banner:first-child .row > * {
  padding: 0;
}
.mt-banner .row {
  margin: 0;
}
.mt-banner:first-child .slick-track {
  padding: 0;
}
#common-home .mt-banner .slick-slider > * {
  margin: 0 -15px;
}
#common-home .mt-banner:first-child .slick-slider > * {
  margin: 0;
}
#common-home .mt-banner:first-child .slick-theme .slick-arrow {
  display: none !important;
}
.mt-banner .slick-theme .slick-arrow.slick-prev {
  left: 10px !important;
  right: auto;
}
.mt-banner .slick-theme .slick-arrow.slick-next {
  right: 10px !important;
  left: auto;
}
#common-home .mt-banner .slick-slider {
  margin: auto;
  padding: 0 15px;
}
@media (min-width: 576px) {
  #common-home .mt-banner .slick-slider {
    width: 540px;
  }
}
@media (min-width: 768px) {
  #common-home .mt-banner .slick-slider {
    width: 720px;
  }
}
@media(min-width: 992px) {
  #common-home .mt-banner .slick-slider {
    width: 960px;
  }
}
@media (min-width: 1199px) {
  #common-home .mt-banner .slick-slider {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  #common-home .mt-banner .slick-slider {
    width: 1200px;
  }
}
@media (min-width: 1441px) {
  #common-home .mt-banner .slick-slider {
    width: 1380px;
  }
}
@media(min-width: 1801px) {
  #common-home .mt-banner .slick-slider {
    width: 1560px;
  }
}
@media (max-width: 1440px) {
  #common-home .mt-banner {
    margin: 70px 0 0;
  }
}
@media (max-width: 1199px) {
  #common-home .mt-banner {
    margin: 60px 0 0;
  }
}
@media (max-width: 991px) {
  #common-home .mt-banner {
    margin: 50px 0 0;
  }
  .mt-banner:first-child .col-12 {
    padding: 0;
  }
  #common-home .mt-banner .slick-slider > * {
    margin: 0;
  }
}
@media(max-width: 767px) {
  #common-home .mt-banner {
    margin: 30px 0 0;
  }
  #common-home .mt-banner .slick-slider > * {
    margin: 0 -10px;
  }
}
@media(max-width: 575px) {
  #common-home .mt-banner .slick-slider {
    padding: 0 15px;
  }
}
/*----------------------------------------------*/
/* Featured Category */
/*----------------------------------------------*/
.category-featured {
  position: relative;
}
.category-thumb {
  position: relative;
  overflow: hidden;
}
.category-thumb .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  margin: auto;
  padding: 80px 60px;
  height: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  text-align: center;
  background: var(--background-color);
  width: 57.335%;
}
.category-thumb .category-btn {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  padding: 7.5px 26px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.category-thumb .category-btn a {
  color: var(--secondary-color);
}
.category-thumb .cat-title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  margin: 0 0 30px;
  text-transform: none;
}
.category-thumb .number-product {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 15px;
  font-style: italic;
  text-transform: uppercase;
  color: var(--primary-hover-color);
}
.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);
}
.featured-block .cat-title a {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary-hover-color);
}
.cat-title h4 {
  margin: 0 0 7px;
}
.category-image .image {
  position: relative;
  overflow: hidden;
  width: 81.082%;
}
.category-thumb .image-space {
  position: relative;
  width: 18.918%;
}
@media(max-width: 1800px) {
  .category-thumb .caption {
    padding: 60px;
  }
}
@media(max-width: 1440px) {
  .category-thumb .caption {
    padding: 40px;
  }
  .category-thumb .cat-title {
    font-size: 30px;
    line-height: 40px;
  }
  .category-thumb .number-product {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .category-thumb .cat-title {
    font-size: 24px;
    line-height: 34px;
    margin: 0 0 20px;
  }
}

@media(max-width: 991px) {
  .category-thumb .number-product {
    font-size: 12px;
    line-height: 16px;
    margin: 0 0 10px;
  }
  .category-thumb .caption {
    padding: 20px 25px;
  }
  .category-thumb .cat-title {
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 10px;
  }
  .category-thumb .category-btn {
    font-size: 12px;
    padding: 7px 20px;
  }
}
@media(max-width: 767px) {
  .category-thumb .number-product {
    font-size: 10px;
    line-height: 14px;
    margin: 0 0 7px;
  }
  .category-thumb .cat-title {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
  }
}
@media (max-width: 480px) {
  .category-thumb .caption {
    padding: 15px 5px;
  }
  .category-thumb .cat-title {
    font-size: 16px;
  }
}


@media (max-width: 767px) and (min-width: 540px) {
  .category-thumb .cat-title {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 20px;
  }
  .category-thumb .number-product {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 15px;
  }
  .category-thumb .caption {
    padding: 60px;
  }
}
/*----------------------------------------------*/
/* banners */
/*----------------------------------------------*/
.banners,
.html1 .inner1 {
  position: relative;
  overflow: hidden;
}
.banners img {
  width: 100%;
}
.banners .inner1 > a::after {
  border: 30px solid var(--secondary-color);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  position: absolute;
  top: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transition: all 0.5s ease-in-out 0s;
  -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;
  width: 100%;
}
.banners:hover .inner1 > a::after {
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -o-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
}
.banners .inner1 > a::before {
  content: "";
  position: absolute;
  border: 70px solid rgba(255, 255, 255, 0);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}
.banners:hover .inner1 > a::before {
  border: 0px solid rgba(255, 255, 255, 0.7);
}
/*html1*/
.html1 .promo-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary-color);
}
.html1 .promo-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  margin: 23px 0 19px;
  text-transform: none;
  color: var(--primary-color);
}
.html1 .promo-desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 24px;
  text-transform: none;
  color: var(--secondary-light-color);
}
.inner2 .button {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 10px 30px;
  border: none;
  border-radius: 30px !important;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-color);
}
.html1 .swiper-slide {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.html1 .swiper-scrollbar-drag,
.box.all-products .swiper-scrollbar-drag,
.box.mblog .swiper-scrollbar-drag {
  height: 10px;
  width: 10px !important;
  top: -4px;
  border-radius: 50%;
  background: var(--primary-hover-color);
}
.html1 .swiper-horizontal> .swiper-scrollbar,
.box.all-products .swiper-scrollbar,
.box.mblog .swiper-horizontal> .swiper-scrollbar {
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  margin-right: auto;
  opacity: 1 !important;
  position: relative !important;
  margin: 25px 0 2px;
  background: var(--secondary-color);
}
.box.mblog .swiper-horizontal> .swiper-scrollbar,
.html1 .swiper-horizontal> .swiper-scrollbar {
  background: var(--background-color);
}
/* html2 */
.html2 .banners {
  overflow: visible;
  padding: 0 85px 30px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.html2 .banners::-webkit-scrollbar {
  display: none;
}
.html2 .banners img {
  transform: unset;
  transition: unset;
  max-width: unset;
  width: unset;
}
.html2 .promo-title h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  color: var(--primary-color);
}
.html2 .promo-text-box a {
  position: absolute;
}
.html2 .promo-text-box a:nth-child(1) {
  left: 54px;
  top: 155px;
}
.html2 .promo-text-box a:nth-child(2) {
  left: 460px;
  top: 158px;
}
.html2 .promo-text-box a:nth-child(3) {
  left: 768px;
  bottom: 9px;
}
.html2 .promo-text-box a:nth-child(4) {
  left: 1017px;
  top: 102px;
}
.html2 .promo-text-box a:nth-child(5) {
  left: 1323px;
  bottom: -2px;
}
/* html3 */
.html3-inner > div {
  padding: 0;
}
.html3-inner {
  display: flex;
  align-items: center;
}
.banner6.banners {
  background: url(../image/service-bg.jpg) no-repeat center center;
  background-size: cover;
}
.html3 .inner-text {
  width: 74%;
  margin: auto;
  padding: 9.56% 0;
}
.html3 .promo-text-box .promo-title {
  position: relative;
  font-size: 48px;
  line-height: 62px;
  font-weight: 500;
  margin: 0;
  padding: 0 0 0 35px;
  text-transform: none;
  color: var(--secondary-color);
}
.html3 .promo-title span {
  font-weight: 800;
}
.html3 .promo-text-box .promo-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 108px;
  background: var(--secondary-color);
}
.html3 .promo-text-box .promo-desc {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-transform: none;
  color: var(--secondary-color);
  margin: 40px 0 80px 35px;
}
.service-item.col-xs-6:nth-child(2n + 1) {
  clear: left;
}
.html1 [class*='col-lg'] {
  padding: 0 15px;
  float: left;
  position: relative;
}
@media (min-width: 1641px) {
  .html1 .inner1.col-lg-7 {
    width: 60.1%;
  }
  .html1 .inner1.col-lg-5 {
    width: 39.9%;
  }
}
@media (max-width: 1800px) {
  .html3 .inner-text {
    width: 85%;
    padding: 8% 0;
  }
}
@media(min-width: 1200px) {
  .html1 .swiper-slide .banners {
    display: flex;
    align-items: center;
    padding: 50px 0;
  }
  .html1 .inner1 {
    width: 62.9%;
  }
  .html1 .inner2 {
    position: relative;
    width: 37%;
    padding: 60px;
  }
  .html1 .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: auto;
    width: 66.62%;
    margin: auto;
    background: #faf4e2;
    z-index: -1;
  }
}
@media (max-width: 1640px) {
  .html1 img.text-img {
    top: 0;
  }
  .html2 .inner2 {
    left: 30px;
  }
  .html2 .promo-title {
    font-size: 30px;
    line-height: 40px;
  }
  .html3 .inner-text {
    width: 90%;
    padding: 4.5% 0;
  }
  .html3 .promo-text-box .promo-title {
    font-size: 40px;
    line-height: 50px;
  }
  .html3 .promo-text-box .promo-desc {
    font-size: 16px;
    margin: 30px 0 60px 35px;
  }
}
@media (max-width: 1440px) {
  .html1 .inner2 {
    padding: 10px 30px;
  }
  .banner1.banners {
    margin: 0 15% 0 0;
  }
  .html1 .promo-desc {
    margin: 0 0 20px;
  }
  .html1 .promo-title {
    font-size: 24px;
    line-height: 24px;
    margin: 15px 0;
  }
  .html1 img.text-img {
    width: 120px;
  }
  .html2 .banners {
    padding: 0 25px 30px;
  }
  .html2 .promo-text-box a:nth-child(1) {
    left: 10px;
  }
  .html2 .promo-text-box a:nth-child(2) {
    left: 400px;
  }
  .html2 .promo-text-box a:nth-child(3) {
    left: 710px;
  }
  .html2 .promo-text-box a:nth-child(4) {
    left: 950px;
  }
  .html2 .promo-text-box a:nth-child(5) {
    left: 1270px;
    bottom: 0;
  }
  .html2 .row {
    margin: 0 -15px;
  }
  .html3 .inner-text {
    padding: 10% 0;
  }
}
@media (max-width: 1199px) {
  .html1 .inner2 {
    display: block;
    text-align: center;
    padding: 20px 30px 30px;
    background: var(--background-color);
  }
  .html1 .promo-desc {
    margin: 0 0 15px;
  }
  .html2 .promo-desc {
    font-size: 14px;
    line-height: 16px;
    margin: 0 0 15px;
  }
  .html2 .promo-title {
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 15px;
  }
  .html3 .promo-text-box .promo-title {
    font-size: 28px;
    line-height: 36px;
    padding: 0 0 0 20px;
  }
  .html3 .promo-text-box .promo-title::before {
    height: 70px;
  }
  .html3 .promo-text-box .promo-desc {
    font-size: 14px;
    margin: 20px 0 40px 20px;
  }
  .html3 .inner-text {
    width: 94%;
  }
}
@media (max-width: 1024px) {
  .html3 .inner-text {
    padding: 2.3% 0;
  }
}
@media (max-width: 991px) {
  .html1 .swiper-slide {
    margin-bottom: 20px;
  }
  .banner1.banners,
  .html1 .inner2 {
    margin: 0;
  }
  .html1-inner .inner1 {
    display: flex;
  }
  .html1-inner .inner1 > div {
    width: 50%;
  }
  .html1 .inner1.col-lg-5 {
    display: none;
  }
  .html1 [class*='col-lg'] {
    padding: 0 5px;
  }
  .inner2 .button {
    padding: 9px 20px 5px;
  }
  .html2 .row {
    margin: 0 -5px;
  }
  .html2 .inner2 {
    left: 10px;
  }
  .html2 .promo-desc {
    font-size: 12px;
    margin: 0 0 10px;
  }
  .html2 .promo-title {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 10px;
  }
  .html3-inner {
    display: block;
  }
  .html3 .promo-text-box .promo-title::before {
    height: 40px;
  }
  .html3 .promo-text-box .promo-title {
    font-size: 24px;
    line-height: 30px;
  }
  .html3 .promo-text-box .promo-desc {
    margin: 20px 0 20px 20px;
  }
  .html1 .swiper-horizontal> .swiper-scrollbar,
  .box.all-products .swiper-scrollbar,
  .box.mblog .swiper-horizontal> .swiper-scrollbar {
    margin: 10px 0 2px;
  }
}
@media (max-width: 767px) {
  .html3 .inner-text {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  .html1 .promo-text {
    font-size: 12px;
  }
  .html1 .promo-title {
    font-size: 20px;
    line-height: 20px;
    margin: 10px 0;
  }
  .html1 .promo-desc {
    font-size: 14px;
    margin: 0 0 10px;
  }
}
@media (max-width: 480px) {
  .html1-inner .inner1 {
    display: block;
  }
  .html1-inner .inner1 > div,
  .html2-inner > div {
    width: 100%;
  }
  .html1 .inner2 {
    padding: 20px;
  }
  .banner4 {
    margin: 10px 0 0;
  }
  .html3 .promo-text-box .promo-title {
    font-size: 20px;
  }
  .inner2 .button {
    font-size: 12px;
    padding: 7px 20px 7px;
  }
}

/*----------------------------------------------*/
/* gallery-post 
/*----------------------------------------------*/
#gallery-carousel {
  display: flex;
}
.gallery-post .gallery {
  position: relative;
}
.gallery-content {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: flex;
  float: left;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
}
.gallery-desc {
  color: var(--secondary-light-color);
  font-size: 20px;
  margin: 12px 0 26px;
}
.gallery-post .gallery-inner {
  display: flex;
}
@media (max-width: 1440px) {
  .gallery-title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
  }
}
@media (max-width: 1199px) {
  .gallery-title {
    font-size: 30px;
  }
  .gallery-content .btn {
    padding: 5px 18px;
    padding: 7px 23px;
    line-height: 18px;
    font-size: 14px;
  }
  .gallery-content {
    width: 75%;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .gallery-desc {
    display: none;
  }
  .gallery-title {
    font-size: 22px;
    line-height: 34px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .gallery-content .btn {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .gallery-content .btn {
    padding: 5px 12px;
    font-size: 10px;
    line-height: 14px;
  }
  .gallery-post .banner4.gallery {
    display: none;
  }
  .gallery-content {
    right: 0;
  }
}
@media (max-width: 575px) {
  .gallery-post .banner3.gallery {
    display: none;
  }
}
@media (max-width: 480px) {
  .gallery-content .btn {
    padding: 6px 7px;
  }
}
@media (max-width: 375px) {
  .gallery-content .btn {
    padding: 3px 2px;
  }
}

/*----------------------------------------------*/
/* buttons */
/*----------------------------------------------*/
.buttons {
  margin: 1em 0;
}
#tab-review .buttons {
  margin: 1em 0 0;
}
.btn {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  border: none;
  border-radius: 0;
  z-index: 1;
  white-space: inherit;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

.btn.focus,
.btn:focus,
.btn:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.btn.active,
.btn:active {
  box-shadow: none;
}
.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;
  border-radius: 30px !important;
  color: var(--secondary-color);
  background: var(--primary-color);
  border-radius: 0;
  font-weight: 500;
  outline: none;
}
#cart .text-right .addtocart-btn:hover,
#cart .text-right .checkout-btn:hover {
  background: var(--primary-hover-color);
}
.promo-btn {
  position: relative;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  background: transparent;
  border: none;
  z-index: 0;
  color: var(--primary-color);
}
.promo-btn:hover, 
.promo-btn:active {
  color: var(--secondary-color);
}
.promo-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 47%;
  height: 40px;
  background-color: var(--primary-hover-color);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  will-change: transform;
  z-index: -1;
}
.html2.banner-outer .promo-btn:before {
  width: 49%;
}
.html2.banner-outer .promo-btn:hover:before {
  width: 100%;
}
.promo-btn:hover:before,
.blog-read:hover:before {
  width: 100%;
  color: var(--secondary-color);
}
.btn-warning {
  color: var(--secondary-color);
  background-color: #faa732;
  border-radius: 0;
}
.btn-danger {
  color: var(--secondary-color);
  background-color: #da4f49;
  text-transform: uppercase;
  padding: 7.5px 30px;
  border: none;
  border-radius: 0;
}
.btn-success {
  color: var(--secondary-color);
  background-color: #5bb75b;
  background-repeat: repeat-x;
  border-radius: 0;
}
.btn-info {
  color: var(--primary-hover-color);
  background: var(--secondary-color);
  border: 1px solid var(--primary-hover-color);
  padding: 6.5px 29px;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 0;
  font-weight: 500;
}
.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: var(--primary-color);
  border-radius: 0;
}
.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;
}
.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:focus,
.btn-default:active,
.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:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled],
.btn-info.focus,
.btn-info:focus,
.btn-info:active:focus,
.btn-info:active:hover,
.blog-read:hover {
  color: var(--secondary-color);
  border-color: var(--primary-color);
  background-color: var(--primary-hover-color);
  box-shadow: none;
}
.btn-default:hover,
.btn-info:hover {
  background: var(--primary-color);
}
@media (max-width: 1199px) {
  .btn {
    padding: 5px 18px;
  }
  .promo-btn {
    padding: 6px 18px;
    line-height: 20px;
  }
  .promo-btn:before {
    height: 32px;
  }
}
@media(max-width: 575px) {
  .promo-btn {
    font-size: 12px;
    padding: 5px 17px;
  }
  .promo-btn:before {
    height: 30px;
  }
}
/* 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;
}
@media (max-width: 991px) {
  #cart .text-right .addtocart-btn,
  #cart .text-right .checkout-btn,
  .btn-default,
  .btn-primary,
  .btn-info {
    padding: 7px 20px;
    font-size: 14px;
  }
  .btn-danger {
    padding: 7.5px 20px;
  }
}
@media (max-width: 575px) {
  #cart .text-right .addtocart-btn,
  #cart .text-right .checkout-btn,
  .btn-default,
  .btn-primary,
  .btn-info {
    padding: 8px 18px;
    font-size: 12px;
    line-height: 14px;
  }
}

/*----------------------------------------------*/
/* products */
/*----------------------------------------------*/
.slick-theme .slick-slide.slick-active .product-layout {
  -moz-animation: zoomIn 500ms ease;
  -o-animation: zoomIn 500ms ease;
  -webkit-animation: zoomIn 500ms ease;
  animation: zoomIn 500ms ease;
}
.product-thumb .rating {
  padding: 2px 0 16px;
}
.product-thumb .product-title {
  margin: -3px 0 16px;
}
.page-title {
  position: relative;
}
.product-tabs .page-title span {
  display: block;
}
.product-tabs .page-title h3 span {
  margin: 0;
}
.product-tabs .page-title {
  margin: 0;
}
.blog-title {
  margin-left: 50px;
}
.blog-title {
  position: relative;
}
.page-title h3 {
  position: relative;
  font-size: 37px;
  font-weight: 700;
  margin: 0 0 28px;
  letter-spacing: 1px;
  text-transform: none;
  text-align: center;
  color: var(--primary-color);
}
.mblog .page-title h3 {
  margin: 0 0 50px;
}
.box.all-products {
  position: relative;
  padding: 150px 0;
  background: var(--background-color);
}
.box .swiper .swiper-slide {
  overflow: hidden;
}
.box.latest::before,
.box.special::before,
.box.feature::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background-size:cover;
  height: 700px;
  width: 26.247%;
}
.box.latest::before,
.box.feature::before {
  left: 0;
  right: auto;
  background: url('../image/image1.png') no-repeat center center;
}
.box.special::before {
  right: 0;
  left: auto;
  background: url('../image/image2.png') no-repeat center center;
}
.news .page-title h3 {
  font-size: 30px;
  margin: 0 0 41px;
  font-weight: 600;
  line-height: 1;
  color: var(--secondary-color);
}
.product-thumb {
  position: relative;
  margin-bottom: 50px;
}
.product-tab-block .slick-dots,
.special .slick-dots,
.feature .slick-dots {
  display: inline-flex;
}
.category-featured .owl-carousel .owl-stage-outer,
#additional-carousel.owl-carousel .owl-stage-outer,
#quick-carousel.owl-carousel .owl-stage-outer {
  padding: 0;
  margin: 0;
}
.common-home .product-thumb .image {
  border: 10px solid var(--secondary-color);
}
.product-thumb .image {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--background-color);
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.sale-text {
  float: left;
  width: 100%;
  margin: 0;
  z-index: 1;
}
.product-thumb .section-sale {
  font-size: 14px;
  text-transform: none;
  color: var(--primary-color);
  line-height: 14px;
  position: absolute;
  left: 20px;
  top: 20px !important;
  padding: 5px;
  border: 1px solid #dddddd;
}
.product-thumb .section-sale.discount {
  right: 20px;
  left: auto;
}
.product-thumb .description {
  display: none;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 13px;
  color: var(--secondary-light-color);
}
.thumb-description {
  position: relative;
  padding: 28px 5px 0;
  border: 1px solid transparent;
  background: var(--secondary-color);
}
.common-home .product-thumb .thumb-description {
  padding: 18px 5px 0;
}
.product-tab-block .product-thumb .thumb-description {
  background: var(--background-color);
}
.product-thumb .caption {
  position: relative;
  background: transparent;
  opacity: 1;
  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 .button.wishlist {
  line-height: 2px;
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: -30px;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
}
.product-thumb .button-group {
  position: absolute;
  visibility: hidden;
  display: inline-block;
  bottom: -45px;
  left: 0;
  right: 0;
  width: fit-content;
  width: -webkit-fit-content;
  margin: auto;
  transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.product-thumb .button-group button {
  margin: 0;
  padding: 0;
  height: 40px;
  width: 40px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  border: none;
  color: var(--primary-color);
  background: var(--secondary-color);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  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;
}
.product-thumb .button-group button + button {
  margin: 0 0 0 5px;
}
.product-thumb .button-group button i {
  display: block;
  font-size: 16px;
}
.product-thumb .button-group button:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
}
.product-thumb .addcart {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin: 0 auto -20px;
  color: var(--secondary-color);
  background: var(--primary-color);
  padding: 12px 30px 8px;
  border: none;
  border-radius: 30px !important;
  text-transform: uppercase;
  position: relative;
  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 .addcart:hover {
  background: var(--primary-hover-color);
  color: var(--secondary-color);
}
.product-thumb .price {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  opacity: 1;
  transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  -ms-transition: all .3s ease-in-out 0s;
  -moz-transition: all .3s ease-in-out 0s;
  -webkit-transition: all .3s ease-in-out 0s;
}
.product-thumb .product-price {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.product-thumb .price-old {
  text-decoration: line-through;
  color: var(--secondary-light-color);
  font-size: 14px;
  display: inline-block;
}
.product-thumb .product-title { 
  margin: 20px 0 25px;
}
.product-thumb .product-title a {
  font-size: 18px;
  line-height: 20px;
  display: block;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
}
.product-thumb .product-title a:hover {
  color: var(--primary-hover-color);
}
.product-thumb .price-tax {
  display: none;
}
.product-thumb .rating {
  display: none;
  vertical-align: middle;
  position: relative;
  font-weight: 400;
  text-transform: none;
  font-size: 0;
  padding: 0;
  margin: 2px 0 0;
}
.product-list .product-thumb .rating {
  display: block;
}
.product-grid .product-thumb .rating {
  display: none;
}
.product-list .product-thumb .product-price:before {
  display: none;
}
.product-list .product-thumb .addcart {
  margin: 0;
}
.product-list .product-thumb:hover .addcart {
  bottom: 0;
}
.product-list .product-thumb .product-title {
  margin: 0 0 14px;
  text-align: left;
}
.product-list .product-thumb .product-price {
  padding: 0 0 11px;
}
.product-list .product-thumb .description {
  display: block;
  margin: 0 0 15px;
}
.product-list .product-thumb .thumb-description .button-group {
  display: block;
  margin: unset;
  margin: 28px 0 0;
  position: unset;
}
.product-list .product-thumb {
  margin-bottom: 30px;
/*  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);*/
}
.product-list .product-thumb .btn-list {
  display: flex;
  position: unset;
  margin: 0;
  justify-content: flex-start;
}
.product-list .product-thumb .btn-list button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  color: var(--primary-color);
  background: var(--secondary-color);
}
.product-list .product-thumb .btn-list button + button {
  margin: 0 0 0 15px;
}
.product-list .product-thumb .btn-list button:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.product-list .thumb-description {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.product-list .product-thumb .caption {
  padding: 30px 80px 10px 0;
  text-align: left;
  background: transparent;
}
.product-list .product-thumb .all-btn {
  display: block;
  margin: 15px 0 0;
}
.product-list .product-thumb .price {
  margin: 0 0 17px;
  text-align: left;
}
.product-list .product-thumb .rating {
  position: relative;
  width: auto;
  opacity: 1;
  visibility: visible;
  bottom: unset;
  margin: 0;
  float: unset;
  text-align: left;
  padding: 0 0 13px;
}
#product-info .nav-tabs li {
  margin: 0 25px;
}
#product-info .nav-tabs > li > a {
  padding: 15px 0;
  margin: 0;
}
#product-info .form-group {
  margin-bottom: 10px;
  align-items: center;
}
#product-info .nav-tabs > li.active > a,
#product-info .nav-tabs > li:hover > a {
  color: var(--secondary-color);
}
#product-info .nav-tabs>li> a {
  text-transform: uppercase;
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: none;
  line-height: 20px;
  position: relative;
  color: var(--primary-color);
}
#product-info .nav-tabs>li>a.active,
#product-info .nav-tabs>li:hover> a {
  background: transparent;
  color: var(--primary-hover-color);
  border: none;
}

/*product hover */
.product-tab-block {
  background: var(--background-color);
}
.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;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.product-thumb:hover .hover-img {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
}
.product-thumb .thumb-description .button-group {
  display: none;
}
/*product tab*/
.mahardhi-tabs .nav-tabs {
  border: none;
  padding: 0;
  margin: -4px 0 50px;
  text-align: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  position: relative;
  display: block;
}
.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 > a {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  margin: 0;
  padding: 0 0 8px;
  text-transform: uppercase;
  background: transparent;
  color: var(--secondary-light-color);
  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:hover:after,
.mahardhi-tabs .nav-tabs > li > a:focus:after,
.mahardhi-tabs .nav-tabs > li > a.selected:after {
  transform: scaleX(1);
}
.mahardhi-tabs .nav-tabs > li + li {
  margin: 0 0 0 46px;
}
.mahardhi-tabs .nav-tabs > li > a:after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  z-index: -1;
  width: 100%;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform .2s ease-in-out 0s;
}
.slick-dots {
  padding: 0;
}
.mblog .slick-dots {
  padding: 0 10px;
  justify-content: flex-start;
}

.ptb {
  padding: 100px 0;
}
@media(min-width: 992px) {
  .product-list .product-thumb:hover .price {
    opacity: 1;
  }
  .product-thumb:hover .button-group {
    bottom: 15px;
    visibility: visible;
  }
  .latest .page-title h3,
  .feature .page-title h3 {
    text-align: left;
    left: 7.2%;
  }
  .special .page-title h3 {
    text-align: right;
    right: 7.2%;
  }
}
@media(max-width: 1800px) {
  .ptb {
    padding: 70px 0;
  }
}
@media(max-width: 1440px) {
  .ptb {
    padding: 50px 0;
  }
  .mahardhi-tabs .nav-tabs {
    margin: 0 0 40px;
  }
  .mahardhi-tabs .nav-tabs > li + li {
    margin: 0 0 0 30px;
  }
  .thumb-description {
    padding: 15px 0 0;
  }
  .product-list .product-thumb .caption {
    padding: 20px 50px 20px 0;
  }
  .box.latest::before,
  .box.special::before,
  .box.feature::before {
    height: 560px;
  }
  .box.all-products {
    padding: 110px 0;
  }
  .product-thumb .product-title {
    margin: 10px 0 15px;
  }
}
@media (max-width: 1199px) {
  .ptb {
    padding: 40px 0;
  }
  .page-title h3,
  .mblog .page-title h3 {
    font-size: 30px;
  }
  .news .page-title h3 {
    font-size: 24px;
    margin: 0 0 28px;
  }
  .blog-title {
    margin: 0;
  }
  .mahardhi-tabs .nav-tabs {
    margin: 0 0 20px;
  }
  .product-list .product-thumb .caption {
    padding: 15px 20px 15px 0;
  }
  .product-list .product-thumb .product-title {
    margin: 0 0 10px;
  }
  .product-list .product-thumb .thumb-description .button-group {
    margin: 20px 0 0;
  }
  .product-thumb .product-title a {
    font-size: 16px;
  }
  .thumb-description {
    padding: 10px 0 0;
  }
}
@media (max-width: 991px) {
  .ptb {
    padding: 30px 0;
  }
  .page-title h3,
  .mblog .page-title h3 {
    font-size: 24px;
    margin: 0 0 20px;
  }
  .news .page-title h3 {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .box.latest::before,
  .box.special::before,
  .box.feature::before {
    display: none;
  }
  #product-info .nav-tabs li {
    margin: 0 15px;
  }
  .mahardhi-tabs .nav-tabs > li + li {
    margin: 0 0 0 20px;
  }
  .mahardhi-tabs .nav-tabs > li > a {
    padding: 0 5px;
    font-size: 14px;
  }
  .box.all-products {
    padding: 50px 0;
  }
  .product-thumb {
    margin-bottom: 40px;
  }
  .product-thumb .button-group,
  .product-thumb .button-group {
    bottom: 10px;
    visibility: visible;
  }
  .product-thumb .button-group button {
    height: 30px;
    width: 30px;
  }
  .product-thumb .button-group button i {
    font-size: 14px;
  }
  .product-thumb .sale-text {
    right: 10px;
    top: 10px;
    font-size: 12px;
    line-height: 14px;
  }
  .product-thumb .price-old {
    font-size: 14px;
  }
  .product-thumb .price {
    font-size: 14px;
    margin: 7px 0 0;
  }
  .product-price {
    position: relative;
  }
  .product-thumb .description {
    font-size: 14px;
  }
  .product-list .product-thumb {
    margin-bottom: 20px;
  }
  .product-list .product-thumb .product-title a {
    font-size: 16px;
  }
  #product-info .nav-tabs > li > a {
    font-size: 14px;
    padding: 10px 0;
  }
  .product-thumb .section-sale {
    padding: 1px 3px;
    left: 10px;
  }
  .product-thumb .section-sale.discount {
    right: 10px;
    left: auto;
  }
  .product-thumb .product-title a {
    font-size: 14px;
  }
  .product-thumb .addcart {
    padding: 8px 20px 6px;
    margin: 0 auto -17px;
  }
  .common-home .product-thumb .image {
    border-width: 5px;
  }
  .product-thumb .rating {
    float: unset;
    margin: 5px 0 0;
    text-align: center;
  }
  .product-thumb .price {
    margin: 0;
    display: block;
    text-align: center;
  }
  .product-list .product-thumb .price {
    margin: 0 0 7px;
  }
}
@media (max-width: 767px) {
  .product-list .product-thumb .image img {
    width: auto;
    margin: 0;
  }
  .box.all-products {
    padding: 30px 0;
  }
  #button-list.btn-default i,
  #button-grid.btn-default i {
    font-size: 14px;
  }
  .mahardhi-tabs .nav-tabs > li > a {
    font-size: 12px;
  }
  .mahardhi-tabs .nav-tabs {
    margin: 0 0 15px;
  }
}
@media (max-width: 680px) {
  .mahardhi-tabs .nav-tabs > li + li {
    margin: 0 0 0 15px;
  }
  .product-list .product-thumb .caption {
    padding: 10px 15px 20px;
  }
  .product-list .product-thumb .all-btn {
    margin: 10px 0 0;
  }
}
@media(max-width: 575px) {
  .product-list .product-thumb .product-title a {
    font-size: 14px;
  }
  .product-list .product-thumb .product-title {
    margin: 0 0 8px;
  }
  .product-list .product-thumb .rating {
    padding: 0 0 10px;
  }
}
@media (max-width: 480px) {
  .page-title h3,
  .mblog .page-title h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .news .page-title h3 {
    font-size: 20px;
    line-height: 20px;
  }
}
.slick-theme .slick-item.slick-slide .col-2 {
  width: 100%;
}
.mblog .row .slick-theme .col-12,
.row.slick-theme .col.col-12 {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

/*----------------------------------------------*/
/* swiper pager */
/*----------------------------------------------*/
.swiper-viewport .swiper-pager > div,
.slick-theme .slick-arrow {
  height: 24px;
  width: 24px;
  background: transparent;
  color: var(--secondary-light-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-color);
}
div:not(.container) .slick-theme .slick-arrow.slick-next {
  right: -8px;
}
.slick-theme .slick-arrow.slick-next {
  right: -8px;
  left: auto;
}
div:not(.container) .slick-theme .slick-arrow.slick-prev {
  left: -8px;
}
.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: 20px;
  display: block;
}

/*scrollbar*/
.product-tab-block .swiper-scrollbar,
.product-tab-block .swiper-horizontal>.swiper-scrollbar {
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    margin-right: auto;
    opacity: 1 !important;
    position: relative !important;
    margin-top: 70px;
    overflow: hidden;
    background: var(--secondary-color);
  }
/*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;
}

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

.slick-dots li {
  margin: 0;
}
.mt-banner .swiper-pagination span,
.mt-banner .slick-theme .slick-dots button {
  position: absolute;
  width: 50%;
  height: 5px;
  font-size: 0;
  font-weight: 500;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  display: inline-block;
  color: transparent;
  background: var(--primary-color);
  outline: none;
  transition: 1s;
  bottom: 0;
}
.swiper-pagination span,
.slick-theme .slick-dots button {
  position: relative;
  width: 20px;
  height: 20px;
  border: none;
  font-size: 0;
  margin: 0 5px;
  box-shadow: none;
  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 {
  background: var(--primary-hover-color);
}
.related-products-block .slick-theme .slick-dots button,
.mblog .slick-theme .slick-dots button {
  bottom: 0;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin: 0;
}
.testimonial-block .owl-theme .owl-nav.disabled + .owl-dots {
  margin: 12px 0 0 0;
}
@keyframes borrotate {
  0% {
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(0deg);
  }
  25% {
    border-top-color: var(--primary-hover-color);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  50% {
    border-top-color: var(--primary-hover-color);
    border-right-color: var(--primary-hover-color);
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  75% {
    border-top-color: var(--primary-hover-color);
    border-right-color: var(--primary-hover-color);
    border-bottom-color: var(--primary-hover-color);
    border-left-color: transparent;
  }
  96% {
    border-top-color: var(--primary-hover-color);
    border-right-color: var(--primary-hover-color);
    border-bottom-color: var(--primary-hover-color);
    border-left-color: var(--primary-hover-color);
  }
  100% {
    border-top-color: var(--primary-hover-color);
    border-right-color: var(--primary-hover-color);
    border-bottom-color: var(--primary-hover-color);
    border-left-color: var(--primary-hover-color);
    transform: rotate(360deg);
  }
}
/*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: 1199px) {
  .related-products-block .slick-theme .slick-dots button,
  .mblog .slick-theme .slick-dots button {
    bottom: 20px;
  }
  .mblog .slick-dots {
    justify-content: center;
  }
  .product-tab-block .swiper-scrollbar,
  .product-tab-block .swiper-horizontal>.swiper-scrollbar {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .product-tab-block .swiper-scrollbar,
  .product-tab-block .swiper-horizontal>.swiper-scrollbar {
    margin-top: 30px;
  }
  .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;
  }
  .related-products-block .slick-theme .slick-dots button,
  .mblog .slick-theme .slick-dots button {
    bottom: 0;
  }
}
@media(max-width: 767px) {
  .product-tab-block .swiper-scrollbar,
  .product-tab-block .swiper-horizontal>.swiper-scrollbar {
    margin-top: 10px;
  }
}
/*----------------------------------------------*/
/* testimonial */
/*----------------------------------------------*/
.testimonial-block .page-title h3 span {
  display: block;
}
.testimonial-client {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin: 30px 0 43px;
  text-transform: uppercase;
  color: var(--primary-color);
}
.testimonial-client:before {
  content: "\e925";
  font-family: 'Mahardhi-Fonts';
  font-size: 56px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  margin: auto;
  z-index: -1;
  color: var(--border-color);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
}
.testimonial-block {
  position: relative;
  overflow: hidden;
}
.testimonial-block .block-content {
  width: 100%;
  margin: auto;
  text-align: center;
}
.testimonial-text p {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin: 0 0 45px;
  color: var(--primary-color);
}
.testimonial-wrapper {
  width: 76%;
  margin: auto;
  text-align: center;
}
.testimonial-items .author-customer {
  display: flex;
  align-items: center;
}
.testimonial-box .rating {
  margin: 20px 0 0 0;
}
.testimonial-inner .row > * {
  padding: 0;
}
.testimonial-author {
  font-size: 16px;
  font-weight: 500;
  margin: 0 5px 0 0;
  color: var(--primary-color);
}
.testimonial-customer {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}
.testimonial-box .row-items {
  text-align: center;
  margin-bottom: 23px;
}
.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-images {
  position: relative;
  display: inline-block;
}
@media (max-width: 1440px) {
  .testimonial-text p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .testimonial-block .row-items i {
    font-size: 45px;
    bottom: 27px;
  }
  .testimonial-author {
    margin: 0 7px 0 0;
  }
  .swiper-pagination,
  .slick-theme .slick-dots button {
    bottom: 0;
  }
  .testimonial-text p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .testimonial-block .row-items i {
    display: none;
  }
  .testimonial-wrapper {
    width: 100%;
  }
  .testimonial-text p {
    margin: 0 0 20px;
  }
  .testimonial-client {
    font-size: 14px;
    margin: 20px 0;
  }
  .testimonial-client:before {
    font-size: 45px;
    bottom: 10px;
  }
}
@media(max-width: 540px) {
  .testimonial-text p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .testimonial-box .block-content {
    /* width: 100%; */
    padding: 0px 10px;
  }
  .testimonial-text {
    font-size: 16px;
    line-height: 26px;
  }
  .testimonial-content {
    padding: 0 0 0 15px;
  }
}
@media (max-width: 375px) {
  .testimonial-box .row {
    margin-right: 0;
    margin-left: 0;
  }
  .row-items.col-xs-12 {
    /* padding: 0; */
  }
  .testimonial-box .block-content {
    /* padding: 0; */
  }
}
/*----------------------------------------------*/
/* blog */
/*----------------------------------------------*/
.blog-title h3 {
  position: relative;
  font-size: 72px;
  line-height: 72px;
  font-weight: 700;
  margin: 0 0 -22px;
  text-align: left;
  text-transform: none;
  color: #dddddd;
}
.blog-info .image {
  overflow: hidden;
  position: relative;
}
.mblog .row > * {
  padding: 0;
}
.mblog .blog-block {
  display: flex;
  align-items: center;
}
.blog-block {
  position: relative;
  margin-bottom: 30px;
}
.mblog .caption {
  position: relative;
  width: 48.2%;
  padding: 76px 60px 80px;
  margin: 0 -110px 0 0;
  background: #faf4e2;
  z-index: 1;
}
.mblog .blog-info {
  width: 60%;
  padding: 30px;
  border: 10px solid var(--background-color);
}
.blog-block .zoom-post a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 40px;
  width: 40px;
  border-radius: 50%; 
  border: none;
  color: var(--primary-color);
  background: var(--secondary-color);
  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;
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}
.blog-block .zoom-post > a + a {
  margin: 0 0 0 5px;
}
.blog-block .zoom-post a:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.blog-block .zoom-post {
  position: absolute;
  left: 0; 
  right: 0;
  top: auto;
  bottom: -50px;
  margin: auto;
  line-height: 0;
  width: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  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::before,
.blog-block .hover-post::before {
  font-family: FontAwesome;
  font-size: 14px;
  margin: 0;
  display: block;
  position: relative;
  text-align: center;
  line-height: 40px;
  z-index: 1;
}
.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;
}
.mblog .caption h4 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  margin: 17px 0 0;
  text-transform: none;
  -webkit-transition: all .3s ease-in-out 0s;
  -moz-transition: all .3s ease-in-out 0s;
  -ms-transition: all .3s ease-in-out 0s;
  -o-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
}
.mblog .caption h4 a {
  color: var(--primary-color);
}
.mblog .caption h4 a:hover {
  color: var(--primary-hover-color);
}
.mblog .block-date {
  display: block;
}
.blog-category .caption-blog {
  padding: 15px 0 0;
}
.blog-category .blog-title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  margin: 15px 0 0;
  text-transform: none;
}
.blog-category .blog-title a:hover {
  color: var(--primary-hover-color);
}
.blog-read.btn-default {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  padding: 10px 30px;
  border: none;
  box-shadow: none;
  border-radius: 30px !important;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-color);
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.inner2 button i,
.blog-read.btn-default i,
.subscribe-btn i,
.category-thumb .category-btn i {
  margin: 0 0 0 10px;
  transform: rotate(-45deg);
  transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.inner2 button:hover i,
.blog-read.btn-default:hover i,
.subscribe-btn:hover i,
.category-thumb .category-btn:hover i {
  transform: unset;
}
.blog-read.btn-default:hover {
  background: var(--primary-hover-color);
}
.blog-read span {
  color: var(--secondary-color);
}
.blog-read:hover .blog-read span {
  color: var(--secondary-color);
}
.product-list .blog-read:hover span {
  color: var(--secondary-color);
}
.product-list .blog-read.btn {
  position: relative;
  background: transparent;
  color: var(--background-color);
}
.article-container .article-inner {
  padding: 20px;
  border: 1px solid var(--border-color);
}
/*----------------------------------------------*/
/* blog page */
/*----------------------------------------------*/
.blog-category .blog-block .row {
  display: flex;
  align-items: center;
}
.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: 0;
}
.blog-block img,
#content-blogs .thumbnails .thumbnail img {
  width: 100%;
}
.blog-text {
  font-size: 16px;
  line-height: 24px;
  margin: 16px 0 27px;
  color: var(--secondary-light-color);
}
.block-date {
  font-size: 16px;
  color: var(--secondary-light-color);
  display: flex;
  align-items: center;
}
.block-date i {
  font-size: 20px;
  padding: 0 12px 0 0;
}
.blog-category .block-date {
  display: inline-block;
  font-size: 16px;
}
.blog-category .block-date i {
  font-size: 30px;
}
.blog-category .blog-comment {
  font-size: 16px;
  color: var(--secondary-light-color);
}
.blog-category .blog-comment i {
  margin-right: 5px;
}
/*----------------------------------------------*/
/* article blog page */
/*----------------------------------------------*/
.article-container .image {
  position: relative;
}
.article-container .blog-block {
  margin-bottom: 0;
}
.article-container .caption-blog {
  background: var(--secondary-color);
  box-shadow: none;
}
#content-blogs .thumbnails .thumbnail {
  border: unset;
  margin: 0;
  padding: 0;
}
h3.article-page-title {
  margin: 15px 0 10px;
}
.article-container .shop-content > h3 {
  line-height: 20px;
  margin: 0;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 0;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
}
.article-container #commnt_form > div > div:last-child .form-group {
  margin-bottom: 0;
}
.article-container #commnt_form.form-horizontal .form-group {
  margin-right: 0;
  margin-left: 0;
}
#post_comment #commnt_form.form-horizontal .control-label {
  text-align: left;
}
.article-container .shop-content {
  margin-top: 30px;
  background: var(--secondary-color);
}
.shop-content .comment_cust,
.shop-content #commnt_form {
  padding: 30px;
  box-shadow: none;
  border: 1px solid var(--border-color);
  border-top: none;
}
.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 {
  padding-bottom: 20px;
}
.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;
}
.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: 500;
  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;
}
.comment-text {
  padding: 15px;
  border: none;
  border-radius: 0;
  background: var(--secondary-color);
  border: 1px solid var(--border-color);
}
.singblog-description.blog-text {
  margin: 15px 0 0;
}
@media(min-width: 1200px) {
  .mblog > .box-content {
    padding-right: 40px;
  }
}
@media(min-width: 992px) {
  .blog-block:hover .zoom-post {
    bottom: 10px;
  }
}
@media(max-width: 1640px) and (min-width: 1441px) {
  .mblog .caption {
    left: 10px;
    bottom: 10px;
    padding: 20px;
  }
}
@media(max-width: 1640px) {
  .mblog .caption {
    padding: 20px;
  }
}
@media(max-width: 1440px) {
  .blog-title h3 {
    font-size: 60px;
    line-height: 60px;
    margin: 0 0 -13px;
  }
  .mblog .blog-info {
    padding: 15px;
    border-width: 5px;
  }
  .mblog .caption h4 {
    font-size: 20px;
    line-height: 20px;
    margin: 12px 0 0;
  }
  .blog-text {
    margin: 12px 0 15px;
  }
}
@media (max-width: 1199px) {
  .mblog .blog-block {
    flex-direction: column-reverse;
  }
  .mblog .blog-info {
    width: 100%;
  }
  .blog-category .blog-title {
    margin: 15px 0 0;
  }
  .blog-category .block-date {
    font-size: 14px;
  }
  .blog-category .blog-comment {
    font-size: 14px;
  }
  .blog-category .block-date i {
    font-size: 20px;
  }
  .blog-read:before {
    height: 34px;
  }
  .blog-read {
    padding: 7px 30px;
  }
  .mblog .block-date {
    font-size: 16px;
  }
  .blog-title h3 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 35px;
    text-align: center;
    color: var(--primary-color);
  }
  .mblog .caption {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .blog-read.btn-default {
    padding: 9px 20px;
  }
  .blog-block .zoom-post {
    bottom: 10px;
  }
  .mblog .block-date {
    font-size: 14px;
  }
  .blog-title h3 {
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 20px;
  }
  .blog-category .blog-title,
  h3.article-page-title {
    font-size: 18px;
  }
  .blog-block .caption .blog-title {
    margin: 10px 0 0 0;
    font-size: 18px;
  }
  .mblog .blog-text {
    font-size: 14px;
    margin: 8px 0 10px;
  }
  .mblog .caption h4 {
    font-size: 18px;
    margin: 10px 0 0;
  }
  .singblog-description.blog-text {
    font-size: 14px;
  }
  .blog-block h4,
  h3.article-page-title {
    margin: 10px 0 10px;
  }
  .article-container .btn-default:hover {
    background: var(--primary-hover-color);
  }
  .blog-block {
    margin-bottom: 20px;
  }
  .blog-read {
    font-size: 12px;
    padding: 7px 23px;
  }
  .blog-block .zoom-post a {
    height: 34px;
    width: 34px;
  }
  .blog-block .hover-zoom::before,
  .blog-block .hover-post:before {
    font-size: 12px;
    line-height: 34px;
  }
  .article-container .shop-content > h3 {
    font-size: 14px;
    padding: 10px 20px;
  }
  .shop-content .comment_cust,
  .shop-content #commnt_form {
    padding: 20px 15px;
  }
  .mahardhi_blog-mahardhi_blog .col-sm-6 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .article-container .article-inner {
    padding: 15px;
  }
  .inner2 button i,
  .blog-read.btn-default i,
  .subscribe-btn i,
  .category-thumb .category-btn i {
    font-size: 12px;
    margin: 0 0 0 5px;
  }
  .block-date {
    font-size: 14px;
  }
  .block-date i {
    font-size: 18px;
    padding: 0 8px 0 0;
  }
  .blog-text {
    font-size: 14px;
    margin: 8px 0 10px;
  }
}
@media (max-width: 767px) {
  .blog-category .blog-block .row {
    display: block;
  }
  .blog-layout.product-list.blog-category.col-sm-6 {
    padding: 0 5px;
  }
  .mahardhi_blog-mahardhi_blog #content {
    padding: 0;
  }
  .mblog .caption .blog-title {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
  .blog-read {
    padding: 5px 23px;
  }
  .blog-read:before {
    height: 30px;
  }
}
@media (max-width: 575px) {
  .article-container .btn-default {
    padding: 10px 30px;
    font-size: 14px;
  }
  .blog-layout.product-list.blog-category.col-sm-6 {
    padding: 0 15px;
  }
  .blog-read {
    line-height: 20px;
  }
}
@media (max-width: 540px) {
  .comment-text {
    padding: 10px;
  }
  .comment_cust .comment-desc {
    padding-left: 70px;
  }
  .blog-category .blog-comment {
    font-size: 12px;
  }
}
@media (max-width: 320px) {
  .blog-layout.product-list.blog-category.col-sm-6 {
    padding: 0;
  }
  .mahardhi_blog-mahardhi_blog #content {
    padding: 0 15px;
  }
}
/*----------------------------------------------*/
/* newsletter block */
/*----------------------------------------------*/
.news {
  position: relative;
}
.news .newsletter-form {
  /* display: flex; */
  align-items: center;
}
.news .page-title h3::after {
  bottom: -14px;
}
.news .page-title h3::before {
  bottom: -16px;
}
.news .news-dec {
  text-align: center;
}
.news .title-text {
  position: relative;
  text-align: center;
  font-size: 30px;
  margin-bottom: 33px;
  line-height: 34px;
  padding: 0;
  text-transform: none;
  font-weight: 600;
  color: var(--primary-hover-color);
}
.news .subscribe-btn {
  font-size: 16px;
  font-weight: 500;
  padding: 7px 0;
  line-height: 20px;
  background: transparent;
  color: var(--secondary-color);
}
.news .news-description {
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 37px;
}
.subscribe-form {
  position: relative;
  max-width: 470px;
  border-radius: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid #343434;
}
.subscribe-form #newsletter_usr_email {
  font-size: 14px;
  min-height: 34px;
  border: none;
  height: 34px;
  padding: 3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: transparent;
  color: var(--secondary-color);
}
.subscribe-form #newsletter_usr_email::placeholder {
  color: var(--secondary-color);
}
.subscribe-btn {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 0;
  padding: 7.5px 29px;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
  transition-duration: 500ms;
  -o-transition-duration: 500ms;
  -ms-transition-duration: 500ms;
  -moz-transition-duration: 500ms;
  -webkit-transition-duration: 500ms;
}
.subscribe-form > i {
  font-size: 20px;
  line-height: 34px;
  padding: 0 15px 0 0;
  color: var(--secondary-color);
}
.news .subscribe-btn:hover {
  color: var(--primary-hover-color);
  background: var(--primary-color);
}

@media (min-width: 1441px) {
  .news #frmnewsletter {
    margin: 0 0 0 35px;
  }
}
@media (max-width: 1440px) {
  .news .title-text {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .news .title-text {
    font-size: 30px;
    line-height: 30px;
  }
  .news .newsletter-form {
    display: block;
    text-align: center;
  }
  .subscribe-form #newsletter_usr_email {
    height: 34px;
    min-height: 34px;
    padding: 3px;
  }
  .footer-center .row {
    flex-direction: column;
  }
  .news .news-description {
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 20px;
  }
}
@media(max-width: 767px) {
  .news .title-text {
    font-size: 24px;
  }
}
@media(max-width: 575px) {
  .subscribe-form {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .news .title-text {
    font-size: 20px;
    line-height: 20px;
  }
  .news .news-description {
    font-size: 14px;
  }
}


/*----------------------------------------------*/
/* footer start */
/*----------------------------------------------*/
.hidden-xs-up {
  display: none !important;
}
footer {
  background: var(--primary-color);
}
.footer-center .row {
  align-items: center;
}
footer h5,
footer h4 {
  text-transform: uppercase;
  font-size: 18px;
  margin: -2px 0 14px;
  position: relative;
  font-weight: 500;
  color: var(--secondary-color);
}
footer .footer-content a {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  display: inline-block;
  text-transform: none;
  color: var(--secondary-color);
}
.footer-center .row > div {
  position: relative;
}
footer a:hover,
footer a:focus {
  color: var(--primary-hover-color);
}
/* footer top */
.footer-top {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  padding: 80px 0 0;
  color: var(--secondary-color);
}
.footer-top [class*='col-'] {
  float: left;
  position: relative;
}
.position-footer-top .footer-items {
  float: left;
  padding: 0 15px;
  position: relative;
}
.site-content {
  display: flex;
  justify-content: center;
}
.footer-items .contact_site {
  font-size: 16px;
  text-align: left;
  margin-top: 10px;
  padding-top: 20px;
  line-height: 24px;
  position: relative;
  text-align: center;
  border-top: 1px solid #474747;
  color: var(--secondary-light-color);
}
.contact_title {
  text-transform: none;
  margin-right: 5px;
}
footer .col-sm-4 a,
footer .col-sm-3 a,
footer .col-sm-2 a {
  font-size: 16px;
  padding: 0;
  display: block;
  color: var(--secondary-light-color);
}
.contact-icon i {
  color: var(--secondary-color);
  text-align: center;
  font-size: 20px;
  margin-right: 15px;
}
.contact_title {
  font-size: 16px;
  font-weight: 500;
  text-transform: none;
  margin-right: 5px;
  color: var(--secondary-color);
}
.position-footer-top .footer-items + .footer-items:after {
  content: "";
  position: absolute;
  height: 90px;
  width: 1px;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background: #454545;
}
.footer-items .contact_site span {
  float: left;
}
.footer-items .contact_site span:last-child {
  float: right;
}
/* footer left */
.footer_aboutus > a {
  display: block;
}
.footer-desc {
  font-size: 14px;
  line-height: 24px;
  margin: 27px 0 25px;
  color: var(--secondary-color);
}
.footer-left {
  text-align: center;
}
/* footer right */
.position-footer-right li > div {
  padding: 4px 0;
  display: flex;
  line-height: 24px;
}
.position-footer-right h5 {
  margin: -2px 0 20px;
}
.position-footer-right li .contact_site a {
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  display: initial;
  color: var(--secondary-color);
}
/* footer center */
.footer_aboutus {
  margin: 0 19%;
}
.footer-center ul.list-unstyled {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
}
.footer-center ul > li + li {
  margin-left: 40px;
}
/* footer bottom*/
.footer_bottom {
  position: relative;
}
.footer-bottom-inner {
  padding: 28px 0;
  text-align: center;
}
footer .footer_bottom p {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: var(--secondary-color);
}
footer .footer_bottom p a {
  color: var(--secondary-color);
}
.toggled.active .fa-chevron-down:before {
  content: "\f077";
}
.position-footer-bottom p {
  margin: 0;
  color: var(--secondary-light-color);
}
.position-footer-bottom p a {
  color: var(--secondary-light-color);
}
.footer_bottom::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color);
  opacity: 0.2;
}
/* social media*/
.social-media > a {
  display: inline-block;
}
.social-media a i {
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 50px;
  color: var(--secondary-color);
  text-align: center;
}
.social-media a + a {
  margin: 0 0 0 7px;
}
.social-media a .fa-facebook-f {
  background: #3b5998;
}
.social-media a .fa-twitter {
  background: #00acee;
}
.social-media a .fa-linkedin-in {
  background: #0e76a8;
}
.social-media a .fa-google-plus-g {
  background: #db3236;
}
.social-media a .fa-youtube {
  background: #c4302b;
}
.social-media a .fa-pinterest-p {
  background: #c8232c;
}
@media(min-width: 992px) {
  .footer-top-inner {
    display: flex;
  }
  .footer-top .news::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 120px;
    width: 1px;
    background: var(--border-color);
    opacity: 0.2;
  }
  .position-footer-bottom > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media(max-width: 1640px) {
  .footer_aboutus {
    margin: 0 50px;
  }
}
@media (max-width: 1440px) {
  .footer_aboutus {
    margin: 0;
  }
  .footer-top {
    padding: 70px 0 0;
  }
}
@media (max-width: 1199px) {
  .footer-top {
    padding: 60px 0 0;
  }
  .footer-center,
  .contact_title {
    font-size: 14px;
  }
  .footer-items .contact_site {
    font-size: 14px;
    line-height: 20px;
  }
  .social-media a i {
    height: 30px;
    width: 30px;
    font-size: 14px;
    line-height: 30px;
  }
  .footer-center ul.list-unstyled {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .footer-desc {
    margin: 15px 0;
  }
  .footer-center .row {
    display: block;
  }
  .position-footer-left {
    text-align: center;
  }
  footer .footer-center {
    display: block;
    overflow: hidden;
  }
  footer h5,
  .position-footer-right h5 {
    margin: 0 0 10px;
    font-size: 14px;
  }
  .footer-bottom-inner {
    padding: 15px 0;
  }
  footer .footer-bottom p {
    font-size: 14px;
    margin: 0 0 10px;
  }
  .social-media {
    justify-content: center;
  }
  .social-media a i {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
  .position-footer-top .footer-items {
    width: 100%;
  }
  .position-footer-right .footer_aboutus {
    text-align: center;
  }
  .position-footer-top .footer-items + .footer-items:after {
    display: none;
  }
  .position-footer-top .footer-items + .footer-items {
    margin-top: 15px;
  }
  .footer-items .contact_site {
    padding: 0 25px 10px;
    margin: 10px 0;
    border-top: none;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #474747;
  }
  .footer-items:nth-child(2n) .contact_site {
    justify-content: space-between;
  }
  footer .footer_bottom p {
    font-size: 14px;
    margin: 0 0 15px;
  }
  .footer-top [class*='col-'] {
    float: unset;
  }
  footer .footer-content a {
    font-size: 14px;
  }
  footer .footer-content a::after {
    bottom: 4px;
  }
  .footer-center ul.list-unstyled {
    padding: 30px 0;
  }
  .footer-left {
    margin-bottom: 30px;
  }
  .footer-top {
    padding: 50px 0 0;
  }
  .footer-center ul > li + li {
    margin-left: 20px;
  }
}
@media(max-width: 767px) {
  footer .footer-content a {
    font-size: 14px;
  }
  .footer_aboutus img {
    width: 130px;
  }
  .footer-top {
    padding: 30px 0 0;
  }
  footer .footer_bottom p {
    margin: 0 0 10px;
  }
}
@media (max-width: 575px) {
  .contact-icon i {
    font-size: 16px;
    margin-right: 10px;
  }
  footer .col-sm-4 a,
  footer .col-sm-3 a,
  footer .col-sm-2 a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .social-media a i {
    height: 30px;
    width: 30px;
    font-size: 12px;
    line-height: 30px;
  }
  .footer-items .contact_site {
    padding: 0 10px 10px;
  }
}
@media (max-width: 375px) {
  .quick-product-right ul.list-unstyled {
    display: block;
  }
  .footer-center-inner {
    padding: 0;
  }
  .newsletterblock .container {
    padding: 0;
  }
}
/*----------------------------------------------*/
/* service */
/*----------------------------------------------*/
.service-box {
    position: relative;
    overflow: hidden;
}
.service {
  text-align: center;
}
.service-icon {
  display: inline-block;
  min-width: 90px;
  height: 90px;
  margin: 0 0 28px;
  text-align: center;
  border-radius: 50%;
  border: 5px solid var(--background-color);
}
.service .service-icon i {
  display: block;
  font-size: 45px;
  line-height: 80px;
  color: var(--primary-color);
  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;
}
.service .promo-title {
    font-size: 16px;
    line-height: 20px;
    text-transform: none;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--primary-color);
}
.service .promo-desc {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: none;
    color: var(--secondary-light-color);
}
.service:hover .service-icon i {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 1440px) {
  .service-icon {
    margin: 0 0 20px;
  }
  .service .promo-title {
    font-size: 14px;
    margin: 0 0 7px;
  }
  .service .promo-desc {
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  .service-item:nth-child(3), 
  .service-item:nth-child(4) {
    margin-top: 20px;
  }
  .service {
    display: flex;
    align-items: center;
    text-align: left;
  }
  .service-item {
    width: 50%;
  }
  .service-icon {
    height: 70px;
    min-width: 70px;
    border-width: 3px;
    margin: 0 15px 0 0;
  }
  .service .service-icon i {
    font-size: 35px;
    line-height: 64px;
  }
}
@media (max-width: 991px) {
  .service-box .service-item {
    padding: 0 5px;
  }
}
@media(max-width: 575px) {
  .service {
    display: block;
    text-align: center;
  }
  .service-icon {
    margin: 0 0 10px;
  }
  .service .promo-title {
    font-size: 12px;
    margin: 0 0 5px;
  }
  .service .promo-desc {
    font-size: 10px;
  }
}
/*----------------------------------------------*/
/* brands */
/*----------------------------------------------*/
@media (min-width: 576px) {
  .common-home .mt-banner .slick-slider {
    width: 540px;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .common-home .mt-banner .slick-slider {
    width: 720px;
    margin: auto;
  }
}
@media(min-width: 992px) {
  .common-home .mt-banner .slick-slider {
    width: 960px;
    margin: auto;
  }
}
@media (min-width: 1200px) {
  .common-home .mt-banner .slick-slider {
    width: 1140px;
    margin: auto;
  }
}
@media (min-width: 1440px) {
  .common-home .mt-banner .slick-slider {
    width: 1320px;
    margin: auto;
  }
}
@media(min-width: 1801px) {
  .common-home .mt-banner .slick-slider {
    width: 1780px;
    margin: auto;
    padding: 0 15px;
  }
}
@media(max-width: 767px) {
  .common-home .mt-banner .slick-slider > * {
    margin: 0 -10px;
  }
}
@media (max-width: 991px) {
  .mt-banner:first-child .col-12 {
    padding: 0;
  }
  #common-home .mt-banner .slick-slider > * {
    margin: 0;
  }
}
@media(max-width: 575px) {
  #common-home .mt-banner .slick-slider {
    padding: 0 15px;
  }
}
@media(max-width: 480px) {
  .mt-banner:first-child .slick-dots {
    bottom: 0;
  }
}
/*----------------------------------------------*/
/* pagetitle */
/*----------------------------------------------*/
.page_title {
  font-size: 24px;
  line-height: 24px;
  margin: 0 0 12px;
  display: block;
  vertical-align: top;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
}
.breadcrumb-back h1 {
  font-size: 16px;
  line-height: 20px;
  text-transform: none;
  margin: 0;
  display: block;
  vertical-align: top;
  font-weight: 400;
  color: var(--primary-color);
  float: left;
  display: none;
}
@media (max-width: 991px) {
  .page_title,
  .breadcrumb-back h1 {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
@media(max-width: 480px) {
  .page_title,
  .breadcrumb-back h1 {
    font-size: 18px;
    line-height: 20px;
  }
}

/*----------------------------------------------*/
/* breadcrumb */
/*----------------------------------------------*/
.breadcrumb-back {
  padding: 232px 0 112px;
  margin-bottom: 50px;
  background: url(../image/breadcrumbs-bg.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
}
.breadcrumb {
  font-size: 16px;
  padding: 0;
  margin: 0;
  border: none;
  text-align: center;
  justify-content: center;
  text-transform: none;
}
.breadcrumb > li {
  position: relative;
}
.breadcrumb > li .fa-home {
  font-size: 15px;
}
.breadcrumb li a,
.breadcrumb a {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.breadcrumb a:hover {
  color: var(--primary-hover-color);
}
.breadcrumb > li + li:before {
  content: "\f105";
  font-family: FontAwesome;
  color: var(--primary-color);
  padding: 0px 8px 0px 5px;
  font-size: 18px;
  line-height: 20px;
}
@media (max-width: 1440px) {
  .breadcrumb-back {
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-back {
    padding: 15px 0;
    margin-bottom: 20px;
  }
  .breadcrumb li a,
  .breadcrumb a {
    font-size: 14px;
  }
}

/*----------------------------------------------*/
/* column-left-right */
/*----------------------------------------------*/
#column-left > div,
#column-right > div {
  padding: 0;
  margin: 50px 0 0;
  box-shadow: none;
  width: auto;
  border: 1px solid var(--border-color);
  background: var(--secondary-color);
}
#column-left .product-thumb .product-price:before,
#column-right .product-thumb .product-price:before {
    display: none;
}
#column-left .product-thumb .product-title,
#column-right .product-thumb .product-title {
  margin: 0 0 10px 0;
}
#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 .mt-banner .row,
#column-right .mt-banner .row {
  padding: 0;
  margin: 0;
}
#column-left .mt-banner,
#column-right .mt-banner {
  padding: 0;
  border: none;
}
#column-left .mt-banner .slick-track,
#column-right .mt-banner .slick-track {
  padding: 0;
}
#column-left .btn-primary {
  color: var(--background-color);
  background: var(--primary-hover-color);
}
#column-left .btn-primary:hover {
  background: var(--primary-color);
}
#column-left .mt-banner .row > *,
#column-right .mt-banner .row > * {
  padding: 0;
}
#column-left h3,
#column-right h3,
#column-left .box-content h3,
#column-right .box-content h3 {
  display: block;
  margin: 0;
  padding: 15px 20px;
  font-size: 16px;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 20px;
  border: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--border-color);
}
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-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: 20px;
}
#column-left .box .container,
#column-right .box .container {
  width: auto;
  padding: 0;
}
#column-left .mt-banner .text-center,
#column-right .mt-banner .text-center {
  padding: 0;
}
#column-left .mt-banner .page-title,
#column-right .mt-banner .page-title {
  display: none;
}
#column-left .product-thumb .rating,
#column-right .product-thumb .rating {
  float: unset;
  display: block;
  margin: 4px 0 0;
}
#column-left .col:last-child .product-layout .product-thumb {
  margin: 0;
}
.category-list .list-group-item,
.sidebar li,
.account-content .list-group a {
  border: none;
  border-radius: 0;
  margin: 0;
  background: transparent;
  padding: 4px 0;
  text-transform: none;
  color: var(--secondary-light-color);
  font-size: 14px;
}
.category-list .list-group-item:hover,
.sidebar li:hover,
.account-content .list-group a:hover {
  color: var(--primary-color);
}
.category-list .list-group-item {
  padding: 6px 20px 6px 0;
}
.category-list .child-categories .list-group-item {
  padding: 8px 20px 8px 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;
  margin-bottom: -6px;
}
.sidebar li a {
  color: var(--secondary-light-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 12px;
  background: transparent;
  font-size: 18px;
  font-weight: 500;
}

.filter_box .checkbox,
.filter_box .checkbox .radio {
  margin: 9px 0;
}

.filter_box .list-group-item {
  border: none;
  padding: 0px;
  background: transparent;
}

.filter_box .list-group-items + .list-group-items {
  margin: 27px 0 0;
}

.checkbox label,
.radio label {
  text-transform: none;
  font-size: 18px;
  color: var(--secondary-light-color);
}

#filter .panel-footer {
  text-align: left;
  padding: 0;
  background: transparent;
}

#button-filter {
  padding: 7.5px 30px;
  font-size: 14px;
  font-weight: 500;
  background: var(--primary-hover-color);
  border: none;
}

#button-filter:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

/*banner*/
#column-left .swiper-viewport,
#column-right .swiper-viewport {
  border: none;
  margin: 30px 0 0;
}

#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*/
.product-layout {
  padding: 0 15px;
}
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
  padding: 0;
}

#column-left .product-thumb,
#column-right .product-thumb {
  padding: 0;
  border: none;
  margin: 0 0 20px 0;
}

#column-left
  .product-content:last-child
  .product-layout:last-child
  .product-thumb,
#column-right
  .product-content:last-child
  .product-layout:last-child
  .product-thumb {
  margin: 0;
}

#column-left .product-thumb > .image,
#column-right .product-thumb > .image {
  float: left;
  width: 90px;
  margin: 0;
  margin-right: 15px;
}

#column-left .product-thumb > .thumb-description,
#column-right .product-thumb > .thumb-description {
  float: left;
  width: 62.7%;
  padding: 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 .quickview-button,
#column-right .product-thumb .quickview-button,
#column-left .product-thumb .addcart,
#column-right .product-thumb .addcart,
#column-left .product-thumb .wishlist,
#column-right .product-thumb .wishlist {
  display: none;
}

#column-left .product-thumb .price,
#column-right .product-thumb .price {
  opacity: 1;
  margin: 0 0 5px;
  font-size: 14px;
}

#column-left .product-thumb .product-title,
#column-right .product-thumb .product-title {
  margin: 0;
  text-align: left;
}

#column-left .product-thumb .product-title a,
#column-right .product-thumb .product-title a {
  font-size: 14px;
}

#column-left .product-thumb .caption,
#column-right .product-thumb .caption {
  padding: 0;
  text-align: left;
}

@media (min-width: 1200px) {
  #column-left,
  #column-right {
    width: 20%;
  }
  #content.col-lg-9,
  #content.col {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #column-left,
  #column-right {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media(min-width: 1601px) and (max-width: 1800px) {
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 54.7%;
  }
}
@media (min-width: 1441px) and (max-width: 1600px) {
  #column-left .product-thumb > .image,
  #column-right .product-thumb > .image {
    margin-right: 10px;
  }
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    float: left;
    width: 50%;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  #column-left .product-thumb > .image,
  #column-right .product-thumb > .image {
    width: 70px;
    margin-right: 5px;
  }
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 53.9%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #column-left .product-thumb > .image,
  #column-right .product-thumb > .image {
    margin-right: 5px;
    width: 60px;
  }
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 58%;
  }
}
@media(max-width: 1800px) {
  #column-left > div,
  #column-right > div {
    margin: 40px 0 0;
  }
}
@media(max-width: 1440px){
  #column-left > div,
  #column-right > div {
    margin: 30px 0 0;
  }
  .filter_box,
  #column-left .block_box,
  #column-right .block_box,
  .category-list #selectMe-desk,
  .account-content .list-unstyled,
  .sidebar .list-unstyled {
    padding: 15px 10px;
  }
  #column-left h3,
  #column-right h3,
  #column-left .box-content h3,
  #column-right .box-content h3 {
    padding: 10px;
  }
}
@media only screen and (max-width: 1199px) {
  #column-left .product-thumb .price,
  #column-right .product-thumb .price {
    margin: 0 0 4px;
    text-align: left;
  }
  #column-left .product-thumb .rating,
  #column-right .product-thumb .rating {
    margin: 4px 0 0 0;
    text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .blog-layout {
    padding: 0 5px;
  }
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 62.8%;
    background: transparent;
  }
  .category-list .list-group-item {
    font-size: 14px;
    padding: 6px 13px 6px 0;
  }
  .toggled .toggle-open {
    position: absolute;
    right: 0;
  }
  #selectMe-desk {
    display: none;
  }
  .filter_box .list-group a {
    font-size: 16px;
  }
  #column-left .mt-banner,
  #column-right .mt-banner {
    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: 10px 0 0;
    padding: 0;
  }
  #column-left .toggled .toggle-open,
  #column-right .toggled .toggle-open {
    right: 15px;
  }
  #column-left h3,
  #column-right h3,
  #column-left .box-content h3,
  #column-right .box-content h3 {
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    margin: 0;
  }
  #column-left .toggled.active,
  #column-right .toggled.active,
  #column-left .box-content .toggled.active,
  #column-right .box-content .toggled.active {
    border-bottom: none;
  }
  #column-left .vertical-category-wrapper,
  #column-right .vertical-category-wrapper {
    display: none;
  }
  .filter_box,
  #column-left .block_box,
  #column-right .block_box,
  .category-list #selectMe-desk,
  .account-content .list-unstyled,
  .sidebar .list-unstyled {
    padding: 20px 15px;
  }
}
/*----------------------------------------------*/
/* our team */
/*----------------------------------------------*/
#team-carousel .product-thumb .product-title a {
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 5px;
}

.product-sub-title a {
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-light-color);
  font-weight: 600;
}

@media (max-width: 1199px) {
  #team-carousel .product-thumb .product-title a {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 8px;
  }
  .product-sub-title a {
    font-size: 14px;
    line-height: 20px;
  }
  .product-thumb .product-sub-title {
    margin: 0;
  }
}
/*----------------------------------------------*/
/* category page */
/*----------------------------------------------*/
.category-block {
  padding: 20px;
  margin: 0 0 28px;
  border: 1px solid var(--border-color);
}
.cat-banner {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 0;
  margin: 0 0 10px;
}
.cat-description {
  color: var(--secondary-light-color);
}
.cat-description p {
  margin: 0;
  line-height: 24px;
  color: var(--secondary-light-color);
}
.cat_info {
  margin: 0 0 30px;
  padding: 9px 20px;
  border: 1px solid var(--border-color);
}
.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;
}
#button-grid {
  margin: 0 10px 0 0;
}
#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: 1px solid var(--border-color);
  background: transparent;
  color: var(--primary-color);
  box-shadow: none;
}
#button-grid.btn-default.active,
#button-list.btn-default.active,
#button-grid.btn-default:hover,
#button-list.btn-default:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--secondary-color);
}
.cat-name li a {
  border-radius: 0;
  border: none;
  padding: 6px 20px;
  display: inline-block;
  margin: 0 6px 10px 0;
  border: 1px solid var(--border-color);
  color: var(--secondary-light-color);
}
.cat-name li a:hover {
  color: var(--secondary-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
#list-view.btn-default i,
#grid-view.btn-default i {
  font-size: 16px;
  display: block;
}
#list-view.btn-default,
#grid-view.btn-default {
  height: 40px;
  width: 40px;
  text-align: center;
  padding: 0;
  border-radius: 0;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  box-shadow: none;
  z-index: 1;
}
#grid-view.btn-default.active,
#list-view.btn-default.active,
#grid-view.btn-default:hover,
#list-view.btn-default:hover {
  background: var(--primary-hover-color);
  color: var(--secondary-color);
  border-color: var(--primary-hover-color);
}
#grid-view.btn-default {
  margin: 0 10px 0 0;
}
#compare-total.btn.btn-link {
  text-decoration: none;
  outline: none;
  padding: 8px 0;
  border: none;
  text-transform: none;
  font-weight: 400;
  color: var(--primary-color);
}

#compare-total.btn.btn-link:hover {
  background: transparent;
}
.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 15px;
}
.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: 40px;
  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: 7px;
  pointer-events: none;
  color: var(--primary-color);
}
.product-list .product-thumb .button-group .compare {
  display: block;
}
.rating .fa-stack,
#tab-review .fa-stack{
  font-size: 8px;
  width: 2.2em;
}
.rating .fa-star-o,
#tab-review .fa-star-o{
    font-size: 12px;
    color:var(--primary-hover-color);
}
.rating .fa-star,
.rating .fa-star + .fa-star-o,
#tab-review .fa-star + .fa-star-o,
#tab-review .fa-star{
    font-size: 12px;
    color: #fdc703;
}
#product-category #product-list > *,
#product-search #product-list > * {
  width: 33.33333333%;
}
#product-category #product-list.product-list > *,
#product-search #product-list.product-list > * {
  width: 100%;
}
@media (min-width: 992px) {
  .product-grid .product-thumb .caption .price {
    display: block;
  }
}
@media(max-width: 575px) and (min-width: 376px) {
  #product-list.row-cols-1 > * {
    width: 50%;
  }
  #product-list.row-cols-1.product-list > * {
    width: 100%;
  }
}
@media(min-width: 768px) {
  .product-list .product-thumb .image {
    float: left;
    z-index: 1;
    margin-right: 30px;
  }
}
@media (max-width: 1199px) {
  .cat-pagination-right .cat-show {
    padding-left: 10px;
  }
  #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;
  }
  #compare-total.btn.btn-link {
    padding: 8px 0;
  }
  .cat-pagination-right .form-control {
    height: 34px;
  }
  .text_limit,
  .text_sort {
    font-size: 14px;
    margin: 6px 0;
  }
  #product-category #product-list > *,
  #product-search #product-list > * {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .category-block {
    padding: 15px;
    margin: 0 0 15px;
  }
  .refine-search {
    margin: 0 0 10px;
  }
  .cat-name li a {
    font-size: 13px;
    padding: 5px 10px;
  }
  .cat_info {
    margin: 0 0 20px;
    padding: 9px 15px;
  }
  .product-list .product-thumb .image {
    margin-right: 20px;
  }
  #list-view.btn-default i,
  #grid-view.btn-default i {
    font-size: 16px;
  }
  #list-view.btn-default,
  #grid-view.btn-default {
    height: 34px;
    width: 34px;
  }
  .cat-pagination-right .form-control {
    height: 34px;
  }
  .cat-description p {
    font-size: 14px;
  }
  #button-list.btn-default,
  #button-grid.btn-default {
    height: 34px;
    width: 34px;
  }
  #product-category #product-list > *,
  #product-search #product-list > * {
    width: 33.33333%;
  }
}
@media (max-width: 767px) {
  .cat-pagination-right {
    text-align: left;
    margin: 5px 0 0;
    padding: 0 10px;
  }
  .cat_list_gird {
    padding: 0 10px;
  }
  .product-list .product-thumb .image {
    display: inline-block;
    margin: 0;
  }
  .product-thumb .thumb-description {
    padding: 10px 0 0;
  }
  .product-list .product-thumb .caption {
    padding: 0;
  }
  #product-category #product-list > *, #product-search #product-list > * {
    width: 50%;
  }
  .product-list .product-thumb .product-price {
    padding: 0 0 5px;
  }
  .product-list .product-thumb .rating {
    padding: 0 0 5px;
  }
}
@media (max-width: 680px) {
  .com-total {
    padding: 0;
  }
}
@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;
  }
  #button-list.btn-default i,
  #button-grid.btn-default i {
    font-size: 14px;
  }
}
@media(max-width: 425px) {
  #product-category #product-list > *,
  #product-search #product-list > * {
    width: 100%;
  }
}
/*----------------------------------------------*/
/* pagination css */
/*----------------------------------------------*/
.pro_pagination {
  clear: both;
  border: 1px solid var(--border-color);
  line-height: 36px;
  padding: 9px 20px;
  background: var(--secondary-color);
}
.pro_pagination .text-left {
  margin: 10px 0;
  font-size: 16px;
  float: left;
  color: var(--secondary-light-color);
}
.pro_pagination .text-start,
.pro_pagination .text-end {
  font-size: 14px;
  float: left;
  color: var(--primary-color);
}
.pro_pagination .row {
  align-items: center;
}
.pagination {
  padding: 0;
  margin: 0;
  vertical-align: top;
  justify-content: flex-end;
}
.page-item:last-child .page-link,
.page-item:first-child .page-link {
  border-radius: 0;
}
.pro_pagination .pagination > li.active > span,
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  cursor: pointer;
  z-index: 2;
  color: var(--secondary-color);
  border-color: var(--border-color);
  background: var(--primary-color);
}
.pagination > li > a:last-child {
  border-radius: 0;
}
.pagination > li > a,
.pagination > li > span {
  float: left;
  margin-left: 10px !important;
  font-size: 14px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
}
@media (max-width: 1199px) {
  .pagination > li > a,
  .pagination > li > span {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
  }
  .pro_pagination .text-left {
    margin: 6px 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: 7px;
  }
  .pro_pagination .text-left {
    margin: 0;
  }
  .pagination > li > a,
  .pagination > li > span {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .pagination > li > a,
  .pagination > li > span {
    width: 30px;
    height: 30px;
    line-height: 28px;
  }
  .pro_pagination .text-start,
  .pro_pagination .text-end {
    font-size: 14px;
  }
  .pro_pagination {
    line-height: 28px;
  }
}
@media(max-width: 575px) {
  .pro_pagination .text-start,
  .pro_pagination .text-end {
    line-height: 30px;
    text-align: center !important;
  }
  .pagination {
    padding: 5px 0 0;
    justify-content: center;
  }
}
/*----------------------------------------------*/
/* product page */
/*----------------------------------------------*/
.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
a.thumbnail {
  padding: 0;
  border: none;
  margin: 0;
}
#product-info .product-additional {
  text-align: center;
  position: relative;
}
hr {
  opacity: 1;
  border-color: var(--border-color);
}
#product-info hr {
  opacity: 0.7;
}
.zoomContainer {
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
#additional-carousel .slick-next {
  position: absolute;
  z-index: 1;
  height: 40px;
  width: 40px;
  padding: 0;
  font-size: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 20px;
  border-radius: 50%;
  color: var(--primary-color);
  left: auto;
  right: -40px;
}
#additional-carousel .slick-prev {
  position: absolute;
  z-index: 1;
  height: 40px;
  width: 40px;
  padding: 0;
  font-size: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 20px;
  border-radius: 50%;
  color: var(--primary-color);
  left: -40px;
  right: auto;
}
#additional-carousel .slick-arrow:hover i {
  color: var(--primary-hover-color);
}
#additional-carousel .slick-next:hover:before,
#additional-carousel .slick-prev:hover:before {
  background: var(--primary-hover-color);
}
#product-info .product-additional {
  margin: 0 auto;
  position: relative;
  display: block;
  vertical-align: top;
  width: calc(100% - 30%);
}
.product-img .thumbnails {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-additional .image-additional img {
  padding: 0;
  border-radius: 0;
}
#additional-carousel .image-additional {
  margin: 0 5px;
}
#quick-carousel.owl-carousel.owl-theme .owl-nav {
  position: unset;
  margin: 0;
}
#product-info .pro-image {
  float: left;
}
.pro-image {
  margin: 0 0 30px;
}
#quick-carousel .image-additional a {
  margin: 0 10px;
  display: block;
}
#quick-carousel {
  max-width: 440px;
  margin: auto;
  padding: 0 20px;
}
#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;
  opacity: 1;
}
#additional-carousel .owl-nav .owl-prev {
  left: -30px;
  right: auto;
}
#additional-carousel .owl-nav .owl-prev::after {
  content: "";
  position: absolute;
  height: 18px;
  width: 2px;
  background: var(--primary-hover-color);
  top: 3px;
  left: 3px;
}
#additional-carousel .owl-nav .owl-next {
  right: -30px;
  left: auto;
}
.product-additional .owl-prev:after {
  content: "";
}
#quick-carousel .owl-nav .owl-prev {
  left: -20px;
  right: auto;
}
#quick-carousel .owl-nav .owl-next {
  right: -20px;
  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 10px;
  font-weight: 600;
  color: var(--primary-color);
}
#product-info .reviews {
  font-size: 16px;
  text-transform: none;
  color: var(--secondary-light-color);
}
#product-info .write-review {
  font-size: 16px;
  color: var(--secondary-light-color);
}
#product-info .right_info .rating {
  margin-bottom: 17px;
}
.form-group {
  margin-bottom: 30px;
}
.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(--secondary-light-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;
  font-size: 16px;
  line-height: 27px;
  min-width: 125px;
  display: inline-block;
}
.right_info .disc1 {
  font-size: 16px;
  color: var(--secondary-light-color);
  margin-right: 10px;
}
.pro_price {
  font-size: 16px;
  display: inline-block;
  font-weight: 500;
}
.pro_oldprice {
  color: var(--secondary-light-color);
  margin-left: 10px;
  font-size: 16px;
}
.right_info .tax {
  margin: 7px 0 5px;
  color: var(--secondary-light-color);
  font-size: 16px;
}
.right_info .price-new {
  font-size: 24px;
  font-weight: 800;
}
.product-options h3 {
  font-size: 18px;
  text-transform: none;
  font-weight: 500;
}
.right_info .control-label {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-transform: none;
  margin-bottom: 0;
}
.right_info .disc1:hover {
  color: var(--primary-hover-color);
}
.right_info .checkbox,
.right_info .radio {
  margin-top: 0;
}
.product-options .alert {
  margin-top: 15px;
}
.product-btn-quantity .minus-plus {
  margin: 0 30px 15px 0;
  display: inline-flex;
  background: var(--secondary-color);
  border-radius: 0;
  border: 1px solid var(--border-color);
}
#product .minus-plus > * {
  text-align: center;
  border: none;
  background: transparent;
  padding: 0 5px;
  font-size: 14px;
  width: 37px;
  height: 38px;
}
.product-btn-quantity #input-quantity {
  width: 44px;
}
.right_info .control-label.qty {
  margin: 0 0 10px 0;
  display: block;
  min-width: 35px;
}
#button-cart,
#quick-cart {
  margin: 0 10px 0 0;
  width: auto;
  color: var(--secondary-color);
  background: var(--primary-color);
  padding: 10px 30px;
}
#button-cart:hover,
#quick-cart:hover {
  background: var(--primary-hover-color);
}
#product .btn-group button {
  padding: 0;
  background: transparent;
  color: var(--primary-color);
}
#product .btn-group button {
  font-size: 14px;
  margin: 0 20px 0 0;
  padding: 0;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  font-weight: 400;
  text-transform: none;
  color: var(--primary-color);
  background: transparent;
  float: left;
  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;
  box-shadow: none;
}
#product .btn-group button i {
  font-size: 16px;
  margin: 0 10px 0 0;
}
#product .btn-group button:hover,
#product .btn-group button:hover {
  background: transparent;
  color: var(--primary-hover-color);
}
#product .btn-group button:last-child {
  margin: 0;
}
.pro-image img {
  padding: 0;
  width: 100%;
  border-radius: 0;
}
#product .product-btn-quantity {
  float: left;
  display: flex;
  align-items: center;
}
.tab-content #tab-description {
  font-size: 16px;
  line-height: 22px;
  color: var(--secondary-light-color);
}
#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 .nav-tabs {
  display: flex;
  border: none;
  justify-content: center;
}
.propage-tab .nav-tabs li {
  margin: 0 25px;
}
#form-review.form-horizontal .control-label {
  padding: 0;
}
.quickview-wrapper-inner.container {
  width: auto;
}
#button-upload222 {
  margin-left: 10px;
}
.related-products-block {
  clear: both;
  padding-top: 60px;
}
.related-products-block .owl-stage-outer {
  padding-top: 10px;
  margin-top: -10px;
}
.propage-tab {
  padding: 0;
  margin-top: 60px;
  border: 1px solid var(--border-color);
  background: var(--secondary-color);
}
#product-info .nav-tabs {
  display: flex;
  justify-content: center;
  border: none;
  border-bottom: 1px solid var(--border-color);
}
#additional-carousel .owl-nav .owl-prev i::after {
  content: "";
  position: absolute;
  height: 18px;
  width: 2px;
  background: var(--primary-hover-color);
  top: 1px;
  left: 3px;
}
#additional-carousel .owl-nav .owl-next::before {
  width: 2px;
  height: 5px;
  content: "";
  position: absolute;
  height: 18px;
  width: 2px;
  background: var(--primary-hover-color);
  top: 1px;
  left: 3px;
}
#product-info .tab-content {
  padding: 20px;
  color: var(--secondary-light-color);
}
#product-info .tab-content strong {
  font-weight: 500;
  text-transform: none;
}
@media(min-width: 1441px) {
  #product-info .product-additional {
    max-width: 380px;
  }
}
@media (max-width: 1750px) {
  #quick-carousel .owl-nav .owl-prev {
    left: 0;
    right: auto;
  }
  #quick-carousel .owl-nav .owl-next {
    right: 0;
    left: auto;
  }
}
@media (max-width: 1199px) {
  .rating .product-rating {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .propage-tab {
    margin-top: 50px;
  }
  .related-products-block {
    padding-top: 50px;
  }
  .right_info h1,
  .quick-product-right h1 {
    margin: 0 0 8px;
    font-size: 18px;
  }
  .pro_price {
    font-size: 20px;
  }
  .quickview-container .pro-image,
  #product-info .pro-image {
    margin-bottom: 10px;
  }
  #product .btn-group {
    display: inline-block;
  }
  #product .btn-group button {
    margin: 0 10px 0 0;
  }
}
@media (max-width: 991px) {
  .propage-tab {
    margin-top: 30px;
  }
  .right_info .disc,
  .right_info .disc1,
  #product .btn-group button i,
  .tab-content #tab-description {
    font-size: 14px;
  }
  .quickview-container .pro-image,
  #product-info .pro-image {
    margin-bottom: 20px;
  }
  #additional-carousel .image-additional {
    margin: 0 5px;
  }
  #product-info .tab-content {
    padding: 15px;
  }
  .related-products-block {
    padding-top: 30px;
  }
  #product .minus-plus > * {
    height: 34px;
  }
  button.pro_wish i,
  button.pro_comper i {
    font-size: 14px;
  }
  #quick-carousel .image-additional a {
    margin: 0 5px;
  }
  .rating .product-rating {
    margin: 0 0 10px 0;
  }
  #product .btn-group button {
    font-size: 14px;
  }
  #product-info .row.mb-3 {
    flex-direction: column;
  }
  #button-cart, #quick-cart {
    line-height: 18px;
    font-size: 12px;
    padding: 8px 23px;
  }
  .right_info,
  .propage-tab {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .product-img {
    width: 480px;
    margin: 0 auto;
  }
  .related-products-block {
    padding-top: 20px;
  }
  .product-btn-quantity .minus-plus {
    margin: 0 15px 0 0;
  }
}
@media (max-width: 575px) {
  #button-cart,
  #quick-cart {
    padding: 9px 22px;
  }
}
@media (max-width: 540px) {
  .product-img {
    width: auto;
  }
  .product-btn-quantity .minus-plus {
    margin: 0 10px 0 0;
  }
  #product .product-btn-quantity {
    display: unset;
  }
  .right_info .price-new {
    font-size: 16px;
  }
}
@media only screen and (max-width: 480px) {
  #product-info .nav-tabs li {
    margin: 0 8px;
  }
}

/*----------------------------------------------*/
/* Contact Us */
/*----------------------------------------------*/
.information-contact .contact-left .title i.fa {
  font-size: 16px;
  height: 34px;
  line-height: 34px;
  margin: 0px 10px 10px 0;
  text-align: center;
  width: 34px;
  color: var(--primary-color);
  background: var(--background-color);
}
.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;
  background: var(--secondary-color);
}
.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;
}
@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;
  background: var(--secondary-color);
  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;
}
.manufacturer-content a:hover {
  color: var(--primary-hover-color);
}

/*account*/
#account-account .account-list-content {
  margin-bottom: 20px;
}
#account-account .account-list-content:last-child {
  margin-bottom: 0;
}
.well {
  padding: 20px;
  border-radius: 0;
  border: 1px solid var(--border-color);
  background: var(--secondary-color);
  box-shadow: none;
}
.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;
  color: var(--secondary-light-color);
}
.account-list-content li a:hover {
  color: var(--primary-color);
}
.panel-body {
  background: var(--background-color);
}

/*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 {
  padding: 7.5px 30px;
  width: auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  /* text-transform: uppercase; */
  /* padding: 10px 30px; */
  border: none;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.product-compare .btn-primary:hover {
  background: var(--primary-color);
}
#product-compare .table > tbody + tbody {
  border-top: 1px solid #ddd;
}

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

/*about us*/
#information-information #content .about-us {
  padding: 20px 5px;
  background: var(--secondary-color);
  border: 1px solid var(--border-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 {
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-light-color);
}
@media (max-width: 767px) {
  .cms-block {
    margin-bottom: 15px;
  }
}

/*----------------------------------------------*/
/* common css */
/*----------------------------------------------*/
.mt-100 {
  margin-top: 100px;
}
.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;
}
.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 > 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: 30px;
  /* display: flex; */
  align-items: center;
}
.form-control {
  display: block;
  width: 100%;
  height: 35px;
  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;
} /*----------------------------------------------*/
/* common css */
/*----------------------------------------------*/
.mt-100 {
  margin-top: 100px;
}
.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;
}
.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 > 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: 30px;
  /* display: flex; */
  align-items: center;
}
.form-control {
  display: block;
  width: 100%;
  height: 45px;
  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;
}
.col-center {
  margin-left: auto;
  margin-right: auto;
  float: unset;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .col-center {
    -ms-flex: 0 0 72.66%;
    flex: 0 0 72.66%;
    max-width: 72.66%;
  }
}
@media (min-width: 992px) {
  .col-center {
    -ms-flex: 0 0 67.369%;
    flex: 0 0 67.369%;
    max-width: 67.369%;
  }
}
@media (min-width: 1441px) {
  .col-center {
    -ms-flex: 0 0 72.518%;
    flex: 0 0 72.518%;
    max-width: 72.518%;
  }
}
@media (min-width: 1801px) {
  .container {
    max-width: 1780px;
  }
}
@media(min-width: 768px) and (max-width: 1800px) {
  .container {
    max-width: unset;
    padding: 0 50px;
  }
}
@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 (max-width: 320px) {
  .block_box :not(.owl-carousel) .col-xs-4,
  .product-layout.product-grid.col-xs-4 {
    width: 100%;
  }
  .form-group {
    margin-bottom: 15px;
  }
}
@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) and (min-width: 600px) {
  /* Mahardhi */
  #content,
  #column-left,
  #column-right {
    width: 100%;
  }
}
@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: 1440px) {
  .mt-80 {
    margin-top: 50px;
  }
  .mt-100 {
    margin-top: 70px;
  }
}
@media (max-width: 1199px) {
  .mt-100 {
    margin-top: 60px;
  }
  .mt-80 {
    margin-top: 40px;
  }
  .mt-60 {
    margin-top: 50px;
  }
  .mt-50 {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .mt-100 {
    margin-top: 50px;
  }
  .mt-80 {
    margin-top: 30px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  .mt-50 {
    margin-top: 30px;
  }
  .mt-40 {
    margin-top: 30px;
  }
  .mt-30 {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  #column-left,
  #column-right {
    display: block !important;
  }
  .mt-100 {
    margin-top: 30px;
  }
  .mt-80 {
    margin-top: 20px;
  }
  .mt-60 {
    margin-top: 20px;
  }
  .mt-50 {
    margin-top: 20px;
  }
  .mt-40 {
    margin-top: 20px;
  }
  .mt-30 {
    margin-top: 0;
  }
}

.featured-gallery .card {
  padding: 10px;
  box-shadow: none !important;
  border: 5px solid var(--background-color);
}
.featured-gallery .card-body {
  margin-top: 10px;
  background: var(--background-color);
}
.featured-gallery .card-title {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}
.featured-gallery .card-description {
  font-size: 16px;
  line-height: 20px;
}
@media (max-width: 1440px) {
  .featured-gallery .card-description {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .featured-gallery .card-description {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .featured-gallery .card-title {
    font-size: 16px;
    line-height: 20px;
  }
  .featured-gallery .card-body {
    padding: 16px 10px;
  }
}

.common-home img.img-fluid[src*="/image/cache/catalog/banners/"]{
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: block;
}
/* Slick clipping */
.common-home .slick-list{
  overflow: hidden !important;
}
/* If the slider is inside Bootstrap columns/rows, remove side padding that causes peeking */
.common-home .slideshow,
.common-home .mt-banner,
.common-home .slick-slider{
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.common-home .slick-slide{
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* Extra insurance: prevent any horizontal bleed */
.common-home .slick-slider,
.common-home .slick-track{
  overflow: hidden;
}
/* Full-bleed wrapper (preferred with Slick) */
.common-home .mt-banner,
.common-home .slideshow{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* Prevent 100vw breakout causing horizontal scroll */
html, body{
  overflow-x: hidden;
}
/* --- FIX: make slickBanner-1 always truly centred and full-width --- */
#common-home #slickBanner-1.slick-slider{
  width: 100% !important;        /* kill the fixed 540/720/960/... widths */
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;         /* remove the container padding */
}

/* Remove the theme's negative margin rule that can shift the list */
#common-home #slickBanner-1.slick-slider > *{
  margin: 0 !important;
}

/* Make the draggable viewport fill the available width */
#common-home #slickBanner-1 .slick-list{
  width: 100% !important;
  overflow: hidden !important;
}

/* Centre the slides when track is narrower than viewport */
#common-home #slickBanner-1 .slick-track{
  display: flex !important;
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
/* Keep table contained on mobile */
.fleet-table-wrapper{
  max-width: 100%;
  overflow-x: auto;              /* safety net */
  -webkit-overflow-scrolling: touch;
}

/* Make the table behave nicely */
.fleet-table{
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  table-layout: fixed;           /* forces columns to fit */
}

/* Padding stays */
.fleet-table td,
.fleet-table th{
  padding: 14px 12px;
  vertical-align: middle;
}

/* Divider line stays */
.fleet-table tbody tr:not(:last-child) td{
  border-bottom: 1px solid #e0e0e0;
}

/* Critical: allow long text to wrap instead of forcing width */
.fleet-table td{
  white-space: normal;
  overflow-wrap: anywhere;       /* breaks long strings/URLs */
  word-break: break-word;        /* extra fallback */
}
@media (max-width: 768px){
  .fleet-table td,
  .fleet-table th{
    padding: 10px 8px;
  }
}
/* Fix padding for Railway Partners logos */
.slick-item.row {
    margin-left: 0;
    margin-right: 0;
}

.slick-item .col-2 {
    padding-left: 20px;
    padding-right: 20px;
}
/* Controls (search + count) */
.fleet-table-controls{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 12px;
  flex-wrap: wrap;
}

.fleet-search{
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-search__label{
  font-weight: 600;
}

.fleet-search input[type="search"]{
  width: min(420px, 100%);
  padding: 10px 12px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
}

.fleet-search__count{
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Wrapper: keep table contained on mobile */
.fleet-table-wrapper{
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Table layout + sticky header support */
.fleet-table{
  width: 100%;
  max-width: 100%;
  border-collapse: separate;   /* important for sticky + clean look */
  border-spacing: 0;
  table-layout: fixed;
}

/* Sticky header */
.fleet-table thead th{
  position: sticky;
  top: 0;                      /* adjust if you have a fixed site header */
  z-index: 5;
  background: #ffffff;
}

/* Padding */
.fleet-table td,
.fleet-table th{
  padding: 14px 12px;
  vertical-align: top;
}

/* Divider line between rows */
.fleet-table tbody tr:not(:last-child) td{
  border-bottom: 1px solid #e0e0e0;
}

/* Zebra striping (subtle) */
.fleet-table tbody tr:nth-child(even) td{
  background: #f7f7f7;
}

/* Keep long text from forcing overflow */
.fleet-table td{
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Mobile tighten-up */
@media (max-width: 768px){
  .fleet-table td,
  .fleet-table th{
    padding: 10px 8px;
  }
}
/* =========================================================
   Class 58 Status Fleet Table enhancements
   - vertical centring (override theme)
   - zebra striping
   - row divider line
   - sticky header
   - mobile overflow safety
   ========================================================= */

.fleet-table-wrapper{
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fleet-table{
  width: 100%;
  max-width: 100%;
  border-collapse: separate; /* helps sticky header + avoids border conflicts */
  border-spacing: 0;
  table-layout: fixed;
}

/* Force vertical centring in cells (theme override-proof) */
.fleet-table > thead > tr > th,
.fleet-table > tbody > tr > td{
  vertical-align: middle !important;
}

/* Comfortable spacing */
.fleet-table td,
.fleet-table th{
  padding: 14px 12px;
  vertical-align: middle;
}

/* Divider line between rows */
.fleet-table tbody tr:not(:last-child) td{
  border-bottom: 1px solid #e0e0e0;
}

/* Zebra striping (subtle) */
.fleet-table tbody tr:nth-child(even) td{
  background: #f7f7f7;
}

/* Sticky header */
.fleet-table thead th{
  position: sticky;
  top: 0;            /* if you have a fixed site header, increase this (e.g. 60px) */
  z-index: 5;
  background: #ffffff;
}

/* Prevent long text from forcing overflow */
.fleet-table td{
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 768px){
  .fleet-table td,
  .fleet-table th{
    padding: 10px 8px;
  }
}


/* Fleet status table column sizing */
.fleet-table th:first-child,
.fleet-table td:first-child{
  width: 80px;
  text-align: center;
  white-space: nowrap;
}

/* Status column narrower */
.fleet-table th:nth-child(4),
.fleet-table td:nth-child(4){
  width: 120px;
  white-space: nowrap;
    grid-row: 1 !important;
    grid-column: 2 !important;
  }

/* --- Class 58 Fleet Status Table Layout --- */

.fleet-table th,
.fleet-table td {
  vertical-align: middle;
}

/* TOPS Number column (slightly wider, left aligned) */
.fleet-table th:first-child,
.fleet-table td:first-child{
  width: 95px;
  text-align: left;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Location column slightly narrower (Notes remains flexible) */
.fleet-table th:nth-child(3),
.fleet-table td:nth-child(3){
  width: 280px;
}

/* Status column compact */
.fleet-table th:nth-child(4),
.fleet-table td:nth-child(4){
  width: 120px;
  white-space: nowrap;
}

/* Notes column flexible */
.fleet-table th:nth-child(5),
.fleet-table td:nth-child(5){
  width: auto;
}


/* =========================================================
   Class 58 Fleet Table — Mobile "Card" Layout (<=768px)
   Keeps desktop table unchanged; mobile becomes stacked cards.
   ========================================================= */
@media (max-width: 768px){
  /* Prevent any lingering horizontal overflow on small screens */
  .fleet-table-wrapper{
    overflow-x: visible !important;
  }

  /* Hide the header row on mobile (labels are shown via data-label) */
  .fleet-table thead{
    display: none;
  }

  /* Table elements become block-level for card layout */
  .fleet-table,
  .fleet-table tbody,
  .fleet-table tr{
    display: block;
    width: 100%;
  }

  /* Each TR becomes a card */
  .fleet-table tbody tr{
    margin: 0 0 12px 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
  }

  /* Remove desktop row striping and row divider line treatment inside cards */
  .fleet-table tbody tr:nth-child(even) td{
    background: transparent !important;
  }
  .fleet-table tbody tr td{
    border-bottom: none !important;
  }

  /* TD becomes a labelled row within the card */
  .fleet-table td{
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 10px 12px;
    border-top: 1px solid #f0f0f0;
    white-space: normal !important;
    word-break: break-word;
  }

  .fleet-table td:first-child{
    border-top: none;
    font-weight: 700;
  }

  /* Label column */
  .fleet-table td::before{
    content: attr(data-label);
    flex: 0 0 90px;
    font-weight: 600;
    opacity: 0.85;
  }

  /* Value column */
  .fleet-table td > *{
    min-width: 0;
  }
}

/* ---------- Mobile: table -> stacked cards (enhanced) ---------- */
@media (max-width: 768px){

  .fleet-table{
    table-layout: auto; /* better for mobile cards */
  }

  /* Hide table header on mobile */
  .fleet-table thead{
    display: none;
  }

  /* Each row becomes a card */
  .fleet-table,
  .fleet-table tbody{
    display: block;
    width: 100%;
  }

  .fleet-table tbody tr{
    display: grid;
    grid-template-columns: 1fr auto; align-items: center;
    /* TOPS left, Status badge right */
    gap: 0;
    margin: 0 0 8px 0;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
  }

  /* Remove zebra + row divider lines (cards have their own border) */
  .fleet-table tbody tr td{
    background: transparent;
  }
  .fleet-table tbody tr:not(:last-child) td{
    border-bottom: none;
  }

  /* Base cell styling inside cards */
  .fleet-table td{
    display: block;
    padding: 8px 10px;
    border-top: 1px solid #f0f0f0;
    white-space: normal;
    min-width: 0;
  }

/* Mobile wrapping: avoid breaking every character (prevents “vertical” words) */
.fleet-table td{
  overflow-wrap: break-word;
  word-break: normal;
}

/* Notes: put label on its own line so key dates stay together */
.fleet-table td[data-label="Notes"]{
  display: block !important;
}
.fleet-table td[data-label="Notes"]::before{
  display: block;
  margin: 0 0 6px 0;
}

  /* Card header: TOPS number (left) */
  .fleet-table td:first-child{
    grid-column: 1;
    border-top: none;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.2;
  }
  .fleet-table td:first-child::before{
    content: none !important;
  }

  /* Card header: Status badge (right) */
  .fleet-table td:nth-child(4){
    grid-column: 2;
    border-top: none;
    align-self: center;
    justify-self: end;
    padding: 8px 10px;
    margin: 8px 10px 0 0;
    border: 1px solid #d6d6d6;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
    background: #ffffff;
  }
  .fleet-table td:nth-child(4)::before{
    content: none !important;
  }

  /* All other fields span full width below header */
  .fleet-table td:not(:first-child):not(:nth-child(4)){
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 90px 1fr; /* label + value */
    gap: 8px;
    align-items: start;
  }

  /* Labels */
  .fleet-table td:not(:first-child):not(:nth-child(4))::before{
    content: attr(data-label);
    font-weight: 700;
    opacity: 0.85;
  }

  /* Prevent long values causing “vertical text” */
  .fleet-table td:not(:first-child):not(:nth-child(4)) > *{
    min-width: 0;
  }

  /* Slightly tighter padding for phones */
  .fleet-table td{
    padding: 10px 12px;
  }
}


/* =========================================================
   Mobile card tweaks (March 2026)
   - centre status pill vertically
   - slightly larger TOPS number
   - Location forced to a single line
   - tighter spacing on cards
   ========================================================= */
@media (max-width: 768px){

  /* tighter cards */
  .fleet-table tbody tr{
    margin: 0 0 8px 0 !important;
    align-items: center;
  }

  .fleet-table td{
    padding: 8px 10px !important;
  }

  /* TOPS number slightly larger */
  .fleet-table td:first-child{
    font-size: 1.15rem !important;
    line-height: 1.15;
  }

  /* Keep TOPS + status on same header row */
  .fleet-table td:first-child{ grid-row: 1 !important; grid-column: 1 !important; }

  /* Status pill: vertically centred + not “hugging” borders */
  .fleet-table td:nth-child(4){
    align-self: center !important;
    margin: 0 10px 0 0 !important;
    padding: 6px 10px !important;
  }

  /* Label/value rows tighter */
  .fleet-table td:not(:first-child):not(:nth-child(4)){
    grid-template-columns: 90px 1fr !important;
    gap: 8px !important;
  }

  .fleet-table td[data-label="Location"]::before,
  .fleet-table td[data-label="Notes"]::before{
    margin: 0 0 4px 0 !important;
  }

  
/* Location: single line within full card width (truncate gracefully) */
.fleet-table td[data-label="Location"]{
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  min-width: 0;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fleet-table td[data-label="Location"]::before{
  display: block;
  margin: 0 0 4px 0 !important;
  white-space: normal;
}

/* --- Mobile card status text (no pill) --- */
@media (max-width:768px){

  .fleet-table td:nth-child(4){
    grid-column:2;
    grid-row:1;
    align-self:center;
    justify-self:end;
    padding:0;
    margin:0;
    border:none;
    background:none;
    font-weight:700;
    text-align:right;
    white-space:nowrap;
  }

  /* slightly larger TOPS number */
  .fleet-table td:first-child{
    font-size:1.15rem;
    font-weight:800;
  }

  /* tighter card spacing */
  .fleet-table tbody tr{
    margin:0 0 10px 0;
  }
  /* Make NAME field match Location layout on mobile cards */
@media (max-width: 768px){

  .fleet-table td:nth-child(2){
    display:block;
    grid-column:1 / -1;
    padding-top:6px;
  }

  .fleet-table td:nth-child(2)::before{
    display:block;
    margin-bottom:2px;
  }

}


/* =========================================================
   Mobile card tweak: make Name match Location layout
   ========================================================= */
@media (max-width: 768px){
  .fleet-table td[data-label="Name (Date Named)"]{
    display: block !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: none !important;
    width: 100% !important;
  }

  .fleet-table td[data-label="Name (Date Named)"]::before{
    display: block !important;
    margin: 0 0 4px 0 !important;
  }
}


/* =========================================================
   Scrapped cards: titles red ONLY when status is scrapped
   ========================================================= */
@media (max-width: 768px){

  /* Only rows where the STATUS column is scrapped */
  .fleet-table tr td.status-scrapped ~ td::before,
  .fleet-table tr td.status-scrapped::before{
    color:#c0392b !important;
  }

  /* Subtle visual polish for mobile cards */
  .fleet-table tbody tr{
    margin-bottom:10px;
  }

  .fleet-table td{
    padding-top:6px;
    padding-bottom:6px;
  }

  .fleet-table td::before{
    font-weight:600;
  }
  /* ===============================
   Fleet status table refinements
   =============================== */

/* Slightly lighter divider lines */
.fleet-table tbody tr {
  border-bottom: 1px solid #e6e6e6;
}

/* Perfect vertical alignment in cells */
.fleet-table td,
.fleet-table th {
  vertical-align: middle;
}

/* Alternate row shading (desktop table) */
.fleet-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Stronger section labels on mobile cards */
@media (max-width:768px){

  .fleet-table td::before{
    font-weight:600;
    letter-spacing:0.2px;
    margin-bottom:3px;
    display:block;
  }

  /* Perfect vertical spacing balance */
  .fleet-table td{
    padding:8px 0;
  }

  .fleet-table tr{
    padding:12px 14px;
    margin-bottom:12px;
  }

  /* Lighter divider inside cards */
  .fleet-table tr td + td{
    border-top:1px solid #f0f0f0;
  }

}

/* Scrapped cards – red titles */
@media (max-width:768px){

  .fleet-table tr:has(td.status-scrapped) td::before{
    color:#c0392b;
  }
  /* App-like mobile card styling */
@media (max-width: 768px){

  .fleet-table tbody tr{
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin: 0 0 14px 0;
    overflow: hidden;
  }

  .fleet-table tbody tr:nth-child(even){
    background: #fafafa;
  }

  .fleet-table tbody tr:nth-child(odd){
    background: #ffffff;
  }

  .fleet-table td{
    padding: 8px 0;
  }

  .fleet-table tr td + td{
    border-top: 1px solid #f1f1f1;
  }

  .fleet-table td::before{
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  @media (max-width:768px){

  .fleet-search input{
    font-size:16px;
  }

  .fleet-search input{
  font-size:16px;
  padding:10px 12px;
  border-radius:6px;
}

}


/* --- Fix nested desktop submenu positioning for More > Models flyout --- */
@media (min-width: 992px) {
  #menu .dropdown-menu,
  #menu .dropdown-menu.navcol-menu,
  #menu .dropdown-menu.navcol-menu.item-column,
  #menu .dropdown-inner,
  #menu .dropdown-inner ul,
  #menu .dropdown-inner .childs_1 {
    overflow: visible;
  }

  #menu .column-1 .dropdown-inner .dropdown-submenu {
    position: relative;
  }

  #menu .column-1 .dropdown-inner .dropdown-submenu > ul.sub-menu {
    left: calc(100% - 1px) !important;
    top: 0 !important;
    right: auto !important;
    margin: 0 !important;
    z-index: 1001 !important;
    min-width: 200px;
  }

  #menu .column-1 .dropdown-inner .dropdown-submenu:hover > ul.sub-menu {
    top: 0 !important;
    left: calc(100% - 1px) !important;
  }
}

@media (max-width: 768px) {
  .c58-account-page .row {
    display: block;
  }

  .c58-account-page #content,
  .c58-account-page #column-left,
  .c58-account-page #column-right,
  .c58-account-page .col,
  .c58-account-page [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    display: block;
  }

  .c58-account-page #column-left,
  .c58-account-page #column-right {
    margin-top: 20px;
  }

  .c58-account-page .c58-account-wrap,
  .c58-account-page .c58-account-card {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  #account-account .row,
  #account-edit .row,
  #account-address .row,
  #account-download .row,
  #account-password .row,
  #account-newsletter .row,
  #account-order .row,
  #account-return .row,
  #account-reward .row,
  #account-transaction .row,
  #account-tracking .row {
    display: block;
  }

  #account-account #content,
  #account-edit #content,
  #account-address #content,
  #account-download #content,
  #account-password #content,
  #account-newsletter #content,
  #account-order #content,
  #account-return #content,
  #account-reward #content,
  #account-transaction #content,
  #account-tracking #content,
  #account-account #column-right,
  #account-edit #column-right,
  #account-address #column-right,
  #account-download #column-right,
  #account-password #column-right,
  #account-newsletter #column-right,
  #account-order #column-right,
  #account-return #column-right,
  #account-reward #column-right,
  #account-transaction #column-right,
  #account-tracking #column-right,
  #account-account #column-left,
  #account-edit #column-left,
  #account-address #column-left,
  #account-download #column-left,
  #account-password #column-left,
  #account-newsletter #column-left,
  #account-order #column-left,
  #account-return #column-left,
  #account-reward #column-left,
  #account-transaction #column-left,
  #account-tracking #column-left {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .c58-account-page{margin-top:18px;margin-bottom:32px;}
  .c58-account-page *{box-sizing:border-box}
  .c58-account-page .row{align-items:flex-start}
  .c58-account-page #content{flex:1 1 0%;width:100%;max-width:none;min-width:0}
  .c58-account-page .breadcrumb{margin:0 0 22px;padding:0;background:none}
  .c58-account-page .breadcrumb-item,.c58-account-page .breadcrumb-item a{font-size:13px;color:#666}
  .c58-account-page .breadcrumb-item+.breadcrumb-item::before{color:#aaa}
  .c58-account-wrap{max-width:none;width:100%;margin:0 0 24px}
  .c58-account-page #content .c58-account-wrap{max-width:none;width:100%}
  .c58-account-card{width:100%;max-width:none;padding:28px 26px;background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);border:1px solid #e7e7e7;border-left:4px solid #FCC708;border-radius:14px;box-shadow:0 6px 24px rgba(0,0,0,.06)}
  .c58-page-kicker{margin:0 0 8px;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1.4px;color:#FCC708}
  .c58-account-page h1{margin:0 0 15px;font-size:36px;line-height:1.15;color:#3f3f3f}
  .c58-account-page h2{margin:0 0 14px;font-size:24px;line-height:1.25;color:#3f3f3f}
  .c58-standfirst{margin:0 0 26px;font-size:18px;line-height:1.75;color:#4b4b4b}
  .c58-account-page .table-responsive{border:1px solid #e7e7e7;border-radius:12px;overflow:hidden;background:#fff;margin-bottom:18px}
  .c58-account-page .table{margin-bottom:0}
  .c58-account-page .table thead th{background:#f5f5f5;color:#555;border-bottom-width:1px}
  .c58-account-page .table td,.c58-account-page .table th{vertical-align:middle}
  .c58-account-page .c58-link-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin:0}
  .c58-account-page .c58-link-card{padding:20px;background:#fff;border:1px solid #e7e7e7;border-radius:12px;box-shadow:0 4px 14px rgba(0,0,0,.04)}
  .c58-account-page .c58-link-card h2{margin-bottom:12px;font-size:22px}
  .c58-account-page .c58-link-card ul{margin:0;padding:0;list-style:none}
  .c58-account-page .c58-link-card li+li{margin-top:10px}
  .c58-account-page .c58-link-card a{color:#444;text-decoration:none;font-weight:600}
  .c58-account-page .c58-link-card a:hover{color:#000;text-decoration:underline}
  .c58-account-page .pagination-wrap{display:flex;justify-content:space-between;gap:16px;align-items:center;flex-wrap:wrap}
  @media (max-width:768px){
  .c58-account-card{padding:22px 18px}
  .c58-account-page h1{font-size:28px}
  .c58-standfirst{font-size:16px}
  .c58-account-page .c58-link-grid{grid-template-columns:1fr}
  }
}

/* --- Targeted rounded button fix for the actual live selectors --- */
.product-thumb .addcart,
.inner2 .button,
.inner2 button {
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  overflow: hidden;
}

/* Catch theme overlay/pseudo-element cases if present */
.product-thumb .addcart::before,
.product-thumb .addcart::after,
.inner2 .button::before,
.inner2 .button::after,
.inner2 button::before,
.inner2 button::after {
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
}
.product-thumb .addcart,
.inner2 .button {
  border-radius: 30px !important;
  -webkit-border-radius: 30px !important;
  -moz-border-radius: 30px !important;
  overflow: hidden;
}
.product-thumb .addcart,
.inner2 .button {
  border-radius: 30px !important;
}
/* Left sidebar outer spacing */
#column-left {
  margin-bottom: 30px;
}

/* Target actual OC/Mahardhi sidebar modules */
#column-left .module,
#column-left .card,
#column-left .box,
#column-left .list-group,
#column-left .category-module,
#column-left .ocfilter,
#column-left .panel-default {
  background: #f8f8f8 !important;
  border: 1px solid #e3e3e3 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04) !important;
  margin-bottom: 22px !important;
}

/* Sidebar headings */
#column-left .module h3,
#column-left .box-heading,
#column-left .panel-heading,
#column-left .card-header,
#column-left .list-group > a:first-child,
#column-left .list-group-item:first-child {
  background: #f3f3f3 !important;
  color: #3f3f3f !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  padding: 14px 18px !important;
  border-bottom: 1px solid #e3e3e3 !important;
  margin: 0 !important;
}

/* Category / sidebar links */
#column-left .list-group-item,
#column-left .list-group a,
#column-left .nav > li > a,
#column-left .category-module a,
#column-left .module a {
  display: block !important;
  background: #fff !important;
  color: #424242 !important;
  border: 0 !important;
  border-bottom: 1px solid #ececec !important;
  padding: 13px 18px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  border-radius: 0 !important;
}

/* Last item */
#column-left .list-group-item:last-child,
#column-left .list-group a:last-child,
#column-left .nav > li:last-child > a,
#column-left .category-module a:last-child,
#column-left .module a:last-child {
  border-bottom: 0 !important;
}

/* Hover */
#column-left .list-group-item:hover,
#column-left .list-group a:hover,
#column-left .nav > li > a:hover,
#column-left .category-module a:hover,
#column-left .module a:hover {
  background: #fff8e7 !important;
  color: #3f3f3f !important;
  padding-left: 22px !important;
}

/* Active item */
#column-left .list-group-item.active,
#column-left .list-group-item.active:hover,
#column-left .list-group a.active,
#column-left .nav > li.active > a,
#column-left .category-module a.active {
  background: #FCC708 !important;
  color: #222 !important;
  font-weight: 700 !important;
  border-color: #FCC708 !important;
}

/* Inner content blocks */
#column-left .panel-body,
#column-left .card-body,
#column-left .box-content,
#column-left .module .filter-group,
#column-left .module .checkbox,
#column-left .module .radio {
  padding: 16px 18px !important;
  color: #424242 !important;
}

/* Mobile / tablet */
@media (max-width: 991px) {
  #column-left .module h3,
  #column-left .box-heading,
  #column-left .panel-heading,
  #column-left .card-header,
  #column-left .list-group > a:first-child,
  #column-left .list-group-item:first-child {
    font-size: 16px !important;
    padding: 12px 15px !important;
  }

  #column-left .list-group-item,
  #column-left .list-group a,
  #column-left .nav > li > a,
  #column-left .category-module a,
  #column-left .module a {
    font-size: 14px !important;
    padding: 12px 15px !important;
  }
/* Styled sidebar wrapper */
.c58-sidebar {
  margin-bottom: 30px;
}

.c58-sidebar .c58-sidebar-module {
  margin-bottom: 24px;
}

.c58-sidebar .c58-sidebar-module > * {
  background: #f8f8f8;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
}

/* Sidebar headings */
.c58-sidebar .c58-sidebar-module .title,
.c58-sidebar .c58-sidebar-module h3,
.c58-sidebar .c58-sidebar-module .card-header,
.c58-sidebar .c58-sidebar-module .panel-heading,
.c58-sidebar .c58-sidebar-module .box-heading,
.c58-sidebar .c58-sidebar-module .list-group-item:first-child {
  margin: 0;
  padding: 14px 18px;
  background: #f3f3f3;
  color: #3f3f3f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  border-bottom: 1px solid #e3e3e3;
}

/* Links / list items */
.c58-sidebar .c58-sidebar-module a,
.c58-sidebar .c58-sidebar-module .list-group-item,
.c58-sidebar .c58-sidebar-module .nav li a,
.c58-sidebar .c58-sidebar-module .list-unstyled li a {
  display: block;
  padding: 13px 18px;
  background: #fff;
  color: #424242;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  border-bottom: 1px solid #ececec;
  transition: all 0.2s ease;
}

.c58-sidebar .c58-sidebar-module .list-group-item:last-child,
.c58-sidebar .c58-sidebar-module .nav li:last-child a,
.c58-sidebar .c58-sidebar-module .list-unstyled li:last-child a {
  border-bottom: 0;
}

.c58-sidebar .c58-sidebar-module a:hover,
.c58-sidebar .c58-sidebar-module .list-group-item:hover,
.c58-sidebar .c58-sidebar-module .nav li a:hover,
.c58-sidebar .c58-sidebar-module .list-unstyled li a:hover {
  background: #fff8e7;
  color: #3f3f3f;
  padding-left: 22px;
}

.c58-sidebar .c58-sidebar-module .list-group-item.active,
.c58-sidebar .c58-sidebar-module .list-group-item.active:hover,
.c58-sidebar .c58-sidebar-module .nav li.active > a,
.c58-sidebar .c58-sidebar-module a.active {
  background: #FCC708;
  color: #222;
  font-weight: 700;
  border-color: #FCC708;
}

/* Inner module content */
.c58-sidebar .c58-sidebar-module .card-body,
.c58-sidebar .c58-sidebar-module .panel-body,
.c58-sidebar .c58-sidebar-module .box-content,
.c58-sidebar .c58-sidebar-module .module-content,
.c58-sidebar .c58-sidebar-module form,
.c58-sidebar .c58-sidebar-module .filter-group {
  padding: 16px 18px;
  color: #424242;
}

/* Tablet / mobile */
@media (max-width: 991px) {
  .c58-sidebar .c58-sidebar-module .title,
  .c58-sidebar .c58-sidebar-module h3,
  .c58-sidebar .c58-sidebar-module .card-header,
  .c58-sidebar .c58-sidebar-module .panel-heading,
  .c58-sidebar .c58-sidebar-module .box-heading,
  .c58-sidebar .c58-sidebar-module .list-group-item:first-child {
    font-size: 16px;
    padding: 12px 15px;
  }

  .c58-sidebar .c58-sidebar-module a,
  .c58-sidebar .c58-sidebar-module .list-group-item,
  .c58-sidebar .c58-sidebar-module .nav li a,
  .c58-sidebar .c58-sidebar-module .list-unstyled li a {
    font-size: 14px;
    padding: 12px 15px;
  }
}