:root {
  --main-color: #ff764d;
  --yellow-color: #f1592b;
  --dark-red: #35160c;
  --heading-color: #00060F;
  --text-color: #1E1E1E;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Lato", sans-serif;
  --heading-font: "Libre Baskerville", serif;
  --button-font: "Lato", sans-serif;
  --bold-font: "Lato", sans-serif;
}

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

a {
  text-decoration: none;
}

ul {
  margin-bottom: 0;
  padding-left: 0;
}

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

p {
  font-family: var(--main-font);
  margin-bottom: 0;
}

.padding_x_100 {
  padding-left: 100px;
  padding-right: 100px;
}

.header-logo {
  width: 300px;
}

.header-logo img {
  width: 100%;
}

/* Full-width banner */
.banner-slider {
  width: 100%;
  height: 600px;
  position: relative;
}

/* Banner text */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 20px 150px 20px 150px;
  border-radius: 10px;
  height: 100%;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; */
}

.banner-content h2,
.banner-content h1 {
  font-size: 58px;
  margin-bottom: 15px;
  font-weight: 700;
}

.banner-content h2 span,
.banner-content h1 span {
  font-style: italic;
  color: var(--yellow-color);
}

.banner-content p {
  font-size: 25px;
  margin-bottom: 25px;
}


/* Swiper arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
}

.swiper-pagination-bullet {
  background: var(--yellow-color);
}

.banner_three_img {
  width: 100%;
  position: relative;
  height: 550px;
}

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

.big_img {
  width: 33%;
  position: absolute;
  left: 0;
  top: 72px;
  height: 50%;
	transition:all ease-in 0.5s;
}

.middle_img {
  width: 56%;
  position: absolute;
  left: 50%;
  top: 5%;
  height: 90%;
  transform: translate(-50%, 0px);
  z-index: 1;
  box-shadow: 0 0 27px rgb(0 0 0 / 16%);
	transition:all ease-in 0.5s;
}

.small_img {
  width: 28%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 47%;
	transition:all ease-in 0.5s;
}

.small_img:hover{
  z-index:2;
	transition:all ease-in 0.5s;
}

.big_img:hover {
  z-index:2;
	transition:all ease-in 0.5s;
}
#search-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  top: -20em;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 9999;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.9)), color-stop(50%, rgba(0, 0, 0, 0.9)), color-stop(100%, rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cc000000", endColorstr="#1a000000",GradientType=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#search-menu.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
	display: flex;
    align-items: center;
    justify-content: center;
}
#search-menu .wrapper {
      position: relative;
    margin: 0em auto 0 auto;
    padding: 0 1em;
    width: 90%;
}
#search-menu .wrapper input {
  width: 90%;
  padding: 0 0 0.125em 0;
  background: transparent;
  border: none;
  border-bottom: 3px solid #fff;
  font-size: 1.5em;
  color: #fff;
}

#search-menu .form-control::placeholder {
  color: #f1f1f1;
}

#search-menu .form-control::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #f1f1f1;
}
#search-menu .wrapper input:focus {
  outline: none;
	box-shadow:none;
}
#search-menu .wrapper button {
  position: absolute;
  display: block;
  width: 10%;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
  color: #bfbfbf;
  font-size: 2em;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#search-menu .wrapper button:hover {
  color: #fff;
}
#search-menu .wrapper button:focus {
  outline: none;
}

/*-------- button Effect-------*/
.red_btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 12px 25px;
  border-radius: 0px;
  position: relative;
  color: var(--white-color);
  background: var(--yellow-color);
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
}

.red_btn span {
  z-index: 1;
  position: relative;
  white-space: nowrap;
}

.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 / 90%);
}

.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: 45px;
  font-weight: 600;
  color: var(--heading-color);
  position: relative;
  letter-spacing: 0px;
}

.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: 500;
  margin-bottom: 0px;
}

.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);
}

