body {
  font-family: "Inter", serif;
  font-weight: 400;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 20px;
}

/*----------------------------------------------*/
/* General Style */
/*----------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #252525;
  font-weight: 500;
  text-transform: capitalize;
}
/* 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: #252525;
}
a:hover {
  text-decoration: none;
}
.fa {
  font-size: 14px;
}
legend {
  font-size: 18px;
  padding: 7px 0px;
  border-color: var(--border-color);
}
label {
  font-size: 15px;
  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;
}

/* Fix some bootstrap issues */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
  display: inline;
}
a:focus,
a:hover,
div:focus,
button:focus,
img:focus {
  text-decoration: none;
  outline: none;
  color: var(--primary-hover-color);
}
div.required .control-label:before {
  content: "* ";
  color: #f00;
  font-weight: bold;
}

input:focus,
select:focus,
textarea:focus,
div:focus,
img:focus,
.form-control:focus,
i:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

/*----------------------------------------------*/
/* scroll bar */
/*----------------------------------------------*/
/*body ::-webkit-scrollbar-track
{
    background-color: #f2f2f2;
    border-radius:0;
}
body ::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background-color: var(--border-color);
    border-radius: 0;
}
body ::-webkit-scrollbar-thumb
{
    background-color: var(--border-color);
    border-radius: 0;
}
textarea {
    overflow: auto;
    resize: vertical;
}
::-moz-selection {
    background-color: #232323;
    color: var(--secondary-color);
}
::selection {
    background-color: #232323;
    color: var(--secondary-color);
}*/

/*----------------------------------------------*/
/* scrollToTop */
/*----------------------------------------------*/
.scrollToTop i {
  font-size: 20px;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 40px;
  width: 40px;
  color: var(--primary-hover-color);
  border: 2px solid var(--primary-hover-color);
  border-radius: 25px;
  font-size: 18px;
  line-height: 38px;
  text-align: center;
  z-index: 999;
  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;
  animation: bouncekey 1s infinite;
  -webkit-animation: bouncekey 1s infinite;
}
.scrollToTop:hover {
  background: var(--primary-hover-color);
}
.scrollToTop:hover i {
  color: var(--secondary-color);
}
@-webkit-keyframes bouncekey {
  0% {
    bottom: 22px;
  }
  25%,
  75% {
    bottom: 25px;
  }
  50% {
    bottom: 27px;
  }
  100% {
    bottom: 20;
  }
}

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

/*----------------------------------------------*/
/* QuickView Loader*/
/*----------------------------------------------*/
.quickview-wrapper {
  background-color: var(--secondary-color);
  display: none;
  height: 80vh;
  left: 0;
  margin: 0 auto;
  overflow: auto;
  padding: 30px 15px;
  position: fixed;
  right: 0;
  top: 7%;
  width: 70%;
  z-index: 9999;
}
.quickview-overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  position: fixed;
  z-index: 99;
}
.quickview-btn {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 15px;
  font-size: 28px;
  line-height: 14px;
  text-align: center;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out 0ms;
  -webkit-transition: all 0.3s ease-in-out 0ms;
  -moz-transition: all 0.3s ease-in-out 0ms;
  -o-transition: all 0.3s ease-in-out 0ms;
  -ms-transition: all 0.3s ease-in-out 0ms;
}
.quickview-btn:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.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 {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.quickview-loader-inner:before {
  font-family: FontAwesome;
  font-size: 30px;
  margin: 0 auto;
  text-align: center;
  content: "\f1ce";
  color: var(--secondary-color);
  vertical-align: middle;
}
@media (max-width: 991px) {
  .quickview-wrapper {
    width: 90%;
    padding: 20px 5px;
  }
}

/*----------------------------------------------*/
/* alert */
/*----------------------------------------------*/
.alert.alert-success {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  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 {
  font-size: 22px;
  opacity: 1;
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 36px;
  text-shadow: none;
}
.newsletterblock .alert {
  position: fixed;
  z-index: 22;
  top: 0;
  width: 100%;
  left: 0;
}
#form-review .alert.alert-success,
#post_comment .alert {
  position: relative;
}

/*----------------------------------------------*/
/* Start Newsletter Popup */
/*----------------------------------------------*/
.newsletter-image {
  background: url(../image/mahardhi/popup-image.jpg) no-repeat center center;
  position: relative;
  height: 400px;
  max-width: 300px;
  width: 100%;
}
.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}
.modal-content {
  border: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--secondary-color);
  background-clip: padding-box;
  border-radius: 0;
}
.newsletter-popup .modal-dialog {
  margin: 20px auto;
  max-width: 650px;
  text-align: center;
}
.newsletter-btn-close.close {
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0.8;
  text-shadow: none;
  font-size: 12px;
  transition: all 0.3s ease-in-out 0ms;
  -webkit-transition: all 0.3s ease-in-out 0ms;
  -moz-transition: all 0.3s ease-in-out 0ms;
  -o-transition: all 0.3s ease-in-out 0ms;
  -ms-transition: all 0.3s ease-in-out 0ms;
}
.newsletter-btn-close.close:hover {
  opacity: 1;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.newsletter-popup .modal-body {
  display: flex;
  align-items: center;
}
.newsletter-content h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  position: relative;
  padding: 0 0 25px 0;
}
.newsletter-content p {
  margin: 0 0 15px;
  font-size: 15px;
}
.newsletter-content input[type="text"] {
  width: 70%;
  margin: 0 auto;
  height: 42px;
  border: 1px solid var(--border-color);
  padding: 0 10px;
}
.newsletter-content .btn {
  margin: 15px auto;
  border-radius: 25px;
  padding: 8px 20px;
}
.newsletter-content-innner .alert {
  margin: 0 auto 10px;
  display: table;
  position: relative;
  width: 100%;
}
.newsletter-content .newsletter_usr_popup_email {
  width: 100%;
  min-width: 220px;
  max-width: 300px;
  height: 40px;
  padding: 10px 15px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  display: block;
  margin: auto;
}
@media (min-width: 768px) {
  .newsletter-popup .modal-dialog {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .newsletter-popup .modal-dialog {
    width: 95%;
  }
}
@media (max-width: 600px) {
  .newsletter-popup .modal-body {
    display: block;
  }
  .newsletter-image {
    margin: 0 auto 20px;
  }
  .newsletter-content h3 {
    padding: 0 0 15px 0;
    font-size: 20px;
  }
}
@media (min-width: 541px) {
  .newsletter-content-innner .alert {
    max-width: 90%;
  }
}

/*----------------------------------------------*/
/* Start top */
/*----------------------------------------------*/
#top {
  background: var(--primary-hover-color);
}

/*---- top left---- */
.top-left {
  float: left;
  padding: 12px 0;
}
.contact-time {
  color: var(--secondary-color);
}
.top-left .fa {
  padding-right: 6px;
}

/*---- top right---- */
.top-right {
  float: right;
  display: flex;
}
.top-right > div + div {
  margin: 0 0 0 20px;
}
.top-right .btn.dropdown-toggle,
#header_ac > a {
  color: var(--secondary-color);
  text-transform: capitalize;
  font-size: 14px;
  border: none;
  padding: 12px 0;
  display: block;
}
.top-right span.drop-text:after {
  content: ":";
}
.top-right .btn.dropdown-toggle:hover,
#header_ac > a:hover {
  color: var(--primary-color);
}
.top-right .code {
  text-transform: uppercase;
}
.top-right ul.dropdown-menu,
#header_ac .dropdown-menu {
  padding: 7px 0;
  right: 0;
  left: auto;
}
.top-right ul.dropdown-menu button,
.account-link-toggle li a {
  text-align: left;
  border: none;
  padding: 3px 13px;
  font-size: 14px;
}

/*----------------------------------------------*/
/* Start header */
/*----------------------------------------------*/
header {
  position: relative;
}
.header-top {
  padding: 30px 0;
  position: relative;
}
.header-top .row {
  display: flex;
  align-items: center;
}
.header-center {
  border-top: 1px solid var(--border-color);
  text-align: center;
}

/*----- header left -----*/
.contact .icon-support {
  font-size: 40px;
  padding: 0 13px 0 0;
  color: var(--primary-hover-color);
}
.contact a {
  display: flex;
  align-items: center;
}
.contact span span {
  display: block;
}

/*----- header center -----*/
#logo {
  float: left;
}
#logo img {
  margin: auto;
  image-rendering: -webkit-optimize-contrast;
}

/*----- header right -----*/
.btn_search .icon-search,
#cart > .btn:before {
  position: relative;
  cursor: pointer;
  display: block;
  font-size: 20px;
}
/*search*/
.btn_search {
  position: relative;
}
.btn_search .form-control {
  padding: 2px 10px;
  border: none;
  height: 40px;
}
.header-search .icon-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 12px;
  cursor: pointer;
}
.header-search {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--secondary-color);
  padding: 0 30px;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  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;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.header-search.active {
  opacity: 1;
  visibility: visible;
}
#mahardhiSearch .input-lg,
#search .input-lg {
  height: 40px;
  border: none;
}
#mahardhiSearch input {
  padding: 6px 35px 6px 15px;
}
.category-search {
  position: relative;
}
.category-search:after {
  border-left: 1px solid var(--border-color);
  content: "";
  height: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 9;
  margin: auto;
}
/*-- mahardhi edit --*/
#mahardhiSearch,
#search {
  display: flex;
  position: relative;
  width: 90%;
  border-bottom: 1px solid var(--border-color);
}
#mahardhiSearch > *,
#search > * {
  background: transparent;
  color: var(--primary-color);
  display: block;
}
#mahardhiSearch .btn-search,
#search .input-group-btn {
  width: auto;
  background: transparent;
  position: absolute;
  right: 0;
}
#mahardhiSearch .btn-search button,
#search .input-group-btn button {
  padding: 10px 12px;
  font-size: 16px;
  border: none;
  background: transparent;
  color: var(--primary-color);
}
.ui-autocomplete.ui-menu .ui-menu-item {
  list-style-image: none;
}
.ui-autocomplete .mahardhi-search {
  position: relative;
  display: table;
  width: 100%;
  padding: 5px 0px;
}
.ui-autocomplete .mahardhi-search > div {
  display: table-cell;
  vertical-align: top;
}
.ui-autocomplete .mahardhi-search .images {
  width: 80px;
  padding-right: 10px;
}
.ui-autocomplete .mahardhi-search .product-detail .price-old {
  color: var(--secondary-light-color);
  text-decoration: line-through;
  margin-left: 10px;
}
#mahardhiSearch select.form-control.input-lg {
  border: none;
  padding: 6px 10px;
  line-height: 1.42857143;
  width: auto;
  background: transparent;
}

