/*--------------------- Copyright 2024 -----------------------
[Master Stylesheet]
Project: LensLux
Version: 1.0.0
Author: PixelNX
-------------------------------------------------------------------*/
/**********************************
 	1. Global CSS Start
 **********************************/

:root {
  --lenslux-title-family: "Jost", sans-serif;
  --lenslux-theme-family: "Rubik", sans-serif;
  --lenslux-main-bg: #ffffff;
  --lenslux-alternate-bg: #eff2ef;
  --lenslux-alternate-bg: #ffefe1;
  --lenslux-alternate-bg: #fbfbfb;
  --lenslux-font-color: #747474;
  --lenslux-title-color: #202020;
  --lenslux-white: #ffffff;
  --lenslux-primary-color: #ff9900;
  --lenslux-border-color: #efefef;
  --lenslux-input-border: #e5e5e5;
  --lenslux-input-bg: #ffffff;
  --lenslux-yellow: #ffaa17;
  --lenslux-green: #53d575;
  --lenslux-footer-bg: #121212;
  --lenslux-copyright-bg: #0c0b0b;
  --lenslux-placeholder: #b8bdc9;
  --lenslux-black: #000000;
  --lenslux-radius0: 0;
  --lenslux-radius-comman: 6px;
  --lenslux-radius10: 10px;
  --lenslux-font-size: 14px;
  --lenslux-title-size: 42px;
  --lenslux-sub-title-size: 26px;
  --lenslux-widgets-title-size: 22px;
  --lenslux-shadow: 0 0 30px 0 rgb(0 0 0 / 8%);
  --lenslux-transition: all 0.3s;
}

* {
  outline: 0 !important;
}

body {
  font-family: var(--lenslux-theme-family);
  font-weight: 400;
  font-size: var(--lenslux-font-size);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--lenslux-main-bg);
  color: var(--lenslux-font-color);
}

body::-webkit-scrollbar {
  width: 6px;
  box-shadow: none;
}

body::-webkit-scrollbar-track {
  background-color: var(--lenslux-alternate-bg);
  box-shadow: none;
}

body::-webkit-scrollbar-thumb {
  /* background-color: var(--lenslux-primary-color); */
  /* box-shadow: none; */
  border: 0 !important;
  width: 0 !important;
}
/* 隐藏整个滚动条 */
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

/* 隐藏滚动条的滑块 */
body::-webkit-scrollbar-thumb {
  border: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* 隐藏滚动条的轨道 */
body::-webkit-scrollbar-track {
  border: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

a {
  color: var(--lenslux-font-color);
}

a:hover,
a:focus,
button,
button:hover {
  color: var(--lenslux-primary-color);
}

a,
a:hover,
a:focus,
button,
button:hover {
  text-decoration: none;
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button,
button:focus,
button:hover,
label,
.form-control:focus {
  box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  color: var(--lenslux-title-color);
  text-transform: capitalize;
  font-family: var(--lenslux-title-family);
  line-height: 1.2;
}

strong {
  font-weight: 600;
}

iframe {
  width: 100%;
  border: none;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid var(--lenslux-input-border);
  background: var(--lenslux-input-bg);
  border-radius: var(--lenslux-radius0);
  color: var(--lenslux-font-color);
  font-size: var(--lenslux-font-size);
  line-height: 1.5;
  padding: 0 20px;
  height: 50px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: var(--lenslux-font-color);
  border: 1px solid var(--lenslux-input-border);
  background: var(--lenslux-input-bg);
  width: 100%;
  padding: 0 20px;
  height: 50px;
  line-height: 50px;
  border-radius: var(--lenslux-radius-comman);
}

.input-wrap textarea {
  height: 150px;
  border-radius: var(--lenslux-radius-comman);
  padding: 20px;
}

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 {
  border-color: var(--lenslux-primary-color);
  color: var(--lenslux-font-color);
}

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,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

input::-webkit-input-placeholder,
.input-wrap input::-webkit-input-placeholder,
.input-wrap textarea::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--lenslux-placeholder);
}

.input-wrap input::-moz-placeholder,
.input-wrap textarea::-moz-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--lenslux-font-color);
}

.input-wrap input:-ms-input-placeholder,
input:-ms-input-placeholder,
.input-wrap textarea:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: var(--lenslux-font-color);
}

.input-wrap input:-moz-placeholder,
input:-moz-placeholder,
.input-wrap textarea:-moz-placeholder,
textarea:-moz-placeholder {
  color: var(--lenslux-font-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-wrap label {
  font-weight: 600;
  color: var(--lenslux-title-color);
  margin: 0 0 10px;
}

.display-flex {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 5px;
}

.nice-select .list {
  width: 100%;
}

.lens-spacer {
  padding: 80px 0 50px;
}

.lens-spacer-equal {
  padding: 80px 0;
}

.lens-spacer-secondary {
  padding: 73px 0 50px;
}

/**********************************
 	2. Comman CSS Start
 **********************************/

.response {
  color: red;
  display: block;
  margin-top: 10px;
}

.response p {
  margin: 0;
}

/* Go to top Button*/

.scroll-to-topp {
  position: fixed;
  right: 15px;
  bottom: 15px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 9;
  visibility: hidden;
  -webkit-transform: translateY(150px);
  -ms-transform: translateY(150px);
  transform: translateY(150px);
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
  font-size: var(--lenslux-sub-title-size);
}

.scroll-to-topp:hover,
.scroll-to-topp:visited,
.scroll-to-topp:visited:hover,
.scroll-to-topp:focus {
  color: var(--lenslux-white);
  background: var(--lenslux-title-color);
}

.scroll-to-topp.active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  animation: bounceInDown 2s;
  -webkit-animation: bounceInDown 2s;
  -moz-animation: bounceInDown 2s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
}

/* Button CSS */

.lens-btn {
  position: relative;
  min-width: 150px;
  text-align: center;
  display: inline-block;
  font-size: var(--lenslux-font-size);
  color: var(--lenslux-white) !important;
  padding: 13px 20px;
  font-weight: 500;
  border-radius: var(--lenslux-radius-comman);
  overflow: hidden;
  background-color: var(--lenslux-primary-color);
  border: 0;
}
.lens-btn:hover,
.lens-btn:focus {
  color: var(--lenslux-white);
  background: var(--lenslux-title-color);
}
.lens-btn span {
  position: relative;
}
.lens-btn-outline {
  background: transparent;
  border: 1px solid var(--lenslux-primary-color);
  padding: 12px 20px;
  color: var(--lenslux-primary-color) !important;
}
.lens-btn-outline:hover,
.lens-btn-outline:focus {
  background: transparent;
  color: var(--lenslux-title-color) !important;
  border-color: var(--lenslux-title-color);
}

/* Counter */

.lens-counter-wrapper {
  background: var(--lenslux-title-color);
  color: var(--lenslux-white);
  padding: 10px 0 0;
  position: relative;
}

.lens-offer-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.lens-offer-info p {
  margin: 0 0 10px;
  font-weight: 500;
}

.timer-close-btn {
  height: 30px;
  font-size: 20px;
  color: var(--lenslux-white);
  font-weight: 600;
  line-height: 1;
  margin: 0 0 0 10px;
  position: absolute;
  right: 40px;
}

.timer-close-btn:hover,
.timer-close-btn:focus,
.timer-close-btn:active {
  color: var(--lenslux-white);
}

/**
** Concept 3
**/

.countdown-3 {
  --colour-days: calc(var(--countdown-percent-days) * 255);
  --colour-hours: calc(var(--countdown-percent-hours) * 255);
  --colour-minutes: calc(var(--countdown-percent-minutes) * 255);
  --colour-seconds: calc(var(--countdown-percent-seconds) * 255);
  --colour: calc(var(--countdown-percent) * 255);
  --length: calc(var(--countdown-percent) * 100%);
  display: flex;
  padding: 0;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.countdown-3 .amount {
  display: inline-flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  width: auto;
  font-weight: 700;
}

.countdown-3 .digit,
.countdown-3 .digit[data-countdown-next-digit]::after {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  min-width: 25px;
  height: 30px;
  background: rgb(255 255 255 / 18%);
  border-radius: 3px;
  color: var(--lenslux-white);
  text-align: center;
  margin: 0 3px;
}

.countdown-3 .digit[data-countdown-next-digit]::after {
  display: none;
  content: attr(data-countdown-next-digit);
  position: absolute;
  left: 0;
  top: 0;
}

.countdown-3 .days,
.countdown-3 .hours,
.countdown-3 .minutes,
.countdown-3 .seconds {
  margin: 0px 6px 10px;
}

.countdown-3 .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}

.lens-icon svg {
  height: 20px;
  width: 20px;
  fill: var(--lenslux-font-color);
}
.lens-icon svg:hover {
  fill: var(--lenslux-primary-color);
}

/* Heading */

.lens-heading-wrapper {
  position: relative;
  margin: 0 0 47px;
}

.lens-heading-wrapper h4 {
  font-size: 18px;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

/** Read More Link **/

.lens-read-more {
  display: inline-block;
  padding: 0 0 8px;
  margin: 0 0 8px;
  color: var(--lenslux-title-color);
  position: relative;
  padding: 0;
  margin: 0 0 0;
  font-weight: 500;
}

.lens-read-more:hover {
  color: var(--lenslux-primary-color);
}

.lens-read-more:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--lenslux-title-color);
  height: 1px;
  width: 100%;
}

