:root {
  --main-color: #000;
  --dark-blue: #000;
  --heading-color: #000;
  --text-color: #1E1E1E;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Open Sans", sans-serif;
  --heading-font: "Open Sans", sans-serif;
  --button-font: "Open Sans", sans-serif;
  --bold-font: "Open Sans", sans-serif;
}

/* @font-face {
  font-family: GlacialIndifference-Bold;
  src: url(../fonts/GlacialIndifference-Bold.woff);
}

@font-face {
  font-family: GlacialIndifference-Regular;
  src: url(../fonts/GlacialIndifference-Regular.woff);
} */

html,
body {
  font-family: var(--main-font);
}

a {
  text-decoration: none;
}

.container-fluid {
  padding: 0 4%;
}

@media (min-width:1550px) {
  .container {
    max-width: 1500px;
  }
}

h1,
h2,
h3,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  font-family: var(--main-font);
}
#button {
  display: inline-block;
  background-color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}
#button::after {
  content: "\f062";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 30px;
  color: #000;
}
#button:hover {
  cursor: pointer;
  background-color: var(--main-color);
  color: #fff;
}
#button:active {
  background-color: var(--main-color);
  color: #fff;
}
#button.show {
  opacity: 1;
  visibility: visible;
}


.mobile_ftr{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  padding: 10px;
  border-top: 1px solid rgb(0 0 0 / 10%);
  display: none;
	z-index:99;
}
.mobile_ftr ul{
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  margin-bottom: 0;
}
.mobile_ftr ul li a{
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #000;
}
.mobile_ftr ul li a i{
  font-size: 18px;
  color: var(--main-color);
}
.mobile_ftr ul li a span{
  font-size: 14px;
}



.desktop_view{
  display: block;
}
.mobile_view{
  display: none;
}
.free_shipping {
  background: var(--black-color);
  text-align: center;
}

.free_shipping h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-weight: 600;
  padding: 3px;
}

.main_menu_hdr {
  background: #fff;
  z-index: 99;
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  padding: 5px 0;
}

.left_top {
  display: flex;
  justify-content: flex-start;
}

.main_menu {
  display: block;
  position: relative;
  background: transparent;
  padding: 0px;
  border-radius: 15px;
}

.main_menu .navigation.navbar {
  padding: 0;
}

.container-menu {
  width: 80%;
  margin: 0 auto;
}

.logo {
  display: block;
  padding: 0px 0px;
}

.logo a {
  position: relative;
  z-index: 1;
  width: 70px;
  display: inline-block;
}

.logo a img {
  width: 100%;
}

.hdr_icon {
  padding: 0 10px;
	position:relative;
}

.get_free .selectpicker {
  border: 1px solid #ccc;
  padding: 4px;
  border-radius: 5px;
}

.get_free .selectpicker:focus {
  border: 1px solid #ccc;
  outline: none;
}

.banner_sec {
  width: 100%;
  background-size: cover;
  position: relative;
}

/* .slide .slide__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0%);
} */
.slider,
.slide {
  height: 450px;
}

.slide {
  position: relative;
  transition: 1s;
}

.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  object-fit: cover;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33%;
}

.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #FFF;
}

.slide .slide__content--headings h4 {
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  letter-spacing: 0px;
}

.slide .slide__content--headings h5 {
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white-color);
}

.w_150 {
  width: 250px;
}

.slide .slide__content--headings .title {
  font-size: 65px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--white-color);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.slide .slide__content--headings h3 {
  font-size: 100px;
  font-weight: 700;
  font-family: "Qwitcher Grypen", cursive;
  color: var(--white-color);
  line-height: 0.5;
}

.slide .slide__content--headings .title span {
  color: var(--text-color);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  display: block;
  padding: 0px;
}

.slide__content--headings {
  position: relative;
}

.slidebottomleft {
  animation: fadeInUp 1.5s both 1.5s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  top: 50%;
  right: 5%;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 50px;
  transform: translate(0%, -50%);
}

.slick-dots li {
  position: relative;
  display: flex;
  margin: 0px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li {
  height: 50px;
  width: 50px;
  padding: 0px 5px;
}

.stick-dots .slick-dots li button {
  color: #000;
  background: none;
  border: none;
  margin: 0px 0px;
  font-size: 20px;
  font-family: var(--text-font);
  position: relative;
  width: 25px;
  height: 25px;
}

.slick-dots li.slick-active button {
  color: var(--main-color);
}

.slick-dots li.slick-active button::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: var(--main-color);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.slick-dots li.slick-active button::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--main-color);
  width: 100%;
  height: 2px;
  border-radius: 50%;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  /* color: transparent;
  opacity: 1;
  width: 20px;
  height: 2px;
  border-radius: 0;
  background: #D9D9D9; */
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

.slick-nav {
  --active: #000;
  --border: rgba(0, 0, 0, .12);
  width: 60px;
  height: 60px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 60px);
}

.banner__slider.banner_sec .slick-nav.prev-arrow {
  left: auto;
  top: 52%;
  right: 3%;
}

.slick-nav.prev-arrow {
  left: 0%;
  transform: scaleX(-1);
  z-index: 1;
}

.slick-nav.next-arrow {
  left: auto;
  right: 0%;
}
.banner__slider.banner_sec .slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.banner__slider.banner_sec .slick-nav i:before {
  border-left: 8px solid #000;
}

.slick-nav i:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  /* background: var(--active); */
  margin: -6px 0 0 -3px;
  display: block;
  transform-origin: 0px 50%;
  border-top: 6px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #000;
}

.banner__slider.banner_sec .slick-nav:hover i:before {
  border-left: 8px solid var(--main-color);
}

.slick-nav:hover i:before {
  border-left: 8px solid var(--main-color);
}

.slick-nav:before {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  background: rgb(255 255 255 / 50%);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}

.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}

/*-------- button Effect-------*/
.red_btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 14px 35px;
  border-radius: 6px;
  position: relative;
  color: var(--white-color);
  background: var(--main-color);
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
}

.red_btn span {
  z-index: 1;
  position: relative;
  letter-spacing: 3px;
}