/*--------category-------*/


.popular {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.popular::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #f6f2f1;
}

.popular .swiper-wrapper {
  padding-left: 0;
}

.popular .swiper-slide {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: tranform;
}

@media (min-width: 980px) {
  .popular .swiper-slide:hover {
    transform: translatey(-10px);
  }
}

.popular .swiper-category {
  overflow-x: hidden;
  padding-top: 1.5em;
  padding-bottom: 4em;
}

.popular a {
  display: block;
  position: relative;
  text-decoration: none;

}

.popular a h5 {
  font-weight: 600;
  font-size: 25px;
  padding: 25px 15px 25px;
  line-height: 1.1;
  color: #000;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background: #ffffff;
  text-align: center;
}

.popular a img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.24s ease-out;
  will-change: opacity;
}

.swiper-arrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 93%;
  left: 50%;
  top: 50%;
  z-index: 1;
  padding: 0 5px;
  transform: translate(-50%, 0px);
}

.swiper-arrows .swiper-prev,
.swiper-arrows .swiper-next {
  background-color: rgb(241 89 43 / 0%);
  color: #f1592b;
  font-size: 26px;
  width: 2.5em;
  height: 2.5em;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  outline: none;
  font-weight: bold;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease, background-color 0.25s ease;
  outline: none;
  border: 1px solid;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-arrows .swiper-prev:hover,
.swiper-arrows .swiper-next:hover {
  background-color: white;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 0.25em 1.25em rgba(117, 64, 191, 0.2);
}

.swiper-arrows .swiper-prev.swiper-button-disabled,
.swiper-arrows .swiper-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: scale(0.5);
}

.swiper-arrows button+button {
  margin-left: 0.5em;
}


/*--------category-------*/

/*--------- About----- */


.list-style-one {
  position: relative;
  margin-top: 50px;
}

.list-style-one li {
  position: relative;
  font-size: 18px;
  line-height: 26px;
  color: #222222;
  font-weight: 500;
  padding-left: 35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #44bce2;
}

.about-section {
  position: relative;
  padding: 0px 0 100px;
  background: #f6f2f1;
}

.about-section .sec-title {
  margin-bottom: 45px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-left: 30px;
}

.about-section .text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
}

.about-section .list-style-one {
  margin-bottom: 45px;
}

.about-section .btn-box {
  position: relative;
}

.about-section .btn-box a {
  padding: 15px 50px;
}

.about-section .image-column {
  position: relative;
}

.about-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}

.about-section .image-column .inner-column {
  position: relative;
  padding-left: 120px;
  padding-bottom: 125px;
}

.about-section .image-column .inner-column:before {
  position: absolute;
  left: -75px;
  top: 65px;
  height: 520px;
  width: 520px;
  background-color: rgb(0 0 0 / 3%);
  content: "";
  border-radius: 50%;
}

.about-section .image-column .image-1 {
  position: relative;
	transition:all ease-in 0.3s;
}

.about-section .image-column .image-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img {
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
}

.about-section .image-column:hover .image-1{
	z-index:2;
	transition:all ease-in 0.3s;
}


.about-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}


/*--------- About----- */


/* ---------New Arrival------- */


.new_arrival_sec {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.new_arrival_sec .swiper-wrapper {
  padding-left: 0;
}

.new_arrival_sec .swiper-slide {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: tranform;
}


.new_arrival_sec .swiper-new-arrival {
  overflow-x: hidden;
  padding-top: 1.5em;
}

.new_arrival a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  height: 400px;
}

.new_arrival a h5 {
  font-weight: 600;
  font-size: 1.125em;
  padding: 105px 15px 15px;
  line-height: 1.1;
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background: linear-gradient(0deg, black, transparent);
}

.new_arrival a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: opacity 0.24s ease-out;
  will-change: opacity;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.new_arrival:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.swiper-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.card-content {
  padding: 10px 0 0;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  list-style: 24px;
  margin: 8px 0 0px;
  font-family: var(--main-font);
}