.lens-read-more:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--lenslux-primary-color);
  height: 1px;
  width: 0%;
}

.lens-read-more:hover:after {
  width: 100%;
}

.lens-read-more:after,
.lens-read-more:hover:after {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

/* Header CSS Start */

header.lens-header-wrapper {
  position: relative;
  z-index: 2;
}

/* Language */

.language-transltor,
.lens-user-login-btn {
  display: inline-flex;
  margin-left: 20px;
}

.language-transltor .nice-select {
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
  border: 0;
  border-radius: 40px;
  padding: 0 40px 0 20px;
  height: 40px;
  font-size: 12px;
  font-weight: 600;
  min-width: 80px;
  line-height: 40px;
}
.language-transltor .nice-select:hover {
  background: var(--lenslux-title-color);
}
.language-transltor .nice-select .list {
  color: var(--lenslux-font-color);
}

.language-transltor .nice-select::after {
  right: 20px;
  border-bottom: 2px solid var(--lenslux-white);
  border-right: 2px solid var(--lenslux-white);
}

/* User btn*/

.user-btn {
  display: inline-block;
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white) !important;
  min-width: 70px;
  height: 40px;
  line-height: 40px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  padding: 0 20px;
  border-radius: 30px;
}

.user-btn:active,
.user-btn:focus,
.user-btn:hover {
  color: var(--lenslux-white);
  background: var(--lenslux-title-color);
}

.user-btn .lens-icon svg {
  fill: var(--lenslux-white);
  height: 16px;
  margin: 0 4px 0 0;
}

/* Cart */

.cart-btn {
  display: inline-block;
  position: relative;
  margin-right: 15px;
}

.cart-btn > span:not(.lens-icon) {
  background: #000000;
  color: var(--lenslux-white);
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgb(95 58 252 / 6%);
  top: -10px;
  font-size: 10px;
  font-weight: 600;
  right: -15px;
}

/* Wish list */

.wishlist-btn {
  display: inline-block;
  margin: 0 20px 0 10px;
}

/*  Header */

.menu-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.header-wrapper {
  padding: 10px 0px 10px;
  min-height: 80px;
  display: flex;
  align-items: center;
  background: var(--lenslux-main-bg);
  flex-wrap: wrap;
}

.main-menu-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.header-wrapper .row {
  align-items: center;
}

.lens-logo img {
  max-height: 50px;
}

.main-menu > ul {
  position: relative;
}

.main-menu ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.main-menu ul li {
  position: relative;
  list-style: none;
}

.has-sub-menu .sub-menu li {
  width: 100%;
}

.main-menu ul > li > a {
  padding: 20px 20px;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  color: var(--lenslux-title-color);
}

.main-menu ul > li > a:hover,
.main-menu ul > li.active > a {
  color: var(--lenslux-primary-color);
}

.main-menu .sub-menu > li > a {
  width: 100%;
  padding: 10px 20px;
  position: relative;
}

.has-sub-menu > .sub-menu > li > a:before {
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  width: 0px;
  background: var(--lenslux-primary-color);
  top: 0;
  bottom: 0;
  margin: auto;
}

.has-sub-menu > .sub-menu > li:hover > a,
.main-menu ul > li > a.active {
  color: var(--lenslux-primary-color);
}

.has-sub-menu > .sub-menu > li:hover > a:before {
  color: var(--lenslux-primary-color);
  width: 10px;
}

.has-sub-menu .sub-menu li:hover a:before,
.has-sub-menu .sub-menu li a:before {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

/* Menu Button*/

.menu-btn-wrap .menu-btn {
  margin: 0 0 0 20px;
}

.menu-btn-wrap > a {
  width: 50px;
  height: 50px;
  display: flex;
  text-align: left;
  border: 0;
  padding: 13px 15px;
  background: var(--lenslux-alternate-bg);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--lenslux-white);
  margin: 0 0 0 20px;
  border-radius: var(--lenslux-radius-comman);
}

.menu-btn-wrap > a:hover {
  background: var(--lenslux-white);
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
  margin: 3px 0;
  background: var(--lenslux-primary-color);
}

.menu-btn span:nth-child(2) {
  width: 15px;
}

.menu-btn-wrap.open .menu-btn span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.menu-btn-wrap.open .menu-btn span:nth-child(1) {
  transform: translate(0px, 4px) rotate(-48deg);
}

.menu-btn-wrap.open .menu-btn span:nth-child(3) {
  transform: translate(0px, -6px) rotate(48deg);
}

/**********************************
 	Home Banner CSS Start
 **********************************/
