@import "https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&amp;family=Mr+De+Haviland&amp;family=Prata&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap";
@import url("https://fonts.cdnfonts.com/css/centrale-sans-regular");
:root {
  --clear: #f3f5f7;
  --milk: #f4f5f7 ;
  --primary: #18365d;
  --secondary: #75b22d;
  --primary-1: rgba(24, 54, 93, 0.1);
  --primary-2: rgba(24, 54, 93, 0.2);
  --primary-3: rgba(24, 54, 93, 0.3);
  --primary-4: rgba(24, 54, 93, 0.4);
  --primary-5: rgba(24, 54, 93, 0.5);
  --primary-6: rgba(24, 54, 93, 0.6);
  --primary-7: rgba(24, 54, 93, 0.7);
  --primary-8: rgba(24, 54, 93, 0.8);
  --primary-9: rgba(24, 54, 93, 0.9);
  --feint-pad: 1px solid rgba(220, 219, 224, 0.4);
  --feint-color: rgba(220, 219, 224, 0.4);
  --clear-text: #fff;
  --purple-grad: linear-gradient(45deg, #2133b1 13.54%, #985abf 100%);
  --s_purple-grad: linear-gradient(45deg, #7f3cae 13.54%, #7b3f61 100%);
  --purple-grad-overlay: linear-gradient(
    45deg,
    rgba(33, 51, 177, 0.5) 13.54%,
    rgba(152, 90, 191, 0.5) 100%
  );
  --sun-grad: linear-gradient(100deg, #c88921 49%, #e49e3f 100%);
  --s_sun-grad: linear-gradient(100deg, #778445 49%, #923a34 100%);
  --sun-grad-overlay: linear-gradient(
    100deg,
    rgba(200, 137, 33, 0.5) 49%,
    rgba(228, 158, 63, 0.5) 100%
  );
  --blue-green-grad: linear-gradient(45deg, #005fa7 0%, #00aa4a 100%);
  --s_blue-green-grad: linear-gradient(45deg, #659ae8 0%, #1e2f60 100%);
  --blue-green-grad-alt: linear-gradient(45deg, #18365d 0%, #8fbe24 100%);
  --blue-green-grad-overlay: linear-gradient(
    45deg,
    rgba(0, 95, 167, 0.5) 0%,
    rgba(0, 170, 74, 0.5) 100%
  );
  --easy-blue: linear-gradient(45deg, #18365d 0%, #005fa7 100%);
  --moonlight: linear-gradient(
    45deg,
    #4b4b54 0%,
    rgba(119, 119, 120, 0.81) 100%
  );
  --moonlight-overlay: linear-gradient(
    45deg,
    rgba(75, 75, 84, 0.5) 0%,
    rgba(119, 119, 120, 0.5) 100%
  );
  --default-shadow: 0px 7px 17px -7px #dcdbe0;
  --emphasis-shadow: 0px 3px 17px -7px #000;
  --trans-white: rgba(249, 250, 251, 0.5);
  --trans-dark: rgba(17, 25, 40, 0.7);
  --glass: blur(8px);
  --text-emphasis: 1px 2px 1px #000;
}

/* Rectangle 8 */
@font-face {
  font-family: centrale;
  src: url(../font/centrale/centrale.ttf);
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.2px;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}
body {
  line-height: 1.74;
  font-size: 16px;

  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "Centrale Sans Regular", sans-serif;
  color: #000;
  position: relative;
  background-color: #fff;
}
p {
  font-size: 14px !important;
}
.no-js #loader {
  display: none;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}
.se-pre-con {
  position: fixed;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
  zoom: 60%;
  width: 100%;
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  -moz-backdrop-filter: blur(80px);
  height: 100%;
  background-size: contain;
  z-index: 999999;
  /*   background: url(../images/icons/turn-on-off.gif) center no-repeat
    rgba(255, 255, 255, 0.1); */
  background: #273f64;
}
.loader {
  width: 100px;
  height: 80px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 3;
}
.loader .image {
  width: 100px;
  height: 160px;
  font-size: 5rem;
  text-align: center;
  transform-origin: bottom center;
  animation: 3s rotate infinite;
  opacity: 0;
  color: #fff;
  position: relative;
  top: -11rem;
}
.loader span {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  font-size: 2rem;
  color: #fff;
}

@keyframes rotate {
  0% {
    transform: rotate(90deg);
  }

  10% {
    opacity: 0;
  }

  35% {
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    transform: rotate(0deg);
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    transform: rotate(-90deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    transform: rotate(90deg);
  }

  10% {
    opacity: 0;
  }

  35% {
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    transform: rotate(0deg);
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    transform: rotate(-90deg);
  }
}
@-moz-keyframes rotate {
  0% {
    transform: rotate(90deg);
  }

  10% {
    opacity: 0;
  }

  35% {
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    transform: rotate(0deg);
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    transform: rotate(-90deg);
  }
}

body.no-overflow {
  overflow: hidden;
}
.site-wrapper-reveal {
  background: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.41;
}
h1 {
  font-size: 60px;
  line-height: 1.1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 46px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}
h2 {
  font-size: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
h3 {
  font-size: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 25px;
  }
}
h4 {
  font-size: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h4 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 22px;
  }
}
h5 {
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  h5 {
    font-size: 20px;
  }
}
h6 {
  font-size: 18px;
}
p:last-child {
  margin-bottom: 0;
}
a,
button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}
a,
button,
img,
input,
span {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
*:focus {
  outline: none !important;
}
a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}
.btn.focus,
.btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:hover {
  text-decoration: none;
  color: #92c01f;
}
button,
input[type="submit"] {
  cursor: pointer;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.h-lg {
  font-size: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h-lg {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .h-lg {
    font-size: 30px;
  }
}
label {
  margin-bottom: 5px;
}
.font-lg-p {
  font-size: 18px;
}
.mark,
mark {
  padding: 0 0;
  background-color: transparent;
}
.font-weight--bold {
  font-weight: 700;
}
.font-weight--reguler {
  font-weight: 500;
}
.font-weight--normal {
  font-weight: 400;
}
.font-weight--light {
  font-weight: 300;
}
.site-wrapper-reveal {
  position: relative;
  z-index: 2;
  background: #fff;
}
.z-index-1 {
  z-index: 1;
}
.text-color-primary {
  color: #dcb14a;
}
.text-color-secondary {
  color: #d2a98e;
}
.text-black {
  color: #111 !important;
}
.bg-white {
  background: #fff;
}
.bg-gray {
  background: #fafafa;
}
.bg-gray-2 {
  background: #f6fafe;
}
.bg-gray-3 {
  background: #f6f2ed;
}
.bg-theme-default {
  background: #dcb14a;
}
.theme-bg-secondary {
  background: #d2a98e;
}
.black-bg {
  background: #000;
}
.border-radus-5 {
  border-radius: 5px;
}
.sub-heading {
  color: #999;
}
.text-red {
  color: red;
}
.text-green {
  color: #d2a98e;
}
.bg-gradient {
  background: -webkit-linear-gradient(top, #fff 0, #f5f5f5 100%);
}
select {
  padding: 3px 20px;
  height: 56px;
  max-width: 100%;
  width: 100%;
  outline: none;
  border: 1px solid #f8f8f8;
  border-radius: 5px;
  background: #f8f8f8 url("../images/icons/selector-icon.webp") no-repeat center
    right 20px;
  background-color: #f8f8f8;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select:focus {
  background: #f8f8f8 url("../images/icons/selector-icon.webp") no-repeat center
    right 20px !important;
}
.fixed-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.text-black {
  color: #333;
}
.box-shadow-top {
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}
.border {
  border: 1px solid #ededed !important;
}
.border-top {
  border-top: 1px solid #ededed !important;
}
.border-right {
  border-right: 1px solid #ededed !important;
}
.border-bottom {
  border-bottom: 1px solid #ededed !important;
}
.border-left {
  border-left: 1px solid #ededed !important;
}
.border-top-dash {
  border-top: 1px dashed #ddd !important;
}
.border-bottom-dash {
  border-bottom: 1px dashed #ddd !important;
}
.border-top-thick {
  border-top: 2px solid #ededed !important;
}
.border-bottom-thick {
  border-bottom: 2px solid #ededed !important;
}
.border-top-drak {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.border-bottom-drak {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}
.border-top-black {
  border-top: 1px solid #333;
}
.border-bottom-black {
  border-bottom: 1px solid #333;
}
.bg-img {
  background: #888;
}
.sub-heading {
  font-size: 14px;
}
.section-title--one {
  position: relative;
  padding-bottom: 10px;
}
.section-title--one::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: #dcb14a;
  height: 4px;
  width: 70px;
}
.section-title--center::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  background: #dcb14a;
  height: 4px;
  width: 70px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section-sub-title {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.43;
  margin-top: -5px;
}
.section-under-heading {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #111;
}
.section-under-heading a {
  color: #dcb14a;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.section-under-heading a::before {
  content: "";
  width: 0;
  height: 1px;
  bottom: -1px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}
.section-under-heading a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.img-width {
  width: 100%;
}
.title-dec-text {
  text-align: center;
  max-width: 760px;
  margin: auto;
}
::-moz-selection {
  color: #fff;
  background-color: var(--primary);
}
::selection {
  color: #fff;
  background-color: var(--primary);
}
form input:focus::-webkit-input-placeholder {
  color: transparent;
}
form input:focus::-moz-placeholder {
  color: transparent;
}
form input:focus:-ms-input-placeholder {
  color: transparent;
}
form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input::-moz-placeholder,
form textarea::-moz-placeholder {
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input::-ms-input-placeholder,
form textarea::-ms-input-placeholder {
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input::-moz-placeholder,
form textarea::-moz-placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input::-ms-input-placeholder,
form textarea::-ms-input-placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
form input::placeholder,
form textarea::placeholder {
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus,
select:focus,
textarea:focus {
  color: var(--primary);
  border-color: var(--primary);
}
input[type="checkbox"] {
  position: relative;
  background: 0 0;
  border-width: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0 10px 0 3px;
  cursor: pointer;
}
.box-home {
  background-color: #f4f5f7;
}
.page-box {
  max-width: 1330px;
  margin: auto;
  background-color: #fff;
}
.page-box .header-sticky.is-sticky {
  max-width: 1330px;
  margin: auto;
  left: 0;
  right: 0;
}
.breadcrumb-area {
  background-color: #f4f5f7;
  background-repeat: no-repeat;
  background-position: center center;
  border-bottom-width: 0px;
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover;
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.breadcrumb-list li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.58;
  text-transform: uppercase;
}
.breadcrumb-list li a {
  position: relative;
}
.breadcrumb-list li a::after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}
.breadcrumb-list li a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 0;
}
.breadcrumb-list li.active {
  color: #777;
}
@media only screen and (max-width: 575px) {
  .breadcrumb-list {
    margin-top: 20px;
  }
}
.page-pagination li {
  display: inline-block;
}
.page-pagination li a {
  font-weight: 500;
  padding: 0 10px;
  display: block;
  text-align: center;
  line-height: 41px;
  min-width: 41px;
  height: 41px;
  text-transform: uppercase;
  color: #ababab;
  letter-spacing: 2px;
  border-radius: 5px;
}
.page-pagination li a.current {
  background: #f6f5f9;
  color: #92c01f;
}
.page-pagination li a:hover {
  color: #fff;
  background: rgba(23, 54, 93, 0.7);
}
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: -60px;
  z-index: 999;
  -webkit-box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.03);
  display: block;
  padding: 0;
  width: 70px;
  height: 70px;
  border-radius: 0 66px;
  text-align: center;
  font-size: 25px;
  line-height: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: var(--primary);
  background-size: 200% auto;
  background-position: left center;
  color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
}
@media only screen and (max-width: 479px) {
  .scroll-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}
.scroll-top.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.scroll-top i {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.scroll-top .arrow-top {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.scroll-top .arrow-bottom {
  -webkit-transform: translate(-50%, 80px);
  -ms-transform: translate(-50%, 80px);
  transform: translate(-50%, 80px);
}
.scroll-top:hover {
  background-position: right center;
}
.scroll-top:hover .arrow-top {
  -webkit-transform: translate(-50%, -80px);
  -ms-transform: translate(-50%, -80px);
  transform: translate(-50%, -80px);
}
.scroll-top:hover .arrow-bottom {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.error-page-content .icon {
  font-size: 63px;
  color: #dcb14a;
}
.error-page-content .description {
  font-size: 18px;
}
.error-page-content .description a {
  color: #dcb14a;
  font-weight: 500;
  border-bottom: 1px solid;
}
.error-page-content .pages-search {
  max-width: 400px;
  margin: auto;
  position: relative;
}
.error-page-content .pages-search input {
  border: 1px solid #d9d9d9;
  padding: 13px 65px 13px 15px;
  border-radius: 0;
  background-color: transparent;
  width: 100%;
}
.error-page-content .pages-search .submit-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 10px;
}
.section-space--ptb_120 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_120 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-space--pt_120 {
  padding-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_120 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_120 {
    padding-top: 60px;
  }
}
.section-space--pb_120 {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_120 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_120 {
    padding-bottom: 60px;
  }
}
.section-space--ptb_100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_100 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-space--pt_100 {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_100 {
    padding-top: 60px;
  }
}
.section-space--pb_100 {
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_100 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_100 {
    padding-bottom: 60px;
  }
}
.section-space--ptb_90 {
  padding-top: 100px;
  /*   padding-bottom: 90px; */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_90 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_90 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-space--pt_90 {
  padding-top: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_90 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_90 {
    padding-top: 40px;
  }
}
.section-space--pb_90 {
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_90 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_90 {
    padding-bottom: 40px;
  }
}
.section-space--ptb_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_80 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_80 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-space--pt_80 {
  padding-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_80 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_80 {
    padding-top: 40px;
  }
}
.section-space--pb_80 {
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_80 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_80 {
    padding-bottom: 40px;
  }
}
.section-space--ptb_70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_70 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_70 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.section-space--pt_70 {
  padding-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_70 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_70 {
    padding-top: 30px;
  }
}
.section-space--pb_70 {
  padding-bottom: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_70 {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_70 {
    padding-bottom: 30px;
  }
}
.section-space--ptb_60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--ptb_60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--ptb_60 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.section-space--pt_60 {
  padding-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_60 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_60 {
    padding-top: 60px;
  }
}
.section-space--pb_60 {
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_60 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_60 {
    padding-bottom: 60px;
  }
}
.section-space--pt_40 {
  padding-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pt_40 {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pt_40 {
    padding-top: 30px;
  }
}
.section-space--pb_40 {
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--pb_40 {
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--pb_40 {
    padding-bottom: 30px;
  }
}
.section-space--ptb_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-space--pt_30 {
  padding-top: 30px;
}
.section-space--pb_30 {
  padding-bottom: 30px;
}
.section-space--mt_15 {
  margin-top: 15px;
}
.section-space--mt_20 {
  margin-top: 20px;
}
.section-space--mt_30 {
  margin-top: 30px;
}
.section-space--mt_40 {
  margin-top: 40px;
}
.section-space--mt_50 {
  margin-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_50 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_50 {
    margin-top: 30px;
  }
}
.section-space--mt_60 {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_60 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_60 {
    margin-top: 30px;
  }
}
.section-space--mt_70 {
  margin-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_70 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_70 {
    margin-top: 30px;
  }
}
.section-space--mt_80 {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_80 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_80 {
    margin-top: 30px;
  }
}
.section-space--mt_100 {
  margin-top: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_100 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_100 {
    margin-top: 60px;
  }
}
.section-space--mt_120 {
  margin-top: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mt_120 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mt_120 {
    margin-top: 60px;
  }
}
.section-space--mb_15 {
  margin-bottom: 15px;
}
.section-space--mb_20 {
  margin-bottom: 20px;
}
.section-space--mb_30 {
  margin-bottom: 30px;
}
.section-space--mb_40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .section-space--mb_40 {
    margin-bottom: 30px;
  }
}
.section-space--mb_50 {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_50 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_50 {
    margin-bottom: 30px;
  }
}
.section-space--mb_60 {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_60 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_60 {
    margin-bottom: 30px;
  }
}
.section-space--mb_100 {
  margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_100 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_100 {
    margin-bottom: 60px;
  }
}
.section-space--mb_120 {
  margin-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-space--mb_120 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-space--mb_120 {
    margin-bottom: 60px;
  }
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-25 {
  margin-bottom: 25px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-25 {
  margin-top: 25px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .small-mt__0 {
    margin-top: 0px;
  }
  .small-mt__10 {
    margin-top: 10px;
  }
  .small-mt__20 {
    margin-top: 20px;
  }
  .small-mt__30 {
    margin-top: 30px;
  }
  .small-mt__40 {
    margin-top: 40px;
  }
  .small-mt__50 {
    margin-top: 50px;
  }
  .small-mt__60 {
    margin-top: 60px;
  }
  .small-mb__30 {
    margin-bottom: 30px;
  }
  .small-mb__40 {
    margin-bottom: 40px;
  }
  .small-mb__50 {
    margin-bottom: 50px;
  }
  .small-mb__60 {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tablet-mt__0 {
    margin-top: 0px;
  }
  .tablet-mt__30 {
    margin-top: 30px;
  }
  .tablet-mt__40 {
    margin-top: 40px;
  }
  .tablet-mt__50 {
    margin-top: 50px;
  }
  .tablet-mt__60 {
    margin-top: 60px;
  }
  .tablet-mb__30 {
    margin-bottom: 30px;
  }
  .tablet-mb__40 {
    margin-bottom: 40px;
  }
  .tablet-mb__50 {
    margin-bottom: 50px;
  }
  .tablet-mb__60 {
    margin-bottom: 60px;
  }
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner {
  padding: 60px;
  width: 450px;
  -webkit-box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .offcanvas-minicart_wrapper .offcanvas-menu-inner {
    width: 100%;
    padding: 53px 50px 45px;
  }
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .close-btn-box {
  text-align: left;
  margin-bottom: 30px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .btn-close {
  background: transparent;
  color: #333;
  top: 0;
  right: 0;
  left: auto;
  text-align: right;
  font-size: 20px;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .btn-close:hover {
  color: #212121;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list {
  max-height: 311px;
  position: relative;
  overflow: auto;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li {
  padding-bottom: 30px;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li:last-child {
  padding-bottom: 0;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  position: relative;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product
  > a.product-item_remove
  > i {
  position: absolute;
  font-size: 14px;
  top: 20px;
  right: 15px;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product
  .product-item_content {
  -webkit-flex-basis: calc(100% - 70px);
  -ms-flex-preferred-size: calc(100% - 70px);
  flex-basis: calc(100% - 70px);
  max-width: calc(100% - 70px);
  padding-left: 20px;
  padding-right: 10px;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product
  .product-item_content
  a.product-item_title {
  color: #000;
  line-height: 1.4;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
  width: 90%;
  display: block;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product
  .product-item_content
  a.product-item_title:hover {
  color: #333;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product
  .product-item_content
  label {
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 15px;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product
  .product-item_content
  label
  span {
  color: #666;
  padding-left: 10px;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-content
  .minicart-list
  > li.minicart-product
  .product-item_content
  .product-item_quantity {
  display: block;
  font-size: 13px;
  color: #333;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-item_total {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px 0;
  font-size: 18px;
  font-weight: 500;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-btn_area {
  padding-bottom: 15px;
}
.offcanvas-minicart_wrapper
  .offcanvas-menu-inner
  .minicart-btn_area
  .hiraola-btn {
  height: 60px;
  line-height: 60px;
  color: #fff !important;
}
.global-overlay.overlay-open {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -440px;
  width: 440px;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .offcanvas-inner_logo {
  padding: 30px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .offcanvas-minicart_wrapper .offcanvas-menu-inner {
    width: 300px;
    padding: 60px 20px 0 !important;
  }
}
.offcanvas-minicart_wrapper.open .offcanvas-menu-inner {
  visibility: visible;
  left: auto;
  right: 0;
  opacity: 1;
  z-index: 9999;
}
.container-fluid--cp-150 {
  padding: 0 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .container-fluid--cp-150 {
    padding: 0 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container-fluid--cp-150 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid--cp-150 {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-150 {
    padding: 0 30px;
  }
}
@media (min-width: 1700px) {
  .container-fluid--cp-140 {
    padding: 0 140px !important;
  }
}
@media (min-width: 1700px) and (max-width: 1663px) {
  .container-fluid--cp-140 {
    padding: 0 100px !important;
  }
}
@media (min-width: 1600px) and (max-width: 1664px) {
  .container-fluid--cp-140 {
    padding: 0 30px !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid--cp-140 {
    padding: 0 30px;
  }
}
@media (min-width: 1600px) {
  .container-fluid--cp-120 {
    padding: 0 120px !important;
  }
}
@media (min-width: 1600px) and (max-width: 1664px) {
  .container-fluid--cp-120 {
    padding: 0 110px !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid--cp-120 {
    padding: 0 50px;
  }
}
.container-fluid--cp-100 {
  padding: 0 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .container-fluid--cp-100 {
    padding: 0 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container-fluid--cp-100 {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid--cp-100 {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-100 {
    padding: 0 15px;
  }
}
@media (min-width: 1600px) {
  .container-fluid--cp-80 {
    padding: 0 80px !important;
  }
}
@media (min-width: 1600px) and (max-width: 1664px) {
  .container-fluid--cp-80 {
    padding: 0 30px !important;
  }
}
@media (min-width: 1200px) {
  .container-fluid--cp-80 {
    padding: 0 30px;
  }
}
.container-fluid--cp-60 {
  padding: 0 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid--cp-60 {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-60 {
    padding: 0 15px;
  }
}
.container-fluid--cp-30 {
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .container-fluid--cp-30 {
    padding: 0 15px;
  }
}
@media (min-width: 1200px) {
  .page-content-double-sidebar .container {
    max-width: 1600px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
.container {
  max-width: 1170px;
}
.container_fl {
  padding-left: 15px;
  padding-right: 15px;
}
.col-06__left {
  width: 600px;
  max-width: 100%;
  float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .col-06__left {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.col-06__right {
  width: 600px;
  max-width: 100%;
  float: left;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .col-06__right {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.banner-image__content {
  width: 570px;
  max-width: 100%;
}
.row--35 {
  margin-left: -35px !important;
  margin-right: -35px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--35 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--35 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--35 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--35 > [class*="col"],
.row--35 > [class*="col-"] {
  padding-left: 35px !important;
  padding-right: 35px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--35 > [class*="col"],
  .row--35 > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--35 > [class*="col"],
  .row--35 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--35 > [class*="col"],
  .row--35 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--30 {
  margin-left: -30px;
  margin-right: -30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--30 > [class*="col"],
.row--30 > [class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--30 > [class*="col"],
  .row--30 > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--30 > [class*="col"],
  .row--30 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--30 > [class*="col"],
  .row--30 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--25 {
  margin-left: -25px;
  margin-right: -24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}
.row--25 > [class*="col"],
.row--25 > [class*="col-"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .row--25 > [class*="col"],
  .row--25 > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row--25 > [class*="col"],
  .row--25 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .row--25 > [class*="col"],
  .row--25 > [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.row--6 {
  margin-left: -6px;
  margin-right: -6px;
}
.row--6 > [class*="col"],
.row--6 > [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}
.row--5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row--5 > [class*="col"],
.row--5 > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
.header-sticky.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  animation: 0.95s ease-in-out 0s normal none 1 running fadeInDown;
  z-index: 999;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-box-shadow: 0 1px 1px 0 #f0f0f0;
  box-shadow: 0 1px 1px 0 #f0f0f0;
  background-color: #fff;
}
.header-sticky.is-sticky.header_height-120 {
  height: 90px;
}
.header_absolute {
  position: absolute;
  z-index: 9;
  width: 100%;
}
.header_height-90 {
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.header_height-120 {
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.top-logo-area {
  border-bottom: 1px solid #ddd;
  margin-top: 50px;
  padding-bottom: 50px;
}
.header-sticky .logo__hidden {
  display: none;
}
.header-sticky .content__hidden {
  display: inherit !important;
}
@media only screen and (max-width: 767px) {
  .header-sticky .logo__hidden {
    display: inherit;
  }
  .header-sticky .content__hidden {
    display: none !important;
  }
}
.is-sticky .top-logo-area {
  display: none;
}
.is-sticky .content__hidden {
  display: none !important;
}
.is-sticky .logo__hidden {
  display: inherit;
}
.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-left-search {
  width: 100%;
  max-width: 275px;
}
.header-left-search .header-search-box {
  position: relative;
}
.header-left-search .search-field {
  width: 100%;
  padding: 10px 35px 10px 0;
  border-width: 0 0 1px;
  border-color: rgba(0, 0, 0, 0.25);
  background-color: transparent;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header-left-search .search-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  font-size: 22px;
  color: #000;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  border: none;
  background: transparent;
}
.header-right-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.header-right-side .header-right-items {
  margin-left: 40px;
}
.header-right-side .header-right-items a {
  font-size: 24px;
}
.header-right-side .header-right-items a.mobile-navigation-icon {
  font-size: 24px;
}
.header-right-side .header-right-items a.mobile-navigation-icon i {
  margin-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .header-right-side .header-right-items {
    margin-left: 30px;
  }
}
.header-left-side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.header-left-side .header-right-items {
  margin-left: 0px;
  margin-right: 40px;
}
.header-left-side .header-right-items a {
  font-size: 24px;
}
.header-left-side .header-right-items a.mobile-navigation-icon {
  font-size: 30px;
}
.header-left-side .header-right-items a.mobile-navigation-icon i {
  margin-bottom: 5px;
}
@media only screen and (max-width: 575px) {
  .header-left-side .header-right-items {
    margin-right: 30px;
  }
}
.header-cart {
  position: relative;
}
.header-cart .item-counter {
  font-size: 12px;
  vertical-align: 0.3em;
  position: absolute;
  min-width: 19px;
  height: 19px;
  background-color: var(--primary);
  text-align: center;
  color: #fff;
  line-height: 19px;
  border-radius: 19px;
  bottom: 1px;
  right: -10px;
  padding: 0 5px;
}
.header-cart:hover .item-counter {
  background: #92c01f !important;
}
/*icon-hover */
.header-right-items:hover i {
  color: #92c01f !important;
}
.header-login-register-wrapper .modal-dialog {
  max-width: 450px;
  border-radius: 0;
}
.header-login-register-wrapper .modal-content {
  border: none;
  border-radius: 0rem;
}
.search-fields {
  position: relative;
}
.modal-box-wrapper,
.myaccount-box-wrapper {
  background: #fff;
  width: 100%;
}
.modal-box-wrapper .helendo-tabs ul .tab__item,
.myaccount-box-wrapper .helendo-tabs ul .tab__item {
  width: 50%;
  text-align: center;
}
.modal-box-wrapper .helendo-tabs ul .tab__item a,
.myaccount-box-wrapper .helendo-tabs ul .tab__item a {
  color: #666;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  background-color: #ededed;
}
.modal-box-wrapper .helendo-tabs ul .tab__item a.active,
.myaccount-box-wrapper .helendo-tabs ul .tab__item a.active {
  background: #fff;
  color: #000;
}
.modal-box-wrapper .content-modal-box,
.myaccount-box-wrapper .content-modal-box {
  padding: 40px;
}
.modal-box-wrapper .content-modal-box .account-form-box .single-input,
.myaccount-box-wrapper .content-modal-box .account-form-box .single-input {
  margin-top: 30px;
}
.modal-box-wrapper .content-modal-box .account-form-box .single-input input,
.myaccount-box-wrapper
  .content-modal-box
  .account-form-box
  .single-input
  input {
  padding: 10px 20px;
  text-align: left;
  width: 100%;
  color: #666;
  border: 1px solid #ccc;
}
.modal-box-wrapper .content-modal-box .checkbox-wrap,
.myaccount-box-wrapper .content-modal-box .checkbox-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-box-wrapper .content-modal-box .checkbox-wrap label,
.myaccount-box-wrapper .content-modal-box .checkbox-wrap label {
  margin-bottom: 0rem;
}
@media only screen and (max-width: 479px) {
  .modal-box-wrapper .content-modal-box .checkbox-wrap,
  .myaccount-box-wrapper .content-modal-box .checkbox-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.modal-box-wrapper .content-modal-box .checkbox-wrap a,
.myaccount-box-wrapper .content-modal-box .checkbox-wrap a {
  font-size: 14px;
}
.modal-box-wrapper .content-modal-box .input-checkbox,
.myaccount-box-wrapper .content-modal-box .input-checkbox {
  opacity: 0;
  line-height: 1;
  height: inherit;
  display: none;
}
.modal-box-wrapper .content-modal-box span,
.myaccount-box-wrapper .content-modal-box span {
  display: inline-block;
  text-transform: inherit;
  position: relative;
  line-height: 1;
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 0 30px;
  font-weight: 400;
}
.modal-box-wrapper .content-modal-box span::before,
.myaccount-box-wrapper .content-modal-box span::before {
  font-family: linearicons;
  content: "";
  font-size: 16px;
  position: absolute;
  top: -2px;
  left: 0px;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.modal-box-wrapper .content-modal-box .input-checkbox:checked + span::before,
.myaccount-box-wrapper
  .content-modal-box
  .input-checkbox:checked
  + span::before {
  content: "";
}
.myaccount-box-wrapper .helendo-tabs ul {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.myaccount-box-wrapper .helendo-tabs ul .tab__item {
  width: auto;
  text-align: center;
  font-size: 24px;
  padding: 0 22px;
}
.myaccount-box-wrapper .helendo-tabs ul .tab__item a {
  color: #666;
  font-size: 24px;
  font-weight: 600;
  padding: 15px 0;
  background-color: transparent;
}
.myaccount-box-wrapper .helendo-tabs ul .tab__item a.active {
  background: transparent;
  color: #000;
}
.header-left-sidebar__content-header {
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
}
.header-left-sidebar__content-footer {
  bottom: 0;
}
.header-left-sidebar__content-header {
  top: 0;
}
.header-left-sidebar {
  font-size: 14px;
  width: 300px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  border-right: 1px solid #efefef;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-left-sidebar {
    width: 240px;
  }
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .header-left-sidebar {
    display: none;
  }
}
.header-left-sidebar__content {
  height: 100%;
  overflow-y: auto;
  padding: 50px 40px 0;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-left-sidebar__content {
    padding: 50px 20px 0;
  }
}
.page-template-template-home-left-sidebar {
  margin-left: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-template-template-home-left-sidebar {
    margin-left: 240px;
  }
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .page-template-template-home-left-sidebar {
    margin-left: 0;
  }
}
.newsletter-slidebar-box {
  position: relative;
}
.newsletter-slidebar-box input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 0 40px 0 0;
}
.newsletter-slidebar-box .submit-button {
  background: transparent;
  position: absolute;
  right: 0px;
  border: none;
}
.helendo-language-currency .widget-language h6,
.helendo-language-currency .widget-currency h6 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1;
}
.helendo-language-currency .widget-language ul li,
.helendo-language-currency .widget-currency ul li {
  margin-top: 8px;
}
.helendo-language-currency .widget-language ul li.actived a,
.helendo-language-currency .widget-currency ul li.actived a {
  color: #76b02c;
}
.helendo-language-currency .widget-language ul li a,
.helendo-language-currency .widget-currency ul li a {
  color: #999;
  opacity: 1;
  height: auto;
  padding: 0;
}
.helendo-language-currency .widget-language ul li a:hover,
.helendo-language-currency .widget-currency ul li a:hover {
  color: #dcb14a;
}
.mobile-menu-contact-info h6,
.mobile-menu-social-share h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.mobile-menu-contact-info p,
.mobile-menu-social-share p {
  color: #666;
}
.mobile-menu-contact-info .social-share li,
.mobile-menu-social-share .social-share li {
  display: inline-block;
  margin-right: 15px;
}
.header__navigation {
  position: relative;
}
.search-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__inner {
  width: 100%;
  height: 100%;
  cursor: default;
  background: #f4f5f7;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: hidden;
}
.search-overlay.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.search-overlay__header {
  background-color: #f4f5f7;
  padding: 50px 0;
}
.search-overlay__header .mobile-navigation-close-icon {
  font-size: 20px;
  cursor: pointer;
}
.search-overlay__body {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 75px;
}
.search-overlay__form {
  position: relative;
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
  margin: auto;
}
.search-overlay__form input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
  padding: 15px 50px 15px 0;
  width: 100%;
  color: #fff;
  font-size: 16px;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  .search-overlay__form input {
    font-size: 30px;
    height: 60px;
  }
}
.search-overlay__form input::-webkit-input-placeholder {
  color: #000;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input::-moz-placeholder {
  color: #000;
  -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input:-ms-input-placeholder {
  color: #000;
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input::-ms-input-placeholder {
  color: #000;
  -ms-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input::placeholder {
  color: #000;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search-overlay__form input[type="text"]:focus {
  color: #000;
  border-color: #000;
}
.search-overlay__form .submit-button {
  position: absolute;
  right: 15px;
  border: none;
  font-size: 20px;
  background: transparent;
  cursor: pointer;
}
.search-overlay__form .submit-button :hover {
  color: #dcb14a;
}
.product-cats label {
  font-weight: 400;
  padding: 0 18px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
}
.product-cats label input[type="checkbox"],
.product-cats label input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
.product-cats label input {
  display: none;
}
.product-cats label input:checked + span {
  color: #999;
}
.navigation-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.navigation-menu > ul > li {
  margin: 0 24px;
}
@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .navigation-menu > ul > li {
    margin: 0 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .navigation-menu > ul > li {
    margin: 0 15px;
  }
}
.navigation-menu > ul > li > a {
  display: block;
  color: ;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.18;
}
.navigation-menu > ul > li.has-children > a {
  position: relative;
}
.navigation-menu > ul > li.has-children > a::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid transparent;
  border-bottom-color: #d7d7d7;
  border-left-color: #d7d7d7;
  top: 1.6rem;
  left: 50%;
  background-color: #fff;
  z-index: 9999;
  -webkit-transform: rotate(135deg) translateX(50%) translateY(0px);
  -ms-transform: rotate(135deg) translateX(50%) translateY(0px);
  transform: rotate(135deg) translateX(50%) translateY(0px);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  bottom: -12px;
  opacity: 0;
}
.navigation-menu > ul > li.has-children--multilevel-submenu {
  position: relative;
}
.navigation-menu > ul > li.has-children:hover .megamenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.navigation-menu > ul > li.has-children:hover .megamenu--home-variation__item {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.navigation-menu > ul > li.has-children:hover > .submenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.navigation-menu > ul > li:hover > a::before,
.navigation-menu > ul > li.active > a::before {
  opacity: 1;
  bottom: -2px;
  -webkit-transform: rotate(135deg) translateX(50%) translateY(0px);
  -ms-transform: rotate(135deg) translateX(50%) translateY(0px);
  transform: rotate(135deg) translateX(50%) translateY(0px);
}
.submenu {
  border: 1px solid #ddd;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  margin-top: 1rem;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  visibility: hidden;
  opacity: 0;
  min-width: 240px;
  padding: 20px 0;
  z-index: 9;
}
.submenu > li {
  position: relative;
}
.submenu > li > a {
  display: block;
  padding: 5px 30px;
  color: #000;
  font-weight: 400;
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.submenu > li > a > span {
  position: relative;
}
.submenu > li > a:hover {
  color: #000;
}
.submenu > li:hover > .submenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  z-index: 9;
}
.submenu > li.active > a {
  color: #dcb14a;
}
.submenu > li.has-children > a {
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.submenu > li.has-children.active > a {
  color: #dcb14a;
}
.submenu .submenu {
  top: 0px;
  left: 100%;
  right: auto;
}
.submenu .submenu.left {
  right: 100%;
  left: auto;
}
.submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}
.submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}
.submenu .submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}
.submenu .submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}
.submenu .submenu .submenu .submenu .submenu {
  top: 0;
  left: 100%;
  right: auto;
}
.submenu .submenu .submenu .submenu .submenu.left {
  right: 100%;
  left: auto;
}
.tac {
  text-align: left;
color: var(--primary) !important;
  margin-bottom: 25px;
  position: relative;
  font-size: 35px;
  padding: 0 0 0 3.5rem;
}

.megamenu {
  position: absolute;
  top: 100%;
  right: 0;
  left: -30%;
  background: url(../images/bg/megamenu.png);
  background-position: right top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: #fff;
  background-size: 40%;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  border: 1px solid #ddd;
}
.megamenu--mega {
  min-width: 1080px;
  width: 100%;
  padding: 35px 20px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .megamenu--mega {
    min-width: 900px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .megamenu--mega {
    min-width: 900px;
    left: -40%;
  }
}
.megamenu--mega > li {
  -webkit-flex-basis: 22%;
  -ms-flex-preferred-size: 22%;
  flex-basis: 22%;
  padding-left: 15px;
  padding-right: 15px;
}
.megamenu--mega > li .page-list-title {
  font-size: 14px;
  margin-bottom: 20px;
  color: #111;
}
.megamenu--mega > li > ul > li > a {
  padding: 10px 0;
  color: #ababab;
  line-height: 1.2;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}
.megamenu--mega > li > ul > li > a:hover {
  color: #000;
}
.megamenu--mega > li > ul > li > a > span {
  position: relative;
}
.megamenu--mega > li > ul > li > a > span:after {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  background-color: #dcb14a;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.megamenu--mega > li > ul > li.active > a {
  color: #dcb14a;
}

.mobile-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  overflow: auto;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  overflow-x: hidden;
}
.mobile-menu-overlay__inner {
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
  transform: translateX(120%);
  width: 420px;
  height: 100%;
  float: right;
  cursor: default;
  background: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: auto;
}
@media only screen and (max-width: 479px) {
  .mobile-menu-overlay__inner {
    width: 300px;
  }
}
.mobile-menu-overlay__inner .mobile-menu-close-box {
  padding: 50px 40px 30px;
}
.mobile-menu-overlay__inner
  .mobile-menu-close-box
  .mobile-navigation-close-icon {
  font-size: 20px;
  cursor: pointer;
}
.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-overlay.active .mobile-menu-overlay__inner {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.mobile-menu-overlay__header {
  background-color: #fff;
  padding: 15px 0;
}
.mobile-menu-overlay__body {
  padding: 20px 40px 100px;
}

nav.offcanvas-navigation {
  margin-top: -2rem;
}

.mobile-menu-overlay__body .offcanvas-navigation > ul > li > a {
  display: block;
  color: #000;
  padding-top: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li > a:hover {
  color: #666;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li:last-child {
  border-bottom: 0;
}
.mobile-menu-overlay__body .offcanvas-navigation > ul > li.has-children {
  position: relative;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children.active
  .menu-expand:before {
  content: "C";
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand {
  position: absolute;
  right: 0;
  top: 12px;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .menu-expand:before {
  content: "C";
  font-size: 18px;
  font-family: "ElegantIcons";
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu {
  padding: 12px 0 0px 20px;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li
  a {
  display: block;
  font-size: 15px;
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 0;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li
  a:hover {
  color: #666;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li:last-child {
  border-bottom: 0;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children {
  position: relative;
}
.widget-map h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children.active
  .menu-expand:before {
  content: "C";
  font-family: "ElegantIcons";
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand {
  position: absolute;
  right: 0;
  top: 6px;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  li.has-children
  .menu-expand:before {
  content: "C";
  font-family: "ElegantIcons";
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children {
  position: relative;
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children.active
  .menu-expand:before {
  content: "C";
  font-family: "ElegantIcons";
}
.mobile-menu-overlay__body
  .offcanvas-navigation
  > ul
  > li.has-children
  .sub-menu
  .sub-menu
  li.has-children
  .menu-expand:before {
  content: "C";
  font-family: "ElegantIcons";
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu-overlay__body .offcanvas-navigation--onepage > ul > li.active > a {
  font-weight: 700;
}
.preview-nav > ul > li {
  margin: 0 24px;
}
@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .preview-nav > ul > li {
    margin: 0 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .preview-nav > ul > li {
    margin: 0 15px;
  }
}
.preview-nav > ul > li > a {
  padding: 0px 0px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}
.preview-nav > ul > li > a::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  background-color: #000;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.preview-nav > ul > li:hover > a::after,
.preview-nav > ul > li.active > a::after {
  width: 100%;
  left: 0;
  right: auto;
}
.reveal-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--primary);
  /*   background: linear-gradient(
    320.61deg,
    #01457e 1.6%,
    #001641 33.9%,
    #000925 92.07%
  ); */
  width: 100%;
  background-image: url(../images/icons/patterned.svg);
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .reveal-footer {
    position: static;
  }
}
.footer-widget-wrapper {
  margin-bottom: -35px;
}
.footer-widget {
  margin-bottom: 30px;
}
.footer-widget__title {
  margin-top: -3px;
  color: #fff;
  font-weight: 700;
}
a.hover-style-link {
  color: #fff;
}
.footer-widget__list li {
  margin-bottom: 4px;
  color: #fff;
}
.footer-widget__list li i {
  margin-right: 10px;
  color: #fff;
}
.footer-widget__list li:last-child {
  margin-bottom: 0;
}
.footer-widget__list li .image_btn {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
  box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
  overflow: hidden;
}
.footer-widget__newsletter {
  position: relative;
}
.footer-widget__newsletter input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  color: #fff !important;
  background: transparent;
  padding: 0 40px 0 0;
}
.footer-widget__newsletter .submit-button {
  background: transparent;
  position: absolute;
  right: 5px;
  border: none;
}
@media only screen and (max-width: 767px) {
  .footer-widget__footer-menu {
    margin-bottom: 20px;
  }
}
.footer-widget__footer-menu li {
  display: inline-block;
  color: #fff;
  margin-right: 27px;
}
.footer-widget__footer-menu li:last-child {
  margin-right: 0;
}
.footer-social-networks .item {
  display: inline-block;
  margin-right: 20px;

  color: #fff;
}
.footer-social-networks .item:last-child {
  margin-right: 0;
}
.footer-bottom-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .footer-bottom-social {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0 0 0;
  }
}
.footer-bottom-social .title {
  margin-right: 60px;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-bottom-social .title {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .footer-bottom-social .title {
    margin-right: 20px;
  }
}
.instagram_gallery a {
  width: 80px;
  margin: 5px;
}
.instagram_gallery a img {
  width: 80px;
}
.copyright-text {
  display: block;
  text-align: center !important;
  color: #fff;
}
.shop-widget {
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.shop-widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.widget-shop-categories .widget-nav-list li,
.widget-size .widget-nav-list li,
.widget-price .widget-nav-list li {
  margin-bottom: 6px;
}
.widget-shop-categories .widget-nav-list li:last-child,
.widget-size .widget-nav-list li:last-child,
.widget-price .widget-nav-list li:last-child {
  margin-bottom: 0;
}
.widget-shop-categories .widget-nav-list li a,
.widget-size .widget-nav-list li a,
.widget-price .widget-nav-list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  font-size: 18px;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.widget-color .widget-nav-list li {
  display: inline-block;
  margin-bottom: 6px;
  margin-right: 20px;
}
.widget-color .widget-nav-list li:last-child {
  margin-bottom: 0;
}
.tagcloud a::after {
  content: ",";
}
.tagcloud a {
  font-size: 16px;
  padding-right: 5px;
}
.page-pagination li {
  text-align: center;
  padding: 0 5px;
}
.page-pagination li .page-numbers {
  height: 34px;
  padding: 0 13px;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  color: #000;
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-pagination li .page-numbers.current {
  background-color: var(--primary);
  color: #fff;
}
.page-pagination li .page-numbers i {
  font-size: 12px;
  padding-left: 8px;
}
.bg-img {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.single-hero-slider-one {
  height: 800px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-one {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-one {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-one {
    height: 540px;
  }
}
.single-hero-slider-one .hero-title {
  position: relative;
  padding-bottom: 15px;
}
.single-hero-slider-one .hero-title::after {
  background-color: #dcb14a;
  position: absolute;
  content: "";
  min-height: 4px;
  min-width: 70px;
  max-height: 4px;
  max-width: 70px;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 575px) {
  .single-hero-slider-one h6 br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-one p br {
    display: none;
  }
}
.single-hero-slider-one .hero-btn-one {
  background: #000;
  color: #fff;
  line-height: 38px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 15px;
  height: 38px;
  padding: 0 20px;
}
.hero-btn-one {
  background: #000;
  color: #fff;
  line-height: 38px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 15px;
  height: 38px !important;
  padding: 0 20px;
}
.single-hero-slider-one .hero-btn-one i {
  margin-left: 5px;
}
.hero-slider-one .slick-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .hero-slider-one .slick-dots {
    bottom: 2px;
  }
}
.hero-slider-one .slick-dots li {
  display: inline-block;
  margin: 10px;
}
.hero-slider-one .slick-dots li button {
  font-size: 0;
  border: none;
  height: 12px;
  width: 12px;
  background: #ddd;
  border-radius: 100%;
}
.hero-slider-one .slick-dots li.slick-active button {
  background: #dcb14a;
}
.slick-current .hero-text-one {
  margin-top: 50px;
}
.slick-current .hero-text-one h6 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.slick-current .hero-text-one h1 {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.slick-current .hero-text-one p {
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.slick-current .hero-text-one .btn {
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.hero-slider-two .slick-arrow {
  position: absolute;
  top: 50%;
  left: 100px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
}
.hero-slider-two .slick-arrow:before {
  content: "";
  display: block;
  width: 103px;
  height: 1px;
  background-color: #666;
  position: absolute;
  bottom: -4px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hero-slider-two .slick-arrow.arrow-next {
  right: 100px;
  left: auto;
}
.hero-slider-two .slick-arrow.arrow-next:before {
  right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slider-two .slick-arrow {
    left: 30px;
  }
  .hero-slider-two .slick-arrow.arrow-next {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slider-two .slick-arrow {
    left: 15px;
  }
  .hero-slider-two .slick-arrow.arrow-next {
    right: 15px;
  }
  .hero-slider-two .slick-arrow:before {
    content: "";
    display: block;
    width: 40px;
  }
}
.hero-slider-two .slick-arrow:hover {
  color: #000;
}
.hero-slider-two .slick-arrow:hover:before {
  background-color: #000;
}
.hero-slider-five .slick-arrow {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  font-size: 30px;
  color: #fff;
}
.hero-slider-five .slick-arrow.arrow-next {
  right: 15px;
  left: auto;
}
.hero-slider-five .slick-arrow:hover {
  color: #fff;
}
.hero-slider-five .slick-arrow:hover:before {
  background-color: #000;
}
.single-hero-slider-five,
.single-hero-slider-nine {
  height: 100vh !important;
  background-color: #000925;
  background-repeat: no-repeat;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-hero-slider-five,
  .single-hero-slider-nine {
    height: 900px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-five,
  .single-hero-slider-nine {
    height: 850px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-five,
  .single-hero-slider-nine {
    height: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-five,
  .single-hero-slider-nine {
    height: 500px;
  }
}
.single-hero-slider-five .hero-content-wrap,
.single-hero-slider-nine .hero-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  transform: scale(0.85);
  transform-origin: 0 0;
  margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-five .hero-content-wrap,
  .single-hero-slider-nine .hero-content-wrap {
    margin-top: -156px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-five .hero-content-wrap,
  .single-hero-slider-nine .hero-content-wrap {
    margin-top: -156px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-five .hero-content-wrap,
  .single-hero-slider-nine .hero-content-wrap {
    margin-top: 0;
  }
}
.single-hero-slider-five .hero-content-wrap .hero-text-five,
.single-hero-slider-nine .hero-content-wrap .hero-text-five {
  z-index: 99;
}
.single-hero-slider-five .small-title,
.single-hero-slider-nine .small-title {
  position: relative;
  padding-left: 25px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 400;
}
.single-hero-slider-five .small-title::after,
.single-hero-slider-nine .small-title::after {
  background-color: #fff;
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 0;
  bottom: 0;
}
.single-hero-slider-five .hero-title,
.single-hero-slider-nine .hero-title {
  position: absolute;
  padding-bottom: 15px;
}
.single-hero-slider-five .inner-images,
.single-hero-slider-nine .inner-images {
  text-align: center;
  position: absolute;
  right: 0;
}
.single-hero-slider-five .inner-images .image-two,
.single-hero-slider-nine .inner-images .image-two {
  position: absolute;
  top: 3rem;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-five .inner-images .image-two,
  .single-hero-slider-nine .inner-images .image-two {
    width: 200px;
    bottom: -4px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-five .inner-images,
  .single-hero-slider-nine .inner-images {
    width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-five .inner-images,
  .single-hero-slider-nine .inner-images {
    width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-five .inner-images,
  .single-hero-slider-nine .inner-images {
    width: 300px;
  }
}
.slick-current .hero-text-five {
  margin-top: 50px;
}
.slick-current .hero-text-five h6 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.slick-current .hero-text-five h1 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  color: #fff;
  font-size:4rem;
  padding-bottom:2rem;
}

.hero-text-five p {
  color: #fff;
  font-weight: 600;
}
.slick-current .hero-text-five a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.slick-current .inner-images .image-one {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.slick-current .inner-images .image-two {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.single-hero-slider-nine {
  height: 880px;
  background: #f1f1f1;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-nine {
    height: 750px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-nine {
    height: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-nine {
    height: 500px;
  }
}
.single-hero-slider-nine .hero-content-wrap {
  margin-top: 0px;
}
.fp-table.active h6 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.fp-table.active h1 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.fp-table.active a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.fullpage-area .section {
  position: relative;
}
.fullpage-area .single-hero-slider-one {
  height: 100%;
}
.fullpage-fotter-area {
  position: absolute;
  bottom: 50px;
  width: 100%;
  z-index: 55;
}
.fullpage-fotter-area .fullpage-social-list li {
  margin-right: 20px;
}
.fullpage-fotter-area h5 span {
  font-size: 18px;
  color: #777;
}
#fp-nav ul {
  position: absolute;
  top: 55%;
  z-index: 3;
  right: 67px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#fp-nav ul {
  position: fixed !important;
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
#fp-nav ul li a {
  width: 10px;
  height: 10px;
  background-color: #d8dde6;
  display: inline-block;
  border-radius: 100%;
}
#fp-nav ul li a.active {
  background-color: #9fa5b2;
}
.single-hero-slider-7,
.single-hero-slider-four {
  height: 600px;
  background: #f1f1f1;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-hero-slider-7,
  .single-hero-slider-four {
    height: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-7,
  .single-hero-slider-four {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-7,
  .single-hero-slider-four {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-7,
  .single-hero-slider-four {
    height: 500px;
  }
}
.single-hero-slider-7 .hero-content-wrap,
.single-hero-slider-four .hero-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-left: 100px;
}
.single-hero-slider-7 .hero-content-wrap .hero-text-7,
.single-hero-slider-four .hero-content-wrap .hero-text-7 {
  z-index: 99;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-7 .hero-content-wrap,
  .single-hero-slider-four .hero-content-wrap {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-7 .hero-content-wrap,
  .single-hero-slider-four .hero-content-wrap {
    margin-left: 0px;
  }
}
.single-hero-slider-7 h6,
.single-hero-slider-four h6 {
  position: relative;
  color: #999;
  font-size: 16px;
  font-weight: 400;
}
.single-hero-slider-7 .inner-images,
.single-hero-slider-four .inner-images {
  text-align: center;
  position: absolute;
  right: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-7 .inner-images,
  .single-hero-slider-four .inner-images {
    width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-7 .inner-images,
  .single-hero-slider-four .inner-images {
    width: 400px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-7 .inner-images,
  .single-hero-slider-four .inner-images {
    width: 300px;
    right: 0;
  }
}
.hero-slider-7 .slick-arrow,
.hero-slider-four .slick-arrow {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  font-size: 30px;
}
.hero-slider-7 .slick-arrow.arrow-next,
.hero-slider-four .slick-arrow.arrow-next {
  right: 15px;
  left: auto;
}
.hero-slider-7 .slick-arrow:hover,
.hero-slider-four .slick-arrow:hover {
  color: #000;
}
.hero-slider-7 .slick-arrow:hover:before,
.hero-slider-four .slick-arrow:hover:before {
  background-color: #000;
}
.single-hero-slider-four {
  height: 780px;
  background: #f1f1f1;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-hero-slider-four {
    height: 700px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-four {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-four {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-four {
    height: 500px;
  }
}
.single-hero-slider-four .inner-images {
  top: 12%;
}
.hero-slider-four .slick-dots {
  position: absolute;
  left: 50px;
  bottom: 50px;
}
.hero-slider-four .slick-dots li {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 600;
  color: #666;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 10px 0;
  padding-right: 20px;
  position: absolute;
  opacity: 0;
  font-size: 18px;
}
.hero-slider-four .slick-dots li::before {
  content: " / 03";
  right: -15px;
  position: absolute;
  font-size: 16px;
  color: #666;
}
.hero-slider-four .slick-dots li:last-child::after {
  display: none;
}
.hero-slider-four .slick-dots li .pager__item {
  background: transparent;
  border: none;
  position: relative;
}
.hero-slider-four .slick-dots li.slick-active {
  color: #000;
  opacity: 1;
}
.slick-current .hero-text-7 h6 {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.slick-current .hero-text-7 h1 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}
.slick-current .hero-text-7 a {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.slick-current .inner-images .image-one {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
}
.hero-slider-8 .col-lg-12 {
  padding-left: 55px;
  padding-right: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .hero-slider-8 .col-lg-12 {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-8 .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slider-8 .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slider-8 .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.hero-slider-8 .hero-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  margin-left: 100px;
}
.hero-slider-8 .hero-content-wrap .hero-text-7 {
  z-index: 99;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slider-8 .hero-content-wrap {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slider-8 .hero-content-wrap {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slider-8 .hero-content-wrap {
    margin-left: 30px;
  }
}
.hero-slider-8 .slick-arrow {
  position: absolute;
  top: 50%;
  left: 135px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  font-size: 30px;
}
.hero-slider-8 .slick-arrow.arrow-next {
  right: 135px;
  left: auto;
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slider-8 .slick-arrow {
    left: 35px;
  }
  .hero-slider-8 .slick-arrow.arrow-next {
    right: 35px;
    left: auto;
  }
}
@media only screen and (max-width: 575px) {
  .hero-slider-8 .slick-arrow {
    display: none;
  }
}
.hero-slider-8 .slick-arrow:hover {
  color: #000;
}
.hero-slider-8 .slick-arrow:hover:before {
  background-color: #000;
}
.single-hero-slider-10 {
  height: 900px;
  background: #f1f1f1;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .single-hero-slider-10 {
    height: 800px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-10 {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-10 {
    height: 550px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-10 {
    height: 550px;
  }
}
.single-hero-slider-10 .hero-content-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.single-hero-slider-10 .hero-content-wrap .hero-text-7 {
  z-index: 99;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-10 .hero-content-wrap {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-10 .hero-content-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-left: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single-hero-slider-10 .hero-content-wrap p {
    display: none;
  }
}
.single-hero-slider-10 h5 {
  position: relative;
  font-weight: 400;
}
.single-hero-slider-10 .inner-images {
  text-align: center;
  position: absolute;
  right: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero-slider-10 .inner-images {
    width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero-slider-10 .inner-images {
    width: 400px;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .single-hero-slider-10 .inner-images {
    width: 300px;
    right: 50px;
    bottom: -80px;
  }
}
@media only screen and (max-width: 575px) {
  .single-hero-slider-10 .inner-images {
    width: 300px;
    right: 0px;
    bottom: -100px;
  }
}
.hero-slider-10 .slick-dots {
  position: absolute;
  right: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-slider-10 .slick-dots {
    right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-slider-10 .slick-dots {
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-slider-10 .slick-dots {
    right: 15px;
  }
}
.hero-slider-10 .slick-dots li {
  margin: 10px 0;
  font-size: 18px;
  color: #666;
}
.hero-slider-10 .slick-dots li .pager__item {
  background: transparent;
  border: none;
  position: relative;
}
.hero-slider-10 .slick-dots li .pager__item::after {
  right: 0;
  bottom: 0;
  content: "";
  height: 2px;
  width: 40px;
  background: #666;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hero-slider-10 .slick-dots li.slick-active {
  color: #000;
}
.hero-slider-10 .slick-dots li.slick-active .pager__item::after {
  width: 60px;
  background: #000;
}
.hero-product-image {
  position: relative;
  overflow: hidden;
}
.hero-product-image > a {
  display: block;
}
.hero-product-image > a img {
  width: 100%;
}
.hero-product-image > a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.hero-product-image .product-banner-title {
  position: absolute;
  z-index: 99;
  top: 30px;
  left: 30px;
}
.hero-product-image .product-banner-title h4 {
  font-size: 22px;
}
.hero-product-image .product-banner-title h6 {
  font-size: 16px;
}
.hero-product-image:hover h4 {
  color: #999;
}
.hero-product-image:hover h6 {
  color: #dcb14a;
}
.hero-area-video {
  z-index: 2;
}
.hero-area-video.youtube-bg {
  background: url(../images/banners/video-about.webp);
  background-position: center;
  background-repeat: no-repeat;
}
.hero-area-video.dotted-overlay::before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.single-hero-slider-12 {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-hero-slider-12 .hero-text-12 {
  height: 100%;
}
.hero-about-us-content p {
  font-size: 20px;
  font-family: "Libre Baskerville", serif;
  font-weight: 500;
}
.about-us-content-4 {
  height: 100%;
  padding: 50px;
}
.elendo-video-box {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  min-height: 33rem;
  background-size: cover !important;
  background-position: center !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.elendo-video-box .video-icon a {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-25px);
  -ms-transform: translateX(-25px);
  transform: translateX(-25px);
}
.elendo-video-box .video-icon::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.elendo-video-box:hover {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.elendo-video-box:hover .video-icon::before {
  opacity: 1;
}
.elendo-video-box .linear-ic-play {
  font-size: 62px;
  line-height: 60px;
  font-style: normal;
}
.elendo-video-box .linear-ic-play::before {
  content: "I";
  font-family: "ElegantIcons";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.banner-video-box {
  position: relative;
  overflow: hidden;
}
.banner-video-box::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.banner-video-box .video-icon a {
  z-index: 3;
  display: block;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.banner-video-box .video-icon a i {
  font-size: 62px;
  line-height: 60px;
}
.banner-video-box:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.banner-video-box:hover::after {
  opacity: 1;
}
.banner-video-box .linear-ic-play {
  font-style: normal;
}
.banner-video-box .linear-ic-play::before {
  content: "I";
  font-family: "ElegantIcons";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.about-us-content_6 h2 {
  font-size: 60px;
  font-family: "Mr De Haviland", cursive;
  margin-bottom: 20px;
}
.about-us-content_6 p {
  max-width: 780px;
  margin: auto;
}
.single-support-item {
  margin-top: 50px;
}
.single-support-item .header-support {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.single-support-item .header-support .icon {
  line-height: 1;
  font-size: 36px;
  color: #000;
  margin-right: 20px;
}
.single-support-item .iconbox-desc {
  margin-top: 20px;
}
.progress-charts {
  overflow: hidden;
}
.progress-charts h6.heading {
  margin-bottom: 13px;
  text-transform: uppercase;
}
.progress-charts h6.heading span.percent-label {
  color: #222;
  font-weight: 600;
}
.progress-charts h6.custom-color--2 {
  color: #000;
}
.progress-charts h6.custom-color--3 {
  color: #66a7e8;
}
.progress-charts h6.custom-color--4 {
  color: #f10;
}
.progress-charts h6.custom-color--5 {
  color: #23a455;
}
.progress-charts h6.custom-color--6 {
  color: #a0a0a0;
}
.progress-charts h6.custom-color--7 {
  color: #000;
}
.progress-charts h6.custom-color--8 {
  color: #7971ea;
}
.progress-charts .progress {
  height: 3px;
  overflow: visible;
  font-size: 14px;
  background-color: #eee;
  border-radius: 0;
}
.progress-charts .progress .progress-bar {
  overflow: visible;
  position: relative;
  background: #dcb14a;
}
.progress-charts .progress .progress-bar.custom-color--2 {
  background-color: #000;
}
.progress-charts .progress .progress-bar span.percent-label {
  position: absolute;
  color: #222;
  right: -7px;
  top: -35px;
  font-size: 14px;
  font-weight: 600;
}
.prog-title {
  font-size: 14px;
  margin-bottom: 10px;
}
.progress-charts {
  margin-bottom: 20px;
}
.radial-progress-single.progress-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .radial-progress-single.progress-flex {
    display: block;
  }
}
.product-details-thumbs-2 {
  float: left;
  width: 110px;
}
.product-details-thumbs-2 .sm-image {
  margin-bottom: 5px;
}
.product-details-thumbs-2 .sm-image:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .product-details-thumbs-2 {
    float: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -5px;
  }
  .product-details-thumbs-2 .sm-image {
    padding: 5px;
  }
}
.product-details-images-2 {
  float: right;
  width: calc(100% - 110px);
  padding-left: 10px;
}
.product-details-images-2 .lg-image a {
  display: block;
}
.product-details-images-2 .lg-image a img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .product-details-images-2 {
    float: inherit;
    width: calc(100% - 0px);
    padding-left: 0px;
  }
}

.product-details-content .on-sale-price {
  font-weight: 400;
}
.product-details-content .on-sale-price .new-price {
  color: #df0303;
  font-size: 30px;
  margin-right: 18px;
}
.product-details-content .on-sale-price .old-price {
  font-size: 20px;
  text-decoration: line-through;
  color: #999;
  margin-top: 5px;
}
.product-details-content .stock {
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0 15px;
}
.product-details-content .stock p {
  color: #000;
}
.product-details-content .stock.in-stock p span {
  color: #3bc604;
}
.product-details-content .stock.out-of-stock p span {
  color: #df0303;
}
.product-details-scroll-images .lg-image {
  margin-bottom: 30px;
}
.product-details-scroll-images .lg-image:last-child {
  margin-bottom: 0;
}
.product-details-scroll-images .lg-image a {
  display: block;
}
.product-details-scroll-images .lg-image a img {
  width: 100%;
}
.content-center .product-variants {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.content-center .cart-quantity {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.group-cart-table .table td {
  text-align: center;
}
.group-cart-table .quantity-field label {
  margin-right: 5px;
}
.group-cart-table .quantity-field input {
  width: 50px;
  text-align: center;
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .group-cart-table .table td {
    min-width: 200px;
  }
}
.product-details-tab .nav {
  border-bottom: 1px solid #ddd;
}
.product-details-tab .nav li {
  margin: 0px 0px;
  position: relative;
  padding: 0 20px;
  margin-bottom: 20px;
}
.product-details-tab .nav li::before {
  content: "/";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  position: absolute;
}
.product-details-tab .nav li:last-child::before {
  display: none;
}
.product-details-tab .nav li:first-child {
  padding-left: 0;
}
.product-details-tab .nav li a {
  font-weight: 700;
  font-size: 18px;
  display: block;
  position: relative;
}
@media only screen and (max-width: 575px) {
  .product-details-tab .nav li a {
    padding-bottom: 10px;
  }
  .product-details-tab .nav li a:last-child {
    margin-top: 10px;
  }
}
.product-details-tab .nav li:hover > a {
  width: 100%;
}
.product_details_container {
  margin: -5px -10px;
}
.single-product-gallery {
  float: left;
  padding: 5px 10px;
  width: 50%;
}
.comments-reply-area .comment-input .comment-form-author,
.comments-reply-area .comment-input .comment-form-email {
  width: 50%;
}
@media only screen and (max-width: 575px) {
  .comments-reply-area .comment-input .comment-form-author,
  .comments-reply-area .comment-input .comment-form-email {
    width: 100%;
  }
}
.feature_list li {
  margin-bottom: 5px;
}
.feature_list li i {
  margin-right: 10px;
  text-align: center;
  font-size: 16px;
}
.comment-form-comment .comment-notes {
  width: 100%;
  padding: 10px;
  border: 1px solid #cfcfcf;
  height: 140px;
}
.comment-form-comment label {
  display: block;
  margin-bottom: 1px;
}
.comment-form-comment label span {
  color: #dcb14a;
}
.comment-form-author,
.comment-form-email,
.comment-form-url {
  float: left;
  padding: 0 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 575px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100%;
  }
}
.comment-input {
  margin: 0 -10px;
  overflow: hidden;
}
.comment-input label {
  display: block;
  margin-bottom: 1px;
}
.comment-input input {
  width: 100%;
  padding: 10px;
  border: 1px solid #cfcfcf;
  height: 40px;
}
.comment-form-submit .comment-submit {
  background: #dcb14a;
  color: #fff;
  border: none;
  padding: 8px 15px;
  margin-top: 20px;
}
.comment-form-submit .comment-submit:hover {
  background: #000;
}
.product-details-wrap {
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.shop_attributes {
  width: 100%;
}
.shop_attributes tr {
  width: 50%;
  float: left;
}
.comments-reply-area .comment-input .comment-form-author,
.comments-reply-area .comment-input .comment-form-email {
  width: 50%;
}
@media only screen and (max-width: 575px) {
  .comments-reply-area .comment-input .comment-form-author,
  .comments-reply-area .comment-input .comment-form-email {
    width: 100%;
  }
}
.comment-form-submit .comment-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 4px 28px;
  margin-top: 20px;
}
.comment-form-submit .comment-submit:hover {
  background: #444;
}
.blog-wrap-col-3 .blog-contend h3 {
  font-size: 18px;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori {
  margin-bottom: 10px;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori ul li {
  display: inline-block;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori ul li a {
  font-size: 14px;
  margin-right: 10px;
  font-weight: 400;
}
.blog-wrap-col-3 .blog-contend .blog-date-categori ul li a i {
  font-size: 14px;
  margin-right: 5px;
}
.blog-wrap-col-3 .blog-btn {
  display: inline-block;
  padding: 5px 15px;
}
.product-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  display: flex;
  margin-right: 8px;
  color: #ddd;
}
.product-rating .yellow {
  color: #f5a623;
}
.product-rating i {
  margin: 0;
}
.pro_review {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pro_review.ans {
  margin-bottom: 50px;
  margin-left: 50px;
  margin-top: 50px;
}
@media only screen and (max-width: 575px) {
  .pro_review.ans {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-top: 30px;
  }
}
.review_thumb {
  margin-right: 20px;
  min-width: 8%;
}
@media only screen and (max-width: 767px) {
  .review_thumb {
    min-width: 25%;
  }
}
.review_info h4 {
  font-weight: 500;
}
.rating_send {
  border: 1px solid #ddd;
  display: block;
  float: right;
  font-size: 20px;
  margin-top: -55px;
  padding: 2px 13px;
}
.rating_send a {
  font-size: 14px;
}
.review_date {
  margin-top: 5px;
}
.review_details p {
  margin-top: 5px;
}
.product-color-wrapper,
.product-size-wrapper {
  color: #666;
  font-weight: 500;
  position: relative;
}
.product-color-wrapper label,
.product-size-wrapper label {
  color: #000;
}
.product-size-menu li {
  margin-right: 20px;
}
.product-size-menu li a {
  padding: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: #f1f1f1;
  border-radius: 50%;
  border: 1px solid transparent;
  text-align: center;
  color: #333;
}
.product-size-menu li a.active {
  border: 1px solid #bfbfbf;
}
.product-color-menu li {
  margin-right: 20px;
}
.product-color-menu li a {
  padding: 0;
  height: 30px;
  width: 30px;
  line-height: 30px;
  background: #f1f1f1;
  border-radius: 50%;
  border: 1px solid transparent;
  text-align: center;
  color: #333;
  position: relative;
}
.product-color-menu li a.active {
  background: #333;
}
.product-color-menu li a.active::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  width: 6px;
  height: 10px;
  display: block;
  border: solid #eee;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 8px;
  left: 11px;
}
@media only screen and (max-width: 575px) {
  .quickview-button {
    margin-top: 10px;
  }
}
.variations select {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-color: #bfbfbf;
  border-radius: 0;
  padding: 0 15px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  color: #000;
  cursor: pointer;
  background: #fff url("../images/icons/selector-icon.webp") no-repeat center
    right 20px;
}
.variations select:focus {
  background: #f8f8f8 url("../images/icons/selector-icon.webp") no-repeat center
    right 20px !important;
}
.groupped-table {
  width: 100%;
}
.groupped-table thead th {
  background-color: #f4f5f7;
  border: none;
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 15px;
  width: 50%;
}
.groupped-table .product-quantity {
  text-align: right;
}
.groupped-table .product-groupped-item .product-title {
  font-size: 14px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  color: #000;
  display: block;
}
.groupped-table .product-groupped-item .price {
  color: #999;
  font-size: 16px;
  line-height: 1;
  margin-top: 5px;
}
.groupped-table tr {
  border: 0;
  border-bottom: 1px solid #eaeaea;
}
.groupped-table .single-groupped-item th {
  padding: 15px 15px 14px;
  color: #666;
  width: inherit;
  text-align: left;
  border: none;
}
.groupped-table .single-groupped-item .quickview-quality {
  text-align: right;
}
.groupped-table .single-groupped-item input.input-text {
  width: 45px;
  border: 1px solid #ddd;
  padding: 2px 5px;
}
.product-details-images-horizontal {
  overflow: hidden;
}
.product-details-images-horizontal .easyzoom-style {
  overflow: hidden;
}
.product-details-thumbs-horizontal {
  position: relative;
  overflow: hidden;
}
.product-details-thumbs-horizontal .sm-image {
  margin: 0 15px;
}
.product-details-thumbs-horizontal .slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  height: 30px;
  width: 30px;
  background: #ddd;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.product-details-thumbs-horizontal .slick-arrow.arrow-next {
  right: 0;
  left: auto;
}
.product-details-thumbs-horizontal .slick-arrow:hover {
  background-color: #dcb14a;
}
.col__20 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col__20 {
  width: 20%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .col__20 {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .col__20 {
    width: 33.333%;
  }
}
@media only screen and (max-width: 767px) {
  .col__20 {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .col__20 {
    width: 100%;
  }
}
.plr-0 {
  padding-right: 0px;
  padding-left: 0px;
}
.shop-toolbar__items-wrapper,
.shop-toolbar__item--left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.shop-toolbar__items-wrapper .shop-toolbar__item,
.shop-toolbar__item--left .shop-toolbar__item {
  border-right: 1px solid #000;
  line-height: 12px;
  cursor: pointer;
  display: block;
  padding: 0 17px;
}
.shop-toolbar__items-wrapper .shop-toolbar__item:last-child,
.shop-toolbar__item--left .shop-toolbar__item:last-child {
  border-right: none;
}
.shop-toolbar__items-wrapper .shop-toolbar__item:last-child,
.shop-toolbar__item--left .shop-toolbar__item:last-child {
  padding-right: 0;
}
.shop-toolbar__items-wrapper .shop-toolbar__item:first-child,
.shop-toolbar__item--left .shop-toolbar__item:first-child {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .shop-toolbar__items-wrapper,
  .shop-toolbar__item--left {
    margin-bottom: 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.shop-toolbar__item--left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .shop-toolbar__item--left {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.toolber-tab-menu li {
  padding: 0 10px;
}
.toolber-tab-menu li a {
  padding: 0;
}
.toolber-tab-menu li a img {
  width: 1em;
  height: 1em;
  opacity: 0.5;
}
.toolber-tab-menu li a.active {
  color: #999;
}
.toolber-tab-menu li a.active img {
  opacity: 1;
}
.shop-toolbar__item--filter i {
  padding-left: 8px;
  font-size: 12px;
  font-weight: 700;
}
.product-filter-wrapper {
  margin-bottom: 30px;
  font-size: 14px;
  padding: 40px 15px 10px;
  display: none;
  width: 100%;
}
.product-filter-wrapper .product-filter h5 {
  font-size: 18px;
  margin: 0 0 17px;
  text-transform: capitalize;
  font-weight: 700;
}
@media only screen and (max-width: 575px) {
  .product-filter-wrapper .product-filter h5 {
    margin: 0 0 10px;
  }
}
.product-filter-wrapper .product-filter .widget-nav-list li {
  position: relative;
  margin-bottom: 8px;
  padding: 1px 0;
  display: block;
  font-size: 16px;
}
.product-filter-wrapper .product-filter .price-filter ul li {
  margin-bottom: 10px;
}
.product-filter-wrapper .product-filter .product-tags ul {
  width: 100%;
}
.product-filter-wrapper .product-filter .product-tags ul li {
  width: 50%;
  display: inline-block;
  float: left;
}
.product-filter-wrapper .product-filter .fliter-size ul li {
  display: inline-block;
  margin-right: 9px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-filter-wrapper .product-filter .fliter-size ul li {
    margin-right: 2px;
  }
}
.product-filter-wrapper .product-filter .fliter-size ul li:last-child {
  margin-right: 0px;
}
.product-filter-wrapper .product-filter .fliter-size ul li a {
  color: #535353;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 16px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-filter-wrapper .product-filter .fliter-size ul li a {
    padding: 3px 8px;
  }
}
.product-filter-wrapper .product-filter .fliter-size ul li a:hover {
  color: #fff;
  border: 1px solid #dcb14a;
  background-color: #dcb14a;
}
.product-filter-wrapper .product-filter .tagcloud a {
  font-size: 16px;
  padding-right: 5px;
}
.product-filter-wrapper .product-filter .tagcloud a::after {
  content: ",";
}
.product-filter-wrapper .filter-close-wrap a {
  font-size: 16px;
  color: #dcb14a;
}
.product-filter-wrapper .filter-close-wrap a i {
  position: relative;
  top: 3px;
  font-size: 20px;
  margin-right: 3px;
}
.product-filter-wrapper .col__20 {
  width: 20%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .product-filter-wrapper .col__20 {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .product-filter-wrapper .col__20 {
    width: 25%;
  }
}
@media only screen and (max-width: 575px) {
  .product-filter-wrapper .col__20 {
    width: 50%;
  }
}
.swatch-color {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-radius: 50%;
  opacity: 0.5;
  margin-right: 10px;
}
.swatch-color.black {
  background-color: #000;
}
.swatch-color.green {
  background-color: #81d742;
}
.swatch-color.grey {
  background-color: #adadad;
}
.swatch-color.red {
  background-color: #d33;
}
.swatch-color.white {
  background-color: #f4f4f4;
}
.swatch-color.yellow {
  background-color: #ee2;
}
.shop-short-by {
  position: relative;
  padding: 10px 0;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .shop-short-by {
    padding: 30px 0;
  }
}
.shop-short-by > ul > li {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.shop-short-by > ul > li a {
  color: #000;
}
.shop-short-by > ul > li a i {
  color: #282828;
  font-weight: 700;
  margin-left: 3px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.shop-short-by > ul > li a i.angle-up {
  position: absolute;
  right: 3px;
  top: 1px;
  opacity: 0;
  visibility: hidden;
}
.shop-short-by > ul > li > ul {
  left: 0;
  top: 100%;
  position: absolute;
  background-color: #fff;
  padding: 10px;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #ddd;
  -webkit-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .shop-short-by > ul > li > ul {
    right: 0;
    left: auto;
  }
}
.shop-short-by > ul > li > ul li {
  display: block;
}
.shop-short-by > ul > li > ul li a {
  padding: 5px 10px;
  white-space: pre;
  display: block;
  border-radius: 4px;
  font-size: 0.92em;
  color: #777;
  line-height: 24px;
}
.shop-short-by > ul > li > ul li a:hover {
  color: #222;
}
.shop-short-by > ul > li > ul li.active a {
  color: #222;
}
.shop-short-by > ul > li:hover ul {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}
.product-border .product-thumbnail {
  border-width: 1px;
  border-style: solid;
  border-color: #dadada;
  border-width: 1px 0 1px 1px;
}
.product-border:last-child .product-thumbnail {
  border-width: 1px;
}
.product-border .col__20 {
  padding-right: 0px;
  padding-left: 0px;
}
.gx-0-coustom .col__20 {
  padding-right: 0px;
  padding-left: 0px;
}
.pagination-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.pagination-box li {
  margin-right: 10px;
}
.pagination-box li:last-child {
  margin-right: 0;
}
.pagination-box li a {
  height: 38px;
  width: 36px;
  line-height: 40px;
  background-color: #dadada;
  border-radius: 5px;
  text-align: center;
}
.pagination-box li a:hover {
  background-color: #dcb14a;
  color: #fff;
}
h3.cart-page-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 15px;
}
.header-color-gray.cart-table-content table thead > tr th {
  padding: 10px 0;
}
.header-color-gray.cart-table-content table tbody > tr td {
  padding: 20px 0px 20px;
}
.cart-table-content table {
  width: 100%;
}
.cart-table-content {
  padding: 1rem;
}
.cart-table-content table thead > tr th {
  border-top: medium none;
  font-size: 18px;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
  color: #000;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 0 0 33px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cart-table-content table thead > tr th {
    padding: 0 0 33px 0;
  }
}
@media only screen and (max-width: 767px) {
  .cart-table-content table thead > tr th {
    padding: 0 20px 33px 20px;
  }
}
.cart-table-content table thead > tr th .product-name {
  max-width: 400px;
}
.cart-table-content table thead > tr th .product-price {
  max-width: 300px;
}
.cart-table-content table tbody > tr td {
  font-size: 14px;
  padding: 40px 0px 40px;
  border-top: 1px solid #ddd;
}
.cart-table-content table tbody > tr td.product-remove {
  width: 50px;
  text-align: end;
}
.cart-table-content table tbody > tr td.product-remove a {
  color: #777;
}
.cart-table-content table tbody > tr td.product-img {
  width: 100px;
}
.cart-table-content table tbody > tr td.product-name {
  width: 370px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table-content table tbody > tr td.product-name {
    min-width: 250px;
  }
}
@media only screen and (max-width: 575px) {
  .cart-table-content table tbody > tr td.product-name {
    min-width: 200px;
    padding-left: 20px;
    padding-right: 0px;
  }
}
.cart-table-content table tbody > tr td.product-name a {
  font-size: 14px;
  font-weight: 600;
}
.cart-table-content table tbody > tr td.product-name a:hover {
  color: var(--primary);
}
.cart-table-content table tbody > tr td.product-price {
  min-width: 130px;
}
.cart-table-content table tbody > tr td.product-price span {
  color: #1f2226;
  font-weight: 500;
}
.cart-table-content table tbody > tr td.product-stock-status {
  min-width: 180px;
  font-weight: 500;
}
.cart-table-content table tbody > tr td.product-stock-status p {
  color: #690;
  font-size: 16px;
}
.cart-table-content table tbody > tr td.product-total {
  min-width: 70px;
}
.cart-table-content table tbody > tr td.product-total span {
  font-weight: 600;
}
.cart-table-content table tbody > tr td.price-total {
  min-width: 100px;
}
.cart-table-content table tbody > tr td.price-total span {
  font-weight: 600;
}
.cart-table-content table tbody > tr td.product-wishlist-cart {
  text-align: right;
  min-width: 250px;
}
.cart-table-content table tbody > tr td.product-wishlist-cart > a {
  background-color: #232323;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  padding: 14px 25px;
  text-transform: capitalize;
}
.cart-table-content table tbody > tr td.product-wishlist-cart > a:hover {
  background-color: #dcb14a;
}
.cart-shiping-update-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #cdcdcd;
  padding: 18px 0 0;
}
@media only screen and (max-width: 767px) {
  .cart-shiping-update-wrapper {
    display: block;
  }
}
.cart-shiping-update-wrapper .discount-code {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.cart-shiping-update-wrapper .discount-code input {
  padding: 0 115px 0 0;
  border: none;
  height: 34px;
  font-size: 12px;
  color: #282828;
  background-color: transparent;
  border-bottom: 1px solid #d8d8d8;
}
.cart-shiping-update-wrapper .discount-code button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  padding: 0;
  background-color: transparent;
  font-weight: 600;
  font-size: 14px;
}
.cart-shiping-update-wrapper .cart-clear a {
  font-weight: 600;
  display: inline-block;
  margin: 3px 0 0 7px;
}
@media only screen and (max-width: 767px) {
  .cart-shiping-update-wrapper .cart-clear {
    margin-top: 20px;
  }
}
.grand-total-wrap {
  border: 1px solid #fafafa;
  background: #fafafa;
  padding: 24px 30px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .grand-total-wrap {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .grand-total-wrap {
    margin-top: 40px;
  }
}
.grand-total-wrap h4 {
  font-weight: 800;
  font-size: 14px;
  margin: 0;
}
.grand-total-wrap .grand-total-content {
  padding: 30px 0 30px;
}
.grand-total-wrap .grand-total-content ul li {
  font-weight: bold;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 16px;
  margin-bottom: 17px;
}
.grand-total-wrap .grand-total-content ul li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.grand-total-wrap .grand-total-content ul li span {
  float: right;
  font-weight: 400;
}
.grand-total-wrap .grand-btn {
  display: flex;
}
.grand-total-wrap .grand-btn a {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-inline: auto;
  width: max-content;
}

.grand-total-wrap .grand-btn a:hover {
  color: var(--primary);
  background: #fff;
  outline: 3px solid var(--primary);
}
.discount-code {
  max-width: 400px;
}
.discount-code input {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  color: #000;
  border-radius: 0;
  padding: 15px 15px 13px;
}
.cart_totals {
  max-width: 100%;
}
.customer-zone > p {
  position: relative;
  padding: 14px 30px 14px 60px;
  background-color: #f4f5f7;
  margin: 0;
}
.customer-zone > p::before {
  content: "";
  color: #6dde6d;
  display: inline-block;
  position: absolute;
  font-family: fontawesome;
  left: 30px;
}
.checkout-login-info {
  border: 1px solid #ddd;
  padding: 30px;
  display: none;
  margin-top: 30px;
}
.checkout-login-info p {
  color: #777;
  margin: 0 0 22px;
}
.checkout-login-info .single-input input {
  border: 1px solid #cdcdcd;
  height: 50px;
  background-color: transparent;
  width: 100%;
  color: #777;
  font-size: 14px;
  padding: 0 20px;
}
.checkout-login-info .single-input input:focus {
  border: 1px solid #262626;
}
.checkout-login-info .single-input label {
  display: block;
  margin: 0 0 10px;
}
.checkout-login-info .single-input label span {
  color: red;
}
.checkout-coupon-info {
  border: 1px solid #ddd;
  padding: 30px;
  display: none;
  margin-top: 30px;
}
.checkout-coupon-info p {
  color: #777;
  margin: 0 0 22px;
}
.checkout-coupon-info form input[type="text"] {
  border: 1px solid #cdcdcd;
  height: 50px;
  background-color: transparent;
  width: 100%;
  color: #777;
  font-size: 14px;
  padding: 0 20px;
}
.checkout-coupon-info form input[type="text"]:focus {
  border: 1px solid #262626;
}
.checkout-coupon-info form input[type="submit"] {
  background: #262626 none repeat scroll 0 0;
  border: medium none;
  color: #fff;
  height: 50px;
  margin-top: 15px;
  padding: 5px 30px 7px;
  text-transform: capitalize;
  font-weight: 400;
  width: inherit;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .checkout-coupon-info form input[type="submit"] {
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-coupon-info form input[type="submit"] {
    padding: 5px 16px;
    margin-left: 5px;
  }
}
.checkout-coupon-info form input[type="submit"]:hover {
  background-color: #dcb14a;
}

.billing-info-wrap {
  padding: 2rem;
  position: sticky;
  top: 70px;
}
.billing-info-wrap .billing-info label {
  display: block;
  margin: 0 0 10px;
}
.billing-info-wrap .billing-info label span {
  color: red;
}
.billing-info-wrap .billing-info input {
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;

  font-size: 14px;
  background-color: transparent;
  padding: 27px 36px 6px 19px;
  color: #262626;
  width: 100%;
}

.billing-info-wrap .billing-info input:focus {
  border: 1px solid var(--secondary);
}

.billing-info-wrap .billing-select label {
  display: block;
  margin: 0 0 10px;
}
.billing-info-wrap .billing-select label span {
  color: red;
}

.billing-info-wrap .billing-select .select-active {
  border: 1px solid #e6e6e6;
  color: #262626;
  border-radius: 0;
  border-radius: 0.5rem;
  background: transparent url(../images/icons/selector-icon.webp) no-repeat
    center right 20px !important;
  padding: 27px 36px 6px 19px;
  height: 60px;
  font-size: 14px;
}
.billing-info-wrap .billing-select .select-active:focus {
  background: transparent;
}
.billing-info-wrap .billing-select .select2-container {
  display: block;
}
.billing-info-wrap .billing-select .select2-container .select2-choice {
  border: 1px solid #e6e6e6;
  background: transparent;
  -moz-appearance: none;
  height: 50px;
  padding: 2px 20px;
  color: #262626;
  cursor: pointer;
}
.billing-info-wrap
  .billing-select
  .select2-container
  .select2-choice
  .select2-chosen {
  height: 50px;
}
.billing-info-wrap .additional-info-wrap {
  margin: 3px 0 0;
}
.billing-info-wrap .additional-info-wrap label {
  display: block;
  margin: 0 0 10px;
  padding: 5px 0 0;
  z-index: 3;
  background: #fff;
}
.billing-info-wrap .additional-info-wrap textarea {
  min-height: 120px;
  border-radius: 1.5rem;
  resize: none;
  background-color: transparent;
  border-color: #e8e8e8;
  padding: 50px 36px 6px 19px;
  color: #262626;
  width: 100%;
  font-size: 14px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .billing-info-wrap.mr-100 {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .billing-info-wrap.mr-100 {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .billing-info-wrap.mr-100 {
    margin-right: 0px;
  }
}
.select2-container--default .select2-selection--single {
  border: 1px solid #e6e6e6;
  border-radius: 0px;
  cursor: pointer;
  display: block;
  height: 50px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
  line-height: 50px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  height: 50px;
  color: #262626;
  line-height: 50px;
  padding: 0px 20px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  height: 34px;
  background-color: transparent;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #0073aa;
  color: #fff;
}
.your-order-area {
  padding: 40px 45px 50px;
  border-width: 2px;
  border-style: solid;
  position: relative;
  border: 0;
  background-color: #f6f6f6;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .your-order-area {
    padding: 40px 25px 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .your-order-area {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .your-order-area {
    padding: 40px 12px 50px;
    margin-top: 30px;
  }
}
.your-order-area h3 {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  margin: 0 0 45px;
}
.your-order-area h3:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -14px;
  background-color: #000;
  width: 50px;
  height: 2px;
}
.your-order-area .your-order-wrap .your-order-info {
  border-bottom: 1px solid #cdcdcd;
}
.your-order-area .your-order-wrap .your-order-info ul li {
  padding: 0 0 7px;
  font-size: 14px;
}
.your-order-area .your-order-wrap .your-order-info ul li span {
  float: right;
}
.your-order-area .your-order-wrap .your-order-info.order-subtotal {
  padding: 15px 0 10px;
}
.your-order-area .your-order-wrap .your-order-info.order-subtotal ul li span {
  font-size: 16px;
}
.your-order-area .your-order-wrap .your-order-info.order-total {
  padding: 15px 0 10px;
}
.your-order-area .your-order-wrap .your-order-info.order-total ul li span {
  font-size: 18px;
}
.your-order-area .your-order-wrap .your-order-middle {
  border-bottom: 1px solid #cdcdcd;
  padding: 24px 0 23px;
}
.your-order-area .your-order-wrap .your-order-middle ul li {
  font-size: 14px;
  margin: 0 0 11px;
}
.your-order-area .your-order-wrap .your-order-middle ul li:last-child {
  margin-bottom: 0;
}
.your-order-area .your-order-wrap .your-order-middle ul li span {
  float: right;
  font-size: 16px;
}
.your-order-area .your-order-wrap .payment-method {
  margin: 25px 0 0;
}
.your-order-area .your-order-wrap .payment-method h5 {
  text-transform: uppercase;
}
.your-order-area .your-order-wrap .payment-method p {
  color: #777;
  font-size: 12px;
  margin: 14px 0 0;
}
.your-order-area .your-order-wrap .condition-wrap {
  margin: 40px 0 0;
}
.your-order-area .your-order-wrap .condition-wrap p {
  color: #777;
  line-height: 1.88;
  margin: 0;
}
.your-order-area .your-order-wrap .condition-wrap p a {
  color: #777;
}
.your-order-area .your-order-wrap .condition-wrap .condition-form input {
  border: 1px solid #9fa0a2;
  display: inline-block;
  height: 10px;
  width: 10px;
  position: relative;
  top: 6px;
}
.your-order-area .your-order-wrap .condition-wrap .condition-form span {
  color: #262626;
  font-weight: 400;
  margin: 0 0 0 5px;
}
.your-order-area
  .your-order-wrap
  .condition-wrap
  .condition-form
  span
  span.star {
  color: red;
}
.your-order-area .Place-order a {
  background-color: #262626;
  display: block;
  cursor: pointer;
  padding: 22px 50px 21px;
  width: 100%;
  color: #fff;
  text-align: center;
}
.your-order-area .Place-order a:hover {
  background-color: #dcb14a;
}
.order-tracking-form-box input {
  border: 1px solid #e8e8e8;
  height: 50px;
  background-color: transparent;
  padding: 2px 20px;
  color: #777;
  width: 100%;
}
.order-tracking-form-box input:focus {
  border: 1px solid #262626;
}
.order-tracking-form-box input.billing-address {
  margin-bottom: 20px;
}
.single-contact-info-item {
  margin-top: 30px;
  display: flex;
}
.single-contact-info-item .icon {
  float: left;
  margin-right: 26px;
}
.single-contact-info-item .icon i {
  line-height: 1;
  font-size: 36px;
  color: #000;
}
.single-contact-info-item .iconbox-desc {
  display: inline-block;
}
.contact-input {
  margin: 0 -10px;
}
.contact-input .contact-inner {
  float: left;
  margin: 0 0 20px;
  padding: 0 10px;
  width: 50%;
}
@media only screen and (max-width: 575px) {
  .contact-input .contact-inner {
    width: 100%;
  }
}
.contact-inner {
  margin: 0 0 20px;
}
.contact-inner {
  margin: 0 0 20px;
}
.contact-inner input,
.contact-inner textarea {
  border: 1px solid #e8e8e8;
  height: 50px;
  background-color: transparent;
  padding: 2px 20px;
  color: #777;
  width: 100%;
}
.contact-inner input:focus,
.contact-inner textarea:focus {
  border: 1px solid #262626;
}
.contact-inner textarea {
  height: 150px;
  padding: 15px;
}
.contact-inner select {
  color: #777;
}
.googleMap-1 {
  height: 600px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .googleMap-1 {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .googleMap-1 {
    height: 300px;
  }
}
.myaccount-tab-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.myaccount-tab-menu a {
  border: 1px solid #ddd;
  border-bottom: none;
  color: #222;
  font-weight: 500;
  display: block;
  padding: 10px 15px;
  text-transform: uppercase;
}
.myaccount-tab-menu a:last-child {
  border-bottom: 1px solid #ddd;
}
.myaccount-tab-menu a:hover,
.myaccount-tab-menu a.active {
  background-color: #dcb14a;
  border-color: #dcb14a;
  color: #fff;
}
.myaccount-tab-menu a i {
  text-align: center;
  width: 25px;
}
@media only screen and (max-width: 767px) {
  #myaccountContent {
    margin-top: 30px;
  }
}
.myaccount-content {
  border: 1px solid #ddd;
  padding: 30px;
}
@media only screen and (max-width: 575px) {
  .myaccount-content {
    padding: 20px 15px;
  }
}
.myaccount-content form {
  margin-top: -20px;
}
.myaccount-content form .single-input-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.myaccount-content form .single-input-item input {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}
.myaccount-content form .single-input-item input:focus {
  border: 1px solid #dcb14a;
}
.myaccount-content form .single-input-item .required {
  font-weight: 500;
}
.myaccount-content form .single-item-button {
  width: 25%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .myaccount-content form .single-item-button {
    width: 30%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .myaccount-content form .single-item-button {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .myaccount-content form .single-item-button {
    width: 100%;
  }
}
.myaccount-content .title {
  font-size: 24px;
  color: #222;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .myaccount-content .title {
    font-size: 20px;
  }
}
.myaccount-content .welcome a {
  color: #222;
}
.myaccount-content .welcome a:hover {
  color: #dcb14a;
}
.myaccount-content .welcome strong {
  font-weight: 600;
  color: #dcb14a;
}
.myaccount-content fieldset {
  margin-top: 20px;
}
.myaccount-content fieldset legend {
  color: #222;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 500;
  border-bottom: 1px dashed #ddd;
}
.myaccount-table {
  white-space: nowrap;
  font-size: 14px;
}
.myaccount-table table th,
.myaccount-table .table th {
  color: #222;
  padding: 10px;
  font-weight: 500;
  background-color: #f8f8f8;
  border-color: #ddd;
  border-bottom: 0;
}
.myaccount-table table td,
.myaccount-table .table td {
  padding: 10px;
  vertical-align: middle;
  border-color: #ddd;
}
.saved-message {
  background-color: #ddd;
  border-top: 3px solid #dcb14a;
  border-radius: 5px 5px 0 0;
  font-weight: 600;
  font-size: 15px;
  color: #666;
  padding: 20px;
}
.faq-wrapper .panel.panel-default {
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
}
.faq-wrapper .card,
.faq-wrapper .card-header {
  border-radius: 0;
}
.faq-wrapper .card {
  border-bottom: none;
  margin-bottom: 20px;
  border: none;
  -webkit-box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
  box-shadow: 0 18px 40px rgba(51, 51, 51, 0.1);
}
.faq-wrapper .card:last-child {
  margin-bottom: 0;
}
.faq-wrapper .card-header {
  padding: 0;
  border-bottom: 0;
  background-color: #fff;
}
.faq-wrapper .card-header h5 button {
  border: none;
  width: 100%;
  text-align: left;
  color: #000;
  padding: 20px 30px;
  position: relative;
  overflow-wrap: break-word;
  white-space: normal;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  border-radius: 5px;
  background: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 479px) {
  .faq-wrapper .card-header h5 button {
    padding-left: 15px;
    padding-right: 20px;
  }
}
.faq-wrapper .card-header h5 button span {
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (max-width: 479px) {
  .faq-wrapper .card-header h5 button span {
    right: 15px;
  }
}
.faq-wrapper .card-header h5 button span i {
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
  display: none;
}
.faq-wrapper .card-header h5 button:hover,
.faq-wrapper .card-header h5 button:focus {
  text-decoration: none;
  color: #000;
}
.faq-wrapper .card-header h5 button[aria-expanded="true"] {
  color: #fff;
  background: #dcb14a;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.faq-wrapper .card-header h5 button[aria-expanded="true"] span i:nth-child(2) {
  visibility: visible;
  opacity: 1;
  display: inline;
}
.faq-wrapper .card-header h5 button[aria-expanded="true"]:before {
  height: 100%;
}
.faq-wrapper .card-header h5 button[aria-expanded="false"] span i:nth-child(1) {
  visibility: visible;
  opacity: 1;
  display: inline;
}
.faq-wrapper .card-body {
  padding: 23px 30px 29px;
}
.hero-preview {
  width: 100%;
}
.hero-preview .single-hero-slider-one {
  height: 900px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-preview .single-hero-slider-one {
    height: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-preview .single-hero-slider-one {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-preview .single-hero-slider-one {
    height: 500px;
  }
}
.hero-preview .bg-img {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-attachment: fixed !important;
  padding-top: 250px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .hero-preview .bg-img {
    padding-top: 120px;
  }
}
.hero-preview .preview-hero-text {
  margin-top: 120px;
}
.hero-preview .preview-hero-text h1 {
  font-size: 100px;
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-preview .preview-hero-text p {
  padding-bottom: 195px;
  font-size: 26px;
  line-height: 1.615;
}
.hero-preview .preview-hero-text a {
  color: #999;
  font-size: 48px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-preview .preview-hero-text {
    margin-top: 100px;
  }
  .hero-preview .preview-hero-text h1 {
    font-size: 70px;
    margin-bottom: 18px;
  }
  .hero-preview .preview-hero-text p {
    padding-bottom: 95px;
    font-size: 18px;
    line-height: 1.615;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-preview .preview-hero-text {
    margin-top: 60px;
  }
  .hero-preview .preview-hero-text h1 {
    font-size: 54px;
    margin-bottom: 18px;
  }
  .hero-preview .preview-hero-text p {
    padding-bottom: 95px;
    font-size: 18px;
    line-height: 1.615;
  }
}
@media only screen and (max-width: 767px) {
  .hero-preview .preview-hero-text h1 {
    font-size: 40px;
    margin-bottom: 18px;
  }
  .hero-preview .preview-hero-text p {
    padding-bottom: 95px;
    font-size: 18px;
    line-height: 1.615;
  }
}
.single-demo-page {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.single-demo-page img {
  border: 1px solid #ccc;
  display: block;
}
.single-demo-page span {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-align: left;
  margin-top: 32px;
  margin-left: 45px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  display: inline-block;
  border-bottom: 1px solid transparent;
}
.single-demo-page:hover {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}
.single-demo-page:hover span {
  border-color: #000;
}
.preview-footer-area.bg-img {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-attachment: fixed !important;
}
.preview-footer-area .preview-footer-text {
  padding: 120px 0;
}
.preview-footer-area .preview-footer-text h2 {
  font-size: 48px;
  margin-bottom: 31px;
  line-height: 1.25;
}
.preview-footer-area .preview-footer-text p {
  font-size: 24px;
  line-height: 1.67;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .preview-footer-area .preview-footer-text {
    padding: 60px 0;
  }
  .preview-footer-area .preview-footer-text h2 {
    font-size: 28px;
  }
  .preview-footer-area .preview-footer-text p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .preview-footer-area .preview-footer-text {
    padding: 60px 0;
  }
  .preview-footer-area .preview-footer-text h2 {
    font-size: 22px;
  }
  .preview-footer-area .preview-footer-text p {
    font-size: 16px;
  }
}
.preview-footer-area .copyright {
  padding: 0 0 50px 0;
}
.btn {
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  height: 50px;
  line-height: 38px;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  border: transparent;
}
.btn--sm {
  line-height: 38px;
  padding: 0 22px;
  height: 40px;
}
.btn--md {
  line-height: 38px;
  padding: 0 32px;
  height: 40px;
}
.btn--lg {
  line-height: 44px;
  padding: 0 1rem;
  height: 46px;
}
.btn--black {
  background: #000;
  color: #fff;
}
.btn--black:hover,
.btn--black:focus {
  background: #222;
  color: #fff;
}
.btn--border_1 {
  border: 1px solid var(--primary);
}
.btn--border_1:hover {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}
.btn--full {
  width: 100%;
}
.btn--icon {
  border: 1px solid #222;
  text-align: center;
  height: 46px;
  line-height: 44px;
  padding: 0 22px;
}
.btn--icon:hover {
  border: 1px solid #222;
  background: #222;
  color: #fff;
}
.btn--text-icon {
  font-size: 18px;
  font-weight: 500;
}
.btn--text-icon i {
  margin-right: 10px;
}
.btn--border-bottom {
  font-size: 18px;
  text-decoration: underline;
  font-weight: 500;
  line-height: 1;
}
.btn--border-bottom:hover {
  text-decoration: underline;
}
.tf-btn {
  font-size: 18px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  padding: 0 28px;
  font-weight: 700 !important;
  text-align: center;
  background-color: #7baa0b;
  color: #fff;
}
.tf-btn:hover,
.tf-btn:focus {
  color: #fff;
}
@media only screen and (max-width: 575px) {
  .tf-btn {
    padding: 0 10px;
    font-size: 12px;
  }
}
.images-text-bg img {
  max-width: 650px;
  max-height: 121px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .images-text-bg img {
    max-width: 250px;
    max-height: 101px;
  }
}
@media only screen and (max-width: 767px) {
  .images-text-bg img {
    max-width: 150px;
    max-height: 101px;
  }
}
.featuted-product-one .product-thumbnail a {
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .featuted-product-one .product-thumbnail {
    margin-bottom: 30px;
  }
}
.featuted-product-one:hover .product-thumbnail a img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.featured-pice {
  margin-top: 15px;
  font-size: 16px;
  color: #999;
}
.featured-pice span {
  color: #666;
  font-size: 24px;
  font-weight: 500;
}
.single-product-item {
  margin-top: 30px;
}
.single-product-item .products-images {
  position: relative;
  background: transparent;
  /* background: rgba(220,219,224,0.3); */
}
.single-product-item .product-thumbnail {
  position: relative;
  display: block;
}
.faint-rule {
  background: rgba(220, 219, 224, 0.9);
}
.single-product-item .product-thumbnail::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 250px;
  width: 100%;
  background: rgba(255, 255, 255);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.single-product-item .product-thumbnail .ribbon {
  position: absolute;
  right: 15px;
  top: 15px;
  background: #000;
  color: #fff;
  border-radius: 0.3rem;
  padding: 0 15px;
  z-index: 3;
}
.single-product-item .product-thumbnail .ribbon.out-of-stock {
  background: var(--primary);
}
.single-product-item .product-thumbnail .ribbon.onsale {
  background: #f14705;
}
.single-product-item .product-thumbnail > img {
  width: 100%;
}
.single-product-item .product-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3;
}
.single-product-item .product-actions a {
  width: 45px;
  height: 45px;
  line-height: 48px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  margin-left: 7px;
  margin-right: 7px;
  color: #000;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.single-product-item .product-actions a:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.single-product-item .product-actions a:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.single-product-item .product-actions a:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.prodect-title a {
  font-weight: 600;
}

.single-product-item .product-actions a .tool-tip {
  position: absolute;
  background: #000;
  text-align: center;
  padding: 8px 12px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s, margin 0.3s;
  -o-transition: opacity 0.6s, margin 0.3s;
  transition: opacity 0.6s, margin 0.3s;
  white-space: pre;
  font-size: 13px;
  line-height: 14px;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  border-radius: 2px;
}
.single-product-item .product-actions a .tool-tip::after {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #000;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: "";
  height: 0;
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  bottom: -6px;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}
.single-product-item .product-actions a:hover {
  color: #dcb14a;
}
.single-product-item .product-actions a:hover .tool-tip {
  visibility: visible;
  opacity: 1;
  top: -35px;
}
.single-product-item:hover .product-thumbnail::after {
  opacity: 1;
  visibility: visible;
}
.single-product-item:hover .product-actions a {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.single-product-item:hover .product-actions a:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.single-product-item:hover .product-actions a:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.single-product-item:hover .product-actions a:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.single-product-item .product-content {
  margin-top: 20px;
}
.single-product-item .product-content .prodect-title {
  font-size: 16px;
  margin-bottom: 5px;
}
.single-product-item .product-content .prodect-price span {
  color: #000;
  font-weight: 900;
  font-size: 18px;
}
.product-slider-active {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}
.product-slider-active .single-product-item {
  padding-right: 15px;
  padding-left: 15px;
}
.product-slider-active .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  z-index: 3;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.product-slider-active .slick-arrow.arrow-next {
  right: 0px;
  left: auto;
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .product-slider-active .slick-arrow {
    left: 15px;
  }
  .product-slider-active .slick-arrow.arrow-next {
    right: 15px;
  }
}
.product-tab-menu li {
  padding: 0 17px;
  margin-top: 10px;
  border-right: 1px solid #000;
  line-height: 12px;
  cursor: pointer;
  display: block;
}
.product-tab-menu li:last-child {
  border-right: none;
}
.product-tab-menu li:last-child {
  padding-right: 0;
}
.product-tab-menu li:first-child {
  padding-left: 0;
}
.product-tab-menu li .nav-link {
  color: #333;
  padding: 0;
}
.product-tab-menu li .nav-link.active {
  color: #999;
}
.tab-content .tab-pane {
  display: block;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  max-width: 100%;
  opacity: 0;
}
.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}
.product-modal-box .modal-dialog {
  margin: 5% auto 8%;
  max-width: 1170px;
}
.product-modal-box .modal-dialog .modal-content {
  border-radius: 0;
  padding: 0;
}
.product-modal-box .modal-body {
  padding: 0rem;
}
.product-modal-box .modal-dialog .modal-content .modal-header {
  border: none;
  padding: 0;
  right: 20px;
  top: 20px;
  position: absolute;
  z-index: 9999;
  color: #000;
}
.product-modal-box .modal-dialog .modal-content .close {
  border: none;
  background-color: transparent;
  font-size: 30px;
}
.product-dec-small {
  margin: 5px;
}
.product-small-image {
  margin: 0 -10px;
  margin-top: 20px;
}
.product-dec-small {
  padding: 0 10px;
}
.product-small-image {
  position: relative;
}
.product-small-image .slick-arrow {
  font-size: 14px;
  line-height: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  background: #fff;
  top: calc(50% - 15px);
  text-align: center;
  left: 15px;
  right: auto;
  z-index: 3;
  color: #000;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.15);
}
.product-small-image .slick-arrow.pro-dec-next {
  right: 0px;
  left: auto;
}

.quickview-ratting-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.quickview-ratting-wrap .quickview-ratting {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
  color: #ddd;
}
.quickview-ratting-wrap .quickview-ratting .yellow {
  color: #f5a623;
}
.quickview-ratting-wrap .quickview-ratting i {
  margin: 0;
}
.quickview-content-wrap .price {
  font-weight: 400;
}
.quickview-content-wrap .stock p {
  color: #000;
  font-weight: 600;
}
.quickview-content-wrap .stock.in-stock span {
  color: #3bc604;
}
.quickview-content-wrap .quickview-peragraph p {
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .quickview-content-wrap {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .quickview-content-wrap {
    padding: 40px;
  }
}
.quickview-action-wrap .quickview-cart-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: flex-start;
}
@media only screen and (max-width: 575px) {
  .quickview-action-wrap .quickview-cart-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.quickview-action-wrap .quickview-quality {
  border: 1px solid #ddd;
  width: max-content;
  margin-left: 1rem;
}
.quickview-action-wrap .quickview-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.quickview-action-wrap .quickview-button .button {
  margin-left: 15px;
}
.quickview-action-wrap .quickview-wishlist a {
  width: 50px;
  height: 46px;
  line-height: 46px;
  display: inline-block;
  font-size: 20px;
  border: 1px solid #ddd;
  text-align: center;
}
.quickview-quality .cart-plus-minus {
  display: inline-block;
  height: 36px;
  /* overflow: hidden; */
  padding: 0;
  position: relative;
  width: 120px;
  text-align: center;
}
.quickview-quality .cart-plus-minus .qtybutton {
  color: #333;
  cursor: pointer;
  float: inherit;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 24px;
}
.quickview-quality .cart-plus-minus .qtybutton.dec {
  height: 34px;
  top: 12px;
  left: 4px;
  display: none;
  font-weight: 600;
  font-size: 14px;
}
.quickview-quality .cart-plus-minus .qtybutton.inc {
  height: 34px;
  top: 12px;
  display: none;
  right: 4px;
  font-weight: 600;
  font-size: 14px;
}
.quickview-quality .cart-plus-minus input.cart-plus-minus-box {
  background: #fafafa;
  border: 0;
  color: #262626;
  font-size: 14px;
  height: 46px;
  line-height: 40px;
  margin: 0;
  padding: 0px;
  text-align: center;
  width: 100px;
  font-weight: 600;
}
.quickview-quality.quality-height-dec .cart-plus-minus {
  height: 45px;
}
.quickview-quality.quality-height-dec .cart-plus-minus .qtybutton.dec {
  height: 45px;
  top: 11px;
}
.quickview-quality.quality-height-dec .cart-plus-minus .qtybutton.inc {
  height: 45px;
  top: 12px;
}
.quickview-quality.quality-height-dec
  .cart-plus-minus
  input.cart-plus-minus-box {
  height: 45px;
  line-height: 45px;
}
.quickview-quality.quality-height-dec2 .cart-plus-minus {
  height: 45px;
  margin-left: -15px;
}
.quickview-quality.quality-height-dec2 .cart-plus-minus .qtybutton.dec {
  height: 45px;
  top: 11px;
  font-weight: 500;
  left: 22px;
}
.quickview-quality.quality-height-dec2 .cart-plus-minus .qtybutton.inc {
  height: 45px;
  top: 12px;
  font-weight: 500;
  right: 22px;
}
.quickview-quality.quality-height-dec2
  .cart-plus-minus
  input.cart-plus-minus-box {
  height: 45px;
  line-height: 45px;
  width: 80px;
  font-weight: 400;
}
.product-support-text a {
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}
.product-support-text a i {
  margin-right: 10px;
}
.quickview-meta span {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
.product_meta .item_meta {
  font-weight: 500;
  color: #666;
}
.product_meta .item_meta .label {
  color: #000;
}
.product_meta .item_meta a:hover {
  color: #666;
  text-decoration: underline;
}
.product_socials {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .product_socials {
    margin-top: 30px;
  }
}
.product_socials .helendo-social-share {
  margin-left: 20px;
}
.product_socials .helendo-social-share li {
  display: inline-block;
  margin-right: 10px;
  background: var(--primary);
  border-radius: 100%;
  width: 3rem;
  line-height: 2.5rem;
  height: 3rem;
  padding: 0.3em 1em 0.1em 1em;
  margin-top: 5px;
  color: #fff;
}
.quickview-product-active .images {
  display: block !important;
}
.quickview-product-active .images img {
  width: 100%;
}
.quickview-product-active .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  z-index: 3;
  font-size: 20px;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.quickview-product-active .slick-arrow.arrow-next {
  right: 0px;
  left: auto;
}
.quickview-product-active:hover .slick-arrow {
  left: 10px;
  opacity: 1;
}
.quickview-product-active:hover .slick-arrow.arrow-next {
  right: 10px;
  left: auto;
}
.image-swatches-nav li a {
  padding: 0;
  margin-right: 10px;
  border: 1px solid transparent;
}
.image-swatches-nav li a img {
  width: 80px;
}
.image-swatches-nav li a.active {
  border: 1px solid #dde;
}
.video-icons-popup a::after {
  font-family: "FontAwesome";
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.55);
  font-size: 30px;
  color: #fff;
  text-align: center;
  line-height: 100px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 999999;
}
.video-style {
  position: relative;
}
.i-video {
  position: relative;
}
.i-video i {
  width: 41px;
  height: 41px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
  font-family: "FontAwesome";
  font-size: 15px;
  color: #fff;
  text-align: center;
  line-height: 41px;
  cursor: pointer;
  border-radius: 50%;
  font-style: none;
}
.countdown-deals {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-self: start;
}
.countdown-deals.counter-style--one .single-countdown {
  display: inline-block;
  margin-right: 80px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .countdown-deals.counter-style--one .single-countdown {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .countdown-deals.counter-style--one .single-countdown {
    margin-right: 30px;
  }
}
.countdown-deals.counter-style--one .single-countdown::after {
  position: absolute;
  content: ":";
  right: -40px;
  top: 25%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 40px;
  color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .countdown-deals.counter-style--one .single-countdown::after {
    font-size: 36px;
    right: -28px;
  }
}
@media only screen and (max-width: 767px) {
  .countdown-deals.counter-style--one .single-countdown::after {
    font-size: 26px;
    right: -20px;
  }
}
.countdown-deals.counter-style--one .single-countdown:last-child::after {
  display: none;
}
.countdown-deals.counter-style--one .single-countdown .single-countdown__time {
  display: block;
  font-family: "Prata", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .countdown-deals.counter-style--one
    .single-countdown
    .single-countdown__time {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .countdown-deals.counter-style--one
    .single-countdown
    .single-countdown__time {
    font-size: 28px;
  }
}
.countdown-deals.counter-style--one .single-countdown .single-countdown__text {
  margin-top: 10px;
  display: block;
  color: #000;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .countdown-deals.counter-style--one
    .single-countdown
    .single-countdown__text {
    font-size: 16px;
    margin-top: 0px;
  }
}
.countdown-deals.counter-style--two .single-countdown {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  color: #dcb14a;
}
.countdown-deals.counter-style--two .single-countdown::after {
  position: absolute;
  content: ":";
  right: -20px;
  top: 25%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  color: #dcb14a;
}
.countdown-deals.counter-style--two .single-countdown:last-child::after {
  display: none;
}
.countdown-deals.counter-style--two .single-countdown .single-countdown__time {
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: #dcb14a;
  margin-bottom: 0px;
}
.countdown-deals.counter-style--two .single-countdown .single-countdown__text {
  color: #dcb14a;
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .countdown-deals.counter-style--two
    .single-countdown
    .single-countdown__text {
    font-size: 14px;
    margin-top: 0px;
  }
}
.countdown-deals.counter-style--three .single-countdown {
  display: inline-block;
  margin-right: 40px;
  position: relative;
  color: #dcb14a;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .countdown-deals.counter-style--three .single-countdown {
    margin-right: 20px;
  }
}
.countdown-deals.counter-style--three
  .single-countdown
  .single-countdown__time {
  display: block;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: #dcb14a;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .countdown-deals.counter-style--three
    .single-countdown
    .single-countdown__time {
    font-size: 30px;
  }
}
.countdown-deals.counter-style--three
  .single-countdown
  .single-countdown__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .countdown-deals.counter-style--three
    .single-countdown
    .single-countdown__text {
    font-size: 16px;
    margin-top: 0px;
  }
}
.single-blog-item {
  overflow: hidden;
}
.span-text {
  font-weight: 900;
}
.friends-app {
  padding: 3rem;
  outline: var(--feint-pad);
}
.single-blog-item .blog-thumbnail-box {
  position: relative;
}
.single-blog-item .blog-thumbnail-box .thumbnail {
  display: block;
  width: 100%;
  height: 10rem;
}
.single-blog-item .blog-thumbnail-box .btn-blog {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 14px;
  border: none;
  background-color: #fff;
  color: #000;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.single-blog-item .blog-thumbnail-box .btn-blog::after {
  font-family: ElegantIcons;
  content: "L";
  position: relative;
  left: 20px;
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.single-blog-item .blog-contents {
  margin-top: 25px;
}
.single-blog-item .blog-contents .blog-title {
  font-size: 20px;
  position: relative;
  padding-bottom: 15px;
}
.single-blog-item .blog-contents .blog-title a {
  color: #000;
}
.single-blog-item .blog-contents .blog-title::before,
.single-blog-item .blog-contents .blog-title::after {
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
  height: 1.5px;
  width: 70px;
  background: rgba(180, 180, 180, 0.7);
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.single-blog-item .blog-contents .blog-title::after {
  width: 0px;
}
.single-blog-item .blog-contents .blog-title-two {
  font-size: 22px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-blog-item .blog-contents .blog-title-two a {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.single-blog-item .blog-contents .d_text {
  max-width: 800px;
}
.single-blog-item:hover .blog-thumbnail-box .btn-blog {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.single-blog-item:hover .blog-thumbnail-box .btn-blog::after {
  left: 0;
}
.single-blog-item:hover .blog-contents .blog-title::after {
  width: 70px;
  background: #dcb14a;
}
.single-blog-item:hover .blog-contents .blog-title-two a {
  text-decoration: underline;
}
.single-blog-item .meta-tag-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  margin-top: 15px;
}
.single-blog-item .meta-tag-box .meta {
  position: relative;
}
.single-blog-item .meta-tag-box .meta::after {
  color: #999;
  padding: 0 8px;
  content: "/";
}
.single-blog-item .meta-tag-box .meta:last-child::after {
  display: none;
}
.single-blog-item .meta-tag-box .meta.cat {
  color: #999;
}
.single-blog-item .meta-tag-box .meta.cat a {
  color: #000;
}
.single-blog-item .meta-tag-box .meta.cat a:hover {
  color: #dcb14a;
}
.blog-search input {
  width: 100%;
  border: none;
  height: 35px;
  border-bottom: 1px solid #ddd;
  background: transparent;
  padding: 0 40px 0 0;
}
.blog-search .submit-button {
  background: transparent;
  position: absolute;
  right: 15px;
  border: none;
}
.widget-blog-recent-post .widget-nav-list li {
  display: inline-block;
  color: #666;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.widget-blog-recent-post .widget-nav-list li a {
  color: #000;
}
.widget-blog-recent-post .widget-nav-list li a .post-date {
  cursor: auto;
  color: #999;
}
.widget-blog-recent-post .widget-nav-list li:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.widget-blog-categories .widget-nav-list li {
  margin-bottom: 6px;
}
.widget-blog-categories .widget-nav-list li:last-child {
  margin-bottom: 0;
}
.widget-blog-categories .widget-nav-list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.blog-tagcloud a {
  font-size: 16px;
  color: #767676;
  margin: 5px;
  padding: 8px 20px;
  display: inline-block;
  vertical-align: middle;
  background-color: #f3f4f7;
  border-radius: 5px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: 400;
}
.blog-tagcloud a:hover {
  background: #000;
  color: #fff;
}
blockquote {
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-left: 35px;
  padding-top: 4px;
  margin: 35px;
  margin-right: 0;
  position: relative;
}
blockquote::before {
  content: "{";
  font-size: 28px;
  font-family: ElegantIcons;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.blog-post-social-networks {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.blog-post-social-networks .item {
  display: inline-block;
  margin-right: 20px;
}
.blog-post-social-networks .item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .blog-post-social-networks {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0 0 0;
  }
}
.blog-post-social-networks .title {
  margin-right: 60px;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-post-social-networks .title {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .blog-post-social-networks .title {
    margin-right: 20px;
  }
}
.post-author-box {
  padding: 33px 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #f4f5f7;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .post-author-box {
    padding: 33px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .post-author-box {
    padding: 33px 25px;
  }
}
.post-author-box .post-author-info {
  margin-left: 55px;
}
@media only screen and (max-width: 767px) {
  .post-author-box .post-author-info {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .post-author-box .post-author-info {
    margin-left: 0;
    margin-top: 20px;
  }
}
.post-author-box .author-socials {
  padding: 0;
  margin: 20px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.post-author-box .author-socials li:after {
  content: "-";
  margin: 0 5px;
}
.post-author-box .author-socials li:last-child:after {
  content: "";
  margin: 0 5px;
}
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
  margin: 0;
  padding: 40px 0;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.post-navigation .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}
.post-navigation .nav-links i {
  display: block;
  text-align: center;
  min-width: 30px;
  height: 70px;
  line-height: 70px;
  background-color: #f4f5f7;
  font-size: 16px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.post-navigation .nav-links .nav-previous {
  padding-left: 40px;
  color: #000;
}
@media only screen and (max-width: 575px) {
  .post-navigation .nav-links .nav-previous .d-text {
    display: none;
  }
}
.post-navigation .nav-links .nav-next {
  padding-right: 40px;
  color: #000;
  text-align: right;
}
@media only screen and (max-width: 575px) {
  .post-navigation .nav-links .nav-next .d-text {
    display: none;
  }
}
.post-navigation .nav-links span {
  display: block;
  width: 100%;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  margin-top: 4px;
}
.post-navigation .nav-links.post-next {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.comment-input-12 .comment-notes {
  width: 100%;
  padding: 10px;
  border: 1px solid #cfcfcf;
  height: 140px;
}
.comment-input-12 input {
  width: 100%;
  padding: 10px;
  border: 1px solid #cfcfcf;
  margin-top: 20px;
}
@media only screen and (max-width: 575px) {
  .comment-input-12 {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .comment-input-12 {
    width: 100%;
  }
}
.newsletter-wrap {
  position: relative;
}
.newsletter--one .input-box {
  border: none;
  background: #f4f5f7;
  width: 100%;
  height: 54px;
  padding: 10px 170px 10px 20px;
}
.newsletter--one .submit-btn {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 16px;
  opacity: 1;
  padding: 0 40px;
  border: none;
  height: 54px;
  background: #000;
  color: #fff;
}
.newsletter--box {
  background: #f4f5f7;
  padding: 50px 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .newsletter--box {
    padding: 50px 15px;
  }
}
.newsletter--two {
  position: relative;
}
.newsletter--two .input-box {
  border: none;
  background: #fff;
  width: 100%;
  height: 54px;
  padding: 10px 70px 10px 20px;
}
.newsletter--two .submit-btn {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 16px;
  opacity: 1;
  padding: 0 30px;
  border: none;
  height: 54px;
  background: transparent;
  color: #000;
}
.newsletter--two.max-420 {
  max-width: 420px;
}
.newsletter--three .single-input {
  position: relative;
}
.newsletter--three .input-box {
  border: none;
  background: #fff;
  width: 100%;
  height: 60px;
  padding: 10px 70px 10px 20px;
  color: #000;
}
.newsletter--three .input-box::-webkit-input-placeholder {
  color: #000;
}
.newsletter--three .input-box::-moz-placeholder {
  color: #000;
}
.newsletter--three .input-box:-ms-input-placeholder {
  color: #000;
}
.newsletter--three .input-box::-ms-input-placeholder {
  color: #000;
}
.newsletter--three .input-box::placeholder {
  color: #000;
}
.newsletter--three .submit-btn {
  position: absolute;
  right: 15px;
  font-size: 16px;
  opacity: 1;
  padding: 0 30px;
  border: none;
  height: 60px;
  background: transparent;
  color: #000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.newsletter--four .input-box {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  height: 40px;
  padding: 10px 50px 10px 0;
}
.newsletter--four .submit-button {
  background: transparent;
  position: absolute;
  right: 15px;
  border: none;
}
.banner-product-image {
  position: relative;
  overflow: hidden;
}
.banner-product-image a {
  display: block;
}
.banner-product-image a img {
  width: 100%;
}
.banner-product-image a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.banner-product-image .product-banner-title {
  position: absolute;
  z-index: 99;
  top: 60px;
  left: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-product-image .product-banner-title {
    left: 40px;
    top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .banner-product-image .product-banner-title {
    left: 30px;
    top: 30px;
  }
}
.banner-images-one {
  overflow: hidden;
  position: relative;
}
.banner-images-one .thumbnail {
  display: block;
}
.banner-images-one .banner-title {
  position: absolute;
  z-index: 99;
  top: 60px;
  left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .banner-images-one .banner-title {
    top: 40px;
    left: 30px;
  }
}
.banner-images-one:hover .thumbnail img {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
.banner-images-one:hover .banner-title .text-btn-normal {
  color: #999;
}
.banner-images-one .text-btn-normal:hover {
  color: #999;
}
.banner-area-box .banner-inner-box {
  margin-top: -135px;
  background: #fff;
  padding: 0 15px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-area-box .banner-inner-box {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-area-box .banner-inner-box {
    margin-top: 35px;
  }
}
.mt-130 {
  margin-top: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .mt-130 {
    margin-top: 60px;
  }
}
.mt-180 {
  margin-top: 180px;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .mt-180 {
    margin-top: 60px;
  }
}
.single-arival-product > a {
  display: block;
  overflow: hidden;
}
@media only screen and (max-width: 575px) {
  .single-arival-product > a img {
    width: 100%;
  }
}
.single-arival-product > a:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.single-arival-product .product-content {
  margin-top: 30px;
}
.single-arival-product .product-content .product-price {
  margin-top: 10px;
  color: #666;
  font-size: 18px;
  line-height: 30px;
}
.d-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.single-product--03 > a {
  display: block;
  overflow: hidden;
}
.single-product--03 > a:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}
.single-product--03 .product-content {
  margin-top: -79px;
  margin-left: 80px;
  z-index: 33;
  position: relative;
}
.single-product--03 .product-content .product-price {
  margin-top: 10px;
  color: #666;
  font-size: 18px;
  line-height: 30px;
}
.single-product--03 .product-content.top--content {
  margin-bottom: -79px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-product--03 .product-content.top--content {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single-product--03 .product-content {
    margin-left: 20px;
    margin-top: 30px;
  }
  .single-product--03 .product-content.top--content {
    margin-bottom: 0px;
  }
}
.single-shopping-support {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.single-shopping-support .icon {
  color: var(--primary);
  font-size: 48px;
  margin-right: 26px;
}
.single-brand-item {
  text-align: center;
}
.single-brand-item a {
  display: block;
}
.single-brand-item a img {
  opacity: 0.35;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: 10rem;
  width: 100%;
  object-fit: contain;
}
.single-brand-item a:hover img {
  opacity: 1;
}
.brand-slider-active .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -10px;
  z-index: 3;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.brand-slider-active .slick-arrow.arrow-next {
  right: -10px;
  left: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (max-width: 767px) {
  .brand-slider-active .slick-arrow {
    left: 0;
  }
  .brand-slider-active .slick-arrow.arrow-next {
    right: 0px;
    left: auto;
  }
}
.category-section {
  padding-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .category-section {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .category-section {
    padding-top: 20px;
  }
}
.single-category-item {
  text-align: center;
  margin-top: 1.5rem;
}
.single-category-item .content {
  margin-top: 25px;
}

.minimize-cat {
  width: min(90%, 75rem);
  margin-inline: auto;
}
.single-category-item .content .title {
  font-weight: 600;
  line-height: 1.125;
  margin: 0 0 10px;
}
.single-category-item .content .number {
  font-size: 14px;
  font-weight: 400;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: #999;
}
.single-category-item:hover .category-item-thum img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.category-item-thum {
  max-height: 240px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff !important;
  box-shadow: 0px 7px 17px -7px #dcdbe0;
}
.category-item-thum img {
  object-fit: contain;
  width: 90%;
  max-height: 10rem;
  padding: 3rem;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
/*styling the information grid and images */
.flex-cont {
  margin: 1rem;
  width: min(97.5%, 75rem);
  margin-inline: auto;
  border: var(--feint-pad);
  padding: 2rem;
}

.bg-clear {
  background: var(--clear) !important;
}
.bg-primary {
  background: var(--primary) !important;
}
.flexer {
  padding: 10px;
  display: flex;
  margin-inline: auto;
  justify-content: space-evenly;
  gap: 1rem;
  flex-wrap: wrap;
}
/* styling the grid gallery for more resonsiveness */
.grid-gallery {
  display: grid;
  grid-auto-flow: 1fr;
  grid-gap: 0.5rem;
  grid-template-areas:
    "one one one"
    "two two two"
    "three three three"
    "four four four"
    "five five five";
}
.gallery-header {
  font-size: 30px;
  letter-spacing: 0.2rem;
  color: var(--primary);
  padding: 1rem;
  font-weight: 500;
}

.gallery-text {
  padding: 1rem;
  text-align: justify;
}

.gallery-header p {
  padding-top: 0.4rem;
}
.gallery-header > span {
  font-weight: 900;
}
img.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* media-start */
@media (min-width: 800px) {
  .grid-gallery {
    grid-template-areas:
      "one two two"
      "three four five" !important
  ;
  }
  .terms {
    padding: 3rem 5rem 3rem 5rem !important;
  }

  .discover-grid {
    grid-template-areas:
      "top-disv top-disv "
      "left-disv right-disv" !important;
    padding: 4em !important;
  }

  .dark-discovery-grid {
    grid-template-areas:
      "dark-grid-1 dark-grid-2 "
      "dark-grid-3 dark-grid-4" !important;
  }

  .pad-top-2 {
    width: 50% !important;
  }

  .contact-wrapper {
    padding: 1.5rem !important;
  }
  .ambiance-info {
    transform: unset !important;
  }

  .ambiance-controls {
    transform: unset !important;
    bottom: 1em !important;
    right: 1em !important;
  }

  .ambiance-changer {
    padding: 1rem !important;
  }
  .double-grid {
    grid-template-areas: "left right" !important;
  }
  .double-grid-alt {
    grid-template-areas: "right left" !important;
  }
  .what-we-offer {
    grid-template-areas: "first second third" !important ;
  }
  .grid-mini-3 {
    grid-template-areas: "gm-left gm-middle gm-right" !important ;
    padding: 3rem !important;
  }

  .what-we-offer .offer-item {
    margin-top: 1rem !important;
  }

  .toggle_option {
    flex-wrap: nowrap !important;
  }

  .toggle_option > * {
    width: 50% !important;
  }
}
@media (min-width: 480px) {
  .grid-gallery {
    grid-template-areas:
      "one one"
      "two three"
      "four five";
  }
}
.grid-gallery > * {
}
.grid-image-1 {
  grid-area: one;
}
.grid-image-2 {
  grid-area: two;
}
.grid-image-3 {
  grid-area: three;
}
.grid-image-4 {
  grid-area: four;
}
.grid-image-5 {
  grid-area: five;
}

.top-grid {
  background: #fff;
  min-height: 100px;
}
.bottom-grid {
  background: #fff;
  min-height: 200px;
}

.flexer > div {
  flex: 1 1 100%;

  /*  flex-grow: 1; */

  margin: 0 auto;
}

.gallery-icons-cont {
  display: flex;
  margin-inline: auto;
  width: 95%;
  gap: 2rem;
  justify-content: space-evenly;
  padding: 2rem;
  flex-wrap: wrap;
}

.gallery-icons-cont > * {
  flex: 1 1 5rem;
}

.gallery-icons-cont img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  position: relative;
  /*  left: 10%; */
}

.gallery-icons-cont .img-caption {
  position: relative;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.9);
  font-weight: bolder;
}
/*--------------------------------------------------------------*/
h2.section-title > span {
  font-weight: 900;
}

.item-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: contain;
  padding: 2rem;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: transparent;
  /* background: rgba(220,219,224,0.3); */
  opacity: 0;
}
.app-image {
  /*   width: 15rem; */
  height: 7rem;
  bottom: 0;
  position: absolute;
  object-fit: contain;
}

.main-image {
  position: relative;
  z-index: 1;
}

.single-product-item.text-center:hover .hover-image {
  opacity: 1;
}
.single-product-item.text-center:hover .main-image {
  opacity: 0;
}
.single-product-item {
  box-shadow: 0px 7px 17px -7px #dcdbe0;
  border-left: 0.000001rem solid #dcdbe0;
  padding-bottom: 1rem;
  margin-left: 1rem;
}

.offer-img {
  background-position: 30% !important;
}

.offer-text {
  color: #fff !important;
}

.clear-text {
  color: var(--clear-text);
}
.colection-info-wrap {
  padding: 2.5rem;
  position: relative;
  z-index: 2;

  border-radius: 1rem;
}
/* .backdrop {
  width: 95%;
  height: 100%;
  border-radius: 1rem;
  z-index: 1;
  position: absolute;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -moz-backdrop-filter: blur(8px);
}
 */
.white-btn {
  padding: 10px;
  background: #fff;
  color: var(--primary);
  border-radius: 0.4rem;
}

.difference {
  mix-blend-mode: difference;
}

.double-grid {
  display: grid;
  width: min(97%, 75rem);
  margin-inline: auto;
  grid-auto-columns: 1fr;
  grid-gap: 1rem;
  grid-template-areas:
    "left"
    "right";
  min-height: 40rem;
  padding-top: 80px;
}

.double-grid-alt {
  display: grid;
  width: min(97%, 75rem);
  margin-inline: auto;
  grid-auto-columns: 1fr;
  grid-gap: 1rem;
  grid-template-areas:
    "right"
    "left";
  min-height: 40rem;
  padding-top: 80px;
}

.double-grid > * {
  padding: 2rem;
}
.grid-info {
  padding: 4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.grid-info h1 {
  font-size: 2rem;
  width: 80%;
  text-justify: inter-word;
  line-height: 3rem;
}
.grid-info a:hover {
  background: var(--primary);
  color: var(--clear-text);
}
.grid-info a {
  padding: 6px 15px;
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
  transition: all 0.4s;
  border-radius: 0.21em;
}
.left-double-grid {
  grid-area: left;
  background: transparent;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.right-double-grid {
  grid-area: right;
  /* background: url("../images/bg/smart2.jpg"); */
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 20rem !important;
  background-position: center !important;
}

.double-grid-alt .right-double-grid {
  width: 100% !important;
  height: 100% !important;
  grid-area: right;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 20rem;
  background-position: center !important;
}

.what-we-offer {
  display: grid;
  grid-gap: 1rem;
  grid-auto-columns: 1fr;
  grid-template-areas: "first" "second" "third";
}

.what-we-offer .offer-item {
  min-height: 30rem;
  border: var(--feint-pad);
}
.first-order {
  grid-area: first;
}
.second-order {
  grid-area: second;
}
.third-order {
  grid-area: third;
}

.offer-section .grid-info > h1 {
  text-align: center;
  width: 100% !important;
}
.offer-section .grid-info > p {
  text-align: center;
  margin: auto;
}

.offer-section {
  width: min(100%, 75rem);
  margin-inline: auto;
  padding: 2rem;
}

.offer-item-content {
  display: flex;
  flex-wrap: wrap;
}
.offer-item-content > * {
  flex: 1 1 100%;
}

.offer-item-img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.offer-item-content a {
  border: 3px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 0.6rem;
  text-align: center;
  max-width: 80%;
  margin-bottom: 1.5rem;
  /*  margin-inline: auto; */
  font-weight: 700;
  border-radius: 2rem;
  transition: all 0.2s;
}

.offer-item-content h1 {
  padding-top: 7px;
}

.continue-shop {
  border: 3px solid var(--primary) !important;
  background: var(--primary);
  color: #fff;
  line-height: 34px;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 2rem !important;
  height: 40px !important;
  padding: 0 20px;
  transition: all 0.4s;
}

.continue-shop:hover {
  color: #fff;
  background: rgba(24, 54, 93, 0.9);
}

.pad-left {
  margin-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 0.4rem;
}
.pad-top {
  padding-top: 2rem;
}
.purple-grad:hover {
  background: var(--purple-grad);
  color: #fff;
  box-shadow: var(--emphasis-shadow);
  border-color: rgba(255, 255, 255);
}
.sun-grad:hover {
  background: var(--sun-grad);
  color: #fff;
  box-shadow: var(--emphasis-shadow);
  border-color: rgba(255, 255, 255);
}
.blue-green-grad:hover {
  background: var(--blue-green-grad);
  color: #fff;
  box-shadow: var(--emphasis-shadow);
  border-color: rgba(255, 255, 255);
}

/* @keyframes hover-purple {
  from{
    background:;
  }
  to{
      background: red;
  }
  
} */

/* Hue background controls */
.ambiance-changer {
  display: grid;
  grid-gap: 1rem;
  grid-auto-columns: 1fr;
  margin-inline: auto;
  width: min(97%, 75rem);
  grid-template-areas: "banner";
  padding: 0;
  /*   border: var(--feint-pad); */
  margin-top: 4rem;
  margin-bottom: 3rem;
  position: relative;
}
.overlayer {
  width: 100%;
  height: 100%;
  position: absolute;

  z-index: 2;
}
.ambiance-bg {
  grid-area: banner;
  min-height: 40rem;
  background: url("../images/bg/lavendar.webp");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-position: 30%;
  position: relative;
}

.ambiance-controls > * {
  min-height: 8rem;
  background: var(--trans-white);
  padding: 1rem;
  cursor: pointer;
  backdrop-filter: var(--glass);
  -webkit-backdrop-filter: var(--glass);
  -moz-backdrop-filter: var(--glass);
  border-radius: 1rem;
  transition: all 0.5s;
}

.ambiance-controls {
  display: grid;
  grid-gap: 1rem;
  grid-auto-columns: 1fr;
  grid-template-areas:
    "ac-top ac-top"
    "ph bh"
    "dh gh";
  width: auto;
  position: absolute;
  bottom: -1.3em;
  text-align: center;
  transform: scale(0.8);
  right: -0.3em;

  z-index: 3;
}
.ac-top {
  grid-area: ac-top;
  min-height: auto;
  background: unset;
  color: #fff;
  font-weight: 700;
  padding: 0;
  text-shadow: var(--text-emphasis);
  font-size: 11px;
  cursor: unset;
  backdrop-filter: unset;
  border-radius: unset;
  transition: unset;
}
.purple-hue-control {
  grid-area: ph;
  animation: grow 3s 5s infinite ease-in-out;
}
.purple-hue-control:hover {
  transform: scale(1.1);
  animation: none;
}
.purple-hue-control .control-icon {
  background: var(--purple-grad);
  box-shadow: var(--emphasis-shadow);
}

.bright-hue-control {
  grid-area: bh;
  animation: grow 3s 7s infinite ease-in-out;
}
.bright-hue-control:hover {
  transform: scale(1.1);
  animation: none;
}
.bright-hue-control .control-icon {
  background: var(--sun-grad);
  box-shadow: var(--emphasis-shadow);
}

.dark-hue-control {
  grid-area: dh;
  animation: grow 3s 10s infinite ease-in-out;
}
.dark-hue-control:hover {
  transform: scale(1.1);
  animation: none;
}

.dark-hue-control .control-icon {
  background: var(--moonlight);
  box-shadow: var(--emphasis-shadow);
}

.game-hue-control {
  grid-area: gh;
  animation: grow 3s 14s infinite ease-in-out;
}
.game-hue-control:hover {
  transform: scale(1.1);
  animation: none;
}
.game-hue-control .control-icon {
  background: var(--blue-green-grad);
  box-shadow: var(--emphasis-shadow);
}

.control-text {
  color: #fff;
  font-weight: 600;
}
.control-icon {
  padding: 1rem;

  font-size: 1.5rem;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 0.7rem;
}

@keyframes grow {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes sm-grow {
  0% {
    transform: scale(0.8);
  }
  20% {
    transform: scale(0.9);
  }
  40% {
    transform: scale(0.8);
  }
}
.ambiance-info .gallery-icons-cont {
  margin-inline: unset;
}
.ambiance-info .gallery-icons-cont img {
  filter: invert(1);
}

.ambiance-info .img-caption {
  color: #fff;
  font-weight: 600;
}

.ambiance-header {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
/*   padding: 0 2rem; */
}
.ambiance-info {
  width: min(100%, 29rem);
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  transform: scale(0.6);
  transform-origin: 0 0;
  position: relative;
  z-index: 3;
}
/* End of Hue background controls */

.single-product-item .product-actions button:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.single-product-item .product-actions button:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.single-product-item .product-actions button:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.single-product-item .product-actions button .tool-tip {
  position: absolute;
  background: #000;
  text-align: center;
  padding: 8px 12px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s, margin 0.3s;
  -o-transition: opacity 0.6s, margin 0.3s;
  transition: opacity 0.6s, margin 0.3s;
  white-space: pre;
  font-size: 13px;
  line-height: 14px;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  border-radius: 2px;
}
.single-product-item .product-actions button .tool-tip::after {
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #000;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: "";
  height: 0;
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  bottom: -6px;
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}
.single-product-item .product-actions button:hover {
  color: #dcb14a;
}
.single-product-item .product-actions button:hover .tool-tip {
  visibility: visible;
  opacity: 1;
  top: -35px;
}
.single-product-item:hover .product-thumbnail::after {
  opacity: 1;
  visibility: visible;
}
.single-product-item:hover .product-actions button {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.single-product-item:hover .product-actions button:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.single-product-item:hover .product-actions button:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.single-product-item:hover .product-actions button:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.single-product-item .product-actions button {
  width: 45px;
  height: 45px;
  line-height: 48px;
  background-color: #fff;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  margin-left: 7px;
  margin-right: 7px;
  color: #000;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  border-color: transparent;
  transition: 0.5s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}

.icon-eye {
  line-height: 2;
}

.cart_img {
  height: 76px;
  width: 76px;
  object-fit: contain;
}

a.color-shift {
  transition: none;
}

.header-right-items a i::before :hover {
  color: red;
}

.trans-btn {
  border: 3px solid #fff !important;
  background: transparent;
  color: #fff;
  line-height: 38px;
  letter-spacing: 0px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 2rem !important;
  height: 40px !important;
  padding: 0 20px;
  transition: all 0.4s;
}

.trans-btn:hover {
  background: #fff;
  color: var(--primary);
}

/* actions icons for the index page */
.action-icons {
  width: 48px !important;
}

.action-div {
  justify-content: start;
  width: 100%;
  gap: 3rem;
  display: flex;
  margin-inline: auto;
  flex-wrap: wrap;
}

input#search {
  position: absolute;
  right: 1rem;
  padding: 1rem 1rem;
  border: 2.2px solid grey;
  transition: all 0.5s;
  top: 5rem;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--primary);
}

.breadcrumb-area {
  min-height: 20rem;
  box-sizing: border-box;
  z-index: 3;
  top: 5rem;
  padding-top: 5rem;
  background: #f4f5f7;
  position: relative;
  margin-bottom: 3rem;
  /* padding-bottom: 9rem; */
  /*    outline: 1px solid red; */
  width: 100%;
}

/* filter -->  mobile and desktop switch */

@media (min-width: 767px) {
  .filter-mobile {
    display: none !important;
  }

  .filter-desktop {
    display: ;
  }
}

@media (max-width: 760px) {
  .filter-mobile {
    display: ;
  }

  .filter-desktop {
    display: none !important;
  }

  .breadcrumb-area::before {
background-image: none !important;
  }
}

.filter-desktop h6 {
  font-weight: 900;
  text-transform: capitalize;
}

.filter-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px !important;
  text-transform: capitalize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.filter-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  /*   height: 20px;
  width: 20px;
  background-color: #ccc;
  border-radius: 50%;
   */
  width: 20px;
  height: 20px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
  border-radius: 100%;
  background-color: #ffffff;
  border: 6px solid #f0f1f5;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* On mouse-over, add a grey background color */
.filter-label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.filter-label input:checked ~ .checkmark {
  background-color: #fff;
  border-color: var(--primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.filter-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 8px;
  top: 9px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sort-by {
  width: max-content;
  overflow: hidden;
  width: 160px;
  height: 60px;
  align-self: center;
  border: 1px solid #e5e5e5;
  white-space: nowrap;
  background-color: transparent;
}

.previous {
  margin-right: 5px;
}

.product-details-left {
}

.product-specifications-v2__section {
  border-top: 1px solid #b7b7b7;
  padding-top: 40px;
}

.product-specifications-v2__section:first-child {
  border: 0;
}
.product-specifications-v2__section:last-child {
  background: ;
  border-bottom: 1px solid #b7b7b7;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-products {
  margin-bottom: 3rem;
}

.store_thumb_switch {
  height: 100px !important;
  width: 100px;
  object-fit: contain !important;
  outline: 0.5px solid #ccc;
}

span.error-msg {
  color: red;
  font-size: 12px;
  font-weight: 600;
  margin-left: 1rem;
}

.add_to_cart {
  background: var(--primary-9);
  color: #fff;
  transition: 500ms;
  border-radius: 0.3rem;
  border: 0;
}
.add_to_cart:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 1px 0px 6px #000;
  border: 0;
}

.add_to_cart i {
  margin-right: 5px;
}

.footer-widget__newsletter input:focus {
  color: #fff;
}

.product_title {
  font-weight: 700;
  font-size: 2em;
  line-height: 40px;
  color: #101010;
}

.product-details-content .price {
  color: #101010;
  font-weight: 600;
  font-size: 1.3em;
}

.pt-24 {
  margin-bottom: 20px;
}

.product-details-content p {
  font-size: 14px;
}

.feature_list li:last-child {
  display: none;
}

.feature_list li {
  margin-top: 0.7rem;
}

.feature_list i {
  color: var(--primary-8);
}

.product_description_wrap {
  margin-inline: auto;
  width: min(95%, 65rem);
}

.desc-img {
  min-height: 27rem;
  object-fit: cover;
}

.twitter {
  background: #4cb1e2;
}
.whatsapp {
  background: #12af0a;
}
.pinterest {
  background: #cb2027;
}

.linkedin {
  background: #387ea8;
}

.facebook {
  background: #3b5998;
}

.product_socials a {
  position: relative;
}
.share-whatsapp iconify-icon,
.share-telegram img {
  bottom: -6px;
  font-size: 25px;
  left: -3px;
  position: absolute;
  font-weight: 900;
  /* margin-top: 1px; */
}
.share-telegram img {
  width: 21px;
}

.tabs {
  display: block;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  overflow: hidden;
}
.tabs [class^="tab"] label,
.tabs [class*=" tab"] label {
  color: #101010;
  cursor: pointer;
  display: block;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1em;
  padding: 1rem;
  text-align: center;
  margin-bottom: 0px;
}
.tabs [class^="tab"] [type="radio"],
.tabs [class*=" tab"] [type="radio"] {
  border-bottom: 1px solid rgba(239, 237, 239, 0.5);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tabs [class^="tab"] [type="radio"]:hover,
.tabs [class^="tab"] [type="radio"]:focus,
.tabs [class*=" tab"] [type="radio"]:hover,
.tabs [class*=" tab"] [type="radio"]:focus {
  border-bottom: 1px solid var(--primary);
}
.tabs [class^="tab"] [type="radio"]:checked,
.tabs [class*=" tab"] [type="radio"]:checked {
  border-bottom: 5px solid var(--primary);
  position: relative;
}
.tab-indicator::before {
  position: absolute;
  content: "\25B2";
  font-size: 2.3rem;
  left: 40%;
  top: -43px;
  color: var(--primary);
}

.tabs [class^="tab"] [type="radio"]:checked + div,
.tabs [class*=" tab"] [type="radio"]:checked + div {
  opacity: 1;
}
.tabs [class^="tab"] [type="radio"] + div,
.tabs [class*=" tab"] [type="radio"] + div {
  display: block;
  opacity: 0;
  padding: 2rem 0;
  width: 90%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tabs .tab-2 {
  width: 50%;
}
.tabs .tab-2 [type="radio"] + div {
  width: 200%;
  margin-left: 200%;
}
.tabs .tab-2 [type="radio"]:checked + div {
  margin-left: 0;
}
.tabs .tab-2:last-child [type="radio"] + div {
  margin-left: 100%;
}
.tabs .tab-2:last-child [type="radio"]:checked + div {
  margin-left: -100%;
}

.tab-order-1 {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.tab-order-2 {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.inner-tab {
  padding: 4rem !important;
  color: #fff !important;
  font-weight: 700 !important;
  min-height: 30rem;
  position: relative;
}

.pad-top-2 {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  /* border-bottom-right-radius: 16rem; */
  top: 0;
  position: absolute;
  font-size: 1.4rem;
  left: 0;
}

.mini-title {
  font-weight: 600;
  text-align: left;
}

.color-ball {
  padding: 2px 11px;
  border-radius: 50%;
  margin-left: 0.4rem;
}

.btn-clear {
  color: #18365d;
  outline: 1px solid #18365d;
  width: max-content;
  background: transparent;
}

.discover-grid {
  display: grid;
  grid-template-areas:
    "top-disv"
    "left-disv"
    "right-disv";
  grid-gap: 2rem;
  grid-auto-columns: 1fr;
  margin-inline: auto;
  width: min(97%, 75rem);
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 0rem;
}
.discover-grid > * {
  min-height: 35rem;
  padding: 1rem;

  outline: 1px solid red;
}
.disv1 {
  grid-area: top-disv;
}
.disv2 {
  grid-area: left-disv;
}
.disv3 {
  grid-area: right-disv;
}

/* .dark-grid-1::before {
  content: "";
  background: radial-gradient(
    circle at top right,
    #50d6f6 3%,
    #f5f5f5,
    transparent
  );
  position: absolute;
  inset: 0;
  height: 100%;
  /* filter: hue-rotate(-167deg); 
  z-index: -1px;
  width: 100%;
} */

/* .dark-grid-1::after {
  content: "";
  background: radial-gradient(
    circle at top left,
    #50d6f6 3%,
    #f5f5f5,
    transparent
  );
  position: absolute;
  inset: 0;
  height: 100%;
  /* filter: hue-rotate(-167deg); 
  z-index: -1px;
  width: 100%;
} */
.dark-discovery-grid {
  display: grid;
  grid-template-areas:
    "dark-grid-1"
    "dark-grid-2 "
    "dark-grid-3 "
    "dark-grid-4";
  background: #f5f5f5;
  grid-gap: 3rem;
  padding: 5rem;
  grid-auto-columns: 1fr;
  margin-inline: auto;
  width: 100%;

  padding-bottom: 5rem;
  position: relative;
}
.dark-grid-1 {
  grid-area: dark-grid-1;
  position: relative;
  background-size: cover !important;
}
.dark-grid-1 > * {
  position: relative;
  z-index: 1;
}

.disv2 iframe {
  width: 100%;
  height: 100%;
}

.dark-grid-2 {
  grid-area: dark-grid-2;
}
.dark-grid-3 {
  grid-area: dark-grid-3;
}

.dark-grid-4 {
  grid-area: dark-grid-4;
}

.dark-discovery-grid > * {
  min-height: 20rem;
  padding: 1rem;
  position: relative;
  z-index: 1;
  outline: 1px solid red;
}

.discovery-products {
  width: min(97%, 70rem);
  margin-inline: auto;
}
.product-price {
  text-align: left;
  padding-top: 2rem;
  padding-bottom: 1rem;
  color: #000;
  font-weight: 900;
  font-size: 18px;
}

.view-more {
  padding: 0.7rem 5rem;
  background: #18365d;
  border-radius: 2rem;
  line-height: 24px;
  color: #fff;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  width: max-content;
  transition: all 500ms;
  border: 3px solid #18365d;
  font-weight: 600;
}

.view-more:hover,
.view-more:active {
  background: transparent;
  border: 3px solid #18365d;
  color: #18365d;
}
.nudge {
  padding-left: 1rem;
}

.product-category {
  font-size: 12px;
}

.cart-main-area {
  padding-bottom: 90px;
  position: relative;
  top: 4rem;
  z-index: 4;
}

h2.breadcrumb-title {
  color: #1a1a1a;
}

.empty-cart {
  width: 100%;
  min-height: 35rem;
  display: flex;
  justify-content: flex-start;
  background: url(..//images/icons/empty2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  align-items: center;
}

.empty-cart-holder {
  text-align: center;
  margin-top: -4rem;
}
.empty-cart a {
  font-size: 12px;
  width: max-content;
  color: #fff;
  background: var(--primary);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 5rem;
  transition: all 100ms;
}

.empty-cart a:hover {
  background: var(--primary-9);
}

.empty-cart h1 {
  font-size: calc(60px - 16%);
  line-height: 48px;
  color: #1a1a1a;
  font-weight: 300;
  margin-bottom: 4rem;
}

.payment-area {
  display: flex;
  gap: 1rem;
  flex-basis: fit-content;
  justify-content: center;
  align-items: baseline;
}

.billing-info {
  display: flex;
  position: relative;
  flex-flow: row wrap;
}
.checkout-label {
  position: absolute;
  top: 5px;
  left: 1rem;
  font-size: 12px;
}

.order-sum h6 {
  font-weight: 600;
  color: #fff;
  font-size: ;
}
.order-sum {
  position: absolute;
  top: 0;
  width: 100%;
  background: var(--primary);
  left: 0;
  height: 6px;
  /*padding: 0.5rem 1rem 2rem 1rem; */
  /* font-weight: 800; */
  /*   display: flex; */
  /*   justify-content: center;
  text-align: center; */
  /* align-self: center; */
}

.totalPrice,
.totalPrice span {
  font-weight: 600;
  font-size: 16px !important;
}

.order-title {
  font-size: 18px;
  font-weight: 600;
}

.checkout-btn {
  background: var(--easy-blue);
  color: #fff;
  transition: 500ms;
  border-radius: 0.3rem;
  border: 0;
}
.checkout-btn:hover {
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
}
img.help-icon {
  height: 1.7rem;
  margin-bottom: 0.3rem;
  object-fit: contain;
}
.single-payment {
  display: flex;
  flex-flow: column;
  align-items: baseline;
  padding: 0.5rem;
  /* gap: 0.1rem; */
}
.single-payment h6 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.single-payment p {
  font-size: 10px !important;
  text-align: left;
  line-height: 20px;
}

.payment-options {
  display: flex;
  margin-top: 15px;
  flex-flow: row wrap;
  gap: 5px;
  align-items: self-end;
  justify-content: flex-end;
}

.paytype {
  height: 2rem;
  width: 2rem;
  object-fit: contain;
}
.offcanvas-minicart_wrapper .offcanvas-menu-inner .minicart-item_tax {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
}

.qty-error {
  border: 0;
  margin-top: 0px;
  display: block;
  width: 100%;
}

.minicart-list {
  width: 95%;
  margin-inline: auto;
  overflow-y: scroll;
}

.minicart-list::-webkit-scrollbar {
  width: 0.2em;
}

.minicart-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.minicart-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  /* outline: 1px solid slategrey; */
  border-bottom: ;
  border-radius: 10px;
  border-top: 5px solid #fff /*or any height and color you want*/;
  border-bottom: 5px solid #fff /*or any height and color you want*/;
}
.sec_scroll {
  
  margin-inline: auto;
  overflow-y: scroll;
}

.sec_scroll::-webkit-scrollbar {
  width: 0.2em;
}

.sec_scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.sec_scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-9);
  /* outline: 1px solid slategrey; */
  border-bottom: ;
  border-radius: 10px;
  border-top: 5px solid #fff /*or any height and color you want*/;
  border-bottom: 5px solid #fff /*or any height and color you want*/;
}

.quickview-quality .cart-plus-minus input.cart-plus-minus-box {
  /* background: red; */
  border: 1px solid #ccc;
  padding: 0;
  width: 100%;
}
.summary-input {
  width: max-content;
  float: right;
  font-size: 16px !important;
  font-weight: 400;
}
/* .toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  position: fixed;
  top: 5rem;
  right: 1rem;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  border-radius: 0.25rem;
  z-index: 3;
} */

#fixed-content {
  position: sticky;
  top: 100px;
}

.toast {
  width: max-content;
  max-width: max-content;
  position: absolute;
  right: 1rem;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 1);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
  border-radius: 0.25rem;
}

.toast-link:hover {
  background: var(--primary);
  color: #fff;
  outline: 0;
}
.toast-link {
  background: #fff;
  color: var(--primary);
  outline: 2px solid var(--primary);
  transition: all 500ms ease-in-out;
  border-radius: 0.3rem;
  padding: 0.5rem 1.2rem;
  font-size: 10px !important;
  border-radius: 3rem;
  /* margin-top:1rem; */
}
.toast-body {
  text-align: left;
}

.toast-title {
  font-size: 14px !important;
}
.toast-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #000;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-top {
  margin-top: 1rem;
  font-size: 12px !important;
}

#loading {
  text-align: center;
  background: url("../images/icons/loader.gif") no-repeat center;
  height: 150px;
}

.empty_data {
  display: flex;
  width: 97%;
  min-height: 30rem;
  align-items: center;
  justify-content: center;
  background: url(../images/icons/empty3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}

.empty_data h3 {
  font-size: calc(3rem - 5%);
  color: #000;
  line-height: 65px;
  top: 50%;
  position: absolute;
  width: 51%;
  right: 0;
  font-weight: 600;
}

#price_show {
  font-size: 18px !important;
  font-weight: 600;
  text-align: center;
}

.cat-list {
  height: 10.5rem;
  overflow-y: scroll;
  position: relative;
}
.cat-list::-webkit-scrollbar {
  width: 0.2em;
}

.cat-list::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.cat-list::-webkit-scrollbar-thumb {
  background-color: #ccc;
  /* outline: 1px solid slategrey; */
  border-bottom: ;
  border-radius: 10px;
  border-top: 5px solid #fff /*or any height and color you want*/;
  border-bottom: 5px solid #fff /*or any height and color you want*/;
}
.your-order-wrappwer:nth-child(2) {
  margin-top: 3rem;
}

.checkout .order-title {
  font-size: 16px;
  font-weight: 600;
  background: var(--primary-9);
  padding: 8px 35px;
  position: absolute;
  color: #fff;
  top: 0;
  width: 100%;
  text-align: ;
  line-height: 30px;
  left: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.checkout {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  padding: 40px 35px 24px;
}

.checkout .your-order-wrap {
}

.btn-chrome {
  background: #efefef;
  /* color: #000; */
  box-shadow: 1px 1px 5px rgb(0 0 0 / 60%);
  border-radius: 5px;
  width: max-content;
  padding: 0 20px;
  font-weight: 600;
  font-size: 12px;
  margin-top: 1rem;
  text-transform: capitalize;
  height: 3rem;
}

.invoice-title span {
  font-size: 12px;
  font-weight: 400;
}
.invoice-title {
  font-weight: 600;
}

hr.underline {
  height: 2px;
  background: var(--primary);
  opacity: 1;
}

.summary-table thead > tr th {
  padding: 10px 0;
}
.summary-table {
  width: 100%;
}

.summary-table tbody > tr td.product-name {
  width: 370px;
}

.summary-table tbody > tr td.product-price {
  width: 130px;
}
.summary-table tbody > tr td.product-qty {
  width: 130px;
}
.summary-row {
  border-bottom: 0.5px solid #ccc;
  font-size: 14px;
}
.summary-row:last-child {
  border-bottom: none;
}

.sum-title {
  font-size: 1.5rem;
  color: #000;
  margin-top: 1rem;
}
.btn-min {
  height: auto !important;
  padding: 0.3px 1rem;
  font-size: 12px;
}

.summary-row .product-price {
  font-size: 14px;
  font-weight: 600;
}

.spaced {
  margin-top: 0.5rem;
}

.pad-2 {
  padding-left: 10px;
}

.overflow-scroll::-webkit-scrollbar {
  width: 0.2em;
}

.overflow-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.overflow-scroll::-webkit-scrollbar-thumb {
  background-color: #ccc;
  /* outline: 1px solid slategrey; */
  border-bottom: ;
  border-radius: 10px;
  border-top: 5px solid #fff /*or any height and color you want*/;
  border-bottom: 5px solid #fff /*or any height and color you want*/;
}

.product_table table tr td:nth-child(2) {
  text-align: center;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

.submit_spin {
  -webkit-animation: rotation 2s infinite linear;
  -moz-animation: rotation 2s infinite linear;
  animation: rotation 2s infinite linear;
  color: #fff !important;
  line-height: 30px;
  margin: 0 auto;
  width: 100%;
  min-width: 15rem;
}
.spin_processing {
  -webkit-animation: rotation 2s infinite linear;
  -moz-animation: rotation 2s infinite linear;
  animation: rotation 2s infinite linear;
  color: inherit;
  line-height: 30px;
  margin: 0 auto;
}

.filter-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  overflow: auto;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  overflow-x: hidden;
}
.filter-menu-overlay__inner {
  -webkit-transform: translateX(-120%);
  -ms-transform: translateX(-120%);
  transform: translateX(-120%);
  width: 420px;
  height: 100%;
  float: left;
  cursor: default;
  background: #fff;
  -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow-y: auto;
}
@media only screen and (max-width: 479px) {
  .filter-menu-overlay__inner {
    width: 300px;
  }
}
.filter-menu-overlay__inner .filter-menu-close-box {
  padding: 50px 40px 30px;
}
.filter-menu-overlay__inner
  .filter-menu-close-box
  .filter-navigation-close-icon {
  font-size: 20px;
  cursor: pointer;
}
.filter-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
.filter-menu-overlay.active .filter-menu-overlay__inner {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.shop-filter-active:hover {
  background: #1a1a1a !important;
  background-position: 1px;
  color: #fff;
}
.shop-filter-active {
  line-height: 30px;
  background: transparent;
  padding: 0.2em 5rem;
  margin-top: 2rem;
  border-radius: 5rem;
  outline: 2px solid #1a1a1a;
}
.widget-language,
.widget-currency {
  margin-top: calc(1rem - 0.5rem);
}

/* mood lighting */
.mood-changer {
  display: grid;
  grid-gap: 1rem;
  grid-auto-columns: 1fr;
  margin-inline: auto;
  /* width: min(97%, 75rem); */
  grid-template-areas: "banner";
  padding: 0;
  /*   border: var(--feint-pad); */

  margin-bottom: 3rem;
  position: relative;
  top: 5rem;
}

.mood-title {
  position: relative;
  left: 0;
  bottom: 6rem;
  min-height: 10em;
  padding: 4rem;
  z-index: 3;
}
.mood-bg {
  grid-area: banner;
  min-height: 40rem;
  background: url(../images/bg/lavendar.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  background-position: 30%;
  position: relative;
}

.flexer-mood {
  position: relative;
  width: 100%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.mood-title h1 {
  font-size: calc(2.3rem - 10%);
}

.md1-left {
  background-attachment: scroll !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
}

.mood-text-holder {
  font-size: 12px;
  font-weight: 500;
  padding: 3rem;
  outline: 1px solid red;
}

.mood-text-holder p {
  margin-bottom: 24px;
  font-size: calc(16px - 5%) !important;
  line-height: 24px;
  letter-spacing: 1px;
}

.mood-text-title {
  color: var(--primary);
  font-size: calc(40px - 10%);
  line-height: 50px;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
  width: 80%;
}

.grid-mini-3 {
  display: grid;
  grid-template-areas:
    "gm-left"
    "gm-middle"
    "gm-right";
  grid-gap: 2rem;
  grid-auto-columns: 1fr;
  margin-inline: auto;
  width: min(97%, 75rem);
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 1rem;
  outline: 1px solid red;
}

.grid-mini-3 > * {
  min-height: 25rem;
  padding: 1rem;
  outline: 1px solid red;
}

.grid-mini-single:nth-child(1) {
  grid-area: gm-left;
}
.grid-mini-single:nth-child(2) {
  grid-area: gm-middle;
}
.grid-mini-single:nth-child(3) {
  grid-area: gm-right;
}

.grid-mini-single {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.grid-mini-single .article h5 {
  margin-bottom: 1rem;
  font-size: 32px;
  line-height: 40px;
}
.grid-mini-single .article p {
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 24px;
}
.grid-mini-single .article > * {
  color: #fff !important;
}
.grid-mini-single .article {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: flex-end;
  align-items: flex-start;
}

.wood-bg {
  gap: 2rem;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  min-height: 30rem;
  padding: 1rem;
  flex-wrap: wrap;
  padding-bottom: 2em;
  padding-top: 2em;
}

.wood-inner img {
  height: 26rem;
  transform: rotate(24deg);
}

.wood-inner .text-holder p {
  font-size: 16px !important;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.wood-inner .text-holder {
  max-width: 400px;
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  line-height: 30px;
  position: relative;
  height: fit-content;
  align-items: center;
  text-align: center;
}
.wood-inner {
  margin-inline: auto;
}

.find-out {
  padding: 0.7rem 1rem;
  height: fit-content;
  text-transform: capitalize;
  line-height: 20px;
  font-size: 14px;
  background: var(--easy-blue) !important;
}
.wood-inner .text-holder h5 {
  color: var(--primary);
  font-weight: 600;
  font-size: 22px;
}

.mood-lighting-foot {
  /* background: url('../images/bg/1610009555360.jpg');
  background-size:cover; */
  min-height: 25rem;
  background-repeat: no-repeat;
  /*  filter: hue-rotate(-167deg) brightness(0.6); */
}
/* filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
 */
.terms {
  padding: 1rem;
  outline: 1px solid #ddd;
  width: 97%;
  margin-inline: auto;
  line-height: 30px;
}

.terms a {
  color: #0d6efd !important;
}

.terms h1 {
  font-size: 20px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #000;
}

.terms p {
  font-size: 16px !important;
}

.h1-block {
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 30px;
}
.qr-holder img {
  height: 15rem;
  margin: 1rem;
}

.validate-input label {
  display: block;
  margin: 0 0 10px;
}
.validate-input label span {
  color: red;
}
.validate-input input {
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;

  font-size: 14px;
  background-color: transparent;
  padding: 27px 36px 6px 19px;
  color: #262626;
  width: 100%;
}

.validate-input input:focus {
  border: 1px solid var(--secondary);
}

.validate-select label {
  display: block;
  margin: 0 0 10px;
}
.validate-select label span {
  color: red;
}

.validate-input textarea {
  min-height: 120px;
  border-radius: 1.5rem;
  resize: none;
  background-color: transparent;
  border-color: #e8e8e8;
  padding: 35px 36px 6px 19px;
  color: #262626;
  width: 100%;
  font-size: 14px;
}

span.mail_error {
  margin-left: 1rem;
  font-size: 14px;
  font-weight: 600;
  color: red;
}
span.mail_success {
  margin-left: 1rem;
  font-size: 14px;
  font-weight: 600;
  color: #8fbe21;
}

.contact-info-text h5 {
  font-size: 40px;
  line-height: 40px;
}
.contact-info-text p {
  font-size: 16px !important;
  margin-top: 0.5rem;
}

.contact-wrapper {
  padding: 0rem;
  margin-inline: auto;
  width: 100%;
}
.contact-us-page-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid #ccc;
}

.dark-btn:hover {
  background: #000 !important;
  color: #fff !important;
}

.loading {
  position: relative;
  width: 100%;
  height: min-content;
}

.loading::before {
  background: rgba(0, 0, 0, 0.3);
  content: "";
  inset: 0;
  position: fixed;
  z-index: 9999;
}

.bring_to_front {
  top: 50%;
  position: fixed;
  height: 5rem;
  z-index: 99999;
  left: 46%;
}

.processing {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: ;
  animation: rotate 1s linear infinite;
}
.processing::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #fff;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.toggle_option_holder {
}
.toggle_option_title::before {
  content: "";
  position: absolute;
  border-bottom: 1.5px solid;
  width: 100px;
  bottom: 0;
  left: 0;
}
.toggle_option_title {
  font-size: 1.2rem;
  margin: 1rem;
  text-transform: capitalize;
  font-weight: 600;
  padding-bottom: 0.2rem;
  position: relative;
}

.double-pad {
  margin: 3rem 0rem 3rem 0rem;
}

input[name="shipping"] {
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  border-radius: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.shipping_option {
  position: relative;
}
.shipping_option .shipping_details {
  position: absolute;
  left: 0;
  top: 0;
  padding: 1rem;
  width: 100%;
}

.toggle_option {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
}

.toggle_option > * {
  width: 100%;
  min-height: 15rem;
}
label input[name="shipping"]:checked {
  background: #18365d;
}

label input[name="shipping"]:checked + .shipping_details {
  color: #fff;
}

.iconify {
  background: #78b32b;
  padding: 1rem;
  border-radius: 100%;
  font-size: 1.2rem;
  /* color: #fff; */
}
.shipping_option .option_title {
  border-bottom: 2px solid #000;
  width: 100%;
  padding-bottom: 0.2rem;
  font-size: 1rem !important;
}
input[name="shipping"]:checked + p {
  border-bottom: 2px solid #fff !important;
}

#print_receipt {
  padding-top: 35px;
}

.capitalize {
  text-transform: capitalize;
}

.single-item {
  max-width: 50%;
}

.no_data {
  text-align: center;
}
.show_bg {
  background: url("../images/icons/empty2.svg");
  content: "";
  background-position: center;
  background-size: contain;
  position: absolute;
  background-repeat: no-repeat;
  height: 80%;
  width: 80%;
  /* background: red; */
  bottom: 0;
  z-index: -1;
}

body::-webkit-scrollbar {
  width: 0.3em;
}

/* .overflow-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
 */

body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  /* outline: 1px solid slategrey; */
  border-bottom: ;
  border-radius: 10px;
  border-top: 5px solid #fff /*or any height and color you want*/;
  border-bottom: 5px solid #fff /*or any height and color you want*/;
}

@media (max-width: 992px) {
  .stretched {
    overflow-x: scroll;
  }
}
.stretched {
  width: 98%;
  margin-inline: auto;
}

.stretched::-webkit-scrollbar {
  width: 1em;
}

.stretched::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.stretched::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  /* outline: 1px solid slategrey; */
  border-bottom: 0;
  border-radius: 10px;
  border-top: 5px solid #fff /*or any height and color you want*/;
  border-bottom: 5px solid #fff /*or any height and color you want*/;
}

.filter-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-appearance: none;
}
.filter-label input[type="radio"]:checked {
  background-color: var(--primary);
}
.fs_price_list input {
  /*   width: 20px;
  height: 20px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
  border-radius: 100%;
  background-color: #ffffff;
  border: 6px solid #f0f1f5;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1); */
}
.fs_price_list label {
  cursor: pointer;
}
.reset_btn {
  color: #1c1f23;
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.fs_price_list button {
  padding: 0px;
  border: none;
  outline: none;
  background: none;
  display: inline-block;
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.fs_price_list input:checked {
  border-color: var(--primary);
}
.price-f input:hover {
  background-color: #ccc;
}

.price-f input:checked:hover {
  background: #fff;
}

/* below desktop screensize */
@media only screen and (max-width: 820px) {
  .empty_data h3 {
    font-size: calc(3rem - 65%);
    color: #000;
    line-height: 65px;
    top: 2rem;
    padding: 1rem;
    position: absolute;
    width: 100%;
    right: 0;
    font-weight: 600;
  }
  .dark-discovery-grid{
    padding: 0;
  }
  .mood-text-holder {
padding: 10px;
  }

.track-hold{
  margin-top: 2rem;
}
.rem-cont-margin {
  margin: 0px !important;
}
  .empty_data {
    min-height: 40rem;
  }
  .empty-cart {
    align-items: flex-start;
  }
  .empty-cart h1 {
    font-size: calc(48px - 16%);
    line-height: 48px;
    color: #1a1a1a;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .empty-cart-holder {
    margin-top: 2rem;
  }
  .grid-div {
    grid-template-areas:
      "status"
      "info"
      "timeline"
      "order" !important;
  }
}
.sticky {
  position: sticky;
  top: 7rem;
  height: 100%;
}

.bottom-menu {
  position: fixed;
  background: #fff;
  bottom: 0%;
  width: 100%;
  z-index: 3;
  border-top: 1px solid #ccc;
}

.outlined-btn {
  color: var(--primary) !important;
  line-height: 20px !important;
  font-family: "Jost", sans-serif !important;
  vertical-align: middle !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  padding: 15px !important;
  border-radius: 4px !important;
  display: inline-block !important;
  transition: all 250ms ease-in-out !important;
  outline: 1px solid var(--primary) !important;
  background: transparent !important;
  transition: all 2s ease-in-out;
}
.outlined-btn:hover {
  box-shadow: 0px 0px 8px;
  outline: 0 !important;
}

.quantity_input {
  height: 50px;
  width: max-content;
  padding: 0px 12px;
  text-align: center;
  margin-right: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  border: 2px solid #eceef2;
}

@media screen and (max-width: 1360px) {
  .quantity_input span {
    font-size: 20px;
    margin: 0px 5px;
  }
}
.quantity_input span {
  color: #ced9df;
  line-height: 1;
  cursor: pointer;
  font-size: 20px;
  width: 25px;
  padding: 5px;
  /* margin: 0px 10px; */
  -webkit-transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.quantity_input input {
  width: 40px;
  border: none;
  padding: 0px;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.cart-table-content table tbody > tr td.cart-quantity {
  min-width: 130px;
}

.page_title {
  line-height: 5rem;
  font-size: 50px;
  font-weight: 900;
/*   margin-bottom: 30px; */
  color: #fff;
  width: 60%;
  padding: 0 0 0 2.5rem;
}



.lh-30 {
  font-size: 12px !important;
  line-height: 30px;
}
/* Order tracking page */
.aqua-btn {
  background: var(--blue-green-grad) !important;
}
.track-body {
  min-height: 40rem;
  background: #f8f8f1;
  padding: 1.5rem 0 0 0;
}

.track-hold {
  
  position: relative;
  float: right;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: max-content;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 10px;
}
.track-hold::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: var(--glass);
  z-index: -1;
}

.grid-div {
  display: grid;
  grid-template-areas:
    "status status status status"
    "timeline timeline info info"
    "timeline timeline info info"
    "order order order order";
  grid-gap: 1rem;
  grid-auto-columns: 1fr;
  margin-inline: auto;
  width: min(97%, 75rem);
}

.grid-div > * {
  min-height: 10rem;
  background: #fff;
}

.status-body {
  grid-area: status;
}

.order-info {
  grid-area: info;
}
.timeline-events {
  grid-area: timeline;
}
.order-list {
  grid-area: order;
}
.timeline-content-body {
  padding: 1rem;
}

/* timeline */
.container-t {
  max-height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 50px auto;
  position: relative;
}
.timeline {
  position: relative;
  padding: 0px 4rem 0 4rem;
  margin: 0 0 0 30px;
  color: #000;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: grey;
}
.timeline .timeline-container {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline .timeline-container .timeline-icon {
  position: absolute;
  left: -88px;
  top: 4px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  background: var(--easy-blue);
}
.timeline .timeline-container .timeline-icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  color: #fff;
}
.timeline .timeline-container .timeline-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.timeline .timeline-container .timeline-body {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  padding: 20px 20px 15px;
  box-shadow: 1px 3px 9px rgba(0, 0, 0, 0.1);
  position: relative;
}
.timeline .timeline-container .timeline-body:before {
  content: "";
  background: inherit;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -10px;
  transform: rotate(45deg);
  border-left-color: rgba(204, 204, 204, 0.3) !important;
  border-bottom-color: rgba(204, 204, 204, 0.3) !important;
  border-radius: 0 0 0 2px;
}
.timeline .timeline-container .timeline-body::after {
  position: absolute;
  content: "";
  inset: 0;
  backdrop-filter: var(--glass);
  z-index: -1;
}

.timeline .timeline-container .timeline-body .timeline-title {
  margin-bottom: 1.4rem;
}
.timeline .timeline-container .timeline-body .timeline-title .badge {
  background: #4f537b;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}
.timeline .timeline-container .timeline-body .timeline-subtitle {
  font-weight: 300;
  font-style: italic;
  opacity: 0.4;
  margin-top: 16px;
  font-size: 11px;
}
.timeline .timeline-container.primary .badge,
.timeline .timeline-container.primary .timeline-icon {
  background: #1d8cf8 !important;
}
.author {
  font-family: inherit;
  padding: 3em;
  text-align: center;
  width: 100%;
  color: white;
}
.author a:link,
.author a:visited {
  color: white;
}
.author a:link:hover,
.author a:visited:hover {
  text-decoration: none;
}
.author .btn:link,
.author .btn:visited {
  margin-top: 1em;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  font-weight: 100;
  color: white;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: black;
  padding: 1.5em 2rem;
  border-radius: 1em;
  transition: 0.5s all;
}
.author .btn:link:hover,
.author .btn:visited:hover,
.author .btn:link:focus,
.author .btn:visited:focus,
.author .btn:link:active,
.author .btn:visited:active {
  background-color: #1a1a1a;
}

/* Order status tracker here */
.container {
  margin-top: 50px;
  margin-bottom: 50px;
}
.card-t {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.1rem;
}
.card-header-t:first-child {
  border-radius: calc(0.37rem - 1px) calc(0.37rem - 1px) 0 0;
}
.card-header-t {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: #ccc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.track-inp {
  border-radius: 5px;
  border: 0;
  outline: 0.2px solid #ccc;
  padding: 10px 1rem;
  font-size: 14px;
  line-height: 30px;
  background: rgba(255, 255, 2555, 0.4);
  text-transform: uppercase;
}
.track {
  position: relative;
  background-color: #ddd;
  height: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  margin-top: 50px;
}
.track .step {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 25%;
  margin-top: -18px;
  text-align: center;
  position: relative;
}
.track .step.active:before {
  background: #005fa7;
}
.track .step::before {
  height: 7px;
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 18px;
}
.track .step.active .icon {
  background: var(--easy-blue);
  color: #fff;
}
.track .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: relative;
  border-radius: 100%;
  background: #ddd;
}
.track .step.active .text {
  font-weight: 400;
  color: #000;
}
.track .text {
  display: block;
  margin-top: 7px;
}

.overwrite-scroll-width .stretched::-webkit-scrollbar {
  width: 0.3em;
}

.overwrite-scroll-width .stretched::-webkit-scrollbar-thumb {
  background-color: var(--moonlight);
}

.content-box {
  padding: 2rem;
}
.content-body {
  margin-bottom: 1rem;
}
.content-box p {
  line-height: 18px;
}
.content-body h5 {
  margin: 1rem 0 1rem 0;
  font-size: 19px;
  text-transform: capitalize;
  font-weight: 600;
}
.track-content-header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 1rem;
  background: var(--easy-blue);
  width: 100%;
}
.track-content-header h3 {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

/* table css for tracking */
.table-amount {
  font-size: 30px;
  font-weight: 700;
}
.order-sum-table {
  padding: 2rem;
}
.payment-type-icon {
  height: 50px;
}
.payment-type-body {
  margin-bottom: 4px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.payment-type-body span {
  font-weight: 600;
}
/* --------------------------------------------------------------------------- */
.order-sum-table .header-color-gray.cart-table-content table thead > tr th {
  padding: 0 20px 33px 20px !important;
}
.order-sum-table .invoice-summary {
  display: grid;
}

.order-sum-table .product-price {
  font-weight: 500;
}
.order-sum-table .price-total {
  font-weight: 600;
}
.upd-icon {
  background: var(--primary);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 40%;
}

.lordicon {
  width: 100%;
  height: 120px;
}
.update-body {
  display: flex;
  /* gap: 2px; */
  width: 100%;
  justify-content: space-between;
}
.timeline-header {
  font-size: 18px;
  margin-top: 20px;
  color: #000;
  margin-bottom: -10px;
  text-transform: capitalize;
}

.update-cont {
  width: 60%;
  padding: 20px;

  border-top-right-radius: 5px;
  border: 0.5px solid #ccc;
  border-bottom-right-radius: 5px;
}
.align-right {
  text-align: right;
  padding-right: 40px;
}
.calc-heading {
  font-weight: 600;
}

.update-cont span {
  font-weight: 300;
  font-style: italic;
  opacity: 0.4;
  margin-top: 16px;
  font-size: 14px;
}
.outlined-alt {
  background: var(--primary) !important;
  color: #fff !important;
  outline: none;
  transition: all 500ms ease-in-out;
}

.outlined-alt:hover {
  box-shadow: 0px 0px 9px #000;
}

.text-bold {
  font-weight: 600 !important;
}

.help-div {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  align-items: baseline;
}

.help-div p {
  font-size: 16px !important;
  text-transform: capitalize;
}

.slider-2 .feature_list {
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
}

/* Slider carousel */
.slider-2 {
  /*  max-width: 1000px; */
  width: 96%;
  margin: 15px auto;
  background: #fff;
  border-radius: 5px;
  padding: 20px 0;
  outline: 1px solid #ccc;
  /*h v b s*/
}

.slider-2 .slick-slider button {
  display: none !important;
}

.slider-2 .slick-slide {
  color: #333;
  padding: 40px 0;
  font-size: 1.25em;
  font-family: "Verdana";
  text-align: center;
  pointer-events: none;
}

.slider-2 .slick-slide .desc {
  opacity: 0;
}

.slider-2 .slick-slide .desc > * {
  transition: all 900ms ease;
}

.slider-2 .slick-slide .desc h2 {
  position: relative;
  left: 50px;
  line-height: 1;
}

.slider-2 .slick-slide .desc p {
  position: relative;
  top: 50px;
  opacity: 0;
}

.slider-2 .slick-slide img {
  width: 100%;
}

.slider-2 .slick-prev:before,
.slider-2 .slick-next:before {
  color: black;
}

.slider-2 .slick-dots {
  text-align: center;
}

.slider-2 .slick-dots li {
  display: inline-block;
  padding: 1px;
  background: #ccc;
  margin: 10px 5px;
  width: 40px;
  height: 5px;
}

.slider-2 .slick-prev,
.slider-2 .slick-next {
  display: none !important;
}

.slider-2 .slick-dots li.slick-active {
  background: var(--primary);
}

.slider-2 .slick-dots button {
  display: none;
}

.slider-2 .slick-slide:nth-child(odd) {
  /* background: blue;*/
}

.slider-2 .slick-slide {
  opacity: 0.2;
  transition: all 300ms ease;
}

.slider-2 .slick-current {
  opacity: 1;
  transform: scale(1.1);
}

.slider-2 .slick-current .desc {
  opacity: 1;
}

.slider-2 .slick-current .desc h2 {
  left: 0;
}

.slider-2 .slick-current .desc p {
  top: 0;
  opacity: 1;
}

.slider-2 .btn {
  font-size: 0.6em;
  text-transform: uppercase;
  display: block;
  margin: 30px auto 0;
  max-width: 100px;
  width: 100%;
  font-weight: bold;
  pointer-events: initial;
}
/* //////////////////////////////////////////////////////////////////// */
.bread-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.bread-flex img {
  height: 20rem;
}
.rem-cont-margin {
  margin: 0px 0px 0px 30px;
}

.excl {
  font-size: 11px;
  margin-left: 5px;
  font-weight: 500;
}

.tracking-id {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.track-total {
  display: flex;
  align-items: baseline;
  justify-content: end;
  margin-bottom: 2rem;
  margin-right: 2rem;
}

.track-total h5 {
  color: #000;
  font-size: 16px;
}

.track .step.error .icon {
  background: red !important;
  color: #fff !important;
}

.track .step.error::before {
  background: red !important ;
}

.default-track {
  width: 100%;
  min-height: 35rem;
  display: flex;
  justify-content: flex-end;
  background: url(../images/icons/404_2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  align-items: center;
}

.default-track-holder {
  text-align: center;
  min-height: 20rem;
  margin-top: -4rem;
  margin-right: 1rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}

.default-track h1 {
  font-size: calc(35px - 16%);
  line-height: 48px;
  color: #1a1a1a;
  font-weight: 300;
  margin-bottom: 1rem;
}

.default-track a {
  font-size: 12px;
  width: max-content;
  color: #fff;
  background: var(--primary);
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 5rem;
  transition: all 100ms;
}

.default-track-holder p {
  text-align: justify;
  line-height: 24px;
}
.submenu li a:hover {
  color: var(--secondary) !important;
}

.dt-alt{
  background: url(../images/icons/404_3.svg) !important;
  background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: left !important;
}

#scrollTo {
  background: transparent;
  padding: 20px;
  /* display: none; */
  width: 50px;
  z-index: -1;
  position: absolute;
  top: 100%;
}
.cart-quantity{
  position: relative;
}

.nxt_err{
  position: absolute;
   
    bottom: 15px;
}

.button-box .bg-button {
  background: transparent;
  display: flex;
  place-items: center;
  gap: 2px;
}

.button-box .ambiance-controls{
  grid-template-areas: "ph bh dh gh";
  position: relative;
  right: unset;
  left: unset;
  top: unset;
  bottom: unset;
}

.button-box .ambiance-controls > *{
  min-height:unset;
  background: transparent;
  padding: 5px 10px 0px 5px;
  cursor: pointer;
   border-radius: 10px;
   backdrop-filter:unset;
   transform: scale(0.8);
}

.hero-text-five {
  /*   background: rgba(255,255,255,0.7); */
  padding: 2rem;
  margin-left: 4rem;
  place-items: center;
  flex-wrap: wrap;
  display: flex;
  position: absolute;
  left: 12%;
  bottom: -12.2rem;
}
.slick-body-holder p{
  font-size: 16px !important;
  letter-spacing: 1px;

}
.slick-body-holder{
  width: 100%;
  word-break:break-word;
  text-align:center;
}
/* media-start */
@media (max-width: 420px) {
  .hero-text-five {
left: -18%;
  }
  .hero-text-five .button-box { 
    margin-top: -1rem;
      }
      .hero-text-five h1{
        font-size: 2.8rem !important;
      }
     
     
}
@media (max-width: 820px) {
  .button-box .ambiance-controls{
    grid-template-areas: "ph bh" "dh gh";
  }
  .hero-text-five {
    top: 0 !important;
      }
      
}
@media (min-width: 760px) {
  .button-box .ambiance-controls{
    left:  3rem !important;
    top: -1rem !important ;
  }
  .hero-text-five .button-box { 
margin-top: 1rem;
  }
 
}
.s_purple-hue-control .control-icon {
  color: #94298e;
  box-shadow: var(--emphasis-shadow);
}
.s_bright-hue-control .control-icon {
  color: #f45a28;
  box-shadow: var(--emphasis-shadow);
}
.s_game-hue-control .control-icon {
  color: #29aee5;
  box-shadow: var(--emphasis-shadow);
}
.s_dark-hue-control .control-icon {
  color:  #a6a29e;
  box-shadow: var(--emphasis-shadow);
}

.s_purple-hue-control {
  grid-area: ph;
  animation: sm-grow 3s 5s infinite ease-in-out;
}


.s_bright-hue-control {
  grid-area: bh;
  animation: sm-grow 3s 7s infinite ease-in-out;
}


.s_game-hue-control {
  grid-area: gh;
  animation: sm-grow 3s 14s infinite ease-in-out;
}
.bg-button:hover {
  transform: scale(0.9);
  animation: none;
}
.s_dark-hue-control {
  grid-area: dh;
  animation: sm-grow 3s 10s infinite ease-in-out;
}

.lavender-bg{
  background: url('../images/bg/s_lavender.webp') !important;
}
.midnight-bg{
  background: url('../images/bg/s_midnight.webp') !important;
}
.aqua-bg{
  background: url('../images/bg/s_aqua.webp') !important;
}
.sunshine-bg{
  background: url('../images/bg/s_sunshine.webp') !important;
}
.single-hero-slider-five {

  background-repeat: no-repeat !important;

  background-size: cover !important;
   transition: background-image 0.5s ease-in-out;
}

.submit-button .submit_spin{
  width: max-content;
  min-width: auto;
}
.hero-overlay {

  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}
.reset-body{
  text-align: center;
    margin-inline: auto;
    width: 82%;
    position: absolute;
    margin-top: -17px;
  
}
#bg-reset{
  border: 0;
  color:#fff;
  background: transparent;
  margin-left: -2rem;
}

#bg-reset:hover {
font-size: 1rem;
transition: all 200ms ease-in-out;
font-weight:500;
}
#bg-reset:hover i{
  animation: rotation 8s infinite linear;
  -webkit-animation: rotation 8s infinite linear;
  -moz-animation: rotation 8s infinite linear;
}
.button-box {
  margin-left: 3rem;
}
.button-box p{
  font-size:20px !important;
}

.button-box .ambiance-controls .control-icon {
border: 3px solid ;
font-size: 1.7rem;
font-weight: 500;
transform: scale(0.8);
}