.reviews {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #444;
  margin-bottom: 5px;
}

.stars {
  color: #fbc02d;
  margin-right: 6px;
  font-size: 20px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 16px;
  margin-left: 8px;
}

.new_arrival{
  position: relative;
}
.addtocart {
  transition: all 1s;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, 200%);
  width: 100%;
  height: auto !important;
  display: flex;
  align-content: space-around;
  justify-content: center;
}
.addtocart a {
  height: auto !important;
}
.new_arrival:hover .addtocart {
    transform: translate(-50%, 0%);
}
/* ---------New Arrival------- */

/* ---------Author------- */
.author_sec {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.team-box-items {
  margin-top: 30px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  margin-bottom: 30px;
}
.team-box-items a{
	width:100%;
}
.team-box-items .team-image {
  position: relative;
  width: 100px;
  margin: 0 auto;
}

.team-box-items .team-image .thumb {
  text-align: center;
  margin: 0 auto;
}

.team-box-items .team-image .thumb img {
  max-width: 100%;
}

.team-box-items .team-image .shape-img {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team-box-items .team-content {
  margin-top: 43px;
  border: 1.9px dashed var(--yellow-color);
  padding: 20px 15px;
  border-radius: 8px;
}

.team-box-items .team-content h6 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: var(--main-font);
}

.team-box-items .team-content p {
  font-size: 15px;
  font-weight: 500;
}

.author_sec .swiper-wrapper {
  padding-left: 0;
}

.author_sec .swiper-slide {
  position: relative;
  transition: transform 0.3s ease;
  will-change: tranform;
}

.author_sec .swiper-author {
  overflow-x: hidden;
  padding-top: 1.5em;
}

/* ---------Author------- */


/*--------- Feature_producy-------- */
.feature_product {
  position: relative;
  background: #f6f2f1;
  padding: 100px 0;
}

.feature_product .swiper-wrapper {
  padding-left: 0;
}

.feature_product .swiper-slide {
  position: relative;
  transition: transform 0.3s ease;
  will-change: tranform;
/*   border-right: 1px dashed #ccc; */
  opacity: 0.1;
}

.feature_product .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.feature_product .swiper-feature {
  overflow-x: hidden;
  padding-top: 1.5em;
}

.best_seller_img {
  width: 100%;
/*   height: 600px; */
  overflow: hidden;
}

.best_seller_img img {
  width: 100%;
}

.best_seller {
  letter-spacing: 5px;
  font-size: 20px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.best_seller_price .seller-price {
  font-size: 38px;
  font-weight: bold;
  color: var(--yellow-color);
}

.best_seller_price .seller-old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 25px;
  margin-left: 8px;
}

.feature_product .swiper-arrows {
  width: 98%;
  left: 50%;
  top: 50%;
  z-index: 1;
  padding: 0 5px;
  transform: translate(-50%, 0px);
}

/*--------- Feature_producy-------- */


/*----------- before footer -------*/
.before_ftr {
  border-top: 1px dashed #a7a7a7;
  border-bottom: 1px dashed #a7a7a7;
}

.before_ftr h4 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 5px;
  font-weight: 600;
}

.before_ftr p {
  font-size: 16px;
  margin-bottom: 0;
  color: #1e1e1e;
}

.shiping_img span {
  width: 60px;
  height: 60px;
  display: block;
  background: transparent;
  position: relative;
  margin-right: 20px;
}

.shiping_img span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all ease-in 0.3s;
}

.pr_zi {
  position: relative;
  z-index: 1;
}

.free_sh {
  border-radius: 0px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all ease-in 0.3s;
}

.border-left {
  border-left: 1px dashed #a7a7a7;
}

.shiping_img {
  position: relative;
}

.max_dot {
  position: absolute;
  left: -18px;
  top: -18px;
  width: 50px;
  height: 50px;
}

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