.lens-banner-wrapper {
  background: #f1f1f1;
  background: url(../image/banner-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 0 0;
}
.lens-banner-info h2 {
  font-size: 58px;
  font-weight: 700;
}
.lens-banner-info p {
  font-size: 18px;
  color: var(--lenslux-font-color);
  margin: 0;
  max-width: 640px;
}
.lens-banner-img {
  text-align: center;
}
.lens-banner-img img {
  max-height: 780px;
}

/* Search CSS Start */

.search-box {
  max-width: 580px;
  width: 100%;
  margin: 32px 0px 40px;
}
.search-bar-inner {
  position: relative;
  height: 60px;
  border-radius: 10px;
}
.search-bar-inner input {
  width: 100%;
  height: 60px;
  padding: 12px 65px 12px 20px;
  border: none;
  border-radius: 10px;
  background: var(--lenslux-white);
}
.search-bar-inner input::-webkit-input-placeholder {
  opacity: 80%;
  font-weight: 400;
}

.search-bar-inner input::-moz-placeholder {
  opacity: 80%;
  font-weight: 400;
}

.search-bar-inner input:-ms-input-placeholder {
  opacity: 80%;
  font-weight: 400;
}
.search-bar-inner input:-moz-placeholder {
  opacity: 80%;
  font-weight: 400;
}
.search-bar-inner a {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: none;
  width: 50px;
  font-size: 20px;
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/**********************************
 	Category CSS Start
 **********************************/

.lens-game-catergoy {
  text-align: center;
  background: var(--lenslux-white);
  padding: 10px;
  min-height: 100px;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 8%);
  border-radius: 10px;
}

.lens-game-catergoy:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.lens-game-catergoy:hover,
.lens-game-catergoy,
.lens-game-catergoy:hover h4,
.lens-game-catergoy h4,
.lens-game-catergoy:hover .lens-catergory-icon:before,
.lens-game-catergoy .lens-catergory-icon:before,
.lens-game-catergoy .lens-catergory-icon .lens-icon-sm,
.lens-game-catergoy:hover .lens-catergory-icon .lens-icon-sm {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

.lens-catergory-icon svg {
  height: 40px;
}
.lens-game-catergoy h4 {
  font-size: 16px;
  font-family: var(--lenslux-theme-family);
  font-weight: 600;
  margin: 0;
  text-align: center;
  width: 100%;
  padding: 15px 10px 5px;
}
.lens-game-catergoy:hover h4 {
  color: var(--lenslux-primary-color);
}
.lens-catergory-icon {
  position: relative;
  width: 100%;
}
.lens-catergory-icon:before {
  content: "";
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0);
}
.lens-game-catergoy:hover .lens-catergory-icon:before {
  opacity: 0.2;
  transform: scale(1);
}
.lens-game-catergoy-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.lens-catergory-icon img {
  max-height: 230px;
  border-radius: 5px;
  width: 100%;
  object-fit: cover;
}
.lens-catergory-icon .lens-icon-sm {
  position: absolute;
  top: 0;
  transform: scale(0);
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  color: var(--lenslux-primary-color);
  justify-content: center;
  opacity: 0;
}
.lens-game-catergoy:hover .lens-catergory-icon .lens-icon-sm {
  transform: scale(1);
  opacity: 1;
}

/**********************************
 	Products Thumb Start
 **********************************/

.lens-product-rating ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.lens-product-rating ul li {
  list-style: none;
  margin: 0;
}

.rated {
  color: var(--lenslux-yellow);
}

.lens-product-rating {
  display: inline-flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.lens-product-icons img {
  height: 18px;
}

.lens-product-icons {
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: 0px;
  left: 0px;
  margin: auto;
}

.lens-product-img {
  position: relative;
}
.lens-product-img:before {
  background: #000;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border-radius: 10px;
  opacity: 0.2;
  width: 0%;
}
.lens-product-section:hover .lens-product-img:before {
  width: 100%;
}
.lens-product-section .lens-product-img:before,
.lens-product-img,
.lens-product-img:before,
.lens-product-section:hover,
.lens-product-section {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}
.lens-product-icons ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 5px;
  align-items: center;
  justify-content: center;
}

.lens-product-icons ul li {
  list-style: none;
  opacity: 0;
  visibility: hidden;
  margin: 0;
  transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
}

.lens-product-section:hover .lens-product-icons ul li:first-child,
.lens-product-section:hover .lens-product-icons ul li:nth-child(2),
.lens-product-section:hover .lens-product-icons ul li:nth-child(3),
.lens-product-section:hover .lens-product-icons ul li:nth-child(4) {
  opacity: 1;
  visibility: visible;
}

.lens-product-icons ul li a {
  height: 40px;
  width: 40px;
  display: inline-block;
  border: none;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin: 0;
  background: var(--lenslux-primary-color);
}

.lens-product-icons ul li a:hover {
  background: var(--lenslux-primary-color);
}

.lens-product-price-sales {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 0;
}
.lens-product-section {
  background: var(--lenslux-white);
  margin: 0 0 30px;
  padding: 8px;
  box-shadow: var(--lenslux-shadow);
  overflow: hidden;
  border-radius: 10px;
}
.lens-pro-title {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
  color: var(--lenslux-title-color);
}
.lens-pro-title:hover {
  color: var(--lenslux-primary-color);
}
.lens-product-info {
  padding: 15px 15px 14px;
}
.lens-product-price-sales span {
  font-weight: 500;
}
.lens-product-price-sales .lens-product-price {
  font-weight: 700;
  color: var(--lenslux-primary-color);
  font-size: 20px;
}
.lens-product-price-sales .lens-product-price del {
  opacity: 0.6;
  color: #787878;
  font-weight: 500;
}
.lens-product-section .lens-product-rating {
  margin: 0px 0 8px;
}
.lens-product-section .lens-product-price-sales .lens-product-rating {
  margin: 0;
}
.lens-product-rating-info span {
  display: inline-block;
  background: #ebf5eb;
  border-radius: 3px;
  padding: 3px 10px;
  color: green;
  font-weight: 500;
  margin-left: 8px;
}
/* Title Main */

.lens-has-bg {
  background: var(--lenslux-alternate-bg);
}

/**/

.lens-main-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 0 29px;
}

.lens-main-title:before {
  content: "";
  position: absolute;
  height: 2px;
  border-top: 4px double var(--lenslux-border-color);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.lens-main-title h4 {
  display: inline-block;
  background: var(--lenslux-main-bg);
  position: relative;
  padding-right: 30px;
  font-size: 36px;
}

.lens-has-bg .lens-main-title h4,
.lens-has-bg .lens-main-title .lens-view-btn {
  background: var(--lenslux-alternate-bg);
}

.lens-main-title .lens-view-btn {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  background: var(--lenslux-main-bg);
  color: var(--lenslux-white);
}

.lens-main-title .lens-view-btn svg {
  height: 14px;
  fill: var(--lenslux-white);
  width: 28px;
}

/* Title Style Two */

.lens-section-title {
  margin: 0 auto 41px;
  text-align: center;
  max-width: 680px;
}
.lens-section-title h6 {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 10px;
  color: var(--lenslux-primary-color);
  display: inline-block;
  padding: 10px 30px;
  border-radius: 6px;
  background: #ffeed4;
}
.lens-section-title h4 {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
}

/**********************************
 	Recent items CSS Start
**********************************/
.lens-filter-menu {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 5px;
  max-width: fit-content;
  margin: 0 auto 20px;
  padding: 5px 5px;
  border-radius: 60px;
  background: #f7efe4;
}
.lens-filter-menu button {
  border: 0;
  padding: 10px 15px;
  font-weight: 500;
  position: relative;
  color: var(--lenslux-title-color);
  background: transparent;
  border-radius: 60px;
  min-width: 100px;
}
.lens-filter-menu button.active,
.lens-filter-menu button:hover {
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
}

.lens-filter-menu button,
.lens-filter-menu button.active,
.lens-filter-menu button:hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.lens-filter .mix {
  display: none;
}

/**********************************
 	Animation CSS Start
 **********************************/

@keyframes buttonripple {
  0% {
    transform: scale(40, 40);
    opacity: 0.3;
    background: var(--lenslux-primary-color);
  }
  20% {
    transform: scale(25, 25);
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0px);
  }
}

/**********************************
 	12. Footer CSS Start
 **********************************/

/**********************************
 	 Newsletter  CSS Start
 **********************************/

.lens-newsletter-wrapper {
  position: relative;
}

.lens-newsletter-section {
  position: relative;
  color: white;
}

.lens-newsletter-section .lens-input-wrap input {
  width: 100%;
  position: relative;
  padding: 0 70px 0 20px;
}

.lens-newsletter-section .lens-input-wrap {
  position: relative;
}

.lens-newsletter-section .lens-input-wrap .lens-newsletter-btn {
  position: absolute;
  right: 0;
  border-radius: 0 6px 6px 0;
}

.lens-newsletter-btn {
  position: relative;
  display: inline-block;
  color: var(--lenslux-white);
  background-color: var(--lenslux-primary-color);
  border: 0;
  height: 50px;
  width: 50px;
}

.lens-newsletter-btn svg {
  height: 22px;
  fill: var(--lenslux-white);
}

/* Footer */

.lens-main-footer {
  position: relative;
  /* background: var(--lenslux-footer-bg); */
  background: #2a6ca5;
  color: #bbbbbb;
}

.lens-footer-wrapper {
  padding: 40px 0 10px;
}

.lens-footer-widgets {
  margin: 0 0 50px;
}

.footer-logo {
  margin: 0 0 32px;
}

.footer-abou-info {
  margin: 0 0 31px;
}

.footer-abou-info p {
  margin: 0;
  color: white;
}

.footer-title {
  margin: 10px 0 30px;
  padding: 0 0 6px;
  position: relative;
  font-size: 22px;
  color: var(--lenslux-white);
  display: inline-block;
  font-weight: 600;
}

.footer-title:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 80px;
  background: var(--lenslux-white);
  bottom: 0;
}

.lens-foot-menu {
  margin: 0;
  padding: 0;
}

.lens-foot-menu li {
  list-style: none;
  position: relative;
  padding: 0 0 0 20px;
  margin: 0 0 10px;
}

.lens-foot-menu li a {
  /* color: #bbbbbb; */
  color: white;
}

.lens-foot-menu li:last-of-type {
  margin: 0;
}

.lens-foot-menu li:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 10px;
  background: #bbbbbb;
  left: 0;
  top: 11px;
}

.lens-foot-menu li:hover:before {
  background: var(--lenslux-primary-color);
}

.lens-foot-menu li:hover a {
  color: var(--lenslux-primary-color);
}

.lens-foot-menu li:hover {
  -webkit-transform: translateX(6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(6px);
  -o-transform: translateX(6px);
  transform: translateX(6px);
}

.lens-foot-menu li:hover:before,
.lens-foot-menu li:before,
.lens-foot-menu li,
.lens-foot-menu li:hover,
.lens-foot-menu li:hover a,
.lens-foot-menu li a {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

/* Socials CSS */

.lens-footer-social {
  margin: 20px 0 12px;
}

.lens-footer-social h5 {
  font-size: var(--lenslux-globle-font);
  font-weight: 600;
  margin: 0 0 11px;
}

.lens-dark-footer .lens-footer-social h5 {
  color: var(--lenslux-white);
}

.lens-social-icons {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  margin: 0;
}

.lens-social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 3px 3px 0;
  z-index: 1;
  position: relative;
}

.lens-social-icons a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  box-shadow: inset 0 0 0 35px rgb(255 255 255 / 6%);
  -webkit-transform: scale3d(0.9, 0.9, 1);
  transform: scale3d(0.9, 0.9, 1);
  -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3;
  transition: box-shadow 0.3s, transform 0.3s;
}