.red_btn:before {
  content: "";
  height: 0;
  width: 100%;
  transform: translateX(0%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  border-radius: 0px;
  transition: all ease-in 0.3s;
}

.red_btn:hover:before {
  bottom: 0;
  transition: all ease-in 0.3s;
  height: 100%;
}

.red_btn:hover span {
  color: var(--white-color);
}

.red_btn.red_border {
  color: var(--white-color);
  background: transparent;
  border: 1px solid var(--white-color);
}

.red_btn.red_border_black {
  color: var(--black-color);
  background: transparent;
  border: 1px solid var(--black-color);
}

.red_btn.white_bg {
  color: var(--black-color);
  background: rgb(255 255 255 / 50%);
}

.red_btn.white_bg:before {
  background: rgb(255 255 255 / 100%);
}

.red_btn.white_bg span {
  color: var(--black-color);
}

.red_btn.black_bg {
  color: var(--white-color);
  background: var(--black-color);
}

.red_btn.black_bg:before {
  background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
  color: var(--white-color);
}

/*-------- button Effect-------*/
.heading_hp h2 {
  font-size: 41px;
  font-weight: 400;
  color: var(--heading-color);
  position: relative;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.heading_hp h2 span {
  color: var(--main-color);
}

.heading_hp h6 {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.heading_hp p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 25px;
}

.heading_hp.text_white h2,
.heading_hp.text_white p,
.heading_hp.text_white h6 {
  color: var(--white-color);
}

.border_h2 h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.border_h2 h2:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: var(--main-color);
}
.shop_padding{
  padding: 0 15px;
}
/* About */
.about_sec {
  padding: 100px 0 0;
}
.products_sec{
  padding: 100px 0;
}
.sunglass_img {
  position: relative;
  margin-bottom: 25px;
}

/* Shine */
.sunglass_img figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
  height: 300px;
}

.sunglass_img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sun_text h4{
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
}
.sunglass_img figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.sunglass_img figure:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.sunglass_eyeglass figure::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  z-index: 1;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%);
}


.img_free img {
  width: 70px;
  height: 55px;
  object-fit: contain;
}

.single_store{
  display: inline-block;
  text-align: center;
  margin:0 10px
}
.single_store img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}
.our_store_sec{
  padding: 100px 0 0px;
}
.single_store h4{
  font-size: 15px;
  color: #000;
}

.wining_look_sec {
  padding: 50px 0;
}
.wining_text{
  background: #fff;
  box-shadow: 0 0 20px rgb(0 0 0 / 15%);
  padding: 15px;
}
.wining_text p {
  font-size: 15px;
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 25px;
  border:3px solid var(--main-color);
  padding: 20px;
}
.abt h4{
  font-size: 17px;
  font-weight: 600
}
.logo_looks {
  width: 250px;
  margin-bottom: 10px;
}

.ftr_links {
  padding: 50px 0;
  background: #f7f7f7;
}

.customer_care h4 {
  font-size: 18px;
  width: 75%;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}

.customer_care ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  columns: 2;
}

.customer_care ul li a {
  color: var(--text-color);
}

.customer_care ul li {
  margin-bottom: 10px;
}

.social_country {
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  padding: 30px 0;
}

.social_media h4 {
  font-size: 18px;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}

.social_media ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.social_media ul li a {
  color: var(--text-color);
}

.social_media ul li {
  margin-right: 10px;
}

.selected_country {
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 10px;
}

.selected_country h4 {
  font-size: 18px;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}

.ftr_text {
  padding: 10px 0;
  background: var(--main-color)
}

.ftr_text p {
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
}

/*------------- Inner Page ----------------- */
.inner_banner_sec {
  padding: 100px 0;
  position: relative
}

.inner_banner_sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.0);
}

.inner_banner_ontent {
  position: relative;
  z-index: 9
}

.cd-breadcrumb {
  width: 100%;
  padding-left: 5px;
  margin: 0;
}

.cd-breadcrumb::after::after {
  clear: both;
  content: "";
  display: table;
}

.cd-breadcrumb li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
  color: var(--white-color);
}

.cd-breadcrumb li a {
  color: var(--white-color);
}

.cd-breadcrumb li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: var(--white-color);
}

.cd-breadcrumb li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: '';
  height: 16px;
  width: 16px;
  background: url(../images/cd-custom-separator.svg) no-repeat center center;
  vertical-align: middle;
}

.inner_banner_ontent h1 {
  font-size: 41px;
  font-family: var(--heading-font);
  color: #fff;
  margin-bottom: 0;
}

.inner_banner_ontent h4 {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 300
}

.inner_banner_ontent p {
  color: var(--white-color);
}

.filter {
  border-right: 1px solid #BDBDBD;  
  border-top: 1px solid #BDBDBD;
  position: sticky;
  top:80px;
}

.padding_filter {
  padding: 20px 20px 20px 50px;
  border-bottom: 1px solid #BDBDBD;
}

.filter_heading {
  display: flex;
}

.filter_heading h4 {
  font-size: 22px;
  margin-bottom: 0;
  padding-left: 10px;
}

.filter .search_color {
  margin-top: 10px;
}

.filter .search_color input {
  font-size: 15px;
}

.filter .search_color input::placeholder {
  text-transform: capitalize;
  color: #1e1e1e;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 1;
}

.filter .search_color input::-ms-input-placeholder {
  text-transform: capitalize;
  color: #1e1e1e;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 1;
}

.form-group {
  display: block;
  margin-bottom: 15px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 5px;
}