/*--- header right---*/
.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header_ac .fa-user-o {
  color: var(--secondary-color);
  font-size: 20px;
}
.language .language-drop,
.currency .currency-drop {
  padding: 0 0 5px;
  border-bottom: 1px solid #eee;
  width: 100%;
  display: block;
  margin: 10px 0;
  text-align: left;
}
.language ul.language-selector,
.currency ul.currency-selector {
  padding: 0;
}
#header_ac button {
  text-align: left;
  text-transform: capitalize;
}
.language .language-selector li,
.currency .currency-selector li {
  display: block;
}

/*cart*/
.header_cart {
  padding: 0 0 0 28px;
  position: relative;
}
#cart {
  position: unset;
}
#cart > .btn {
  background: transparent;
  padding: 10px 5px 10px 0;
  border: none;
  color: var(--secondary-color);
  box-shadow: none;
}
#cart > .btn:before {
  content: "\e902";
  font-family: "Mahardhi-Fonts" !important;
  color: var(--primary-color);
}
#cart > .btn:hover:before {
  color: var(--primary-hover-color);
}
#cart-total {
  position: absolute;
  right: 2px;
  bottom: 3px;
  background: var(--primary-hover-color);
  border-radius: 25px;
  font-size: 12px;
  padding: 0px 4.5px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}
#cart .dropdown-menu {
  overflow: hidden;
  display: none;
  background: var(--secondary-color);
  z-index: 1001;
  margin: 0;
  padding: 0px;
  width: 301px;
  border-bottom: 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;
}
.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: var(--secondary-color);
}
#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;
  width: 80px;
}
#cart .dropdown-menu table td {
  background: none;
  border: none;
  padding: 5px 4px;
  color: var(--primary-color);
}
#cart .dropdown-menu li td,
td.cart-total-price {
  font-size: 14px;
  font-weight: 600;
}
#cart .img-thumbnail {
  padding: 0;
  border-radius: 0;
}
#cart .dropdown-menu table td.product-cart-details {
  padding-left: 10px;
  padding-right: 10px;
}
#cart .dropdown-menu .product-item-name,
#cart .product-cart-info .product-cart-qty {
  font-weight: normal;
  font-size: 15px;
}
.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: var(--secondary-color);
  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;
}
.product-cart-button {
  padding: 0px 0px 20px 0px;
}

/*--- Header Bottom ---*/
/* Header fixed */
.header-fixed {
  position: fixed;
  background: var(--secondary-color);
  top: 0;
  left: 0;
  right: 0;
  -webkit-animation: fadeInDown 0.5s ease-out forwards;
  -moz-animation: fadeInDown 0.5s ease-out forwards;
  -o-animation: fadeInDown 0.5s ease-out forwards;
  animation: fadeInDown 0.5s ease-out forwards;
  z-index: 9;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
@media only screen and (max-width: 1440px) {
  .header-top {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 1199px) {
  #logo img {
    width: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .header-top {
    padding: 15px 0;
  }
  #logo img {
    margin: 0;
  }
  .contact .icon-support {
    font-size: 36px;
    padding: 0 5px 0 0;
  }
  .header-links {
    float: right;
  }
  .header_cart {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .top-right {
    float: unset;
    justify-content: center;
  }
  #mahardhiSearch,
  #search {
    margin: 25px 0;
    width: 100%;
  }
  #mahardhiSearch select.form-control.input-lg {
    width: 100%;
  }
  .serach-close {
    right: 5px;
    top: 5px;
  }
}
@media (max-width: 480px) {
  #logo img {
    width: 120px;
  }
  .top-right span.drop-text:after,
  .top-right .code {
    display: none;
  }
  .top-right .currency ul.dropdown-menu {
    left: 0;
    right: auto;
  }
  .header-top {
    padding: 10px 0;
  }
  .header-search {
    padding: 0 20px;
  }
  .ui-autocomplete .mahardhi-search .product-detail {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  #cart .dropdown-menu {
    right: -25px;
  }
  #mahardhiSearch .input-lg,
  #search .input-lg,
  #mahardhiSearch select.form-control.input-lg {
    font-size: 10px;
  }
}

/*----------------------------------------------*/
/* menu start */
/*----------------------------------------------*/
#menu {
  border: none;
  border-radius: 0;
  text-transform: uppercase;
  min-height: unset;
  display: inline-block;
  margin: 0;
  vertical-align: top;
}
#menu .nav > li > a {
  color: var(--primary-color);
  padding: 5px 0;
  font-size: 15px;
  border-radius: 0;
  font-weight: 500;
  background: transparent;
}
#menu .dropdown-inner,
#navCategory .dropdown-inner {
  display: table;
}
#menu .dropdown-inner ul,
#navCategory .dropdown-inner > ul {
  display: table-cell;
}
#menu .menulist .dropdown-menu a {
  font-size: 14px;
  text-transform: capitalize;
}
#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 {
  color: var(--primary-hover-color);
  background-color: transparent;
}
#menu .dropdown-inner .dropdown-submenu,
#navCategory .dropdown-inner .dropdown-submenu {
  position: relative;
}
#menu .column-1 .dropdown-inner li.dropdown-submenu > .fa {
  position: absolute;
  right: 10px;
  top: 0;
  padding: 8px 0;
}
#menu .see-all {
  display: block;
  margin-top: 0.5em;
  border-top: 1px solid var(--border-color);
  padding: 3px 20px;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 3px 3px;
  font-size: 12px;
}
#menu .see-all:hover,
#menu .see-all:focus {
  text-decoration: none;
  color: var(--secondary-color);
  background-color: #229ac8;
  background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
  background-repeat: repeat-x;
}
@media (min-width: 992px) {
  #menu
    .dropdown-menu.navcol-menu.item-column.column-2
    .dropdown-submenu.sub-menu-item
    > a {
    color: var(--primary-color);
    text-transform: uppercase;
  }
  #menu
    .dropdown-menu.navcol-menu.item-column
    .dropdown-submenu.sub-menu-item
    > a {
    font-weight: 600;
  }
  #topCategoryList .navbar-nav {
    float: unset;
    padding: 0;
  }
  #topCategoryList .navbar-nav > li {
    float: unset;
    display: inline-block;
    padding: 10px 17px;
  }
  #menu .nav > li:hover > a,
  #menu .nav > li.open > a {
    color: var(--primary-hover-color);
  }
  #menu .nav > li > a:before {
    background: var(--primary-hover-color);
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    margin: auto;
    position: absolute;
    top: auto;
    bottom: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    width: 0;
  }
  #menu .nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
  }
  #menu .dropdown-inner a {
    display: block;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    min-width: 200px;
    text-align: left;
  }
  #menu ul li.hiden_menu .dropdown-inner .dropdown-menu {
    display: none;
  }
  #menu .dropdown-menu,
  #menu .hiden_menu.menu_drop .dropdown-inner {
    display: block;
    top: 50px;
    left: 0px;
    min-width: 200px;
    z-index: 999;
    text-align: left;
    right: auto;
    padding: 8px 0;
  }
  #menu .dropdown-menu,
  #menu .hiden_menu.menu_drop .dropdown-inner,
  #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
    position: absolute;
    top: 100%;
    visibility: hidden;
    background: var(--secondary-color);
    padding: 8px 0;
    opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    border: none;
    border-bottom: 2px solid var(--primary-hover-color);
    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;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    transform: scale(0, 0);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  }
  #menu .dropdown:hover .dropdown-menu,
  #menu ul li.hiden_menu.menu_drop:hover .dropdown-inner,
  #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    filter: alpha(opacity=100);
  }
  #menu .column-1 .dropdown-inner .dropdown-submenu ul.sub-menu {
    left: 100%;
  }
  #menu .column-1 .dropdown-inner .dropdown-submenu:hover ul.sub-menu {
    top: 0px;
  }
  #menu ul.nav .item-column ul.list-unstyled li {
    margin: 0 10px;
  }
  #menu
    .dropdown-menu.navcol-menu.item-column
    .dropdown-submenu.sub-menu-item
    > a {
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
  }
  #menu
    .dropdown-menu.navcol-menu.item-column
    .dropdown-submenu.sub-menu-item
    > a {
    margin: 0 10px;
    padding-left: 0;
    padding-right: 0;
  }
  #menu ul.nav .item-column ul.list-unstyled li a {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  #topCategoryList {
    background: var(--secondary-color);
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 350px;
    z-index: 999;
    margin: 0;
    -webkit-transform: translate(-400px, 0);
    -moz-transform: translate(-400px, 0);
    -ms-transform: translate(-400px, 0);
    -o-transform: translate(-400px, 0);
    transform: translate(-400px, 0);
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    overflow: auto;
  }
  #topCategoryList.box-menu {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .menu-close {
    background: var(--primary-hover-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
  }
  .menu-close .fa {
    line-height: 20px;
  }
  #menu .btn-navbar.open-menu:after {
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    display: block;
    position: fixed;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    transition: opacity 0.2s cubic-bezier(0, 0, 0.3, 1);
    transition-delay: 0.1s;
  }
  #menu .btn-navbar span:before,
  #menu .btn-navbar span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    left: 0;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
  }
  #menu .btn-navbar span:after {
    top: 6px;
  }
  #menu .btn-navbar span:before {
    top: -6px;
  }
  #menu .btn-navbar span {
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--primary-color);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
  }
  #menu .btn-navbar {
    display: block;
    margin: 0;
    border: none;
  }
  #menu .nav > li > a,
  #menu #topCategoryList .dropdown-inner a {
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 30px 8px 15px;
    display: block;
  }
  #menu #topCategoryList ul {
    float: none;
    display: block;
    text-align: left;
    margin: 0;
    background: transparent;
  }
  #menu #topCategoryList ul.nav.navbar-nav {
    padding: 10px 0;
  }
  #menu .dropdown-inner,
  #navCategory .dropdown-inner {
    display: block;
  }
  #topCategoryList .dropdown.menulist .dropdown-menu .dropdown-inner {
    display: block;
    padding: 0 15px;
  }
  #topCategoryList .dropdown.menulist .dropdown-menu {
    position: relative;
    float: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    display: none;
    padding: 0;
  }
  #menu #topCategoryList .dropdown-inner .dropdown-submenu ul.sub-menu {
    display: none;
    position: unset;
    border: none;
    padding: 0 15px;
  }
  #topCategoryList li .toggle-menu {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 15px;
  }
  #topCategoryList .dropdown-submenu > .fa {
    display: none;
  }
  #topCategoryList ul li {
    float: none;
  }
  #topCategoryList #more_cat {
    display: none;
  }
}
@media (max-width: 480px) {
  #topCategoryList {
    max-width: 280px;
  }
}