.lens-social-icons a > svg {
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
  fill: var(--lenslux-white);
}

.lens-social-icons a:hover > svg {
  transform: rotate(360deg);
}

.lens-social-icons a:hover > svg path {
  fill: var(--lenslux-primary-color);
}

.lens-social-icons li a:hover::after {
  box-shadow: inset 0 0 0 2px var(--lenslux-primary-color);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/***
 Copyright
****/

.lens-copyright-wrapper {
  width: 100%;
  background: var(--lenslux-copyright-bg);
  padding: 15px 0 13px;
}

.lens-copyright-wrapper p {
  color: var(--lenslux-white);
  margin: 0;
}

.lens-copyright-wrapper p a {
  color: var(--lenslux-primary-color);
}

.mb-30 {
  margin-bottom: 30px;
}

/**********************************
 	12. Page Title CSS Start
 **********************************/

.lens-page-title-wrapper {
  background: #f7e3c6;
  padding: 38px 30px 44px 0px;
  position: relative;
  color: var(--lenslux-title-color);
  background: url(../image/page-title.jpg);
  background-position: center center;
  /* text-align: center; */
}

.lens-page-title-section h1 {
  font-size: 52px;
  margin: 0 0 9px;
  font-weight: 700;
}

.lens-page-title-section ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
}

.lens-page-title-section ul li {
  list-style: none;
  position: relative;
  margin: 0 0 0 20px;
  padding: 0 0 0 20px;
}

.lens-page-title-section ul li:first-child {
  margin: 0;
  padding: 0;
}

.lens-page-title-section ul li a {
  color: var(--lenslux-title-color);
}

.lens-page-title-section ul li a:hover {
  color: var(--lenslux-title-color);
}

.lens-page-title-section ul li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--lenslux-primary-color);
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.lens-page-title-section ul li:first-child:before {
  content: unset;
}

/**********************************
 	 Error 404 CSS Start
 **********************************/
.lens-erorr-img {
  margin: 0 0 20px;
}
.lens-erorr-img img {
  max-height: 480px;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
}
/**********************************
 	Blog CSS Start
 **********************************/

.lens-blog-section {
  margin: 0 0 30px;
  background: var(--lenslux-white);
  box-shadow: var(--lenslux-shadow);
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}
.lens-blog-img {
  position: relative;
}

.lens-blog-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 0;
  width: 0;
  border-bottom: 15px solid var(--lenslux-white);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 0px solid transparent;
  z-index: 1;
}

.lens-blog-img img {
  width: 100%;
  min-height: 250px;
  max-height: 250px;
  object-fit: cover;
}

.lens-blog-cat {
  position: absolute;
  font-weight: 500;
  top: 15px;
  left: 0;
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
  padding: 10px 15px 9px;
  display: inline-block;
  text-align: center;
  min-height: auto;
  text-transform: uppercase;
  z-index: 1;
  font-size: var(--lenslux-font14);
}

.lens-blog-cat:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  display: inline-block;
  border-top: 20px solid var(--lenslux-primary-color);
  border-bottom: 20px solid var(--lenslux-primary-color);
  border-right: 10px solid transparent;
}

.lens-blog-img a {
  display: block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.lens-blog-img a:before,
.lens-blog-img a:after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 600ms ease 0s;
}

.lens-blog-section:hover .lens-blog-img a:after {
  background: var(--lenslux-alternate-bg) none repeat scroll 0 0;
  left: 50%;
  right: 50%;
  opacity: 0.1;
}

.lens-blog-data {
  padding: 26px 30px 30px;
}

.lens-blog-data h4 {
  font-size: 24px;
  margin: 0 0 7px;
  font-weight: 600;
}

.lens-blog-data p {
  margin: 0 0 18px;
}

.lens-blog-section .lens-blog-data h4:hover {
  color: var(--lenslux-primary-color);
}

.lens-blog-section,
.lens-blog-section:hover,
.lens-blog-section .lens-blog-data h4,
.lens-blog-section .lens-blog-data h4:hover {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

/**********************************
 	Blog Single Page CSS Start
 **********************************/

.lens-blog-header {
  margin: 34px 0 0;
}

.lens-blog-single-img {
  position: relative;
}

.lens-blog-single-img img {
  max-height: 500px;
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

.lens-blog-title {
  font-size: 28px;
  margin: 0 0 10px;
}

.lens-blog-info ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.lens-blog-info ul li {
  list-style: none;
  margin: 0 0 0 30px;
}

.lens-blog-info ul li:first-child {
  margin: 0;
}

.lens-blog-info ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--lenslux-title-color);
  font-weight: 600;
}

.lens-blog-info ul li a:hover {
  color: var(--lenslux-primary-color);
}

.lens-blog-info ul li a img {
  height: 20px;
  margin: 0 10px 0 0;
}

.lens-blog-info ul li:first-child a img {
  height: 16px;
}

blockquote {
  background-color: var(--lenslux-footer-bg);
  border-radius: 10px;
  padding: 21px 40px 23px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin: 43px 0 44px;
  color: var(--lenslux-white);
}

blockquote:before {
  content: "\f10d";
  font-size: 30px;
  color: var(--lenslux-white);
  padding-bottom: 12px;
  display: inline-block;
  font-family: "font awesome 5 free";
  font-weight: 900;
}

.lens-blog-data blockquote p {
  margin: 0;
}

.lens-blog-main-section .lens-blog-data {
  padding: 26px 0px 0;
}

.lens-input-wrap textarea {
  height: 150px;
}

.lens-comment-area > ul {
  padding: 0;
  margin: 0;
}

.lens-comment-area ul li {
  margin: 0 0 30px;
  list-style: none;
}

.lens-comment-holder {
  display: flex;
  flex-wrap: wrap;
  background: #f7f7f7;
  padding: 30px 30px 10px;
  border-radius: 10px;
  position: relative;
}
.lens-comment-detail {
  position: relative;
}

.lens-comment-user {
  width: 100px;
}

.lens-comment-detail {
  width: calc(100% - 100px);
  padding: 0 0 0 30px;
}

.lens-comment-date {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px;
  justify-content: space-between;
  color: var(--lenslux-primary-color);
  align-items: center;
}

.lens-user-name {
  margin: 0;
}

.lens-reply-btn {
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
  padding: 3px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.lens-reply-btn:hover,
.lens-reply-btn:focus {
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
}

.lens-comment-area ul ul {
  margin: 30px 0 0;
}

.lens-comment-user img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--lenslux-radius10);
}

.lens-comment-form {
  display: inline-block;
  width: 100%;
  margin: 0px 0px 74px;
}
.lens-comment-wrap {
  margin: 0 0 50px;
}

/**********************************
 	Shop Page  Start
 **********************************/

.lens-game-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 20px;
}

.lens-game-filter .lens-input-wrap {
  margin: 0 0 10px;
}

.lens-shop-search .search-box-container {
  margin: 0 0 10px;
}

.lens-shop-search .search-bar-inner {
  border: 1px solid var(--lenslux-border-color);
}

.lens-game-filter .nice-select {
  min-width: 160px;
}

/**********************************
 	 Contact page CSS Start
 **********************************/

.lens-contact-box {
  background: var(--lenslux-white);
  box-shadow: var(--lenslux-shadow);
  margin: 0 0 30px;
  padding: 20px 20px 10px;
  border-radius: 10px;
  border-left: 1px solid var(--lenslux-primary-color);
  border-right: 1px solid var(--lenslux-primary-color);
}

.lens-contact-box-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.lens-contact-box-inner span {
  width: 100px;
  display: inline-block;
  margin: 0 0 10px;
}

.lens-contact-box-inner span svg {
  height: 60px;
  fill: var(--lenslux-primary-color);
}

.lens-contact-info {
  margin: 0 0 10px;
  width: calc(100% - 100px);
}

.lens-contact-info p {
  margin: 5px 0 0;
  color: var(--lenslux-title-color);
}

.lens-contact-info h4 {
  margin: 0 0 0;
  font-weight: 600;
  font-size: 20px;
}

.lens-contact-title h4 {
  font-weight: 600;
  font-size: 22px;
}

textarea {
  height: 168px;
}

.lens-contact-title {
  margin: 0 0 34px;
  color: var(--lenslux-title-color);
}