.free_sh span img {
  transition: all ease-in 0.3s;
  filter: brightness(0);
}

/*----------- before footer -------*/
/*------- footer-------- */

.news_leter_form {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.news_leter_form .form-control {
  background: var(--white-color);
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: 0px !important;
  padding: 12px 20px;
  font-size: 15px;
  color: var(--text-color);
}

.news_leter_form .form-control::placeholder {
  color: #848484;
  opacity: 1;
  font-size: 15px;
  letter-spacing: 1px;
}

.news_leter_form .form-control::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #848484;
  opacity: 1;
  font-size: 15px;
  letter-spacing: 1px;
}

.news_leter_form .news_letter {
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--yellow-color) url(../images/send.png);
  border: none;
  border-radius: 0px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 2px;
  width: 48px;
  height: 48px;
  background-size: 20px;
  background-repeat: no-repeat;
  transform: translate(0px, -50%);
  background-position: center center;
}

/*--- footer ---*/
.footer_sec {
  width: 100%;
  background: #212121;
}

.left_logo span {
  color: #000;
}

.ftr_logo img {
  width: 100%;
  max-width: 280px;
}

.left_ali {
  width: 100%;
}

.left_ali h4 {
  position: relative;
  color: var(--yellow-color);
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.left_ali p,
.left_ali a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.read_more {
  color: #0C7682;
  font-size: 15px;
  margin-bottom: 15px;
  display: block;
}

.icon_map {
  margin-right: 10px;
}

.icon_map span {
  color: #0C7682;
  font-size: 20px;
}

.ftr_text_h p {
  margin: 0;
}

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

.left_aa ul li a {
  color: #fff;
  padding: 4px 0 4px 25px;
  display: block;
  line-height: 20px !important;
  position: relative;
	transition:all ease-in 0.5s;
}

.left_aa ul li a:before {
  content: "\f061";
  position: absolute;
  left: 0;
  top: 50%;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  transform: translate(0px, -50%);	
}
.left_aa ul li a:hover{
	left:5px;
	color:var(--yellow-color);
	transition:all ease-in 0.5s;
}
.ftr_text_h span {
  font-size: 13px;
  color: rgb(0 0 0 / 80%);
  display: block;
}

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

.left_ali ul li a {
  line-height: 40px;
}

.left_logo p {
  color: rgb(0 0 0 / 80%);
  margin-bottom: 15px;
  font-size: 14px;
}

.left_logo ul {
  list-style: none;
  padding-left: 0;
  display: flex;
}

.left_logo ul li {
  margin-right: 5px;
}

.left_logo ul li a {
  color: var(--black-color);
  padding: 8px;
  display: flex;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  background: transparent;
  border: 1px solid var(--yellow-color);
  align-items: center;
  justify-content: center;
}

.left_logo ul li a:hover {
  color: var(--yellow-color);
  border: 1px solid var(--yellow-color);
}

.frt_btm ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}

.frt_btm ul li {
  padding: 0 10px;
}

.frt_btm ul li a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.copy_right {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
}

.copy_right a {
      color: rgb(241 89 56);
    text-decoration: none;
    display: inline-block;
}

.btm_ftr {
  padding: 20px;
  text-align: center;
  border-top: 1px solid #343434;
}

#top--btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  background: var(--yellow-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.border-left-black {
  border-left: 1px solid #343434;

}

.padding-y-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*------- footer-------- */





/*---- mini cart ---------*/
.cart_off_canvas {
  max-width: 600px;
  width: 100% !important;
  padding: 6px 10px 0;
}

.cart_off_canvas .offcanvas-header h5 {
  font-size: 20px;
  font-weight: 800;
}

.shopping-cart {
  width: 100%;
  height: calc(100% - 130px);
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow-y: auto;
}