/*----------------------------------------------*/
/* slider start */
/*----------------------------------------------*/
.common-home .swiper-viewport {
  box-shadow: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  background: transparent;
}
.slideshow img {
  width: 100%;
}

/*----------------------------------------------*/
/* banners */
/*----------------------------------------------*/
.html1 .col-xs-6 > div,
.html2 .banner3 {
  position: relative;
  overflow: hidden;
}
.inner2 {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.promo-title {
  margin: 0;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
}
.inner2 .promo-desc {
  font-weight: 600;
  position: relative;
  font-size: 30px;
  margin: 17px 0 26px;
}
.inner2 button {
  border: none;
  color: var(--secondary-color);
  background: var(--primary-hover-color);
  font-size: 18px;
  border-radius: 50px;
  padding: 8px 30px;
  border: 2px solid var(--primary-hover-color);
}
.inner2 button:hover {
  border: 2px solid var(--primary-hover-color);
  background: transparent;
  color: var(--primary-hover-color);
}
.banner-outer .inner1 img,
.blog-block img {
  width: 100%;
  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;
}
.html1 .col-xs-6 > div .inner1 a::before {
  background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  left: 50%;
  opacity: 1;
  position: absolute;
  right: 51%;
  top: 0;
}
.html1 .col-xs-6 > div:hover .inner1 a::before {
  left: 0;
  opacity: 0;
  right: 0;
  transition: all 900ms ease-in-out 0s;
}
.html1 .col-xs-6 > div .inner1 a::after {
  background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
  bottom: 50%;
  content: "";
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 50%;
}
.html1 .col-xs-6 > div:hover .inner1 a::after {
  bottom: 0;
  opacity: 0;
  top: 0;
  transition: all 900ms ease-in-out 0s;
}
.html1 .inner2 button {
  padding: 13px 41px;
}
.html2 .inner2 {
  text-align: center;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
}
.html2 .promo-title {
  font-size: 16px;
  font-weight: 400;
}
.html2 .inner2 .promo-desc {
  font-size: 24px;
  margin: 15px 0 24px;
}
.blog-block:hover img,
.html2 .banner3:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
@media only screen and (max-width: 1199px) {
  .inner2 .promo-desc {
    font-size: 20px;
    margin: 12px 0 15px 0;
  }
  .promo-title {
    font-size: 16px;
  }
  .html1 .inner2 button,
  .inner2 button {
    padding: 7px 25px;
  }
}
@media only screen and (max-width: 991px) {
  .inner2 {
    left: 15px;
    bottom: 15px;
  }
  .html1 .row {
    margin: 0 -5px;
  }
  .html1 .col-xs-6 {
    padding: 0 5px;
  }
  .html1 .inner2 button,
  .inner2 button {
    padding: 3px 20px;
    font-size: 14px;
  }
  .html2 .inner2 .promo-desc {
    font-size: 18px;
    margin: 8px 0 10px;
  }
  .html2 .promo-title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .promo-title {
    font-size: 12px;
  }
  .inner2 .promo-desc {
    font-size: 16px;
    margin: 8px 0 10px 0;
  }
  .inner2 {
    left: 10px;
    bottom: 10px;
  }
  .html1 .inner2 button,
  .inner2 button {
    padding: 0px 10px;
    font-size: 12px;
  }
  .html2 .inner2 .promo-desc {
    font-size: 16px;
    margin: 5px 0 7px;
  }
}
@media (max-width: 480px) {
  .promo-title {
    font-size: 10px;
  }
  .inner2 .promo-desc {
    font-size: 14px;
    margin: 5px 0 8px 0;
  }
  .html2 .promo-title {
    font-size: 12px;
  }
  .html2 .inner2 .promo-desc {
    font-size: 14px;
    margin: 3px 0 6px;
  }
}
@media only screen and (max-width: 425px) {
  .html1 .inner2 button {
    display: none;
  }
  .inner2 .promo-desc {
    margin: 2px 0 0 0;
  }
  .inner2 {
    bottom: 5px;
  }
  .html2 .promo-title {
    font-size: 10px;
  }
  .html2 .inner2 .promo-desc {
    font-size: 10px;
    margin: 0;
    line-height: 15px;
  }
  .inner2 button {
    font-size: 10px;
    line-height: 12px;
  }
}

/*----------------------------------------------*/
/* buttons */
/*----------------------------------------------*/
.buttons {
  margin: 1em 0;
}
#tab-review .buttons {
  margin: 1em 0 0;
}
.btn {
  font-size: 16px;
  line-height: 20px;
  border-radius: 0;
}
.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: 15px;
}
.btn-group > .btn-xs {
  font-size: 9px;
}
.btn-group > .btn-sm {
  font-size: 10.2px;
}
.btn-group > .btn-lg {
  font-size: 15px;
}
#cart .text-right .addtocart-btn,
#cart .text-right .checkout-btn,
.btn-default,
.btn-primary {
  width: auto;
  display: inline-block;
  font-size: 18px;
  text-transform: capitalize;
  padding: 13px 20px;
  background: var(--primary-hover-color);
  color: var(--secondary-color);
  border-radius: 25px;
  border: 2px solid var(--primary-hover-color);
}
#cart .text-right .addtocart-btn:hover,
#cart .text-right .addtocart-btn:focus,
#cart .text-right .checkout-btn:hover,
#cart .text-right .checkout-btn:focus,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
.btn-default:hover,
.btn-default:focus,
.btn-default:active:hover,
.btn-default:active,
.btn-default:active:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled],
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled],
.btn-info.focus,
.btn-info:focus,
.btn-info:active:focus,
.btn-info:active:hover,
.btn.focus:active,
.btn:active:focus,
.btn:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
button:focus {
  outline: none;
  background: transparent;
  color: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}
.btn-warning {
  color: var(--secondary-color);
  background-color: #faa732;
}
.btn-danger {
  color: var(--secondary-color);
  background-color: #da4f49;
  text-transform: capitalize;
  padding: 13px 22px;
  border-radius: 25px;
  border: 2px solid #da4f49;
}
.btn-success {
  color: var(--secondary-color);
  background-color: #5bb75b;
  background-repeat: repeat-x;
}
.btn-info {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
  border: 2px solid var(--primary-hover-color);
  padding: 13px 30px;
  font-size: 18px;
  border-radius: 25px;
  text-transform: capitalize;
}
.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(--secondary-color);
  background-color: #363636;
  background-repeat: repeat-x;
  border-color: #232323 #232323 #000000;
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #232323;
}
.btn-link:focus,
.btn-link:hover {
  color: var(--primary-hover-color);
  text-decoration: none;
  outline: none;
}