.form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid var(--main-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-group input:checked+label:before {
  border: 1px solid var(--main-color);
}

.filter .accordion-button {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.filter .accordion-item {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.filter .accordion-button:not(.collapsed) {
  background: none;
}

.accordion-body {
  padding: 0px 0 0;
}

.filter .accordion-button:after {
  background-image: url(../images/filter_arrow.svg);
  background-size: 16px;
}

.filter h2.accordion-header button {
  font-size: 22px
}

.color_filter ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
}

.color_filter ul li {
  padding-right: 6px;
}

.color_filter ul li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}

.Frametype_filter ul {
  list-style: none;
  padding-left: 0;
  display: block;
  margin-bottom: 0;
  columns: 4;
}

.Frametype_filter ul li {
  margin-bottom: 10px;
}

.Frametype_filter ul li a {
  display: block;
  width: 100%;
  color: var(--text-color);
  text-align: center;
}

.Frametype_filter ul li a span {
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid rgb(30 30 30 / 50%);
  border-radius: 6px;
  padding: 3px;
}

.Frametype_filter ul li a span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Frametype_filter ul li a:hover span {
  border: 1px solid var(--main-color);
}

.filter_resilt {
  background: #F3F3F3;
  width: 100%;
  padding: 30px;
}

.filter_res_text h4 {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
}

.filter_res_text p {
  margin-bottom: 0;
}

.latest_filter {
  padding: 3px;
  background: transparent;
  border-radius: 5px;
}

.filter_and_productlist {
  padding-bottom: 50px;
}

.well {
  padding: 30px;
}

.thumbnail {
  margin-bottom: 20px;
  padding: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #B3B3B3;
  border-radius: 8px;
  position: relative;
  padding: 20px;
}

.text_light {
  color: rgb(0 0 0 / 50%);
  margin-bottom: 10px !important;
  line-height: 16px;
}

.productitem .reting_boo {
  display: inline-block;
}

.productitem .left_boo h4 {
  color: #000;
  font-size: 20px;
  text-transform: capitalize;
}

.productitem .left_boo p {
  margin-bottom: 10px;
}

.productitem.list-group-item {
  float: none;
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
}

.discount_text {
  color: rgb(0 0 0 / 50%);
  font-size: 15px;
  text-decoration: line-through;
}

.only_few_left {
  font-size: 15px;
  color: #E92F2A;
}

.productitem.list-group-item:nth-of-type(odd):hover,
.productitem.list-group-item:hover {
  box-shadow: 0px 1px 25px #ccc;
}

.productitem.list-group-item .list-group-image {
  margin-right: 5px;
}

.productitem.list-group-item .thumbnail {
  margin-bottom: 0px;
}

.productitem.list-group-item .thumbnail {
  margin-bottom: 0px;
}

.thumbnail .group.list-group-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.productitem.list-group-item .caption {
  padding: 9px 9px 0px 9px;
}

.productitem.list-group-item:before,
.productitem.list-group-item:after {
  display: table;
  content: " ";
}

.productitem.list-group-item .group.list-group-image {
  float: left;
  width: 300px;
  height: 200px;
}

.productitem.list-group-item:after {
  clear: both;
}

.productitem .color_filter a {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  margin-right: 3px;
}

.slider_prd {
  width: 100%;
}

.prodict_img_slid {
  width: 100%;
  height: 100%;
  display: block;
}

.prodict_img_slid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top_choise {
  position: absolute;
  background: #EBB415;
  left: 10px;
  top: 8px;
  z-index: 1;
  padding: 1px 11px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.bestseller {
  position: absolute;
  background: #00A098;
  left: 10px;
  top: 8px;
  z-index: 1;
  padding: 1px 11px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.cdp {
  position: relative;
  text-align: center;
  padding: 0px 0;
  font-size: 0;
  z-index: 6;
  margin: 0px 0;
}

.cdp_i {
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 3px 6px;
  height: 38px;
  min-width: 38px;
  border-radius: 38px;
  border: 1px solid #000;
  line-height: 38px;
  padding: 0;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cdp_i:first-child,
.cdp_i:last-child {
  padding: 0 16px;
  margin: 0 12px 6px;
}

.cdp_i:hover {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.details_prd {
  border-top: 1px solid var(--text-color);
}

.details_prd .cd-breadcrumb li a {
  color: var(--text-color);
}

.details_prd .cd-breadcrumb li {
  color: var(--text-color);
}

.details_prd .cd-breadcrumb.custom-separator li::after {
  content: '';
  height: 14px;
  width: 10px;
  background: url(../images/cd-custom-separator-black.svg) no-repeat center center;
  vertical-align: middle;
}

.similar_products {
  padding: 50px 0;
}

.prd_img {
  width: 100%;
}

.prd_img span {
  width: 100%;
  height: 500px;
  border-radius: 6px;
  border: 1px solid #B3B3B3;
  display: block;
  margin-bottom: 25px;
}

.prd_img span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product_details {
  padding: 25px 0;
}

.fa_hart {
  color: rgb(0 0 0 / 50%);
  font-size: 22px;
}

.wl_logo span {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 15px;
}

.wl_logo span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_main_heading h2 {
  margin-bottom: 0;
  font-size: 41px;
}

.product_main_heading h5 {
  margin-bottom: 0;
  font-size: 18px;
}

.product_main_heading p {
  color: var(--text-color);
  font-size: 14px;
}

.product_det_right .reting_boo {
  display: inline-block;
}

.size_text {
  width: 100%;
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.round_30.color_filter ul li a {
  width: 30px;
  height: 30px;
}

.round_30.color_filter {
  margin-bottom: 20px;
}

.full_price {
  font-size: 24px;
  color: var(--main-color);
  text-transform: uppercase;
  line-height: 1;
}

.discount_price {
  font-size: 16px;
  color: #808080;
  text-decoration: line-through;
  padding-left: 10px;
}

.total_off {
  font-size: 20px;
  color: #0CAA32;
  padding-left: 20px;
  line-height: 1;
}

.instock {
  font-size: 20px;
  margin-bottom: 10px;
}

.w_350 {
  width: 350px;
}

.technical_information {
  width: 100%;
}

.technical_information ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin-bottom: 5px;
}

.technical_information ul li {
  text-align: left;
  width: 50%;
}

.product_det_right .accordion {
  margin-bottom: 25px;
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 25px;
}

.product_det_right .accordion-button {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-item {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-button:not(.collapsed) {
  background: none;
}

.product_det_right .accordion-body {
  padding: 10px 0 0;
}

.product_det_right .accordion-button:after {
  background-image: url(../images/filter_arrow.svg);
  background-size: 16px;
}

.product_det_right h2.accordion-header button {
  font-size: 22px;
  text-transform: uppercase;
  font-family: GlacialIndifference-Bold;
}

.product_feature ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.product_feature ul li {
  padding-right: 10px;
  position: relative;
  margin-right: 8px;
}

.product_feature ul li:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #1e1e1e;
}

.rate_product {
  padding: 10px 15px;
  background: var(--white-color);
  border: 1px solid var(--text-color);
  color: var(--text-color);
  border-radius: 6px;
}

.review_img {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 8px;
}

.review_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.status_review h4 {
  color: var(--black-color);
  font-family: GlacialIndifference-Bold;
  padding-left: 15px;
  font-size: 20px;
}

.certified_buy {
  font-size: 15px;
  color: rgb(30 30 30 / 50%);
}

.age_buy {
  font-size: 14px;
  color: rgb(30 30 30 / 50%);
}

.single_review {
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.product_review .single_review:last-child {
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.call_us_btn {
  background: #FBD6E8;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 8px;
  white-space: nowrap;
}

.doubts_text h4 {
  text-transform: uppercase;
  font-family: GlacialIndifference-Bold;
  font-size: 22px;
}

.shopping_cart_sec {
  border-top: 1px solid var(--black-color);
  padding: 30px 0;
}

.cart_product {
  width: 100%;
  border: 1px solid #B3B3B3;
  border-radius: 10px;
  margin-bottom: 15px;
}

.cart_product .cart_images {
  width: 100%;
}

.cart_product .cart_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.cart_text {
  padding: 30px;
}

.cart_text h4 {
  font-size: 24px;
}

.color_code {
  font-size: 20px;
}

.wl_price {
  width: 100%;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.wl_price li {
  font-size: 20px;
}

.wl_price li:last-child {
  color: var(--main-color);
}

.wl_price li:last-child span {
  text-decoration: line-through;
  font-size: 16px;
  color: #B3B3B3;
}

.left_p_text h4 {
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  color: var(--black-color);
  margin-bottom: 0;
  letter-spacing: 3px;
}

.right_p_text h4 {
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 0;
  letter-spacing: 3px;
}

.final_price {
  border-top: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
  padding: 12px 0;
}

.only_left {
  color: #E92F2A;
  font-size: 20px;
}

.expeted {
  margin-bottom: 0;
}

.call_us_drop {
  padding: 8px 12px;
  border: 1px solid #B3B3B3;
  border-radius: 6px;
}

.qty span {
  font-size: 17px;
}

.qty_te {
  padding: 8px 12px;
  border: 1px solid #B3B3B3;
  border-radius: 6px;
  margin: 0 10px;
}

.add_wishlist {
  font-family: GlacialIndifference-Bold;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--black-color);
  letter-spacing: 3px;
}

.coupons_sec {
  border: 1px solid #B3B3B3;
  padding: 10px;
  border-radius: 10px;
}

.coupon_text p {
  font-size: 16px;
  margin-bottom: 0;
}

.coupon_text span {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--main-color);
}

.coupon_here {
  padding: 7px 12px;
  background: rgb(179 179 179 / 20%);
  border: none;
  border-radius: 6px;
  width: 100%;
}

.bill_details {
  padding: 20px 0;
}

.bill_details h4 {
  font-size: 24px;
  font-family: GlacialIndifference-Bold;
  color: var(--black-color);
}

.bill_text {
  padding: 25px;
  background: #fff;
  box-shadow: 0 0 16px rgb(0 0 0 / 10%);
  border-radius: 15px;
}

.bill_text ul {
  width: 100%;
  padding-left: 0;
  margin-bottom: 5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bill_text ul li {
  font-size: 20px;
}

.total_payable {
  display: flex;
  justify-content: space-between;
}

.total_payable_l {
  color: var(--black-color);
  font-size: 20px;
  font-family: GlacialIndifference-Bold;
}

.total_payable_r {
  color: var(--black-color);
  font-size: 20px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
}

.by_con {
  padding: 25px;
}

.by_con .form-group label {
  font-size: 20px;
  color: var(--black-color);
}

.by_con .form-group label a {
  font-size: 20px;
  color: var(--main-color);
}

.back_arrow {
  color: var(--black-color);
  font-weight: 200;
  margin-right: 10px;
  font-size: 25px;
}

.radio-input {
  visibility: hidden;
  display: none;
}

.radio-label {
  position: relative;
  padding-left: 27px;
  margin-right: 20px;
}

.radio-label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 6px;
  top: 6px;
  border-radius: 50%;
}

.radio-border {
  width: 20px;
  height: 20px;
  display: inline-block;
  outline: solid 1px #000;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.radio-input:checked+.radio-label:after {
  transition: all 0.5s;
  background-color: #EF1C5B;
}

.radio-input:checked+.radio-label .radio-border {
  outline: solid 1px #EF1C5B;
  background: #FFD1DF;
}

.select_danger {
  font-size: 20px;
  margin-bottom: 5px;
}

.checkout_item {
  padding-right: 150px;
}

.save_as {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.save_as li {
  padding-right: 10px;
}

.save_as li a {
  border: 1px solid #B3B3B3;
  border-radius: 6px;
  color: var(--black-color);
  padding: 8px 20px;
  vertical-align: middle;
  font-size: 18px;
  display: inline-block;
}

.save_as li a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.save_as li a span {
  vertical-align: middle;
}

.offcanvas_vision {
  bottom: auto;
  min-height: 50%;
  background: #FBF9F7;
  width: 700px !important;
  top: 20px !important;
  right: 20px !important;
  box-shadow: 0 0 26px rgb(0 0 0 / 15%);
  border-left: 0 !important;
}

.vision_all {
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vision_text h4 {
  width: 100%;
  margin-bottom: 0;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 3px;
}

.vision_text p {
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
}

.single_vision span {
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 5px;
}

.single_vision span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.subtotal_frame {
  font-size: 24px;
  margin-top: 50px;
}

.subtotal_frame span {
  color: var(--main-color);
  display: block;
}

.select_lens_back {
  color: var(--black-color);
}

.off_body {
  padding: 0px 50px 20px 20px;
}

.offcanvas-header {
  padding-bottom: 0;
}

.offcanvas-backdrop.show {
  opacity: 0;
}

.rimless {
  width: 100%;
  display: block;
  background: var(--white-color);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 45px;
}

.lens_feature p {
  margin-bottom: 0;
}

.lens_feature h5 {
  margin-bottom: 0;
  color: var(--main-color);
}

.rimless h4 {
  color: var(--text-color);
  font-family: GlacialIndifference-Bold;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.lens_heading a {
  font-size: 35px;
}

.warranty_period {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #B3B3B3;
  padding: 15px;
}

.warranty_period ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.width_200 {
  width: 46%;
}

.select_lens_btn {
  text-align: center;
  margin-top: 15px;
  margin-bottom: -40px;
}

.form {
  width: 440px;
  padding: 0 20px;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  right: 0;
  transition: all 0.5s ease;
  transform: scale(0);
  background: #fff;
}

.input {
  width: 400px;
  border: 0px;
  background: transparent;
  box-sizing: border-box;
  border-bottom: 3px solid #000;
  outline: none;
  padding: 0 20px 10px;
  color: #000;
  font-size: 20px;
  background: #fff;
}

.cross_search_btn {
  position: absolute;
  right: 33px;
  top: 6px;
}

#search {
  color: #000;
  position: relative;
  top: 18px;
  left: 90px;
  opacity: 0;
  letter-spacing: 1px;
  transition: all 0.5s ease;
}

#search.viewsarch {
  opacity: 1;
}

.form.viewsarch {
  transform: scale(1);
}

#search.move {
  top: 60px;
  left: 20px;
  font-size: 12px;
}

@media screen and (max-width: 640px) {

  .btn,
  .form {
    width: 300px;
  }

  .form {
    width: 260px;
  }

  #search {
    left: 30px;
    font-size: 14px;
  }
}

.login_page {
  padding: 0px 0 0px;
  border-top: 1px solid #000;
}

/*---- Profile -----*/
.dashboard_section {
  padding: 50px 0;
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.img_image {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 5px;
}

.img_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.name_price h5 {
  font-size: 20px;
}

.name_price span {
  font-size: 18px;
  color: #ef1c5b;
  display: inline-block;
}

.img-market {
  padding: 18px 0;
  margin: 0;
}

.img-market a {
  color: #424242;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.img-market a i {
  color: #ef1c5b;
  font-size: 18px;
  margin-right: 5px;
}

.dashboard_left {
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 15px;
  border-radius: 0px;
}

.left_drop_dashboard {
  padding-left: 10px;
}

.left_drop_dashboard li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.left_drop_dashboard li i {
  color: #747474;
  margin-right: 7px;
  font-size: 14px;
}

.left_drop_dashboard li a {
  font-size: 15px;
  color: #747474;
}

.right_content {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  margin-bottom: 28px;
  border-radius: 0px;
  position: relative;
}

.edit_profile {
  position: absolute;
  right: 7px;
  top: 7px;
  padding: 2px;
}

.edit_profile a {
  color: var(--white-color) !important;
  background: #000;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resend {
  position: relative;
  background: #fd3103 !important;
  text-align: center;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 40px;
  border-radius: 6px;
  display: block;
  margin-bottom: 5px;
}

.my_order_titel h4 {
  color: var(--main-color);
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  margin-bottom: 20px;
  padding-bottom: 6px;
}

.my_orders {
  width: 100%;
  border: 1px solid #B3B3B3;
  border-radius: 10px;
  margin-bottom: 15px;
}

.my_orders .order_images {
  width: 100%;
}

.my_orders .order_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.order_text {
  padding: 15px;
}

.order_text h4 {
  font-size: 16px;
}

.order_text h4 span {
  color: var(--main-color);
}

.expeted {
  font-size: 14px;
}

.btn_text {
  display: inline-block;
  box-sizing: border-box;
  padding: 4px 15px;
  border-radius: 6px;
  position: relative;
  color: var(--white-color);
  background: var(--main-color);
  text-decoration: none;
  text-align: center;
}

.cancel_order {
  background: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.personal_infor h5 {
  font-size: 16px;
}

.personal_infor a {
  color: var(--main-color);
}

.profile-form-addr h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.profile-form-addr p {
  margin-bottom: 0px;
  font-size: 14px;
}

.profile-form-addr {
  display: flex;
  justify-content: space-between;
}

.profile-form-addr-right a {
  color: var(--heading-color);
}

.add_nn {
  display: none;
}

.add_nn.add_open {
  display: block;
}

.rate_this_product ul {
  list-style: none;
  padding-left: 0;
}

.rate_this_product ul li {
  color: #c7c7c7;
  display: inline-block;
  font-size: 15px;
}

/*---- Profile -----*/
/*---- Contact -----*/
.contact_section {
  padding: 50px 0;
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.contct-addr-box-outr {
  border: 1px solid #e1e1e1;
  padding: 15px;
  height: 100%;
  text-align: center;
}

.footer-heading {
  font-size: 22px;
  color: var(--main-color);
  margin-top: 10px;
}

.contct-addr-box-outr .fa-icon {
  color: var(--main-color);
}

.contct-addr-box-outr ul {
  list-style: none;
}

.contct-addr-box-outr ul li a,
.contct-addr-box-outr ul li,
.contct-addr-box-outr p {
  color: var(--text-color);
  font-size: 14px;
}

.contct-addr-box-outr ul li {
  margin-bottom: 10px;
}

/*---- Contact -----*/
/*---- privacy -----*/
.pravicy_list p {
  margin-bottom: 25px;
}

.sign-form-outr {
  padding: 30px;
  border: 1px solid #eee;
}

/*---- privacy -----*/
/*---- faq -----*/
.faq_list ol,
.faq_list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq_list a {
  color: var(--text-color);
}

.faq_list .accordion-button:not(.collapsed) {
  color: #000;
  background-color: rgb(239 28 91 / 20%);
}

.faq_list .accordion-item {
  margin-bottom: 25px;
}

/*---- faq -----*/
/*---- Blog -----*/

.blo_section {
  padding: 50px 0 0;
  border-top: 1px solid var(--text-color);
}

.single_blog {
  border-bottom: 1px solid #000;
  margin: 0 30px 40px 30px;
  padding-bottom: 30px;
}

.single_blog h6 {
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0
}

.single_blog h6 span {
  color: #081809;
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 2px solid #000;
  line-height: 12px
}

.single_blog h2 {
  font-size: 25px;
}

.blog_img_wrapper {
  height: 300px;
  margin-bottom: 20px
}

.blog_img_wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.blog_desc p {
  font-size: 15px
}

.box_1 {
  background-color: rgb(228 110 0 / 50%);
  padding: 30px;
  margin-bottom: 30px
}

.box_1 h4 {
  font-size: 20px;
}

.box_1 ul li a {
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: ease-in all 0.3s
}

.box_1 ul li a:hover {
  padding-left: 15px;
  transition: ease-in all 0.3s
}

/*---- Blog -----*/
/*---- cart_edit -----*/
.edit_lens {
  padding: 7px;
  font-size: 12px;
  background: #ef1c5b;
  margin-right: 5px;
  color: #fff;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove_lens {
  background: #000;
}

/*---- cart_edit -----*/

/*---- add_press -----*/

.add_presscription {
  text-align: center;
  padding: 50px 0;
}

.btn-up {
  padding: 9px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
  background-color: #FBD6E8;
  color: #EF1C5B;
  border: 1px solid #EF1C5B;
  border-radius: 11px;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
}

.add_presscription img {
  margin: 30px 0;
  width: 200px;
}

.add_presscription h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
}


/*---- add_press -----*/



.call_us {
  padding: 100px 0;
  position: relative;
}
.call_us:before{
  content:'';
  position: absolute;
  left:0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
}
.number_call {
  background: rgb(255 255 255 / 50%);
  color: var(--black-color);
  padding: 10px 20px;
  font-size: 20px;
  letter-spacing: 3px;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 10px;
}


.call_us .heading_hp h2 {
  margin-bottom: 30px;
}





/*---- details zoom -----*/

.box_slae {
  width: 100%;
  height: 0px;
  background: rgb(0 0 0 / 80%);
  position: fixed;
  right: 0;
  top: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 99999;
  box-shadow: 0 0 39px rgb(0 0 0 / 20%);
  border-radius: 0px;
  left: 0;
}

.box_slae.active {
  height: 100vh;
  padding: 17px;
  transition: all 0.3s ease;
}
#deletebtn {
  width: 40px;
  height: 40px;
  background: none;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 7px;
  top: 11px;
  color: var(--main-color);
  font-size: 22px;
  z-index: 1;
}
.zoom_box{
  background: #fff;
  width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 50px;
  border-radius: 10px;
}
.slid_forbig{
  width: 100%;
  height: 400px;
}
.slid_forbig img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slid_forsmall{
  width: 100%;
  height: 80px;
}
.slid_forsmall img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav-zoom .slick-nav.prev-arrow {
  left: -3%;
  transform: scaleX(-1);
  z-index: 1;
}

.slider-nav-zoom .slick-nav.next-arrow {
  left: auto;
  right: -3%;
}

.slider-nav-zoom .slick-nav i {
  display: block;
  position: absolute;
  margin: -7px 0 0 -8px;
  width: 16px;
  height: 15px;
  left: 50%;
  top: 50%;
  z-index: 1;
}

.slider-nav-zoom .slick-nav i:before,
.slider-nav-zoom .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slider-nav-zoom .slick-nav i:before {
  transform: rotate(396deg);
}

.slider-nav-zoom .slick-nav i:after {
  transform: rotate(64deg);
} 

.slider-nav-zoom .slick-nav:before,
.slider-nav-zoom .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slider-nav-zoom .slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}


.slider-nav-zoom .slick-nav:before,
.slider-nav-zoom .slick-nav:after {
  background: var(--white-color);
  border: none;
  transition: all ease-in 0.3s;
}

.slider-nav-zoom .slick-nav i {
  transform: rotate(324deg);
}

.slider-nav-zoom .slick-nav:hover:before,
.slider-nav-zoom .slick-nav:hover:after {
  background: var(--white-color);
  border: none;
  transition: all ease-in 0.3s;
}

.slider-nav-zoom .slick-nav:hover i {
  color: var(--white-color);
  transition: all ease-in 0.3s;
}
.slider-nav-zoom .slick-nav {
  top: calc(50% - 33px);
}

.bog_zoom{
  position: absolute;
  right: -100px;
  top: 100px;
  width: 300px;
  height: 300px;
  z-index: 1;
}


/*---- details zoom -----*/
.yith-add-to-wishlist-button-block{
	position: absolute !important;
    right: 0;
    top: 0;
}
.entry .shop_padding {
    padding: 0 0px;
}
.wpfMainWrapper{
    background: #fff;
    box-shadow: 0px 5px 20px rgb(0 0 0 / 10%);
    padding: 15px;
}
.wpfFilterButton.wpfButton, .wpfClearButton.wpfButton{
display: inline-block;
    box-sizing: border-box;
    border-radius: 6px;
    position: relative;
    color: var(--white-color);
    background: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
}
.product_content{
	padding:50px 0;
}
.wp-block-search__button{
display: inline-block;
    box-sizing: border-box;
    border-radius: 6px;
    position: relative;
    color: var(--white-color);
    background: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
}


/--- woocommers ----/

.wp-block-search__inside-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}
.wp-block-search__input{
    width: 100%;
    height: 40px;
    border: 0px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 38px;
    color: #1E1E1E;
    border-radius: 20px;
    font-family: var(--main-font);
    font-style: italic;
    background: rgb(30 30 30 / 10%);
}

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
    width: 40px !important;
    height: 40px !important;
}

.product_page_details{
	padding:0 15px 15px;
}

.product_page_details .tinvwl_add_to_wishlist_button{
	margin-top:0px !important;
}
.tinv-wraper.woocommerce.tinv-wishlist.tinvwl-after-add-to-cart.tinvwl-loop-button-wrapper.tinvwl-woocommerce_after_shop_loop_item{
	display: inline-block;
    vertical-align: middle;
	padding-left:5px;
}




.yith-wcwl-add-button>a i{
   margin-right: 0px !important;
}
.feature-slide:hover .add_to_wishlist.single_add_to_wishlist, .feature-slide:hover .tinvwl_add_to_wishlist_button{
    color:var(--main-color);
    transition: ease-in all 0.3s;  
}
.woocommerce-loop-product__title{
    color: #000;
    font-size: 20px !important;
    line-height: 24px !important;
}  
.woocommerce ul.products li.product .price del{
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px;
    line-height: 18px;
    font-weight: 100;
    margin-bottom: 0;  
}
.woocommerce ul.products li.product .price ins{
    color: var(--main-color);
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;  
    text-decoration: none !important;
}
.yith-wcwl-add-to-wishlist {
    margin-top: 10px;
    display: inline-block;
}
.woocommerce ul.products li.product .button{
    background: #1E1E1E;
    border-radius: 5px;
    text-align: center !important;
    color: #fff;
    padding: 2px 13px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    min-width: 110px;
    overflow: hidden;
}
.woocommerce a.added_to_cart{
    background: #1E1E1E;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    margin-left: 10px;
}
.feedback{
     color: var(--main-color);
     background: #fff;
    border: 1px solid rgb(0 0 0 / 50%);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 40px;
    width: 40px;  
}
.yith-wcwl-add-to-wishlist .feedback .yith-wcwl-icon {
    margin-right: 0px !important;
}
.wc-block-components-product-name{
    color: #000;
    font-size: 18px !important;
    line-height: 22px !important;
}
.wc-block-components-product-name:hover{
    color: #000;
    font-size: 18px !important;
    line-height: 22px !important;
}
.wc-block-components-product-price__regular{
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 100;
    margin-bottom: 0;  
}
.wc-block-components-product-price__value.is-discounted{
    color: var(--main-color);
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;
}
.wc-block-components-product-badge{
    padding: 5px;   
    color: var(--main-color);
}
.wc-block-components-formatted-money-amount{
    color: #000;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;
}   
.wc-block-components-button__text{
    color: #000;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    font-weight: 500 !important;
}
.wc-block-components-totals-coupon-link{
    color: #000;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    font-weight: 500 !important;
}
.wc-block-components-totals-shipping__change-address__link{
    color: #000; 
}
.wc-block-cart-item__remove-link{
    color: #000 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
}
.components-button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
    display: inline-block;
    box-sizing: border-box;
    padding: 13px 35px;
    border-radius: 30px;
    position: relative;
    color: #fff !important;
    background: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    border: none;
    font-size: 16px;  
}
.wc-block-components-button__text{
    color:#fff !important;
}
.product-name a{
    color: #000 !important;
    font-size: 18px !important;
    line-height: 22px !important;  
}
.woocommerce table.shop_table td del{
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 100;
    margin-bottom: 0;
} 

table.wishlist_table thead th{
    text-align: center !important; 
    color: #000 !important;
    font-size: 18px !important;
    line-height: 22px !important;
}
.woocommerce table.shop_table td ins{
    color: var(--main-color);
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important; 
    text-decoration: none !important;
}
.wishlist-in-stock{
    color: #0d6efd !important;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 300 !important;
    margin-left: 10px !important; 
    text-decoration: none !important;
}
.wishlist_table .product-add-to-cart a{
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 24px;
    border-radius: 30px;
    position: relative;
    color: #fff;
    background: var(--main-color);
    text-decoration: none;
    overflow: hidden;
    border: none;
    font-size: 16px;
}
.single_add_to_cart_button.button.alt{
      background:var(--main-color) !important;
}
.product_title.entry-title{
    color: #000;
    font-size: 40px;
    line-height: 44px;
	
}
.product_title.entry-title.product-title-class{
    font-size: 38px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price{
    color: rgb(30 30 30 / 70%) !important;
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 100;
    margin-bottom: 15px;  
}
.woocommerce div.product p.price ins{
    color: rgba(28, 97, 231, 1);
    font-size: 35px;
    line-height: 24px;
    margin-bottom: 0;
    font-weight: 700 !important;
    margin-left: 10px !important;  
    text-decoration: none !important;
}
.posted_in a{
    color: #000;
}
.why-list p, .why-list ol li{
	color: #000;
    font-weight: 600;
    font-family: inherit;
	font-size:18px;
}
.why-list ol li{
	margin-bottom:10px;
}
.woocommerce-product-details__short-description{
	color: #000;
    font-weight: 700;
    font-family: inherit;
}
.product_page_details .tinvwl_add_to_wishlist_button:hover{
	color:rgba(28, 97, 231, 1);
}
.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-position-after.tinvwl-loop.tinvwl-product-in-list.tinvwl-product-make-remove{
	color:rgba(28, 97, 231, 1);
}
/*product page*/
.woocommerce p.stars a{
   color: #ffb021;

}

.woocommerce span.onsale{
  background-color: var(--main-color) !important; 
	width: 50px;
    height: 50px;
}
.button.wc-forward{
    background-color: var(--main-color) !important;    
    color: #fff !important;
}
.wc-block-cart .wc-block-cart__submit-container{
   background-color: var(--main-color) !important;    
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    height: 50px;
    padding: 10px;
}
.woocommerce-LostPassword.lost_password a{
   color: var(--main-color) !important;     
}
.woocommerce-button.button.woocommerce-form-login__submit{
     background-color: var(--main-color) !important;    
     color: #fff !important;
}
.woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit{
    background-color: var(--main-color) !important;    
     color: #fff !important;  
}
.woocommerce-privacy-policy-link{
     color: var(--main-color) !important;    
}
.yith-wcwl-add-to-wishlist {
    margin-top: 0px !important;
}

#yith-wcwl-popup-message {
    background: transparent !important;
    box-shadow: none !important;
}
.remove_from_wishlist{
     color: var(--main-color) !important;    
}

.additional-info-wrapper{
   display: flex;
    justify-content: space-between;
    align-items: center;
} 
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
   margin-left: 10px !important;  
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
     margin-bottom: 10px !important;
}
.woocommerce div.product form.cart{
    margin-bottom: 0px !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
     margin-bottom: 10px !important;   
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price{
    color: var(--main-color) !important;
    font-size: 24px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}
.woocommerce div.product p.price del{
    color: rgb(30 30 30 / 70%) !important;
    font-size: 20px !important;
    line-height: 18px !important;
    font-weight: 100;
  
}
.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    padding: 10px 10px;
}


.woocommerce ul.products li.product .star-rating {
    color: #ffb021;
	margin-top:10px;
}

.single-product.woocommerce div.product form.cart{
	display:inline-block;
	vertical-align:middle;
	margin-right:10px;
}
.single-product.woocommerce div.product_meta{
	display:none;
}

.single-product.woocommerce .woocommerce-product-rating .star-rating, .woocommerce .star-rating{
	color:var(--main-color);
}
.single-product.woocommerce .woocommerce-product-rating .woocommerce-review-link{
	color:#000;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit{
	background:var(--main-color) !important;
	color:#fff !important;
}



.woocommerce table.shop_table td.product-name a{
  color:#000;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    padding: 10px;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #767676;
    border-radius: 0px !important;
}
.select2-container .select2-selection--single{
  height: auto !important;
    padding: 9px;
}
.woocommerce ul.order_details {
    border: 1px solid var(--main-color);
  padding: 20px !important;
	background:#fff;
}
.upiwc-section .upiwc-info{
	background:#fff !important;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin-bottom: 0;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 29%);
    padding: 17px;
    border-radius: 8px;
	border-left: 5px solid var(--main-color);
}
.woocommerce-MyAccount-navigation ul li a{
  padding: 7px 7px 7px 25px;
    color: #000;
    font-weight: 600;
    display: block;
  background:#fff;
}
.woocommerce-MyAccount-navigation ul li.is-active a{
  background:var(--main-color);
    color: #fff;
}
.woocommerce-button.button.view{
  box-sizing: border-box;
    padding: 14px 35px !important;
    border-radius: 5px !important;
    position: relative;
    color: #fff !important;
    background-color: var(--main-color)!important;
    text-transform: uppercase;
}
.woocommerce-Address-title.title{
  background:var(--main-color);
    color: #fff;
  padding: 5px 10px;
}
.woocommerce-account .addresses .title h3{
  font-size:18px;
}
.woocommerce-account .addresses .title .edit{
  color:#fff;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button{
	box-sizing: border-box;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    position: relative;
    color: #fff !important;
    background-color: var(--main-color) !important;
	font-size:15px !important;
}
.tinv-wishlist .product-action {
	width: 193px !important;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
	background:#fff;
	border-radius:10px
}


.single-product .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
    margin-top: 0 !important;
    margin-left: 12px;
}


.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-position-after.tinvwl-product-in-list.tinvwl-product-make-remove{
	color:var(--main-color);
}
.qib-button:not(#qib_id):not(#qib_id), .qib-container .quantity input.qty:not(#qib_id):not(#qib_id){
	border-width:0px !important;
}
.qib-button:not(#qib_id):not(#qib_id){
	font-size:22px !important;
	background: #000000 !important;
    border-color: #000000 !important;
	color:#fff !important;
}

.qib-container:not(#qib_id):not(#qib_id) {
    margin-bottom: 0px;
    height: 35px;
    margin-top: 0px;
	    vertical-align: middle;
	    min-width: 105px;
}

.qib-container .minus.qib-button{
	border-radius:30px 0 0 30px !important;
}
.qib-container .plus.qib-button{
	border-radius: 0 30px 30px 0 !important;
}
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id){
	border-top:1px solid #000 !important;
	border-bottom:1px solid #000 !important;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar{
	opacity:1;
}
.woocommerce ul.products li.product .button{
	margin-top:0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--main-color) !important;
    color: #fff !important;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span{
	color:#000 !important;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    background: #1c61e7 !important;
    color: #fff !important;
    border-radius: 0;
}
.woocommerce #content div.product .woocommerce-tabs, .woocommerce div.product .woocommerce-tabs, .woocommerce-page #content div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs{
	background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 22%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.container-rating{
	display:flex;
	align-items:center;
}
.tinv-wishlist table td, .tinv-wishlist table th{
	border-width:1px;
	border-color:  rgb(0 0 0 / 10%);
}