.item_cart {
  padding: 0px 0px 20px;
  display: flex;
  border-bottom: 1px solid #E1E8EE;
  position: relative;
  margin-bottom: 20px;
}

.buttons {
  position: absolute;
  right: 0;
  bottom: 5px;
}

.delete-btn,
.like-btn {
  display: inline-block;
  Cursor: pointer;
}

.delete-btn {
  width: 14px;
  background-size: 11px;
}

.is-active {
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }

  100% {
    background-position: right;
  }
}

.cart_image {
  margin-right: 15px;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

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

.description span,
.description span a {
  display: block;
  font-size: 14px;
  color: #ababab;
  font-weight: 600;
  margin-bottom: 0px;
}

.description h4,
.description h4 a {
  font-size: 20px;
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}

.variations_button {
  display: flex;
}

.quantity {
  padding: 10px 18px;
  margin-right: 55px;
  border: 1px solid #afafaf;
  width: 180px;
}

.quantity input {
  -webkit-appearance: none;
  border: none;
  text-align: center;
  width: 32px;
  font-size: 16px;
  color: #43484D;
  font-weight: 600;
}

.quantity button[class*=btn] {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.minus-btn img {
  margin-bottom: 0px;
}

.plus-btn img {
  margin-top: 0px;
}

button:focus,
input:focus {
  outline: 0;
}

.total-price .woocommerce-Price-amount.amount {
  padding-top: 0px;
  font-size: 18px;
  color: var(--yellow-color);
  font-weight: 600;
}

.total-price span {
  font-size: 20px;
  color: #000;
  display: inline-block;
  margin-bottom: 0;
}

.total-price {
  padding-top: 0px;
  font-size: 18px;
  color: #43484D;
  font-weight: 600;
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {

  .item_cart {
    height: auto;
    justify-content: space-between;
  }

  .image img {
    width: 50%;
  }

  .image,
  .quantity,
  .description {
    width: 76%;
    margin: 6px 0;
  }

  .buttons {
    margin-right: 20px;
  }
}



.item_cart {
  padding: 15px 0px;
  display: flex;
  border-bottom: 1px solid #E1E8EE;
  position: relative;
}

.buttons {
  position: absolute;
  right: 0;
  bottom: 5px;
}

.delete-btn,
.like-btn {
  display: inline-block;
  Cursor: pointer;
}

.delete-btn {
  width: 14px;
  height: 14px;
  background: url("../images/delete-icn.svg") no-repeat center;
  background-size: 11px;
}

.is-active {
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }

  100% {
    background-position: right;
  }
}

.cart_image {
  margin-right: 15px;
  width: 70px;
  height: 70px;
}

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

.description span {
  display: inline-block;
  font-size: 16px;
  color: #43484D;
  font-weight: 600;
}

.description span:first-child {
  margin-bottom: 0px;
}

.description span:last-child {
  font-weight: 300;
  margin-left: 8px;
  color: #86939E;
}

.quantity {
  padding-top: 0px;
  margin-right: 0px;
}

.quantity input {
  -webkit-appearance: none;
  border: none;
  text-align: center;
  width: 32px;
  font-size: 16px;
  color: #43484D;
  font-weight: 600;
}

.shopping-cart button[class*=btn] {
  width: 30px;
  height: 30px;
  background-color: var(--dark-red);
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.minus-btn img {
  margin-bottom: 3px;
  filter: brightness(0) invert(1)
}

.plus-btn img {
  margin-top: 2px;
  filter: brightness(0) invert(1)
}

button:focus,
input:focus {
  outline: 0;
}

/* 

@media (max-width: 800px) {
  .shopping-cart {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .item_cart {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .image img {
    width: 50%;
  }

  .image,
  .quantity,
  .description {
    width: 100%;
    text-align: center;
    margin: 6px 0;
  }

  .buttons {
    margin-right: 20px;
  }
} */

/*---- mini cart ---------*/





















/*------------- Inner Page ----------------- */
.inner_banner_sec {
  padding-top: 50px;
  padding-bottom: 50px;
  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: #000;
}

.cd-breadcrumb li a {
  color: #000;
  display: inline-block;
}

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

.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; */
  content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 13px;
}
.current:after{
  content: none !important;
}
.inner_banner_ontent h1 {
  font-size: 41px;
  font-family: var(--heading-font);
  color: #000;
  margin-bottom: 0;
}

.inner_banner_ontent h4 {
  color: #000;
  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);
}

.padding_filter {
  padding-bottom: 20px;
}

.filter_heading {
  display: flex;
}

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

.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: 10px 15px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #dee2e6;
}