/* 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: #444444;
  background: var(--secondary-color);
}
@media (max-width: 1440px) {
  #cart .text-right .addtocart-btn,
  #cart .text-right .checkout-btn,
  .btn-default,
  .btn-primary,
  .btn-warning,
  .btn-danger,
  .btn-success,
  .btn-info {
    padding: 8px 20px;
  }
}

/*----------------------------------------------*/
/* products */
/*----------------------------------------------*/
.block_box .owl-stage-outer {
  margin-top: -20px;
  padding-top: 20px;
}
.page-title h3 {
  font-size: 36px;
  margin: -5px 0 24px 0;
  text-transform: capitalize;
  line-height: 36px;
  text-align: center;
  position: relative;
  font-weight: 400;
}
.page-title {
  text-align: center;
}
.product-thumb {
  margin-bottom: 30px;
  position: relative;
  border: 1px solid var(--border-color);
}
.product-thumb:hover {
  border: 1px solid var(--secondary-color);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.1);
}
.product-thumb .image {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.product-thumb .button-group {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: var(--secondary-color);
  padding: 3px 5px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
.product-thumb .button-group button + button {
  margin-left: 5px;
}
.product-thumb .description {
  font-size: 16px;
  color: var(--secondary-light-color);
  line-height: 24px;
  margin: 18px 0;
}
.product-thumb .button-group button {
  width: 40px;
  height: 40px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  vertical-align: top;
  border: none;
  position: relative;
  border-radius: 25px;
  color: var(--primary-color);
}
.product-thumb .pro-addcart {
  margin: auto;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
.product-thumb .addcart {
  border: none;
  background: var(--primary-hover-color);
  color: var(--secondary-color);
  text-transform: uppercase;
  display: flex;
  vertical-align: middle;
  text-align: center;
  margin: auto;
  border-radius: 20px;
  padding: 10px 20px;
}
.product-thumb .addcart:hover {
  background: var(--primary-color);
}
.pro_wish:before,
.pro_comper:before {
  margin-right: 8px;
}
.product-thumb .button-group button:before,
.product-thumb .addcart:before,
.pro_wish:before,
.pro_comper:before {
  font-family: "Mahardhi-Fonts" !important;
  cursor: pointer;
  display: block;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pro_wish:before,
.pro_comper:before {
  position: relative;
  float: left;
  margin-right: 8px;
}
.product-thumb .addcart:before {
  content: "\e902";
  font-size: 16px;
  padding: 0 10px 0 0;
}
.product-thumb .wishlist:before,
.pro_wish:before {
  content: "\e90b";
}
.product-thumb .compare:before,
.pro_comper:before {
  content: "\e900";
}
.product-thumb .quickview-button:before {
  content: "\e907";
}
.product-thumb .button-group button:hover {
  background: var(--primary-hover-color);
  color: var(--secondary-color);
}
.product-thumb .addcart.left-cart {
  display: none;
}
.thumb-description {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-thumb .caption {
  padding: 15px 5px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-thumb .price {
  font-size: 16px;
  margin: 9px 0 0;
  color: var(--primary-color);
  font-weight: 500;
}
.product-thumb .price-old {
  margin-right: 5px;
}
.product-thumb .price-old {
  text-decoration: line-through;
  color: var(--secondary-light-color);
  font-size: 14px;
  word-break: break-word;
}
.product-thumb .product-title {
  margin: 0 0 6px;
  line-height: 20px;
}
.product-thumb .product-title a {
  text-transform: capitalize;
  font-size: 16px;
}
.product-thumb .product-title a:hover {
  color: var(--primary-hover-color);
}
.section-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--secondary-color);
  text-transform: capitalize;
  background: var(--primary-color);
  padding: 0px 10px;
  font-size: 12px;
  border-radius: 10px;
}
.product-thumb .price-tax {
  display: none;
}

/*product tab*/
.product-tab-block .nav-tabs > li > a {
  font-weight: 500;
  font-size: 18px;
  padding: 8px 35px;
  text-align: left;
  line-height: 20px;
  color: var(--primary-color);
  text-transform: capitalize;
  border: 2px solid var(--border-color);
  border-radius: 25px;
  margin: 0;
}
.product-tab-block .nav-tabs > li > a.selected,
.product-tab-block .nav-tabs > li > a:hover {
  border: 2px solid var(--primary-hover-color);
  background: var(--primary-hover-color);
  color: var(--secondary-color);
}
.product-tab-block {
  position: relative;
}
.product-tab-block #tabs {
  position: relative;
}
.product-tab-block .nav-tabs {
  padding: 0;
  display: flex;
  justify-content: center;
  border: none;
  margin-bottom: 30px;
}
.product-tab-block .nav-tabs > li {
  margin: 0;
}
.product-tab-block .nav-tabs > li + li {
  margin-left: 10px;
}
.nav-tabs > li > a {
  font-weight: 600;
  font-size: 18px;
  padding: 16px 0;
  text-align: left;
  line-height: 20px;
  color: var(--primary-color);
  text-transform: capitalize;
  border: none;
  margin: 0;
}
#product-page .nav-tabs > li + li {
  margin-left: 45px;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover,
.nav-tabs > li > a:hover,
.nav > li > a:focus,
.nav > li > a:hover {
  color: var(--primary-hover-color);
  border: none;
  background: transparent;
}
#product-page .nav-tabs > li > a:before {
  background: var(--primary-hover-color);
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  margin: auto;
  position: absolute;
  top: auto;
  bottom: 0;
  transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  width: 0;
}
#product-page .nav-tabs > li:hover > a:before,
#product-page .nav-tabs > li.active > a:before {
  opacity: 1;
  width: 100%;
}

/*product hover */
.product-thumb .hover-img {
  bottom: 0;
  left: 0;
  margin: 0 auto;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.7s ease, transform 1s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 1s cubic-bezier(0, 0, 0.44, 1.18);
  -webkit-transition: opacity 0.7s ease,
    transform 1s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 1s cubic-bezier(0, 0, 0.44, 1.18);
  -moz-transition: opacity 0.7s ease,
    transform 1s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 1s cubic-bezier(0, 0, 0.44, 1.18);
  -o-transition: opacity 0.7s ease, transform 1s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 1s cubic-bezier(0, 0, 0.44, 1.18);
  -ms-transition: opacity 0.7s ease, transform 1s cubic-bezier(0, 0, 0.44, 1.18),
    -webkit-transform 1s cubic-bezier(0, 0, 0.44, 1.18);
}
.product-thumb:hover .hover-img {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -o-transform: scale(1.08);
  -ms-transform: scale(1.08);
}
@media (min-width: 992px) {
  .product-thumb:hover .pro-addcart {
    bottom: 19px;
    opacity: 1;
  }
  .product-thumb:hover .price,
  .product-thumb:hover .rating {
    opacity: 0;
  }
  .product-thumb:hover .button-group {
    opacity: 1;
    bottom: 41%;
  }
}
@media (max-width: 991px) {
  .product-thumb .caption {
    padding: 10px 5px;
  }
  .product-thumb .pro-addcart {
    position: unset;
    opacity: 1;
  }
  .product-thumb .addcart {
    font-size: 12px;
    padding: 5px 15px;
    margin-top: 5px;
  }
  .product-list .product-thumb .addcart {
    margin: 0;
    padding: 7px 15px;
  }
  .product-thumb .addcart:before {
    padding: 0 5px 0 0;
  }
  .product-thumb .product-title a {
    font-size: 14px;
  }
  .product-thumb .product-title {
    margin: 0 0 2px;
  }
  .product-thumb .price {
    font-size: 14px;
    margin: 4px 0 0;
  }
  .product-list .product-thumb .product-title a {
    font-size: 16px;
  }
  .product-tab-block .nav-tabs {
    margin-bottom: 15px;
  }
  .product-tab-block .nav-tabs > li a.selected:after,
  .product-tab-block .nav-tabs > li a:hover:after {
    display: none;
  }
  .page-title h3 {
    font-size: 22px;
    line-height: 20px;
    margin: 0 0 15px 0;
  }
  .product-tab-block .nav-tabs > li > a {
    padding: 3px 15px;
    font-size: 14px;
  }
  .product-tab-block .nav-tabs > li + li {
    margin-left: 5px;
  }
  .blog-block .col-sm-6,
  .swiper-wrapper .col-sm-12,
  .category-layout,
  .product-layout {
    padding: 0 5px;
  }
  .brand .row,
  #category-blogs .row.blog-block,
  .category-row,
  .mblog .row,
  .box .row,
  .product-tab-block .row,
  .category-featured .row {
    margin: 0 -5px;
  }
  .product-thumb:hover .button-group,
  .product-thumb .button-group {
    bottom: 10px;
    opacity: 1;
  }
  .product-thumb .button-group button {
    width: 28px;
    height: 28px;
  }
  .product-thumb {
    margin-bottom: 20px;
  }
}
@media (max-width: 680px) {
  .product-list .product-thumb .image img {
    width: auto;
    margin: 0;
  }
  .product-thumb .addcart {
    padding: 5px 12px;
  }
}

/*----------------------------------------------
/* swiper pager */
/*----------------------------------------------*/
.swiper-viewport .swiper-pager > div,
.owl-carousel.owl-theme .owl-nav div {
  height: 40px;
  width: 40px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--border-color);
  line-height: 20px;
  padding: 0;
  text-align: center;
  border-radius: 25px;
  margin: 0;
  transition: all 0.3s ease;
}
.owl-carousel.owl-theme:hover .owl-nav .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: "";
}
.owl-carousel.owl-theme .owl-nav .fa,
.swiper-viewport .fa {
  font-size: 18px;
  line-height: 36px;
  vertical-align: top;
}

/*carousel*/
.owl-carousel.owl-theme .owl-nav {
  margin-top: 0;
}
.owl-carousel.owl-theme .owl-nav div {
  top: 43%;
  position: absolute;
}
#quick-carousel .owl-nav div i {
  font-size: 22px;
}
.owl-carousel.owl-theme .owl-nav .owl-next,
.brand .swiper-viewport .swiper-pager .swiper-button-next {
  left: auto;
  right: -40px;
}
.owl-carousel.owl-theme .owl-nav .owl-prev,
.brand .swiper-viewport .swiper-pager .swiper-button-prev {
  left: -40px;
  right: auto;
}
.testimonial-block .owl-carousel.owl-theme .owl-nav .owl-prev {
  left: 0;
}
.testimonial-block .owl-carousel.owl-theme .owl-nav .owl-next {
  right: 0;
}
.carousel .swiper-viewport:hover .swiper-button-next,
.carousel .swiper-viewport:hover .swiper-button-prev {
  opacity: 1;
}
.swiper-viewport .swiper-pager .swiper-button-next:hover,
.owl-carousel.owl-theme .owl-nav .owl-next:hover,
.swiper-viewport .swiper-pager .swiper-button-prev:hover,
.owl-carousel.owl-theme .owl-nav .owl-prev:hover {
  color: var(--secondary-color);
  background: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}

/*dots*/
.slideshow .swiper-pagination-bullet,
.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
  border: none;
  margin: 0 2px;
}
.slideshow .swiper-pagination-bullet:hover,
.slideshow .swiper-pagination-bullet.swiper-pagination-bullet-active,
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  border-color: var(--primary-hover-color);
  background: var(--primary-hover-color);
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin: 0;
}
@media (max-width: 1400px) {
  .owl-carousel.owl-theme .owl-nav .owl-next,
  .brand .swiper-viewport .swiper-pager .swiper-button-next {
    right: -10px;
  }
  .owl-carousel.owl-theme .owl-nav .owl-prev,
  .brand .swiper-viewport .swiper-pager .swiper-button-prev {
    left: -10px;
  }
}
@media (max-width: 991px) {
  .slideshow .swiper-pager {
    display: none;
  }
  .slideshow .swiper-pagination {
    bottom: 10px;
    display: block;
  }
  .swiper-viewport .swiper-pager > div,
  .owl-carousel.owl-theme .owl-nav div {
    height: 30px;
    width: 30px;
  }
  .owl-carousel.owl-theme .owl-nav .fa,
  .swiper-viewport .fa {
    line-height: 26px;
  }
}
@media (max-width: 540px) {
  .slideshow .swiper-pager {
    top: 40%;
  }
}