.tinv-wishlist table thead{
	background: rgb(197 0 20 / 44%);
    color: #000;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.in-cart{
	background:#03b22a !important;
}
.woocommerce-page .wd-content-layout, .woocommerce-cart.woocommerce-page .wd-content-layout, .woocommerce-checkout.woocommerce-page .wd-content-layout, .single.single-product .wd-content-layout, .woocommerce-account.woocommerce-page .wd-content-layout{
	background:#f6f6f6;
}

.wpfMainWrapper{
	background:#fff;
	border-radius:10px;
	padding:15px;
	position:sticky !important;
	top:0;
}

.wpfFilterButton.wpfButton, .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button{
	box-sizing: border-box;
    padding: 12px 25px !important;
    border-radius: 5px !important;
    position: relative;
    color: #fff !important;
    background-color: var(--main-color) !important;
	font-size:15px !important;
}

.wd-hover-with-fade .product-element-bottom{
	padding:0 15px 10px;
}
.wc-block-cart-items__row, .is-large.wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block{
	background:#fff;
	border-radius:10px;
}
.is-large.wc-block-cart .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-block{
	padding:15px;
}
.wc-block-cart__submit-container{
	background:#fff;
	
}
.wp-block-woocommerce-checkout-order-summary-block{
	background:#fff;
	border-radius:10px;
}
.wc-block-components-form.wc-block-checkout__form{
	background:#fff;
	padding:15px;
	border-radius:10px;
}
.zoomtoo-container img{
	height:500px !important;
	object-fit:cover;
}
.single.single-product form.cart{
	flex-wrap:nowrap;
}