.filter .accordion-item {
  box-shadow: none;
  padding: 0px;
}

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

.filter .accordion-button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
  background-size: 16px;
}

.filter .accordion-button:not(.collapsed):after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  color: var(--heading-color);
	background-size: 16px;
	    background-repeat: no-repeat;
}
.filter .accordion-button:not(.collapsed){
	color: #fff;
    background-color: #f1592b;
}
.filter h2.accordion-header button {
  font-size: 22px
}

.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: 15px;
  border-radius: 8px;
}

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

.filter_res_text p {
  margin-bottom: 0;
}

.latest_filter {
  padding: 10px;
  background: transparent;
  border-radius: 0;
}

.price_range .price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}

.price_range .price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}

.price_range .field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  margin-left: 12px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}

.price_range input[type="number"]::-webkit-outer-spin-button,
.price_range input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price_range .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.price_range .slider_range {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.price_range .slider_range .progress {
  height: 100%;
  left: 4%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: var(--yellow-color);
}

.price_range .range-input {
  position: relative;
}

.price_range .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.price_range input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #35160c;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price_range input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #35160c;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.price_range {
  padding-bottom: 15px;
}





.filter_and_productlist {
  padding: 50px 0;
}

.well {
  padding: 15px 0;
}

.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: 50px 0;
}

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


.product_main_heading h2 {
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
}

.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;
}


.in-stock {
  font-size: 18px;
  color: #0CAA32;
  margin-bottom: 10px;
  border: 1px solid #1baa32;
  display: inline-block;
  padding: 3px 23px;
  background: rgb(12 170 50 / 10%);
  border-radius: 0px;
  font-weight: 600;
}


.product_main_heading h2{
  margin-bottom: 15px;
}
.short-description p{
  margin-bottom: 15px;
}
.short-description ul{
  padding-left: 20px;
}
.short-description ul li{
  margin-bottom: 15px;
  font-size: 15px;
  list-style: disc;
}

.technical_information {
  width: 100%;
    /* border-top: 1px solid #afafaf; */
    padding-top: 0;
    margin-bottom: 30px;
    margin-top: 0px;
}

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

.technical_information ul li, .technical_information ul li a {
  text-align: left;
  color: #636363;
}
.technical_information ul li:first-child{
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  margin-right: 10px;
}
.product_det_right{
  border-bottom: 1px solid #BDBDBD;
    border-top: 1px solid #BDBDBD;
    padding-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.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;
}
.w_350 {
  width: 150px;
}

.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%;
  font-size: 15px;
}

.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;
}