.lens-contact-title h4,
.lens-contact-title p {
  margin: 0;
}

.lens-from-wrapper {
  background: var(--lenslux-white);
  box-shadow: var(--lenslux-shadow);
  border-radius: 10px;
  padding: 36px 40px 34px;
}

/**********************************
 	 Product Single Page CSS Start
 **********************************/

.lens-product-single-img img {
  width: 100%;
  min-height: 390px;
  max-height: 390px;
  object-fit: cover;
  object-position: center;
}

.product-sharing a svg {
  fill: var(--lenslux-title-color);
}

.product-sharing a::after {
  box-shadow: inset 0 0 0 35px rgb(0 0 0 / 6%);
}

.lens-main-img img {
  width: 100%;
  border: 1px solid var(--lenslux-border-color);
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.lens-product-img-thumb ul {
  margin: 30px -15px 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.lens-product-img-thumb ul li {
  list-style: none;
  margin: 0 0 10px;
  padding: 0 15px;
  width: fit-content;
  cursor: pointer;
}

.lens-product-img-thumb ul li img {
  border: 1px solid var(--lenslux-border-color);
  max-height: 200px;
  border-radius: 10px;
}
.lens-product-img-thumb ul li.active img {
  border-color: var(--lenslux-primary-color);
}
.lens-review-section {
  margin: 0 0 30px;
  background: var(--lenslux-alternate-bg);
  padding: 28px 30px 9px;
  border-radius: 10px;
}

.lens-comment-section {
  margin: 0 0 30px;
  background: var(--lenslux-alternate-bg);
  padding: 28px 30px 9px;
}

.lens-product-img .product-img {
  width: 100%;
  min-height: 230px;
  max-height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
/**/

.lens-product-summary-wrapper .lens-product-price {
  font-size: 42px;
  font-weight: 500;
  color: var(--lenslux-primary-color);
  display: block;
}
.lens-product-summary-wrapper .lens-product-price del {
  opacity: 0.6;
  font-weight: 400;
  color: var(--lenslux-font-color);
}
.lens-product-summary-wrapper .lens-product-rating {
  margin: 5px 0 20px;
}
.lens-product-details {
  background: #fbfbfb;
  padding: 30px;
  margin: 20px 0 0;
  border-radius: 5px;
}
.lens-buy-process .lens-icon svg {
  fill: var(--lenslux-primary-color);
}
/**/
.quantity-box {
  max-width: 90px;
  border: 1px solid var(--lenslux-border-color);
  background-color: var(--lenslux-white);
  display: flex;
}
input.quantity {
  border: 0;
  width: 100%;
  height: 30px;
  text-align: center;
  padding: 0;
}
.quantity-box {
  max-width: 85px;
  border: 1px solid var(--lenslux-border-color);
  background-color: var(--lenslux-white);
  display: flex;
  position: relative;
  padding-right: 30px;
  height: 40px;
  align-items: center;
}
.quantity-box span {
  width: 30px;
  height: 20px;
  border: 1px solid var(--lenslux-border-color);
  display: flex;
  justify-content: center;
  font-size: 16px;
  align-items: center;
  cursor: pointer;
  outline: 0;
  box-shadow: none;
  position: absolute;
  top: 0;
  border-top: 0;
  right: 0;
  border-right: 0;
}
.quantity-box span.quantity-plus {
  bottom: 0;
  top: auto;
  border-bottom: 0;
}
.lens-product-summary-wrapper .lens-product-details > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 15px;
  grid-gap: 20px;
}
.lens-product-details > div.lens-btn-wrap {
  margin: 30px 0 0;
}
.lens-product-details > div strong {
  min-width: 140px;
}
/**/

.lens-product-qauntity {
  display: flex;
  align-items: center;
  border: 1px solid var(--lenslux-input-border);
  border-radius: var(--lenslux-radius-comman);
  width: 180px;
  justify-content: center;
  text-align: center;
  margin: 0 20px 20px 0;
  background: var(--lenslux-alternate-bg);
}

.quantity-icon {
  width: 50px;
  height: 50px;
  background: transparent;
  position: relative;
  min-width: auto;
  padding: 0;
  font-size: 24px;
  border-left: 0;
  border: none;
  line-height: 50px;
  cursor: pointer;
}

.lens-product-qauntity input.quantity {
  border: none;
  border-radius: 0;
  background: transparent;
  border-left: 1px solid var(--lenslux-border-color);
  border-right: 1px solid var(--lenslux-border-color);
  height: 48px;
  width: 80px;
  margin: auto 0;
  padding: 0 5px;
  text-align: center;
  line-height: 50px;
}

.lens-buy-process {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.lens-wishlist-btn {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lenslux-border-color);
  border-radius: var(--lenslux-radius-comman);
  background: var(--lenslux-alternate-bg);
  padding: 10px 20px;
  font-weight: 700;
}

.lens-wishlist-btn img {
  height: 20px;
  margin: 0 10px 0 0;
}

.lens-cart-page-wrapper .lens-table tfoot tr th:last-of-type {
  text-align: right;
}

.product-main-description li {
  margin: 0 0 10px;
}

/* Tab Products*/

.lens-product-details .nav.nav-tabs {
  border-bottom: 1px solid var(--lenslux-border-color);
  margin: 0 0 30px;
}

.lens-product-details .nav.nav-tabs .nav-link {
  border-color: var(--lenslux-border-color);
  background: var(--lenslux-alternate-bg);
  color: var(--lenslux-title-color);
  margin: 0;
}

.lens-product-details .nav.nav-tabs .nav-link.active {
  border-color: var(--lenslux-primary-color);
  background: var(--lenslux-primary-color);
  color: var(--lenslux-white);
}

.lens-single-product-wrapper {
  position: relative;
  margin: 0 0 60px;
}

.lens-input-wrap select {
  height: 50px;
  padding: 0 20px;
  color: var(--lenslux-font-color);
  width: 100%;
  background: var(--lenslux-input-bg);
  border: 1px solid var(--lenslux-border-color);
}

/* Table CSS */

.lens-table {
  width: 100%;
  background: var(--lenslux-white);
  box-shadow: var(--lenslux-shadow);
}

.lens-table thead th {
  color: var(--lenslux-white);
  font-weight: 500;
}

.lens-table th,
.lens-table td {
  padding: 10px 20px;
  border: 1px solid var(--lenslux-border-color);
}

.lens-table thead {
  background: var(--lenslux-primary-color);
}

.lens-remove-product {
  background: #ff5400;
  width: 30px;
  display: inline-block;
  height: 30px;
  text-align: center;
  line-height: 29px;
  border-radius: 50%;
}

/* Sidebar Widget CSS */

.lens-widgets {
  margin: 0 0 30px;
  background: var(--lenslux-white);
  box-shadow: var(--lenslux-shadow);
  padding: 26px 30px 25px;
}

.lens-widgets > p {
  margin: 0 0;
}

.lens-widgets .lens-widget-title {
  margin: 0 0 20px;
  padding: 0 0 6px;
  position: relative;
  font-size: 24px;
  display: inline-block;
  font-weight: 600;
}

.lens-widgets .lens-widget-title:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background: var(--lenslux-white);
  bottom: 0;
}

.lens-product-information {
  padding: 0;
  margin: 0;
}

.lens-product-information li {
  width: 100%;
  list-style: none;
  margin: 0;
}

.lens-product-information li + li {
  margin: 20px 0 0;
}

.lens-product-information li {
  width: 100%;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: var(--lenslux-title-color);
  text-transform: capitalize;
  font-size: 16px;
}

.lens-product-information li span:last-of-type {
  color: var(--lenslux-primary-color);
  font-weight: 700;
}

/**********************************
 	Cart Page CSS  Start
 **********************************/

.lens-remove-product img {
  height: 14px;
}

.text-right {
  text-align: right;
}

table .lens-product-thumb {
  max-height: 60px;
  max-width: 60px;
  height: 60px;
  width: 60px;
  object-fit: cover;
  margin: 0 20px 0 0;
  border: none;
  border-radius: var(--lenslux-radius-comman);
}

.lens-primary {
  color: var(--lenslux-primary-color);
}

.lens-price {
  color: var(--lenslux-primary-color);
  margin: 0;
  font-size: 16px;
}

/**********************************
 	Wishlist Page CSS  Start
 **********************************/

.lens-wishlist-page-wrapper .lens-btn {
  white-space: nowrap;
  padding: 8px 15px;
  min-width: auto;
}

/* Pagination CSS */

.lens-pagination-wrap .pagination .page-link {
  border: 0;
  background: #000;
  margin: 0 5px;
  padding: 10px 15px;
  color: var(--lenslux-white);
}

.page-link:focus {
  color: var(--lenslux-white);
  box-shadow: none;
}

.lens-pagination-wrap .pagination .page-link:hover,
.lens-pagination-wrap .pagination li.active {
  background: var(--lenslux-primary-color);
}

.lens-pagination-wrap .pagination .dots,
.lens-pagination-wrap .pagination .dots:hover {
  background: transparent;
  cursor: inherit;
  color: var(--lenslux-title-color);
}

.lens-pagination-wrap .pagination li.active {
  border: 0;
  margin: 0 5px;
  padding: 10px 15px;
  color: var(--lenslux-white);
}

.lens-pagination-wrap .pagination {
  margin: 20px 0 0;
}

/**********************************
 	My Account Page CSS  Start
 **********************************/

.lens-account-section .lens-from-wrapper {
  padding: 50px 40px 44px;
}

.lens-account-msg .lens-read-more {
  color: var(--lenslux-title-color);
}

.lens-account-msg .lens-read-more:hover {
  color: var(--lenslux-primary-color);
}

.lens-account-msg {
  margin: 20px 0 0px;
  font-weight: 500;
}

.lens-account-section .lens-from-wrapper .lens-account-msg {
  margin: 20px 0 20px;
  text-align: center;
}

.lens-checkbox input {
  display: none;
}

.lens-checkbox span {
  margin: 0;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}

.lens-checkbox label {
  line-height: 23px;
}

.lens-checkbox span:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--lenslux-border-color);
  border-radius: 2px;
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