/*----------------------------------------------*/
/* Start Testimonial */
/*----------------------------------------------*/
.testimonial-block {
  position: relative;
  background-size: cover;
  padding: 80px 0 76px;
  background: url(../image/mahardhi/testimonial-bg.jpg) center center no-repeat;
}
.row-items {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}
.testimonial-text {
  font-size: 16px;
  line-height: 24px;
  position: relative;
  margin: 19px 0 50px;
}
.testimonial-text i {
  font-size: 34px;
  line-height: 30px;
  display: inline-block;
  color: var(--border-color);
}
.testimonial-text i.icon-quote {
  margin: 0 10px 18px 0;
  vertical-align: bottom;
}
.testimonial-text i.icon-rightquote {
  margin: 20px 0 0 10px;
  vertical-align: top;
}
.testimonial-text p {
  margin: 0;
}
.testimonial-images img {
  border-radius: 50%;
  border: 3px solid var(--primary-hover-color);
}
.testimonial-author {
  text-transform: capitalize;
  font-size: 18px;
  margin: 14px 0 4px;
  font-weight: bold;
}
.testimonial-customer {
  color: var(--secondary-light-color);
}
@media (max-width: 1440px) {
  .testimonial-block {
    padding: 40px 0 36px;
  }
  .testimonial-text {
    margin: 0 0 20px;
  }
}
@media (max-width: 991px) {
  .row-items {
    width: 100%;
  }
  .testimonial-text i.icon-rightquote {
    margin: 10px 0 0 10px;
  }
  .testimonial-text i.icon-quote {
    margin: 0 10px 10px 0;
  }
  .testimonial-text {
    margin: 0 0 10px;
  }
  .testimonial-block {
    padding: 30px 0 26px;
  }
}
@media (max-width: 767px) {
  .testimonial-block {
    padding: 20px 0 16px;
  }
}