.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) {



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

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

/*---- Contact -----*/
.contact_section {
  padding: 100px 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;
  padding-left: 0;
}

.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_map {
  width: 100%;
  height: 500px;
}

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

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

/*---- privacy -----*/




/*---- 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: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0px;
  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: 0;
  top: 0px;
  width: 100%;
  height: 400px;
  z-index: -1;
}

.bog_zoom.box_zz {
  z-index: 9;
}

.big_zoom_relative {
  position: relative;
}

.slid_nav_zoom_padding {
  padding: 0 5px;
}

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










.contact-us {
  position: relative;
}
.contact-us-from{
    margin-bottom: 80px;
}
.contact-wrap-main {
  margin: 50px 0px 50px;
}

.contact-form {
  margin: 20px 0px 0;
  padding: 0px;
}

.contact-us-from .form-group-wrap {
  margin-bottom: 15px;
}

.contact-us-from .contact-form .form-control {
  padding: 10px;
  border-radius: 0;
}

.form-label {
  margin-bottom: 0px;
}

.contact-us-from .contact-form .send-msg .btn {
  background: var(--dark-red);
  color: #fff;
  font-size: 16px;
  box-shadow: none;
  outline: none;
  padding: 10px;
  width: 100%;
  border-radius: 0;
}

.contact-right {
  position: relative;
  padding: 27px 40px;
  box-shadow: 10px 25px 50px rgb(0 0 0 / 13%);
  border-radius: 0px;
}

.contact-info {
  margin-bottom: 0px;
  padding: 15px;
  border-bottom: 1px solid rgb(0 0 0 / 50%);
}

.contact-info:last-child {
  border: none;
  margin: 0px;
  background: #fff;
  text-align: center;
}

.contact-us .con-icon {
  width: 50px;
  height: 50px;
  padding: 14px;
  border-radius: 50%;
  color: #35160c;
  font-size: 25px;
  text-align: center;
  margin: 0 auto 20px;
}

.contact-us .con-text {
  margin-top: 10px;
}

.contact-us .con-text a,
.contact-us .con-text p {
  color: #161723;
  text-decoration: none;
  font-size: 17px;
  margin-bottom: 0;
}

.contact-us .con-text h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 5px;
}

.map-sec iframe {
  filter: grayscale(1);
}
.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}
textarea.form-control{
	height:150px;
}







/*--- woocommers ----*/
.woocommerce div.product form.cart{
	display:flex;
	justify-content:start;
}

.woocommerce div.product form.variations_form.cart{
	display:block;
}
.woocommerce span.onsale{
  border-radius: 0;
  background-color: var(--dark-red);
}
form.cart button[type='submit']:not(#qib_id):not(#qib_id):not(_):not(_){
	width:50%;
	background:var(--main-color);
	color:var(--white-color);
	border-radius:0;
}
.qib-container:not(#qib_id):not(#qib_id){
	width: auto;
}
.wishlist_table .product-add-to-cart a{
	padding: 10px 15px !important;
    border-radius: 0px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    transition: all ease-in 0.3s !important;
    font-family: var(--main-font) !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-size: 14px !important;
	background: var(--white-color);
}
.woocommerce table.shop_table thead th{
	background:var(--main-color) !important;
	color: var(--white-color);
}
.woocommerce table.shop_table thead th a{
	color: var(--white-color);
}
.woocommerce table.shop_table td a{
	color:var(--text-color);
}
.qib-button:not(#qib_id):not(#qib_id){
	background:var(--main-color) !important;
	color: var(--white-color) !important;
}
.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,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt, .wp-block-button__link{
	padding: 10px 15px !important;
    border-radius: 0px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: var(--white-color) !important;
    border: 1px solid var(--main-color) !important;
    transition: all ease-in 0.3s !important;
    font-family: var(--main-font) !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-size: 14px !important;
	background: var(--main-color) !important;
	background-color: var(--main-color) !important;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link){
	padding: 10px 15px !important;
    border-radius: 0px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: var(--white-color) !important;
    border: 1px solid var(--main-color) !important;
    transition: all ease-in 0.3s !important;
    font-family: var(--main-font) !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    font-size: 14px !important;
	background: var(--main-color) !important;
	background-color: var(--main-color) !important;
}

.woocommerce ul.order_details {
    border: 1px solid var(--main-color);
	padding: 20px;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin-bottom: 0;
    background: #f6f5f8 !important;
    padding: 17px;
    border-radius: 0px;
}
.woocommerce-MyAccount-navigation ul li a{
	padding: 7px;
    color: #000;
    font-weight: 600;
    display: block;
}
.woocommerce-MyAccount-navigation ul li.is-active a{
	background: var(--yellow-color) !important;
    color: #fff;
}
.woocommerce-button.button.view{
	box-sizing: border-box;
    padding: 8px 15px !important;
    border-radius: 0px !important;
    position: relative;
    color: var(--white-color) !important;
    background:var(--main-color) !important;
    text-transform: uppercase;
}
.woocommerce-Address-title.title{
	background: #f6f5f8;
    color: #000000;
	padding: 5px 10px;
}
.woocommerce-account .addresses .title h3{
	font-size:18px;
}
.woocommerce-account .addresses .title .edit{
	color: #ffffff;
    background: #f1592b;
    padding: 1px 15px;
    font-size: 14px;
}
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    padding: 10px;
}
.woocommerce-privacy-policy-text p{
	margin-bottom: 5px;
    font-size: 13px !important;
    display: inline-block;
    line-height: 15px !important;
}
.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button) svg.yith-wcwl-add-to-wishlist-button-icon{
	color:#FF4D57 !important;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
	color:var(--main-color) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3{
	color:#000 !important;
}

.woocommerce p.stars a{
	color:#fdc00d;
}
.woocommerce-Address-title.title{
	display:flex;
	justify-content:space-between;
}
.woocommerce-Address-title.title h2{
	font-size:18px;
	font-family: var(--main-font);
}
.woocommerce-account .woocommerce-MyAccount-content {
    padding: 15px;
    border: 1px solid #c9c9c9;
}
.full_price ins{
  text-decoration: none;
}
.woocommerce-account .addresses .title::after, .woocommerce-account .addresses .title::before{
  display: none !important;
}


.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #35160c !important;
    color: #ffffff !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before{
  display: none !important;
}