.lens-checkbox span:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 10px;
  height: 5px;
  border-left: 3px solid var(--lenslux-border-color);
  border-bottom: 3px solid var(--lenslux-border-color);
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
  opacity: 0;
}

.lens-checkbox input:checked ~ span:after {
  opacity: 1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.lens-checkbox input:checked ~ span:before {
  background-color: var(--lenslux-primary-color);
  border: 1px solid transparent;
}

.lens-checkbox input:checked ~ span {
  color: var(--lenslux-primary-color);
}

/* Radio Button */

.radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.radio label {
  display: inline-block;
  position: relative;
  padding-left: 6px;
  cursor: pointer;
}

.radio input[type="radio"] {
  opacity: 0;
  width: 20px;
}

.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  margin-left: -20px;
  border: 1px solid var(--lenslux-border-color);
  border-radius: 50%;
  -webkit-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}

.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 9px;
  height: 9px;
  left: 5px;
  top: 5px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: var(--lenslux-font-color);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33),
    -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}

.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.radio-primary input[type="radio"]:checked + label::before {
  border-color: var(--lenslux-primary-color);
}

.radio-primary input[type="radio"]:checked + label::after {
  background-color: var(--lenslux-primary-color);
}

.radio-inner {
  border: 1px solid var(--lenslux-border-color);
  padding: 20px 20px;
  display: inline-block;
  width: 100%;
  margin: 0 0 30px;
  border-radius: 6px;
  cursor: pointer;
}

.radio-inner .media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.radio-inner .media-body {
  -ms-flex: 1;
  flex: 1;
  padding-left: 10px;
}

.radio-inner h6 {
  margin: 0;
}

.lens-modal-btn-wrap button.lens-btn {
  margin: 10px 0 0;
}

/* Modal Scaling */

.fade-scale {
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  background: rgb(169 21 255 / 24%);
  transition: all 0.25s linear;
}

.fade-scale.show {
  opacity: 1;
  transform: scale(1);
}

.fade-scale .modal-dialog {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) !important;
}

.modal-header button.close {
  background: transparent;
  font-size: 28px;
  padding: 0;
  border: 0;
  color: var(--lenslux-primary-color);
  line-height: 1;
}

.modal-header {
  border-bottom: 1px solid var(--lenslux-border-color);
}

.modal-dialog .nav {
  justify-content: center;
  margin: 0 0 30px;
}

.modal-dialog .lens-input-feilds {
  margin: 0 0 20px;
}

.lens-modal-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lens-btn-dark {
  background: var(--lenslux-black);
}

.lens-btn-dark:before {
  background: var(--lenslux-white);
}

.modal-dialog .nav .nav-link {
  background: transparent;
  margin: 0 10px;
  padding: 0;
  color: var(--lenslux-white);
  font-weight: 600;
  text-transform: uppercase;
}

.modal-dialog .nav .nav-link.active {
  color: var(--lenslux-primary-color);
}

.modal-title {
  font-weight: 600;
  font-size: 18px;
}

.modal {
  background: rgb(0 0 0 / 60%);
}

.modal-header {
  padding: 23px 40px 22px;
}

/********************************************************
     PreLoader CSS
*******************************************************/

.preloader {
  background-color: var(--lenslux-white);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483647;
  width: 100%;
  height: 100%;
}

.status {
  background-position: center center;
  background-repeat: no-repeat;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

/*****************************************
     About Us CSS
******************************************/

.lens-about-section p {
  margin: 0 0 44px;
}

.lens-play-btn {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--lenslux-primary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 112px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.popup-youtube {
  position: relative;
  color: var(--lenslux-white);
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  background: transparent;
  border-radius: 50%;
  font-size: 30px;
}

.popup-youtube i {
  color: var(--lenslux-white);
}

.btn-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background-color: var(--lenslux-primary-color);
  opacity: 0;
  z-index: -1;
}

.btn-wave {
  -webkit-animation: sonarWave 1.5s linear infinite;
  animation: sonarWave 1.5s linear infinite;
}

@-webkit-keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.lens-about-img {
  position: relative;
  z-index: 0;
}
.lens-about-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  right: 0;
  background: rgb(0 0 0 / 60%);
}
.lens-about-img img {
  width: 100%;
  object-fit: cover;
  height: 580px;
  border-radius: 10px;
}

/*****************************************
     Achievement Us CSS
******************************************/

.lens-achievement-section {
  background: var(--lenslux-white);
  box-shadow: var(--lenslux-shadow);
  border-radius: 10px;
  text-align: center;
  padding: 30px 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  transition: all 0.3s linear;
}

.lens-achievement-section:hover {
  transform: translateY(-10px);
}
.lens-achievement-title h4 {
  font-style: italic;
  font-size: 36px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 42px;
}

.lens-achievement-title h4 span {
  color: var(--lenslux-primary-color);
}

.lens-achievement-info h4 {
  font-size: 28px;
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--lenslux-primary-color);
}

.lens-achievement-section span img {
  height: 60px;
  width: 60px;
  transition: all 0.6s ease-in-out;
}
.lens-achievement-section:hover.lens-achievement-section span img {
  transform: scale(-1) rotate(180deg);
}
.lens-achievement-section span {
  display: block;
  margin: 0 0 11px;
}

.lens-achievement-info p {
  margin: 0;
  color: var(--lenslux-title-color);
  font-size: 16px;
  font-weight: 600;
}

/**********************************
 	Testimonials CSS Start
 **********************************/

.lens-testimonials-wrapper {
  padding: 76px 0 72px;
}

.testimonial-swiper-wrapper {
  position: relative;
  padding-bottom: 57px;
}

.lens-testimonials-section {
  position: relative;
  padding: 30px 30px;
  background: var(--lenslux-alternate-bg);
  border: 1px solid var(--lenslux-border-color);
  border-radius: 10px;
}

.lens-testimonials-section:before {
  content: "";
  position: absolute;
  height: 60px;
  width: 60px;
  top: 50px;
  right: 30px;
  background: url(../image/quote.svg);
  background-position: center;
  background-size: initial;
  z-index: 1;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  opacity: 0.2;
  filter: invert(1);
}

.lens-testimonials img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 30px rgb(0 0 0 / 8%);
  border: 4px solid var(--lenslux-border-color);
}

.lens-rating ul {
  padding: 0;
  margin: 0;
}

.lens-rating ul li {
  list-style: none;
  color: #f7a032;
  display: inline-flex;
}

.lens-testimonials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 21px;
}

.lens-testimonials div {
  width: calc(100% - 100px);
  padding: 0 0 0 20px;
}

.lens-testimonials div p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--lenslux-primary-color);
}

.lens-testimonials div h4 {
  font-size: 18px;
  margin: 0 0 5px;
  font-weight: 600;
}