/*----------------------------------------------*/
/* brand */
/*----------------------------------------------*/
.brand img {
  width: 100%;
}
.brand .swiper-pager > div {
  opacity: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.brand .swiper-viewport {
  overflow: visible;
}

/*----------------------------------------------*/
/* Category Feature */
/*----------------------------------------------*/
.category-featured {
  padding: 80px 15px 80px;
}
.category-featured .images-hover.image {
  background: #fef4f6;
  border-radius: 50%;
  padding: 50px 0;
  max-width: 170px;
  height: 170px;
  margin: auto;
  overflow: hidden;
}
.category-featured .images-hover.image img {
  width: auto;
  margin: 0 auto;
}
.category-featured .caption {
  text-align: center;
  margin-top: 15px;
}
.category-featured .cat-title {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  border: 2px solid var(--primary-hover-color);
  border-radius: 25px;
  padding: 6px 15px;
  background: var(--primary-hover-color);
  display: inline-block;
}
.category-featured .cat-title a {
  color: var(--secondary-color);
}
.cat-title:hover {
  background: transparent;
}
.cat-title:hover a {
  color: var(--primary-hover-color);
}
@media (max-width: 1440px) {
  .category-featured {
    padding: 50px 15px 50px;
  }
}
@media (max-width: 991px) {
  .category-featured {
    padding: 30px 15px 30px;
  }
}
@media (max-width: 767px) {
  .category-featured .images-hover.image {
    max-width: 120px;
    height: 120px;
    margin: auto;
    padding: 25px 0;
  }
}

/*----------------------------------------------*/
/* blog */
/*----------------------------------------------*/
.product-block.blog-block {
  margin-bottom: 30px;
}
.caption.blog-description {
  margin-top: -1px;
  padding: 26px 30px 30px;
  position: relative;
  border: 1px solid var(--border-color);
}
.blog-block:hover .blog-description {
  border-color: var(--secondary-color);
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.blog-description .block-date {
  color: var(--secondary-light-color);
}
.block-date .day {
  font-size: 16px;
}
span.month {
  font-size: 18px;
  color: var(--primary-color);
  position: relative;
}
.blog-block:hover .hover-post::before {
  opacity: 1;
  left: 51%;
}
.blog-block:hover .hover-zoom::before {
  opacity: 1;
  right: 51%;
}
.blog-block .hover-zoom::before,
.blog-block .hover-post:before {
  color: var(--secondary-color);
  font-size: 16px;
  height: 40px;
  display: block;
  line-height: 40px;
  background: var(--primary-hover-color);
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0;
  bottom: 0;
  border-radius: 25px;
  margin: auto;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  width: 40px;
  z-index: 2;
}
.blog-block .hover-zoom::before {
  content: "\f002";
  font-family: FontAwesome;
  right: 87%;
}
.blog-block .hover-post:before {
  content: "\f0c1";
  font-family: FontAwesome;
  left: 87%;
  line-height: 43px;
}
.blog-block .hover-post:hover:before,
.blog-block .hover-zoom:hover:before {
  background: var(--primary-color);
}
.blogdesk_info span.title {
  font-weight: 700;
}
.product-list .blog-block.product-thumb .image {
  box-shadow: none;
  margin: 0;
}
.blog-block h4 {
  margin: 0 0 17px;
  line-height: 20px;
  font-size: 18px;
  font-weight: normal;
  text-transform: capitalize;
}
.blog-info .image {
  overflow: hidden;
  position: relative;
}
.mblog .blog-read:hover {
  background: var(--secondary-color);
  color: var(--primary-hover-color);
}
.blog-comment {
  font-size: 16px;
  color: var(--secondary-light-color);
}
.mblog .blog-read {
  background: var(--primary-hover-color);
  padding: 13px 39px;
  color: var(--secondary-color);
  font-size: 18px;
  border: 2px solid var(--primary-hover-color);
  border-radius: 50px;
}
.blog-description .blog-comment {
  color: var(--primary-color);
}
.block-date i,
.blog-comment i {
  margin-right: 8px;
}

/*----------------------------------------------*/
/* blog page */
/*----------------------------------------------*/
.blog-category {
  margin-bottom: 30px;
}
.blog-category .blog-img {
  position: relative;
  overflow: hidden;
  display: block;
}
.caption-blog h4 {
  margin: 0 0 14px;
}
.product-list .block-date,
.article-container .block-date {
  color: var(--secondary-light-color);
}
.article-container .block-date {
  display: inline-block;
  margin: 0 15px 0 0;
}
.pro-deatil {
  margin-bottom: 50px;
}
h4.article-page-title {
  margin: 20px 0 15px;
}
.caption-blog p,
.info_blog p {
  margin: 20px 0 0;
}
.blogdesk_info .dash,
.blogdesk_info .authore,
.blogdesk_info .date {
  display: inline-block;
}
.blog-block img,
#content-blogs .thumbnails .thumbnail img {
  width: 100%;
}
.blog-text {
  font-size: 16px;
  color: var(--secondary-light-color);
  margin: 13px 0 26px 0;
  line-height: 24px;
}

/*----------------------------------------------*/
/* article blog page */
/*----------------------------------------------*/
.article-container .caption-blog.blog-block {
  margin-top: 20px;
}
#content-blogs .thumbnails .thumbnail {
  border: unset;
  margin: 0;
  padding: 0;
}
#post_comment .leave-hedding,
.comment_cust .leave-hedding {
  margin: 50px 0 25px;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: 25px;
  padding: 14px 20px;
}
#post_comment #commnt_form.form-horizontal .control-label {
  text-align: left;
}
.comment_cust h4 {
  margin-bottom: 20px;
}
.commentlist ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.commentlist ul li:last-child {
  padding-bottom: 0;
}
.commentlist ul li {
  padding-bottom: 25px;
}
.comment_cust .comment-text .user_img {
  float: left;
  height: 80px;
  width: 80px;
  background-color: var(--secondary-color);
  text-align: center;
  color: var(--primary-hover-color);
  border-radius: 50px;
}
.comment_cust .comment-text .user_img i {
  font-size: 30px;
  line-height: 80px;
}
.comment_cust .comment-desc {
  padding-left: 100px;
  line-height: 25px;
}
.comment_cust .comment-desc .name {
  text-transform: capitalize;
  font-size: 18px;
}
.comment_cust .comment-desc .date {
  color: var(--secondary-light-color);
}
.comment-dis {
  font-size: 16px;
  color: var(--secondary-light-color);
}
.comment-text {
  padding: 30px;
  border-radius: 10px;
  background: var(--background-color);
}
@media (max-width: 1199px) {
  .caption.blog-description {
    padding: 16px 20px 20px;
  }
  .blog-block h4 {
    margin: 0 0 10px;
  }
  .blog-text {
    margin: 6px 0 10px 0;
  }
  .mblog .blog-read {
    padding: 8px 20px;
  }
  #post_comment .leave-hedding,
  .comment_cust .leave-hedding {
    margin: 30px 0 20px;
  }
}
@media (max-width: 991px) {
  .caption.blog-description {
    padding: 11px 15px 15px;
  }
  #post_comment .leave-hedding,
  .comment_cust .leave-hedding {
    margin: 30px 0 15px;
  }
  .mblog .blog-read {
    padding: 5px 20px;
    font-size: 16px;
  }
  .blog-block .hover-zoom::before,
  .blog-block .hover-post:before {
    height: 30px;
    width: 30px;
    font-size: 14px;
    line-height: 30px;
  }
  .product-block.blog-block {
    margin-bottom: 20px;
  }
  .pro-deatil {
    margin-bottom: 30px;
  }
  .comment-text {
    padding: 20px;
  }
  .comment_cust .comment-text .user_img {
    height: 60px;
    width: 60px;
  }
  .comment_cust .comment-text .user_img i {
    font-size: 22px;
    line-height: 60px;
  }
  .comment_cust .comment-desc {
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .caption-blog {
    margin-top: 15px;
  }
  .blog-block .hover-zoom::before {
    opacity: 1;
    right: 51%;
  }
  .blog-block .hover-post::before {
    opacity: 1;
    left: 51%;
  }
  .pro-deatil {
    margin-bottom: 20px;
  }
}
@media (max-width: 540px) {
  .comment-text {
    padding: 10px;
  }
}

/*----------------------------------------------*/
/* newsletter block */
/*----------------------------------------------*/
.newsletterblock {
  padding: 50px 0;
  background: var(--background-color);
}
.news-content .icon-mail {
  font-size: 45px;
  background: var(--primary-hover-color);
  color: var(--secondary-color);
  border-radius: 50px;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
}
.news-content,
.newsletter-common {
  display: flex;
  align-items: center;
}
.newsletterblock .title-text {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  text-align: left;
  margin: 0 0 1px;
}
.news-text {
  padding-left: 30px;
}
.newsletterblock .news-desc {
  font-size: 16px;
  color: var(--secondary-light-color);
}
.subscribe-form #newsletter_usr_email {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background: transparent;
  padding: 10px 165px 10px 15px;
}
.news .subscribe-btn {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 15px 41px;
  font-size: 18px;
  border-radius: 0 25px 25px 0;
}
.news .subscribe-btn:hover {
  background: var(--primary-hover-color);
  color: var(--secondary-color);
}
.subscribe-btn i {
  font-size: 20px;
}
.subscribe-form {
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .newsletterblock {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .subscribe-form #newsletter_usr_email {
    height: 40px;
    padding: 10px 125px 10px 15px;
  }
  .news .subscribe-btn {
    padding: 10px 20px;
  }
  .news-content .icon-mail {
    font-size: 26px;
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
  .news-text {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .newsletter-common {
    display: block;
  }
  .news-content {
    justify-content: center;
  }
  .newsletterblock {
    padding: 20px 0;
  }
  .subscribe-form {
    margin: 10px auto 0;
  }
  .newsletterblock .news-desc {
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .news-content .icon-mail {
    display: none;
  }
  .news-text {
    padding: 0;
  }
  .newsletterblock .news-text > * {
    text-align: center;
  }
}

/*----------------------------------------------*/
/* footer start */
/*----------------------------------------------*/
.common-home footer {
  margin-top: 0;
}
footer {
  padding-top: 77px;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-size: 16px;
}
footer a {
  color: var(--secondary-color);
}
footer .footer_bottom p a:hover {
  color: var(--primary-hover-color);
}
footer h5,
.position-footer-right h4 {
  text-transform: uppercase;
  font-size: 18px;
  margin: 0 0 14px;
  position: relative;
  font-weight: 500;
  color: var(--secondary-color);
}
footer .col-sm-3 a,
footer .col-sm-2 a,
.footer-top .position-footer-left ul li {
  padding: 8px 0;
  display: block;
  color: var(--secondary-color);
  font-size: 16px;
}
footer a:hover,
footer a:focus {
  color: var(--primary-hover-color);
}

/*footer top*/
.block-social {
  background: var(--primary-hover-color);
  color: var(--secondary-color);
  padding: 20px 15px 20px 25px;
  margin-top: 76px;
}
.social_block a i {
  font-size: 24px;
  line-height: 36px;
}
.block-social li a {
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  height: 36px;
  text-align: center;
  background: var(--secondary-color);
  width: 36px;
  color: var(--primary-hover-color);
  -webkit-transition: ease-in-out 0.3s all;
  -moz-transition: ease-in-out 0.3s all;
  transition: ease-in-out 0.3s all;
}
.block-social li:hover a {
  background: var(--primary-color);
  color: var(--secondary-color);
}
.block-social .social-links h2 {
  font-size: 22px;
  color: var(--secondary-color);
  display: inline-block;
  text-transform: unset;
  margin: 6px 0;
}
.social-links {
  padding: 11.5px 15px;
  margin: 0;
  text-align: right;
}
.social-links ul {
  padding: 0;
  margin: 0;
  display: inline-block;
}
footer .position-footer-left ul p {
  line-height: 25px;
  margin: 0 0 15px 0;
  color: var(--secondary-light-color);
  font-size: 16px;
}
li.social_block {
  display: inline-block;
  margin-left: 15px;
}
.block-social p {
  font-size: 16px;
  margin: 0;
  padding: 10px 0;
}

/*--- footer left ---*/
.footer-top .position-footer-left ul li > div {
  position: relative;
  display: flex;
}
.contact_title {
  font-size: 16px;
  text-transform: capitalize;
  margin-right: 5px;
}
.contact_site {
  font-size: 16px;
}
.contact_site a {
  color: var(--secondary-color);
}

/*--- footer right ---*/
.social-media ul {
  display: block !important;
}
.footer_link h4 {
  margin: 0 0 20px;
}

/*--- footer bottom ---*/
.footer_bottom {
  padding: 20px 0;
  margin-top: 69px;
  border-top: 1px solid #444444;
}
footer .footer_bottom p {
  margin: 0;
  text-align: center;
}
.toggled.active .fa-chevron-down:before {
  content: "\f077";
}

/* social media*/
.social-media li a i {
  width: 32px;
  display: inline-block;
  line-height: 36px;
  color: var(--primary-hover-color);
}
.social-media a {
  color: var(--secondary-color);
}
.social-media li a i:hover {
  color: var(--primary-hover-color);
}
@media (max-width: 1440px) {
  footer {
    padding-top: 47px;
  }
  .footer_bottom {
    margin-top: 39px;
  }
}
@media (max-width: 991px) {
  footer {
    padding-top: 10px;
  }
  .position-footer-right h4 {
    margin: 0 0 10px;
    font-size: 14px;
  }
  .position-footer-left .f-des {
    margin: 6px 0 15px;
  }
  .social-media.list-unstyled {
    display: block !important;
  }
  .footer_bottom {
    margin-top: 0;
    padding: 12px 0;
  }
  footer h5,
  .position-footer-left h5 {
    margin: 0 0 8px;
    font-size: 14px;
  }
  .footer-top .col-sm-2,
  .footer-top .col-sm-4 {
    width: 100%;
    float: unset;
    margin: 15px 0;
  }
  .footer_link {
    text-align: right;
  }
  .footer_link h4 {
    margin: 0 0 14px;
  }
  .footer-middle > div:last-child {
    padding: 0;
  }
  footer .col-sm-3 a,
  footer .col-sm-2 a,
  .footer-top .position-footer-left ul li {
    padding: 3px 0;
    font-size: 14px;
  }
  .contact_title,
  .contact_site {
    font-size: 14px;
  }
}

/*----------------------------------------------*/
/* service */
/*----------------------------------------------*/
.service-box {
  background: var(--background-color);
  padding: 31px 0 29px;
}
.service {
  padding: 9px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.service-item + .service-item {
  border-left: 1px dashed var(--border-color);
}
.service-icon {
  color: var(--primary-hover-color);
  font-size: 40px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
}
.service:hover .service-icon {
  animation: pulse 1s infinite;
  -webkit-animation: pulse 1s infinite;
}
.service .promo-title {
  margin: -1px 0 7px;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 600;
}
.service .promo-desc {
  color: var(--secondary-light-color);
}
@media (max-width: 1199px) and (min-width: 768px), (max-width: 480px) {
  .service {
    padding: 0;
    display: block;
    text-align: center;
  }
  .service-icon {
    margin: 0 0 10px 0;
  }
  .service .promo-title {
    margin: 0 0 5px;
  }
}
@media (max-width: 991px) {
  .service-box {
    padding: 20px 0;
  }
  .service .service-icon {
    font-size: 30px;
  }
  .service-box .row {
    margin: 0 -5px;
  }
  .service-item {
    padding: 0 5px;
  }
  .service .promo-title {
    font-size: 12px;
    margin: 0;
  }
  .service .promo-desc {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .promo-item > div > div:nth-child(3) {
    border-left: none;
    clear: left;
  }
  .promo-item > div > div:nth-child(1),
  .promo-item > div > div:nth-child(2) {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .service .promo-desc,
  .service .promo-title {
    font-size: 10px;
  }
}

/*----------------------------------------------*/
/* pagetitle */
/*----------------------------------------------*/
.page_title {
  font-size: 18px;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--secondary-color);
}

/*----------------------------------------------*/
/* breadcrumb */
/*----------------------------------------------*/
.breadcrumb-back {
  background: url(../image/mahardhi/sub-banner-image.png) no-repeat scroll
    center center;
  background-size: cover;
  text-align: center;
  padding: 63px 0;
  margin-bottom: 30px;
}
.breadcrumb a {
  color: var(--secondary-color);
  font-size: 15px;
  text-transform: uppercase;
}
.breadcrumb {
  padding: 0;
  border: none;
  background: transparent;
  margin: 0;
}
.breadcrumb > li {
  position: relative;
}
.breadcrumb .fa.fa-home {
  font-size: 16px;
}
.breadcrumb li:last-child a {
  text-transform: capitalize;
}
.breadcrumb li:last-child a,
.breadcrumb a:hover {
  color: var(--primary-hover-color);
}
.breadcrumb > li + li:before {
  content: "\f101";
  color: var(--secondary-color);
  font-family: FontAwesome;
  display: inline-block;
  padding: 0px 11px 0px 6px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .page_title {
    margin: 0 0 5px;
    font-size: 14px;
  }
  .breadcrumb-back {
    padding: 15px 0;
    margin-bottom: 20px;
  }
  .breadcrumb a {
    font-size: 13px;
  }
}

/*----------------------------------------------*/
/* column-left-right */
/*----------------------------------------------*/
/*categories*/
#column-left > div,
#column-right > div {
  margin: 0 0 30px;
  border: none;
  box-shadow: none;
  padding: 0;
}
#column-left > div:last-child,
#column-right > div:last-child {
  margin-bottom: 0;
}
#column-left .box-content,
#column-right .box-content {
  margin: 0;
}
#column-left .box .container,
#column-right .box .container {
  width: auto;
  padding: 0;
}
#column-left h3,
#column-right h3,
#column-left .box-content h3,
#column-right .box-content h3 {
  display: block;
  margin: 0;
  padding: 14px 20px;
  font-size: 18px;
  text-align: left;
  text-transform: capitalize;
  position: relative;
  font-weight: 600;
  line-height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 25px;
}
#column-left h3:after,
#column-right h3:after {
  right: auto;
}
a.list-group-item.active,
a.list-group-item.active:focus,
a.list-group-item.active:hover,
a.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:focus,
button.list-group-item:hover {
  color: var(--primary-hover-color);
  text-decoration: none;
  background-color: transparent;
}
.category-list #selectMe-desk,
.filter_box,
#column-left .block_box,
#column-right .block_box,
.account-content .list-unstyled,
.sidebar .list-unstyled {
  margin-top: 25px;
}
.category-list .list-group-item,
.sidebar li,
.account-content .list-group a {
  border: none;
  font-size: 14px;
  border-radius: 0;
  margin: 0;
  background: transparent;
  padding: 8px 0;
  text-transform: capitalize;
  color: var(--primary-color);
}
.sidebar li a {
  color: var(--primary-color);
}
.category-list .list-group-item {
  padding: 8px 25px 8px 0;
}
.category-list ul > li:first-child > a.main-item,
.account-content .list-group ul > li:first-child a,
.sidebar li:first-child {
  padding-top: 0;
  margin-top: -4px;
}
.category-list ul > li:last-child > a.main-item,
.account-content .list-group ul > li:last-child a,
.sidebar li:last-child {
  padding-bottom: 0;
}
.category-list .has-more-category .toggled {
  position: absolute;
  right: 10px;
}
.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: 25px;
}
.panel-default.filter {
  border: none;
}
.panel {
  border-radius: 0;
  box-shadow: none;
}
.filter_box .list-group a {
  color: var(--primary-hover-color);
  text-transform: capitalize;
  margin: 0 0 12px;
  background: transparent;
  font-size: 16px;
  margin-top: -4px;
  font-weight: 600;
}
.filter_box .checkbox,
.filter_box .checkbox .radio {
  margin: 6px 0;
}
.filter_box .list-group-item {
  border: none;
  padding: 0px;
  background: transparent;
}
.filter_box .list-group-items + .list-group-items {
  margin: 20px 0 0;
}
.checkbox label,
.radio label {
  text-transform: capitalize;
  font-size: 15px;
}
#filter .panel-footer {
  text-align: left;
  padding: 0;
  background: transparent;
}

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