/*--- woocommers ----*/
 

.variation-radios label {
    position:relative;
    cursor:pointer;
}
.variation-radios label input {
    display:none;
}
.variation-radios label span {
  position: relative;
  display: inline-block;
  margin: 0px 0px;
  font-size: 18px;
  padding: 0px;
  width: 50px;
  background: #35160c;
  border: 1px solid #444;
  color: #ffffff;
  border-radius: 0;
  text-align: center;
}
.variation-radios label input:checked ~ span {
    color:#fff;
    border: 1px solid #008eff;
}
.variation-radios label input:checked ~ span {
    color: #ffffff;
    border-color: #debc5f;
    box-shadow: 0 0 0px #debc5f;
    background: #debc5f;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li{
  border-radius: 0 !important;
}





.woocommerce-product-gallery__wrapper .slick-arrow {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  cursor: pointer;
  top: calc(50% - 60px);
}

.woocommerce-product-gallery__wrapper .slick-arrow.slick-prev {
  display: block !important;
}
.woocommerce-product-gallery__wrapper .slick-arrow {
  display: block;
    position: absolute;
    margin: 0px;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    font-size: 0;
    border: none;
    border-radius: 50%;
}
.woocommerce-product-gallery__wrapper .slick-arrow.slick-prev {
  left: 1%;
  transform: scaleX(-1);
  z-index: 1;
}

.woocommerce-product-gallery__wrapper .slick-arrow.slick-next {
  left: auto;
  right: 1%;
}

.woocommerce-product-gallery__wrapper .slick-arrow:before {
  border-left: 8px solid #fff;
}

.woocommerce-product-gallery__wrapper .slick-arrow: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;
}

.woocommerce-product-gallery__wrapper .slick-arrow:hover:before {
  border-left: 8px solid var(--main-color);
}

.woocommerce-product-gallery__wrapper .slick-arrow:hover:before {
  border-left: 8px solid var(--main-color);
}
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image img{
  height: 700px !important;
  object-fit: contain;
}
.short-description p {
    margin: 5px 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs{
  padding: 0px !important;
}