.single.single-product .summary.entry-summary{
	background:#fff;
	padding:15px;
	border-radius:10px;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register{
	background:#fff;
}
.woocommerce-account .woocommerce-MyAccount-content{
	background:#fff;
	padding:15px;
	border-radius:10px;
}
ul.products li.product .tinvwl_add_to_wishlist_button{
		margin-top:0 !important;
	}
.cat-design-alt .wd-cat-thumb{
	height: 150px;
}
.wc-block-components-button:not(.is-link).outlined{
	background-color: var(--main-color) !important;
	color:#fff !important;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register{
	border-top:5px solid var(--main-color) !important;
}
.woocommerce table.my_account_orders .button {
    white-space: nowrap;
    margin: 0 2px;
}
.woocommerce-button.button.cancel{
	background:#ff0000 !important;
}


div.wc-block-components-notice-banner:is(.is-info,.is-error){
	background-color:#cc1818 !important;
}
.six_catagory{
	width:100%;
}
.one_cata{
	width:31%;
	display:inline-block;
	padding:0 10px 15px;
}
.one_cata img{
	width:100%;
	height:160px;
	object-fit:cover;
	border-radius:10px;
}
.one_cata .wd-entities-title{
	font-size:16px;
}
.for_desktop{
	display:block;
}
.for_mobile{
	display:none;
}
.wd-cart-number.wd-tools-count{
	width: 16px;
    height: 16px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: block;
    line-height: 1;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}
.wp-block-search__button{
	position:relative;
	width:40px;
}
.wp-block-search__button:before{
	content: '\f002';
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: translate(-50%, -50%);
}
.summer_img{
	width:100%;
	height:500px;
}
.summer_img img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.out_of{
	font-size:14px;
	display:block;
}


@media (min-width: 320px) and (max-width: 768px){
	.for_desktop{
		display:none;
	}
	.for_mobile{
		display:block;
	}
	.site-logo img{
		width:60px;
	}
	.wd-buttons {
		border-radius: 5px !important;
	}
	.product-element-top picture img{
		height:200px !important;
	}
	.yith-add-to-wishlist-button-block{
		margin:0 auto !important;
	}
	.yith-wcwl-add-to-wishlist-button__label{
		display:none;
	}
	.yith-wcwl-add-to-wishlist-button:is(button) {
		padding: 2px 5px;
		font-size: 10px;
	}
	.wd-nav-arrows.wd-pos-sep:after{
		content:none;
	}
	.wishlist_products_counter{
		right: 28%;
    	top: 0px;
		z-index: 1;
		padding-inline: 0px !important;
		color: #fff !important;
		font-size: 11px;
	}
	.wd-header-wishlist .wd-tools-count{
		display:none;
	}
	.wishlist_products_counter_number{
		inset-inline-end: -9px;
		background-color: var(--wd-primary-color);
		color: #fff;
		font-size: 9px;
		padding: 4px;
    	border-radius: 50%;
		width: 15px;
    	height: 15px;
		text-align:center;
	}
	ul.products li.product .wd-hover-with-fade .product-element-bottom {
		padding: 0 5px 10px !important;
	}
	.one_cata{
		width:48%;
		text-align:center;
	}
	.one_cata img{
		width:120px;
		height:120px;
		border-radius:50%;
		margin:0 auto;
	}
	.summer_img{
		width:100%;
		height:180px;
	}
	.hdr_icon img{
		width:23px;
	}
	.mobile_cart_pro{
		font-size:13px;
	}
	.product_title.entry-title {
		color: #000;
		font-size: 25px;
		line-height: 30px;
	}
}

.wp-block-woocommerce-checkout .wc-block-checkout__login-prompt {
    float: right;
    font-size: 30px;
    margin-top: -24px;
    /* color: red; */
    background-color: #cc1818 !important;
	padding:10px 20px;
	border-radius:5px;
	color:#fff;
}