.swiper-pagination {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.swiper-pagination span {
  background: var(--lenslux-primary-color);
  opacity: 0.6;
  height: 10px;
  width: 30px;
  transform: scale(0.8);
  cursor: pointer;
  border-radius: 10px;
}

.swiper-pagination span.swiper-pagination-bullet-active {
  background: var(--lenslux-primary-color);
  transform: scale(1);
  opacity: 1;
}

/**********************************
 	Partner CSS Start
 **********************************/

.lens-partner-section img {
  height: 100px;
}

.lens-partner-section {
  margin: 0 0 30px;
  text-align: center;
  background: var(--lenslux-white);
  box-shadow: var(--lenslux-shadow);
  border-radius: 10px;
  padding: 30px 30px;
}

.lens-partner-section:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.lens-partner-section,
.lens-partner-section:hover {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  -o-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

/* FAQ */
body .accordion-item {
  border: 0;
  margin: 0 0 20px;
  background: #ffffff;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgb(0 0 0 / 8%);
}
.accordion-button {
  color: var(--lenslux-title-color);
  background-color: var(--lenslux-white);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--lenslux-primary-color);
  background-color: transparent;
  border: 0 !important;
  box-shadow: none;
}
.accordion-body {
  padding: 0 20px 20px;
}
.accordion-button:focus {
  box-shadow: unset;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../image/down-arrow.svg);
}

/* Term condition proivacy policy */

.lens-privacy-term-section {
  background: #f9f8f8;
  padding: 30px 30px 20px;
  margin: 0 0 30px;
  border-radius: 10px;
}

.lens-privacy-term-title {
  margin: 0px 0 30px;
  padding: 0 0 6px;
  position: relative;
  font-size: 22px;
  display: inline-block;
  font-weight: 600;
}

.lens-privacy-term-title:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background: var(--lenslux-title-color);
  bottom: 0;
}

/* CTA */
.lens-cta-wrapper {
  background: #ffe7d6;
  background: url(../image/cta.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.lens-cta-img {
  text-align: center;
}
.lens-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
}
.lens-cta-content .lens-section-title {
  text-align: left;
  margin: 0 0 15px;
}
.lens-cta-content p {
  margin: 0 0 30px;
  font-size: 16px;
}
.lens-cta-content .countdown-3 {
  justify-content: flex-start;
  display: inline-flex;
  grid-gap: 10px;
  text-align: center;
  margin: 0 0 30px;
  padding: 0;
}
.lens-cta-content .countdown-3 .label {
  width: 100%;
  text-align: center;
  margin: 0;
  color: var(--lenslux-title-color);
}
.lens-cta-content .countdown-3 .digit {
  background: transparent;
  color: var(--lenslux-title-color);
  height: auto;
  min-width: auto;
}
.lens-cta-content .countdown-3 > div {
  background: var(--lenslux-white);
  padding: 15px 10px;
  border-radius: 6px;
  margin: 0;
}
.lens-cta-content .countdown-3 .amount {
  font-size: 24px;
}

/* Product Grid */
.lens-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  margin: 50px 0 30px;
}
.lens-prod-box {
  background: var(--lenslux-white);
  padding: 8px;
  box-shadow: var(--lenslux-shadow);
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  gap: 10px;
}
.lens-prod-box:hover {
  transform: translateY(-10px);
}
.lens-prod-box:hover,
.lens-prod-box {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}
.lens-prod-box .lens-product-info .lens-product-price-sales {
  margin: 8px 0 0;
}
.lens-prod-box .lens-product-info .lens-product-price-sales > * {
  width: 100%;
  margin: 0;
}
.lens-prod-img {
  width: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 5px;
  padding: 10px;
  height: 100px;
}
.lens-prod-box .lens-product-info {
  padding: 7px 10px 5px;
  width: calc(100% - 110px);
}
.lens-product-section.lens-prod-horizontal {
  display: flex;
  align-items: center;
}
.lens-product-section.lens-prod-horizontal .lens-product-img .product-img {
  min-height: 150px;
  max-height: 150px;
  max-width: 150px;
  width: 100%;
}
.lens-product-section.lens-prod-horizontal .lens-product-info .lens-product-price-sales {
  flex-direction: column-reverse;
  align-items: flex-start;
  grid-gap: 5px;
}
.lens-product-section.lens-prod-horizontal .lens-product-info .lens-product-price {
  width: 100%;
}
.lens-advertisement-wrapper {
  padding: 0 0px;
}

/**********************************
    Call to Action CSS Start
 **********************************/
.lens-call-to-action-wrapper {
  background: var(--lenslux-alternate-bg);
  background-image: radial-gradient(rgb(237 236 236) 2px, transparent 2px);
  background-size: 20px 20px;
}
.lens-call-to-action-section {
  margin: 0 0 30px;
}
.lens-call-to-action-section:hover {
  transform: translateY(-10px);
}
.lens-call-to-action-section,
.lens-call-to-action-section:hover {
  -webkit-transition: var(--lenslux-transition);
  -moz-transition: var(--lenslux-transition);
  -ms-transition: var(--lenslux-transition);
  transition: var(--lenslux-transition);
}

.lens-call-to-action-section-inner span {
  display: inline-block;
  margin: 0 0 16px;
}

.lens-call-to-action-section-inner span img {
  height: 50px;
}

.lens-call-to-action-section-inner h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.lens-call-to-action-section-inner p {
  margin: 3px auto;
  max-width: 160px;
}
.lens-cta-content {
  display: flex;
  flex-wrap: wrap;
}
.swiper-container {
  width: 100%;
  overflow: hidden;
}

.lens-banner-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.lens-banner-box img {
  width: 100%;
}
.lens-banner-box::before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 0;
}
.lens-banner-box::after {
  background: #000 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 0;
}
.lens-banner-box:hover::before {
  height: 100%;
  opacity: 0.3;
  width: 100%;
}
.lens-banner-box:hover::after {
  height: 100%;
  opacity: 0.3;
  width: 100%;
}

/**/

.lens-product-larg-description {
  padding-bottom: 80px;
}
.lens-review-section {
  background-color: var(--lenslux-white);
}
.pdtab-addinfo > li p span {
  font-weight: 700;
  color: var(--lenslux-title-color);
}
.nav-tabs li {
  padding-right: 30px;
}
.lens-product-details .nav.nav-tabs .nav-link {
  border: none;
  background-color: transparent;
  border: none;
  font-weight: 500;
  position: relative;
  padding: 26px 0px 14px 0px;
  display: inline-block;
}

.lens-product-details .nav.nav-tabs .nav-link.active {
  background-color: transparent;
  color: var(--lenslux-title-color);
}
.lens-product-details .nav.nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: var(--lenslux-primary-color);
  -webkit-transition: all 0.3s linear 0s;
  -moz-transition: all 0.3s linear 0s;
  -ms-transition: all 0.3s linear 0s;
  -o-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.lens-product-details .nav.nav-tabs .nav-link.active:after {
  width: 86%;
}
/**/
.lens-about-wrapper .lens-section-title {
  text-align: left;
}
.lens-about-img img {
  height: 500px;
}
.lens-about-section {
  position: relative;
  padding: 20px 0 20px 20px;
}
.lens-about-section::before {
  content: "";
  position: absolute;
  left: 0;
  background: var(--lenslux-yellow);
  z-index: 0;
  max-width: 400px;
  width: 100%;
  top: 0px;
  bottom: 0px;
  border-radius: 6px 6px;
}
/* correction css  */
.lens-trending-wrapper {
  padding-bottom: 80px;
}
.lens-faq-wrapper {
  padding-bottom: 60px;
}
.lens-social-icons a {
  color: #fff;
}
/**********************************
 	12. Responsive CSS Start
 **********************************/