/*product*/
#column-left .page-title:before {
  display: none;
}
#column-left .product-thumb,
#column-right .product-thumb {
  box-shadow: unset;
  border: none;
}
#column-left .product-layout:last-child .product-thumb,
#column-right .product-layout:last-child .product-thumb {
  margin: 0;
}
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
}
#column-left .product-thumb > .image,
#column-right .product-thumb > .image {
  float: left;
  width: 80px;
  margin-right: 15px;
  border: none;
}
#column-left .product-thumb > .thumb-description,
#column-right .product-thumb > .thumb-description {
  float: left;
  width: 63.8%;
  border: none;
}
#column-left .quickview-button,
#column-right .quickview-button,
#column-left .button-group,
#column-right .button-group,
#column-left .sale-text,
#column-right .sale-text,
#column-left .product-thumb .addcart,
#column-right .product-thumb .addcart {
  display: none;
}
#column-left .product-thumb .caption,
#column-right .product-thumb .caption {
  text-align: left;
  position: relative;
  bottom: 0;
  padding: 0;
}
#column-left .product-thumb .product-title,
#column-right .product-thumb .product-title {
  line-height: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 56.5%;
  }
  #column-left .product-thumb > .image,
  #column-right .product-thumb > .image {
    width: 70px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .toggled .toggle-open {
    position: absolute;
    right: 0;
  }
  #selectMe-desk {
    display: none;
  }
  .category-list .has-more-category .toggled {
    right: 20px;
  }
  #column-left .swiper-viewport,
  #column-right .swiper-viewport {
    display: none;
  }
  #column-left > div,
  #column-right > div {
    margin: 15px 0 0;
  }
  #column-left h3,
  #column-right h3,
  #column-left .box-content h3,
  #column-right .box-content h3 {
    padding: 7px 15px;
    font-size: 16px;
  }
  #column-left .toggled .toggle-open,
  #column-right .toggled .toggle-open {
    right: 15px;
  }
  .category-list #selectMe-desk,
  .filter_box,
  #column-left .block_box,
  #column-right .block_box,
  .account-content .list-unstyled,
  .sidebar .list-unstyled {
    margin-top: 20px;
  }
  #column-left .product-thumb > .thumb-description,
  #column-right .product-thumb > .thumb-description {
    width: 67.2%;
  }
}

/*----------------------------------------------*/
/* category page */
/*----------------------------------------------*/
.cat-banner {
  border: none;
  padding: 0 0 20px 0;
  border-radius: 0;
}
.cat-description p {
  font-size: 16px;
  margin: 0 0 15px;
  color: var(--secondary-light-color);
}
.cat_info {
  margin: 20px 0 30px;
  padding: 9px 20px;
  border: 1px solid var(--border-color);
}
.refine-text {
  font-size: 18px;
  margin-bottom: 13px;
  font-weight: 600;
}
.cat-name li:hover,
.cat-name li:hover a {
  color: var(--primary-hover-color);
}
.cat-name {
  font-size: 16px;
  padding: 0;
  margin: 0;
  text-transform: capitalize;
}
.cat-name li {
  display: inline-block;
}
.cat-name li a {
  border: 1px solid var(--border-color);
  padding: 6px 20px;
  display: inline-block;
  margin: 0 10px 10px 0;
  color: var(--secondary-light-color);
  transition: 0.5s;
}
.cat-name li a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
#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);
  border-color: var(--primary-hover-color);
  color: var(--secondary-color);
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}
#list-view.btn-default,
#grid-view.btn-default {
  padding: 0;
  height: 40px;
  width: 40px;
  border-radius: 25px;
  color: var(--primary-color);
  border: 2px solid var(--border-color);
  background: transparent;
}
#grid-view.btn-default {
  margin: 0 10px 0 0;
}
#list-view.btn-default .fa,
#grid-view.btn-default .fa {
  font-size: 16px;
  line-height: 36px;
}
.com-total {
  float: left;
}
#compare-total.btn.btn-link {
  text-decoration: none;
  font-size: 16px;
  outline: none;
  padding: 9px 0;
  text-transform: capitalize;
  font-weight: 400;
}
#compare-total.btn.btn-link:hover {
  color: var(--primary-hover-color);
}
.cat-pagination-right {
  padding-left: 10px;
  text-align: right;
}
.cat-pagination-right > div {
  display: inline-block;
  vertical-align: top;
  padding: 2px 0;
}
.cat-pagination-right .cat-show {
  padding-left: 20px;
}
.text-right.show-text {
  padding: 0px 5px;
}
.text-right.show-text,
.text-right.show-select {
  width: auto;
  float: left;
}
.text_limit,
.text_sort {
  margin: 8px 0;
  font-size: 16px;
}
.select-filter-sort,
.select-filter-show {
  position: relative;
}
.cat-pagination-right .form-control {
  padding: 4px 25px 4px 10px;
  margin: 0;
  height: 36px;
  border-radius: 0;
  background: transparent;
}
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: "\f107";
  font-size: 16px;
  position: absolute;
  right: 10px;
  top: 8px;
  pointer-events: none;
  color: var(--secondary-light-color);
}
.product-grid .description,
.product-grid .pro_description {
  display: none;
}
@media (max-width: 1199px) {
  .cat_info {
    padding: 9px 10px;
  }
  #grid-view.btn-default {
    margin: 0 5px 0 0;
  }
}
@media (max-width: 991px) {
  .cat_info {
    margin: 10px 0 20px;
  }
  .cat-banner {
    padding: 0 0 15px 0;
  }
  .cat-name {
    font-size: 14px;
  }
  .cat-name li a {
    margin: 0 5px 5px 0;
    padding: 3px 10px;
  }
  #list-view.btn-default,
  #grid-view.btn-default {
    height: 36px;
    width: 36px;
  }
  #list-view.btn-default .fa,
  #grid-view.btn-default .fa {
    line-height: 32px;
  }
  #compare-total.btn.btn-link {
    font-size: 14px;
    padding: 7px 0;
  }
}
@media (max-width: 767px) {
  .cat-pagination-right {
    text-align: left;
    padding: 5px 10px 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;
  }
}