@media (min-width: 768px) {
  .login-register .modal-body {
    padding: 40px 40px 34px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
  .close-btn {
    display: none;
  }
  /*Header*/
  .menu-btn-wrap > a.menu-btn {
    display: none;
  }
  .main-menu .sub-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--lenslux-alternate-bg);
    padding: 10px 0;
    box-shadow: var(--lenslux-shadow);
    transform: scaleY(0);
    transform-origin: top;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    display: block;
    min-width: 180px;
  }
  .has-sub-menu:hover .sub-menu {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
  .has-sub-menu .sub-menu .sub-menu {
    left: unset;
    right: 190px;
    top: 0;
    transform: scaleY(0);
    transform-origin: top;
    visibility: hidden;
    opacity: 0;
  }
  .has-sub-menu .sub-menu .has-sub-menu:hover .sub-menu {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
  .has-sub-menu .sub-menu .sub-menu:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 12px solid var(--lenslux-alternate-bg);
    border-bottom: 10px solid transparent;
    right: -12px;
  }
  .has-sub-menu .sub-menu,
  .has-sub-menu:hover .sub-menu {
    -webkit-transition: var(--lenslux-transition);
    -moz-transition: var(--lenslux-transition);
    -ms-transition: var(--lenslux-transition);
    -o-transition: var(--lenslux-transition);
    transition: var(--lenslux-transition);
  }
  .lens-reply-btn {
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media (min-width: 1440px) {
  .lens-counter-wrapper .container-fluid,
  .lens-header-wrapper .container-fluid,
  .lens-banner-wrapper .container-fluid {
    max-width: 1420px;
  }
  .container {
    max-width: 1420px;
  }
}

@media (max-width: 1439.98px) {
  .main-menu ul > li > a {
    padding: 20px 15px;
  }
}

@media (min-width: 1780px) {
  .has-custom-container .container-fluid {
    max-width: 1740px;
  }
}

@media (max-width: 1199.98px) {
  .main-menu > ul {
    background: var(--lenslux-alternate-bg);
    position: fixed;
    left: -340px;
    top: 0;
    bottom: 0;
    width: 320px;
    height: 100%;
    text-align: left;
    z-index: 98;
    background-attachment: fixed;
    transition: 0.3s;
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid var(--lenslux-border-color);
    display: block;
  }
  .main-menu.open-menu > ul {
    left: 0;
  }
  .main-menu .has-sub-menu:before,
  .main-menu .has-sub-menu:after {
    position: absolute;
    bottom: 0;
    content: "";
    background: var(--lenslux-primary-color);
  }
  .main-menu .has-sub-menu:after {
    right: 21px;
    width: 12px;
    height: 2px;
    top: 23px;
  }
  .main-menu .has-sub-menu:before {
    right: 26px;
    width: 2px;
    height: 12px;
    top: 18px;
  }
  .main-menu > ul::-webkit-scrollbar {
    width: 3px;
  }
  .main-menu > ul::-webkit-scrollbar-track {
    background-color: var(--lenslux-border-color);
  }
  .main-menu > ul::-webkit-scrollbar-thumb {
    background-color: var(--lenslux-primary-color);
  }
  .main-menu .sub-menu {
    display: none;
  }
  .main-menu ul > li > a {
    padding: 15px 20px;
  }
  .main-menu > ul > li {
    border-bottom: 1px solid var(--lenslux-border-color);
  }
  .main-menu .sub-menu > li > a {
    width: auto;
  }
  .has-sub-menu > .sub-menu > li > a:before {
    content: unset;
  }
  .main-menu .sub-menu {
    background: var(--lenslux-main-bg);
    padding-left: 20px;
  }
  .main-menu > ul > li.has-sub-menu.open:before {
    content: unset;
  }
  /* Newsletter*/
  .lens-input-wrap input {
    margin: 0 0 20px;
  }
  .lens-from-wrapper .lens-input-wrap input {
    margin: 0;
  }
  .lens-contact-box-inner span {
    width: 80px;
  }
  .lens-contact-info {
    width: calc(100% - 80px);
  }
  .lens-blog-data h4 {
    font-size: 20px;
  }
  .lens-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lens-banner-info h2 {
    font-size: 48px;
  }
  .lens-filter-menu button {
    min-width: 80px;
    padding: 6px 10px;
  }
}

@media (max-width: 991.98px) {
  /* Newsletter Modal CSS */
  .lens-newsletter-img img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .lens-newsletter-img {
    margin: 0 0 30px;
  }
  .lens-newsletter-info {
    padding: 0px 30px 30px;
  }
  .timer-close-btn {
    position: unset;
  }
  .lens-banner-info h2 {
    font-size: 32px;
  }
  .lens-banner-wrapper {
    background-position: left center;
  }
  .lens-banner-img {
    margin: 30px 0 0;
  }
  .lens-banner-img img {
    max-height: 380px;
  }
  .lens-cta-img {
    margin: 0 0 30px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
}

@media (max-width: 767.98px) {
  .lens-product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  /* Header Logo */
  .logo {
    font-size: 14px;
  }
  .menu-btn-wrap > a {
    width: 40px;
    height: 40px;
    padding: 10px 10px;
    margin: 0 0 0 10px;
  }
  .menu-btn-wrap .menu-btn {
    margin: 0 0 0 10px;
  }
  .menu-btn span {
    margin: 2px 0;
  }
  .main-menu > ul {
    width: 250px;
  }
  /* Footer */
  .lens-footer-menu ul li {
    padding: 0 10px;
    width: 100%;
    margin: 0 0 20px;
  }
  .lens-footer-menu ul li:before {
    content: unset;
  }
  /* Newsletter Modal CSS */
  .lens-newsletter-img {
    display: none;
  }
  .lens-newsletter-info {
    padding: 30px 30px;
  }
  .lens-from-wrapper {
    padding: 26px 20px 24px;
  }
  .lens-page-title-section h1 {
    font-size: 38px;
  }
  .lens-comment-form {
    padding: 24px 20px 24px;
  }
  .lens-comment-detail {
    width: 100%;
    padding: 30px 0 0;
  }
  .lens-blog-title {
    font-size: 20px;
  }
  .language-transltor,
  .lens-user-login-btn {
    margin-left: 10px;
  }
  /**/
  .lens-product-img-thumb ul {
    margin: 30px 0px 0;
  }
  .lens-product-img-thumb ul li {
    margin: 0 0 10px;
    padding: 0 5px;
  }
  .lens-partner-section img {
    height: 60px;
  }
  .lens-play-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
  }
  .lens-play-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  .menu-btn-wrap > a {
    width: 35px;
    height: 35px;
    padding: 8px 8px;
    margin: 0 0 0 4px;
  }
  .menu-btn-wrap .menu-btn {
    margin: 0 0 0 4px;
  }
  .lens-main-title .lens-view-btn {
    display: block;
    padding-left: 0;
    width: 100%;
  }
  .lens-main-title:before {
    content: unset;
  }
  .lens-page-title-section h1 {
    font-size: 28px;
  }
  /* header */
  .user-btn span:not(.lens-icon) {
    display: none;
  }
  .wishlist-btn {
    margin: 0 20px 0 0px;
  }
  .lens-logo {
    text-align: center;
    margin: 0 0 20px;
  }
  .lens-logo img {
    max-height: 30px;
  }
  .main-menu-container {
    justify-content: center;
  }
  .lens-section-title h4 {
    font-size: 22px;
  }
  .lens-filter-menu {
    justify-content: center;
  }
  .lens-product-section.lens-prod-horizontal .lens-product-img .product-img {
    min-height: 100px;
    max-height: 100px;
    max-width: 100px;
  }
  .lens-product-icons ul li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
  .lens-testimonials-section:before {
    display: none;
  }
  .lens-achievement-title h4 {
    font-size: 28px;
  }
  .lens-about-img img {
    height: 300px;
  }
}

.login-bottom {
  position: absolute;
  bottom: 20px;
  text-align: center;
  width: 100%;
  color: #515151;
  font-family: "Microsoft YaHei";
  color: white;
}

.login-bottom a {
  color: white;
}

.lens-header-wrapper-top {
  position: fixed !important;
  top: 0;
  text-align: center;
  width: 100vw;
  margin: 0 auto;
  color: #515151;
  font-family: "Microsoft YaHei";
  color: white;
  background-color: white;
  z-index: 999;
  box-shadow: 0 6px 6px #f1f1f1;
  /* border: 1px solid  #514d4d; */
}

.header-wrapper {
  width: 90%;
  margin: 0 auto;
}

.main-wrapper {
  margin-top: 150px;
}

.modal-dialog {
  max-width: 600px;
}

.modal-body {
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.lens-section-conten-font {
  font-size: 18px;
}

/* 自定义样式 */
.custom-padding-left {
  /* padding-left: 220px; */
}

.responsive-image {
  width: 80%;
  /* margin-top: 0; */
  border-radius: 10px;
}
.my-responsive-box {
  padding: 30px;
  margin-bottom: 100px;
}
.qrcode-tip{
  padding-top: 20px;
  color: white;
}

.logo-img-qr{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .my-responsive-box {
    padding: 30px;
    margin-bottom: 10px;
  }
  .responsive-image {
    width: 100%;
  }
  .main-wrapper {
    margin-top: 80px;
  }
  .logo-img-qr{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .qrcode-tip{
    padding-top: 20px;
    /* padding-left: 40%; */
    color: white;
  }
}