/*product list*/
.product-list .product-thumb .grid-btn,
.product-grid .product-thumb .list-btn {
  display: none;
}
.product-list .product-thumb .product-title {
  margin: 7px 0 12px;
}
.product-list .product-thumb .button-group {
  opacity: 1;
  position: unset;
  float: left;
  margin: 0 0 10px 10px;
}
.product-list .product-thumb .button-group button {
  width: 34px;
  height: 34px;
}
.product-list .action_cart,
.product-list .product-thumb:hover .action_cart {
  display: none;
}
.product-list .price-cart {
  display: block;
}
.product-list .product-thumb .price {
  margin: 17px 0 0;
}
#column-left .product-thumb .price,
#column-left .product-thumb .rating,
#column-right .product-thumb .price,
#column-right .product-thumb .rating,
.product-list .product-thumb .price,
.product-list .product-thumb .rating {
  opacity: 1;
}
.product-list .product-thumb {
  border: none;
  box-shadow: none;
  overflow: hidden;
}
.product-list .product-thumb .caption {
  text-align: left;
  padding: 0;
}
.product-list .product-thumb .caption .description {
  margin: 15px 0 26px 0;
}
.product-list .product-thumb .pro-addcart {
  position: unset;
  opacity: 1;
  margin: 0;
  float: left;
}
.rating .fa-stack,
#tab-review .fa-stack {
  font-size: 6px;
}
.rating .fa-star-o,
#tab-review .fa-star-o,
.rating .fa-star,
#tab-review .fa-star {
  color: #f2ba0e;
  font-size: 12px;
}
.rating .fa-star + .fa-star-o,
#tab-review .fa-star + .fa-star-o {
  color: #f2ba0e;
}
.product-list .product-thumb .thumb-description .caption p::after {
  display: none;
}
@media (min-width: 681px) {
  .product-list .product-thumb .image {
    float: left;
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .product-list .product-thumb .image {
    margin-right: 20px;
  }
  .product-list .product-thumb .product-title {
    margin: 0 0 5px;
  }
  .product-list .product-thumb .price {
    margin: 7px 0 0;
  }
  .product-list .product-thumb .caption .description {
    margin: 8px 0 15px 0;
  }
  .product-list .product-thumb .button-group button {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 680px) {
  .product-list .thumb-description {
    padding-top: 15px;
  }
}

/*----------------------------------------------*/
/* pagination css */
/*----------------------------------------------*/
.pro_pagination {
  clear: both;
  padding: 11px 5px;
  border: 1px solid var(--border-color);
}
.pro_pagination .text-left {
  line-height: 36px;
  float: left;
  font-size: 16px;
}
.pagination {
  padding: 0;
  margin: 0;
  vertical-align: top;
}
.pro_pagination .pagination > li.active > span,
.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  background: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
  color: var(--secondary-color);
  cursor: pointer;
  z-index: 1;
  border-radius: 25px;
}
.pagination > li > a:last-child {
  border-radius: 25px;
}
.pagination > li > a,
.pagination > li > span {
  color: var(--primary-color);
  border: 2px solid var(--border-color);
  float: left;
  margin-left: 10px;
  width: 36px;
  height: 36px;
  line-height: 32px;
  text-align: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .pro_pagination .text-left,
  .pro_pagination .text-right {
    width: 100%;
    float: unset;
    text-align: center;
    clear: both;
  }
  .pro_pagination {
    padding: 10px 5px;
  }
  .pro_pagination .text-right {
    padding-top: 5px;
  }
  .pro_pagination .text-left {
    line-height: 20px;
  }
}

/*----------------------------------------------*/
/* product page */
/*----------------------------------------------*/
.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
a.thumbnail {
  padding: 0;
  border: none;
  margin: 0;
}
.pro-image #zoom {
  width: 100%;
}
.product-additional {
  text-align: center;
  position: relative;
}
.product-additional button {
  border: none;
  color: #959595;
  position: absolute;
  padding: 0 10px;
  background: transparent;
}
.product-additional button:hover {
  color: var(--primary-hover-color);
}
.product-additional .bottom-arrow {
  right: 0;
}
.product-additional .top-arrow {
  left: 0;
}
.product-additional button i {
  font-size: 18px;
}
.pro-image {
  margin: 0 0 20px;
}
#additional-carousel,
#quick-carousel {
  padding: 0 45px;
}
.image-additional a.active,
.image-additional a:hover {
  border-color: var(--primary-hover-color);
}
.image-additional a {
  display: block;
  margin: 0 10px;
}
#additional-carousel .owl-nav > div,
#quick-carousel .owl-nav > div {
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
#additional-carousel .owl-nav .owl-prev,
#quick-carousel .owl-nav .owl-prev {
  left: 25px;
}
#additional-carousel .owl-nav .owl-next,
#quick-carousel .owl-nav .owl-next {
  right: 25px;
}
#additional-carousel .owl-nav div,
#quick-carousel .owl-nav div {
  border: none;
  color: var(--primary-color);
  width: auto;
  height: auto;
  background: transparent;
}
#additional-carousel.owl-carousel.owl-theme .owl-nav div:before,
#quick-carousel.owl-carousel.owl-theme .owl-nav div:before {
  display: none;
}
#additional-carousel.owl-carousel.owl-theme .owl-nav .fa,
#quick-carousel.owl-carousel.owl-theme .owl-nav .fa {
  line-height: 20px;
  font-size: 26px;
}
.right_info h1,
.quick-product-right h1 {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 15px;
  font-weight: bold;
}
.rating .product-rating {
  float: left;
  padding-right: 20px;
}
.rating .reviews {
  padding: 0 13px 0 0;
  position: relative;
  margin-right: 10px;
  border-right: 1px solid var(--border-color);
  color: var(--secondary-light-color);
}
.quickview-container .rating .reviews {
  border: none;
}
.rating .write-review {
  color: var(--secondary-light-color);
}
.rating .reviews:hover,
.rating .write-review:hover,
.rating .write-review:hover .fa-pencil {
  color: var(--primary-hover-color);
}
.rating .fa-pencil {
  padding-right: 5px;
  color: var(--primary-color);
}
.right_info .disc {
  color: var(--primary-color);
  margin-right: 5px;
  line-height: 27px;
  min-width: 125px;
  display: inline-block;
  font-size: 16px;
}
.right_info .disc1 {
  color: var(--secondary-light-color);
  margin-right: 10px;
  font-size: 16px;
}
.pro_price {
  font-size: 24px;
  margin-right: 10px;
  font-weight: 600;
}
.pro_oldprice {
  font-size: 16px;
  color: var(--secondary-light-color);
}
.right_info .tax {
  margin: 10px 0 0;
}
.product-options h3 {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: bold;
}
.right_info .control-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.right_info .checkbox,
.right_info .radio {
  margin-top: 0;
}
.product-btn-quantity {
  display: flex;
  align-items: center;
}
.product-options .alert {
  margin-top: 15px;
}
#button-cart,
#quick-cart {
  margin-left: 20px;
  padding: 13px 35px;
}
.minus-plus {
  display: flex;
  align-items: center;
}
.minus-plus .minus,
.minus-plus .plus,
#input-quantity {
  height: 50px;
  width: 50px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-color);
  text-align: center;
  border-radius: 0;
}
#input-quantity {
  margin: 0 5px;
  width: 75px;
}
button.pro_wish,
button.pro_comper {
  background-color: transparent;
  border: unset;
  padding: 0 20px 7px 0;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
}
button.pro_wish:hover,
button.pro_comper:hover {
  color: var(--primary-hover-color);
}
.tab-content #tab-description {
  font-size: 15px;
  color: var(--secondary-light-color);
}
#product-page #tab-description ul:last-child,
#product-page #tab-specification .table {
  margin: 0;
  border-color: var(--border-color);
}
.tab-content .table {
  background: var(--secondary-color);
}
#product-page #content h2 {
  font-size: 18px;
  margin: 25px 0 15px 0;
}
#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: 50px;
}
#product-page .nav-tabs {
  display: flex;
  justify-content: center;
}
#product-page .tab-content {
  padding: 30px 0 0;
}
@media (max-width: 1440px) {
  #button-cart,
  #quick-cart {
    padding: 8px 20px;
  }
  .minus-plus .minus,
  .minus-plus .plus,
  #input-quantity {
    height: 40px;
  }
}
@media (max-width: 991px) {
  .related-products-block {
    padding-top: 30px;
  }
  #product-page .tab-content {
    padding: 20px 0 0;
  }
}
@media (max-width: 767px) {
  .product-img {
    width: 480px;
    margin: 0 auto;
  }
  .right_info {
    margin-top: 30px;
  }
  .related-products-block {
    padding-top: 20px;
  }
}
@media (max-width: 540px) {
  .product-img {
    width: auto;
  }
  #additional-carousel,
  #quick-carousel {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 480px) {
  #product-page .nav-tabs > li + li {
    margin-left: 15px;
  }
  #product-page .nav-tabs > li > a {
    font-size: 14px;
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .rating .product-rating {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .product-btn-quantity {
    display: block;
  }
  #button-cart,
  #quick-cart {
    margin: 15px 0 0;
  }
}

/*----------------------------------------------*/
/* Contact Us */
/*----------------------------------------------*/
.information-contact .contact-left .title i.fa {
  background: var(--primary-hover-color);
  border: 2px solid var(--primary-hover-color);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  color: var(--secondary-color);
  font-size: 16px;
  height: 35px;
  margin: 0px 10px 10px 0;
  padding: 7px;
  text-align: center;
  width: 35px;
}
.information-contact .contact-left .title {
  font-size: 18px;
}
.content-address {
  margin-bottom: 15px;
}
.contact-left .btn-info i {
  font-size: 18px;
}
.content-details {
  background: var(--secondary-color);
  padding: 15px;
  border: 1px solid var(--border-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;
}
@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: 0;
}
#accordion.panel-group .panel + .panel {
  border-radius: 0;
  margin-top: 15px;
}
#accordion.panel-group .panel-default > .panel-heading {
  background: transparent;
}

/*----------------------------------------------*/
/* other page */
/*----------------------------------------------*/
#button-search {
  margin: 0 0 20px 0;
}
#product-search #input-search {
  margin-bottom: 10px;
}

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

/*account*/
#account-account h2.page_title {
  color: var(--primary-color);
  font-size: 18px;
  margin: 0px 0px 20px 0px;
  display: block;
}
#account-account #content ul {
  margin-bottom: 20px;
}
.well {
  border: 1px solid var(--border-color);
  box-shadow: none;
  padding: 19px;
  border-radius: 0;
  background-color: var(--secondary-color);
}
.well h2 {
  margin: 0px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.account-list-heading {
  font-size: 18px;
}
.account-list-content li a {
  line-height: 24px;
  color: var(--secondary-light-color);
  font-size: 15px;
}
.account-list-content li a:hover {
  color: var(--primary-hover-color);
}

/*sitemap*/
#information-sitemap #content li > a {
  line-height: 28px;
  font-size: 15px;
}

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

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

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

/*----------------------------------------------*/
/* common css */
/*----------------------------------------------*/
.mt-80 {
  margin-top: 80px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.img-thumbnail {
  border: none;
}
#content {
  min-height: 600px;
}
.common-home #content {
  min-height: unset;
}
#content > h3 {
  margin-top: 0;
}
.relative {
  position: relative;
}
.m-auto {
  margin: 0px auto;
}
.m-image-auto {
  width: auto !important;
}
ul.list-unstyled {
  margin: 0;
}
.owl-carousel {
  touch-action: manipulation;
}
.dropdown-menu {
  background: var(--secondary-color);
  z-index: 1001;
  margin: 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--primary-hover-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background-color: transparent;
  color: var(--primary-hover-color);
}
.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;
}
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
  border-bottom-width: 1px;
}
.table > tbody > tr > td {
  border-top: none;
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  display: block;
  width: 100%;
  height: 50px;
  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: 25px;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^="quantity"] {
  min-width: 50px;
}
@media (max-width: 1440px) {
  .mt-80 {
    margin-top: 50px;
  }
  .mt-50 {
    margin-top: 20px;
  }
  .form-control {
    height: 40px;
  }
}
@media (max-width: 991px) {
  .mt-80 {
    margin-top: 30px;
  }
  .mt-50 {
    margin-top: 10px;
  }
  /* Mahardhi */
  #content,
  #column-left,
  #column-right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mt-80 {
    margin-top: 20px;
  }
  .mt-50 {
    margin-top: 0px;
  }
}

@media (min-width: 1441px) {
  .container {
    width: 1200px;
  }
}
@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 (max-width: 991px) and (min-width: 541px) {
  .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: 540px) and (min-width: 320px) {
  .col-sm-2:nth-child(6n + 1),
  .col-sm-3:nth-child(4n + 1),
  .col-sm-4:nth-child(2n + 1),
  .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
}
@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 var(--border-color);
  }
  .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;
  }
}
@media (max-width: 540px) and (min-width: 320px) {
  .block_box :not(.owl-carousel) .col-xs-4,
  .product-layout.product-grid.col-xs-4 {
    width: 50%;
  }
}
@media screen and (max-width: 319px) {
  .block_box :not(.owl-carousel) .col-xs-4,
  .product-layout.product-grid.col-xs-4 {
    width: 100%;
  }
}

/* mahardhi */
@media (max-width: 767px) {
  #column-left,
  #column-right {
    display: block !important;
  }
}
