/*

Colors:
	Body 		: #333
	Headers 	: var(--additional-Color)
	Primary 	: #D10024
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--title-color);
  font-size: 13px;
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
  font-weight: 700;
  margin: 0 0 10px;
}
h2,
h3 {
  font-size: var(--title-size);
}
a {
  color: var(--additional-Color);
  font-weight: 500;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover,
a:focus {
  color: var(--title-color);
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--additional-Color);
  border: none;
  border-radius: 40px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-btn:hover,
.primary-btn:focus {
  opacity: 0.9;
  color: #fff !important;
  background-color: var(--additional-Color) !important;
}

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  width: 100%;
  border-radius: 40px 0 0 40px;
}

textarea.input {
  padding: 15px;
  min-height: 90px;
}

/*-- Number input --*/

.input-number {
  position: relative;
}

.input-number input[type="number"]::-webkit-inner-spin-button,
.input-number input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number input[type="number"] {
  -moz-appearance: textfield;
  height: 45px;
  width: 100%;
  border: 1px solid #e4e7ed;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  color: var(--additional-Color);
  border-radius: 10px;
}

.input-number .qty-up,
.input-number .qty-down {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  border: none;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 25px;
  color: var(--additional-Color);
  border-radius: 10px;
}

.input-number .qty-up {
  right: 1px;
  top: 4px;
}

.input-number .qty-down {
  left: 1px;
  top: 4px;
}
/*-- Select input --*/

.input-select {
  padding: 0px 15px;
  background: #fff;
  border: 1px solid #e4e7ed;
  height: 40px;
  width: 70% !important;
}

/*-- checkbox & radio input --*/

.input-radio,
.input-checkbox {
  position: relative;
  display: block;
}

.input-radio input[type="radio"]:not(:checked),
.input-radio input[type="radio"]:checked,
.input-checkbox input[type="checkbox"]:not(:checked),
.input-checkbox input[type="checkbox"]:checked {
  position: absolute;
}

.input-radio label,
.input-checkbox label {
  font-weight: 500;
  min-height: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}

.input-radio input[type="radio"] + label span,
.input-checkbox input[type="checkbox"] + label span {
  position: absolute;
  left: 0px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid #e4e7ed;
  background: #fff;
}

.input-radio input[type="radio"] + label span {
  border-radius: 50%;
}

.input-radio input[type="radio"] + label span:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-checkbox input[type="checkbox"] + label span:after {
  content: "✔";
  position: absolute;
  top: -2px;
  left: 1px;
  font-size: 10px;
  color: #fff;
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-radio input[type="radio"]:checked + label span,
.input-checkbox input[type="checkbox"]:checked + label span {
  background-color: var(--title-color);
  border-color: var(--title-color);
}

.input-radio input[type="radio"]:checked + label span:after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.input-checkbox input[type="checkbox"]:checked + label span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.input-radio .caption,
.input-checkbox .caption {
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s max-height;
  transition: 0.3s max-height;
}

.input-radio input[type="radio"]:checked ~ .caption,
.input-checkbox input[type="checkbox"]:checked ~ .caption {
  max-height: 800px;
}

/*----------------------------*\
	Section
\*----------------------------*/

.section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 30px;
  margin-top: 15px;
  text-align: center;
}
.section-title p{
  font-size: 15px;
text-transform: capitalize;
font-weight: 500;
color: var(--text-color);
max-width: 850px;
margin: 25px auto 0;
line-height: 25px;
margin-bottom: 30px;
opacity: 0.9;
}
.section-title .title {
  display: inline-block;
  text-transform: capitalize;
  margin: 0px;
  font-size:var(--title-size) ;
  color: var(--title-color);
}



.section-title .section-nav .section-tab-nav {
  display: inline-block;
}

.section-tab-nav li {
  margin: 0 25px;
  display: inline-block;
  vertical-align: middle;
  width: 200px;
}
.section-tab-nav li:hover {
background-color: var(--title-color);
border-radius: 10px;
}

.section-tab-nav li:last-child {
  margin-right: 0px;
}

.section-tab-nav li a {
  text-transform: capitalize;
  position: relative;
  font-weight: 500;
  padding: 8px 35px;
  font-size: 18px;
  border: none;
  color: var(--title-color);
  border-radius: 10px;
  white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
.section-tab-nav li a:hover {
  color: #fff !important;
  background-color: var(--additional-Color);
}
.section-tab-nav li.active a {
  color: #fff;
  background-color: var(--additional-Color);

}


.section-tab-nav li a:hover:after,
.section-tab-nav li a:focus:after,
.section-tab-nav li.active a:after {
  width: 100%;
}

.section-title .section-nav .products-slick-nav {
  top: 0px;
  right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
  padding: 9px 5px;
  background: #f2f2f2;
  border: 1px solid #e4e7ed;
  margin-bottom: 30px !important;
  border-radius: 10px;
  margin: auto;
  width: 90%;
}

#breadcrumb .breadcrumb-header {
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 15px;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree {
  display: inline-block;
}

#breadcrumb .breadcrumb-tree li {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

#breadcrumb .breadcrumb-tree li + li {
  margin-left: 10px;
}

#breadcrumb .breadcrumb-tree li + li:before {
  content: "/";
  display: inline-block;
  color: #8d99ae;
  margin: 0 10px;
}

#breadcrumb .breadcrumb-tree li a {
  color: var(--title-color);
}

#breadcrumb .breadcrumb-tree li a:hover {
  color: var(--title-color);
}

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

/* --------------------------------loader --------------------------*/
.loader_div {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: rgb(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  cursor: wait;
}

.head{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 500px) {
  .head{
    flex-direction: column;
    align-items: normal;
  }
}
#top-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--background-TopHeader);
}

.header-links li {
  display: inline-block;
  margin-right: 15px;
  font-size: 12px;
}

.header-links li:last-child {
  margin-right: 0px;
}

.header-links li a {
  color: var(--color-TextTopHeader);
}

.header-links li i {
  color: #fff;
  margin-right: 5px;
}

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
  background-color: var(--background-Header);
}
.header-logo {
  float: left;
}

.header-logo .logo img {
  display: block;
}

/*----------------------------*\
	Search
\*----------------------------*/
.searchDiv{
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  height: 0px;
  z-index: 1000;
  background-color: var(--background-Search);
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  overflow: hidden;
  margin-left: 0 !important;
}
.searchDiv form{
  display: contents;
}
.searchDiv input[type="search"]{
  border: none;
width: 100%;
max-width: 700px;
margin: 0 10px;
outline: none;
padding: 8px 30px;
border-radius: 30px;
height: 40px;
}
.searchDiv input[type="submit"]{
  border: none;
  margin: 0 10px;
  background-color: var(--title-color);
  padding: 10px 20px;
  color: white;
}
.closeSearch{
  position: absolute;
  top: 12px;
  right: 10px;
  cursor: pointer;
}
.closeSearch i{
  color: var(--color-ButtonSearch);
  font-size: 30px;
}


/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
  float: right;
  padding: 28px 0px 16px;
}

.header-ctn > div {
  display: inline-block;
}

.header-ctn > div + div {
  margin-left: 15px;
}

.header-ctn > div > a {
  display: block;
  position: relative;
  text-align: center;
  color: #fff;
}

.header-ctn > div > a > svg {
  width: 25px;
  height: 25px;

}

.header-ctn > div > a > span {
  font-size: 12px;
  color: var(--header-text-color);

}

.header-ctn > div > a > .qty {
  position: absolute;
  right: 15px;
  top: -10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
  background-color: var(--colorbutton-Header);
}

.header-ctn .menu-toggle {
  display: none;
}

.cart-dropdown {
  position: absolute;
  width: 378px;
  background: #fff;
  border-radius: 10px;
border: 1px solid #e1dede;
  z-index: 99;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 430px) {
  .cart-dropdown {
    width: 90vw;
    right: -108%;
  }
}
.dropdown.open > .cart-dropdown {
  opacity: 1;
  visibility: visible;
}

.cart-dropdown .cart-list {
  height: auto;
  margin-bottom: 15px;
  padding: 15px;
}

.cart-dropdown .cart-list .product-widget {
  padding: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.cart-dropdown .cart-list .product-widget:last-child {
  margin-bottom: 0px;
}

.cart-dropdown .cart-list .product-widget .product-img {
  left: 0px;
  top: 0px;
}

.cart-dropdown .cart-list .product-widget .product-body .product-price {
  color: var(--additional-Color);
}

.cart-dropdown .cart-btns {
 width: 100%;
 padding: 15px;
 display: flex;
align-items: center;
justify-content: space-between;
padding-top: 0;
}

.cart-dropdown .cart-btns > a {
  display: inline-block;
  width: 48%;
  padding: 8.5px;
  background-color: var(--colorbutton-Header);
  color: #fff;
  text-align: center;
  font-weight: 500;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border-radius:10px ;
}
.cart-dropdown .cart-btns > a:hover {
  background-color: var(--additional-Color);
}
.cart-dropdown .cart-btns > a:hover {
  opacity: 0.9;
}

.cart-dropdown .cart-summary {
  border-top: 1px solid #e4e7ed;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*=========================================================
	03 -> Navigation
===========================================================*/


/*----------------------------*\
	Main nav
\*----------------------------*/
.navbar-nav{
  width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 6px 0px;
}
/* .main-nav > li + li {
  margin-left: 30px;
} */

.main-nav li  {
  font-size: 15px;
  margin: 0px 15px;
}

.main-nav > li > a {
  padding: 20px 0px;
}

.main-nav > li > a:hover,
.main-nav > li > a:focus,
.main-nav > li.active > a {
  color: var(--color-Header);
  background-color: transparent;
}

.main-nav > li > a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--color-Header);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-nav > li > a:hover:after,
.main-nav > li > a:focus:after,
.main-nav > li.active > a:after {
  width: 100%;
}

.header-ctn li.nav-toggle {
  display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
  .header-ctn .menu-toggle {
    display: inline-block;
  }
  .navbar-nav{
    flex-direction: column;
    justify-content: left;
align-items: normal;
  }
  #responsive-nav {
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    height: 100vh;
    max-width: 250px;
    width: 0%;
    overflow: hidden;
    z-index: 22;
    padding-top: 60px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  #responsive-nav.active {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    width: 100%;
  }
  .main-nav {
    margin: 0px;
    float: none;
  }
  .main-nav > li {
    display: block;
    float: none;
  }
  .main-nav > li + li {
    margin-left: 0px;
  }
  .main-nav > li > a {
    padding: 15px;
    color: var(--title-color);
    font-size: 17px;
  }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/
.empty_state_catg{
  text-align: center;
}
.empty_state_catg img{
  max-width: 300px;
  min-width: 180px;
}

.shop {
  position: relative;
  overflow: hidden;
  margin: 15px 0px;
  border-radius: 10px;
}
.shop .shop-img {
  position: relative;
  background-color: #e4e7ed;
  z-index: -1;
}
.shop .shop-img > img {
  width: 100%;
  -webkit-transition: transform 5s cubic-bezier(.25,.46,.45,.94);
  transition: transform 5s cubic-bezier(.25,.46,.45,.94);
  height: 320px;
  border-radius: 10px;
  object-fit: cover;
object-position: center;
}

.shop:hover .shop-img > img {
  transform: scale(1.1);
  transition: transform 5s cubic-bezier(.25,.46,.45,.94);
}

.shop .shop-body {
  position: absolute;
  top: 0;
  width: 75%;
  padding: 30px;
  z-index: 10;
}

.shop .shop-body h3 {
  color: var(--title-CategorieColor);
  font-size: var(--title-CategorieSize);
  font-weight: 500;
}

.shop .shop-body .cta-btn {
  border-radius: 10px;
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--button-CategorieBackground);
  border: none;
  color: var(--button-CategorieColor);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal1.section {
  padding: 60px 0px 260px;
background-color: #e4e7ed;
background-repeat: no-repeat;
border-radius: 10px;
background-size: cover;
background-position: center;
}

.hot-deal {
  text-align: center;
}

.hot-deal .hot-deal-countdown {
  margin-bottom: 30px;
}

.hot-deal .hot-deal-countdown > li {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: var(--title-color) e6;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
}

.hot-deal .hot-deal-countdown > li > div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.hot-deal .hot-deal-countdown > li > div h3 {
  color: #fff;
  margin-bottom: 0px;
}

.hot-deal .hot-deal-countdown > li > div span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
}
.hot-deal h2 {
  font-size: var(--title-BannerSize);
  color: var(--title-BannerColor);
}
.hot-deal p {
  text-transform: uppercase;
  font-size: var(--text-BannerSize);
  color: var(--text-BannerColor);
  margin-top: 20px;
}

.hot-deal .btn-banner {
  margin-top: 15px;
  background: var(--button-BannerBackground);
padding: 10px 25px;
border-radius: 25px;
color: var(--button-BannerColor);
line-height: 20px;
}
@media (max-width: 900px) {

  #hot-deal1.section {
    padding: 60px 0px 85px !important;
  }}

@media (max-width: 500px) {
  #hot-deal1.section {
    max-height: 250px;
    padding: 0 !important;
  }
  .hot-deal{
    padding: 40px 0;
  }
  .hot-deal h2{
    font-size: 14px !important;
    margin: 0;
  }
  .hot-deal p{
    font-size: 12px !important;
  }
  .hot-deal .btn-banner{
    padding: 10px 15px;
    font-size: 10px;
  }}
/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
  position: relative;
  margin: 15px 0px;
  border-radius: 10px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-img {
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #f7f7f7;
}
@media(max-width:550px) {
  .product .product-img {
height: 250px !important;
  }
}
@media(max-width:500px) {
  .product .product-img {
height: 220px !important;
  }
}
@media(max-width:479px) {
  .product .product-img {
height: 450px !important;
  }
}
@media(max-width:430px) {
  .product .product-img {
height: 400px !important;
  }
}
@media(max-width:400px) {
  .product .product-img {
height: 360px !important;
  }
}
@media(max-width:350px) {
  .product .product-img {
height: 320px !important;
  }
}
@media(max-width:300px) {
  .product .product-img {
height: 260px !important;
  }
}
.product .product-img > a > img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product .product-img .product-label {
  position: absolute;
  top: 15px;
 left: 15px;
}

.product .product-img .product-label > span {
  border: 2px solid;
  padding: 2px 10px;
  font-size: 12px;
}

.product .product-img .product-label > span.sale {
  background-color: #fff;
  border-color: var(--title-color);
  color: var(--title-color);
}

.product .product-img .product-label > span.new {
  background-color: var(--additional-Color);
  border-color: var(--additional-Color);
  color: #fff;
  border-radius: 5px;
}

.product .product-body {
  position: relative;
  padding: 15px;
  background-color: #f7f7f7;
  text-align: center;
  z-index: 20;
  height: 130px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.product .product-body .product-category {
  text-transform: uppercase;
  font-size:13px;
  color: var(--text-color);
  opacity: 0.8;
}

.product .product-body .product-name {
  text-transform: uppercase;
  font-size: 13px;
}

.product .product-body .product-name > a {
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  color: var(--title-color);
}

.product .product-body .product-name > a:hover,
.product .product-body .product-name > a:focus {
  color: var(--title-color);
}

.product .product-body .product-price {
  color: var(--title-color);
  font-size: 18px;
}

.product .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8d99ae;
}

.product .product-body .product-rating {
  position: relative;
  margin: 15px 0px 10px;
  height: 20px;
}

.product .product-body .product-rating > i {
  position: relative;
  width: 14px;
  margin-right: -4px;
  background: #fff;
  color: #e4e7ed;
  z-index: 10;
}

.product .product-body .product-rating > i.fa-star {
  color: #ef233c;
}

.product .product-body .product-rating:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  background-color: #e4e7ed;
}

.product .product-btns .add-to-wishlist,.product .product-btns .prod-detail {
  position: relative;
    border: none;
    text-transform: capitalize;
    background: #fff;
    min-width: 40px;
    min-height: 40px;
    display: inline-block;
    vertical-align: middle;
    color: var(--title-color);
    text-align: center;
    transition: .3s ease;
    letter-spacing: .5px;
    padding: 8px;
    margin: 5px 0;
    border-radius: 4px;
    box-shadow: 0 0 5px #0003;

}

.product .product-btns .add-to-wishlist:hover,
.product .product-btns .prod-detail:hover {
  background-color: var(--additional-Color);
  color: #fff;
border-color: var(--title-color);
}
.add-to-cart-btn:disabled,
.confirm-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product .product-btns .add-to-wishlist .tooltipp,
.product .product-btns .prod-detail .tooltipp{
  position: absolute;
  bottom: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -15px);
  -ms-transform: translate(-50%, -15px);
  transform: translate(-50%, -15px);
  width: 150px;
  padding: 10px;
  font-size: 12px;
  line-height: 10px;
  background: #1e1f29;
  color: #fff;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.product .product-btns .add-to-wishlist:hover .tooltipp,
.product .product-btns .prod-detail:hover .tooltipp {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -5px);
  -ms-transform: translate(-50%, -5px);
  transform: translate(-50%, -5px);
}

.product .add-to-cart {
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 42%;
  padding: 15px;
  text-align: center;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
  opacity: 0;
}
.btn-c1{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;

}
.product:hover .add-to-cart, .product:hover .product-btns {
 opacity: 1;
}
.product .product-btns {
  position: absolute;
  left: 190px;
  right: 0;
  top: 0;
  padding: 15px;
  text-align: right;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  z-index: 2;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}


.product .add-to-cart .add-to-cart-btn {
  position: relative;
  border: 2px solid transparent;
  height: 40px;
  padding: 0 30px;
  background-color: #fff;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 40px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}




/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
  position: relative;
  display: flex;
  gap: 16px;
}

.product-widget + .product-widget {
  margin: 30px 0px;
}

.product-widget .product-img {
  /* position: absolute;
  left: 0px;
  top: 0px; */
  width: 80px !important;
  min-width: 80px;
  height: 80px !important;
}

.product-widget .product-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-widget .product-body {
  min-height: 60px;
}

.product-widget .product-body .product-category {
  text-transform: uppercase;
  font-size: 10px;
  color: #8d99ae;
}

.product-widget .product-body .product-name {
  text-transform: uppercase;
  font-size: 12px;
}

.product-widget .product-body .product-name > a {
  font-weight: 600;
  color: var(--color-Header);
}

.product-widget .product-body .product-name > a:hover,
.product-widget .product-body .product-name > a:focus {
  color: var(--additional-Color);
}

.product-widget .product-body .product-price {
  font-size: 13px;
  color: var(--color-Header);
}

.product-widget .product-body .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: #8d99ae;
}

.product-widget .product-body .product-price .qty {
  font-weight: 400;
  margin-right: 10px;
}

.product-widget .delete {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--color-Header);
  font-size: 17px;
  opacity: .6;
}


#prix-title {
  font-size: 16px;
}
/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
  padding-bottom: 60px;
  margin-bottom: -60px;
  z-index: 2;
}

.products-slick .product.slick-slide {
  margin: 15px;
}

.products-tabs > .tab-pane {
  display: block;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: hidden;
  padding-bottom: 60px;
  margin-bottom: -60px;
}

.products-tabs > .tab-pane.active {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.products-slick-nav {
  position: absolute;
  right: 2px;
  z-index: 10;
  top: 70%;
}

.products-slick-nav .slick-prev,
.products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  min-width: 42px;
  min-height: 42px;
  display: inline-block !important;
  margin: 0px 12px;
  border-radius: 10px !important;
  box-shadow: 0 0 5px #0003;
}

.products-slick-nav .slick-prev:before,
.products-slick-nav .slick-next:before {
  font-size: 25px;
}

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside + .aside {
  margin-top: 30px;
}

.aside > .aside-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 15px 0px 30px;
}
.aside h3{
  font-size: 13px;
text-transform: uppercase;
font-weight: 500;
}

/*-- checkbox Filter --*/

.checkbox-filter > div + div {
  margin-top: 10px;
}

.checkbox-filter .input-radio label,
.checkbox-filter .input-checkbox label {
  font-size: 13px;
}

.checkbox-filter .input-radio label small,
.checkbox-filter .input-checkbox label small {
  color: #8d99ae;
}
.input-radio input{
  appearance: none;
position: relative;
line-height: 0;
-webkit-appearance: none;
-moz-appearance: none;
}
.input-radio input::after{
  position: absolute;
content: "";
width: 20px;
height: 20px;
border: 1px solid #DEE2E6;
line-height: 20px;
text-align: center;
top: -7px;
left: -10px;
}
.input-radio input:checked::after{
  content: "\f00c";
background: var(--additional-Color);
font-family: "FontAwesome";
color: #fff;
}
/*-- Price Filter --*/

#price-slider {
  margin-bottom: 15px;
}

.noUi-target {
  background-color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #e4e7ed;
  border-radius: 0px;
}

.noUi-connect {
  background-color: var(--additional-Color);
  opacity: 0.7;
}

.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  left: -6px;
  top: -4px;
  border: none;
  background: var(--additional-Color);
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 50%;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.price-filter .input-number {
  display: inline-block;
  width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
  margin-bottom: 15px;
  margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
  display: inline-block;
}

.store-sort label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

/*-- Store Grid --*/

.store-grid {
  float: right;
}

.store-grid li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-grid li + li {
  margin-left: 5px;
}

.store-grid li:hover {
  background-color: #e4e7ed;
  color: var(--title-color);
}

.store-grid li.active {
  background-color: var(--title-color);
  border-color: var(--title-color);
  color: #fff;
  cursor: default;
}

.store-grid li a {
  display: block;
}

/*-- Store Pagination --*/

.store-pagination {
  float: right;
}
.pagii{
  margin-right: 77px;
}
@media(max-width:882px) {
  .pagii{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
  }
}
.store-pagination li {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.store-pagination li + li {
  margin-left: 5px;
}

.store-pagination li:hover {
  background-color: #e4e7ed;
  color: var(--title-color);
}

.store-pagination li.active {
  background-color: var(--title-color);
  border-color: var(--title-color);
  color: #fff;
  font-weight: 500;
  cursor: default;
}

.store-pagination li a {
  display: block;
}

.store-qty {
  margin-right: 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
  left: 1px;
}

#product-main-img .slick-next {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  right: 1px;
}

#product-main-img .slick-prev,
#product-main-img .slick-next {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-main-img:hover .slick-prev,
#product-main-img:hover .slick-next {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}

#product-main-img .zoomImg {
  background-color: #fff;
}

#product-imgs .smal1 {
  margin: 5px 5px;
  border: 1px solid #e4e7ed;
height: 150px;
}

#product-imgs .smal1.slick-current {
  border-color: var(--title-color);
}

#product-imgs .slick-prev {
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-next {
  top: calc(100% - 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
  content: "\f106";
}

#product-imgs .slick-next:before {
  content: "\f107";
}
.big-img .product_images{
  height: 500px;
}
.product_images  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
object-position: center;
}
#product-imgs {
  height: 100%;
  overflow: auto;
  max-height: 500px;
  overflow-x: hidden;
}
@media (max-width: 1100px) {
  .big-img .product_images{
    height: 400px !important;
  }
}
.descri h3{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 990px) {
  .big-img .product_images{
    height: 720px !important;
  }
  .product-details .descri{
    max-height: 400px !important;
text-align: center;
  }
  #product-imgs {
    width: 100%;
    display: flex;
    overflow: auto;
    max-width: 865px;
    overflow-y: hidden;
  }

}
@media (max-width: 760px) {
  .big-img .product_images{
    height: 700px !important;
  }
  .zoomImg{
    display: none !important;
  }
}
@media (max-width: 660px) {
  .big-img .product_images{
    height: 630px !important;
  }
}
@media (max-width: 500px) {
  .big-img .product_images{
    height: 500px !important;
  }
  .button-link-top .content-right{
    font-size: 12px !important;
  }
}
@media (max-width: 400px) {
  .big-img .product_images{
    height: 360px !important;
  }
}
@media (max-width: 340px) {
  .big-img .product_images{
    height: 310px !important;
  }
}

@media (max-width: 1100px) {
  .smal1{
    height: 120px !important;
  }

}
@media (max-width: 990px) {
  .smal1{
    height: 230px !important;
    max-width: 230px !important;
    min-width: 230px !important;
  }
  .smal1  .slick-track{
    margin: 0 !important;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 660px) {
  .smal1{
    height: 200px !important;
    max-width: 200px !important;
    min-width: 200px !important;
  }
}
@media (max-width: 500px) {
  .smal1{
    height: 145px !important;
    max-width: 145px !important;
    min-width: 145px !important;
  }
}
@media (max-width: 400px) {
  .smal1{
    height: 112px !important;
    max-width: 112px !important;
    min-width: 112px !important;
  }
}
@media (max-width: 340px) {
  .smal1{
    height: 90px !important;
    max-width: 90px !important;
    min-width: 90px !important;
  }
}
/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
  font-size: 26px;
margin-bottom: 10px;
text-transform: capitalize;
font-weight: 500;
word-break: break-word;
}

.product-details .product-rating {
  display: inline-block;
  margin-right: 15px;
}

.product-details .product-rating > i {
  color: #e4e7ed;
}

.product-details .product-rating > i.fa-star {
  color: var(--title-color);
}

.product-details .review-link {
  font-size: 12px;
}

.product-details .product-price {
  display: inline-block;
  font-size: 30px;
  margin-top: 10px;
  color: var(--title-color);
  font-weight: 500;
}

.product-details .product-price .product-old-price {
  font-size: 70%;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.6;
}

.product-details .product-available {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--additional-Color);
}
.product-details .descri{
  max-height: 150px;
  overflow-y: scroll;
  color: var(--text-color);
}
.product-details .descri img{
 width: 200px;
 height: 200px;
}
.product-details .product-options {
  margin-top: 30px;
  margin-bottom: 30px;
}

.product-details .product-options label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
  margin-bottom: 0px;
}

.product-details .product-options .input-select {
  width: max-content;
}

.product-details .add-to-cart {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details .add-to-cart .add-to-cart-btn,
.confirm-btn {
  position: relative;
  border: 2px solid transparent;
  min-height: 45px;
  padding: 0 30px;
  background-color: var(--title-color);
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 10px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  width: 100%;
  padding: 8px 10px;
}
.product-details .add-to-cart .commander {
  margin-top: 1rem;
  background-color: transparent !important;
  color: var(--title-color) !important;
  border:1px solid var(--title-color) !important;
}
.product-details .add-to-cart .add-to-cart-btn:hover,
.confirm-btn {
  background-color: var(--additional-Color) !important;
  color: #fff !important;
}

.product-details .add-to-cart .qty-label {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 15px;
}

.product-details .add-to-cart .qty-label .input-number {
  width: 120px;
  display: inline-block;
}

.product-details .product-btns li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
}

.product-details .product-btns li + li {
  margin-left: 15px;
}

.product-details .product-links {
  margin-top: 15px;
}

.product-details .product-links li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.product-details .product-links li + li {
  margin-left: 10px;
  padding: 5px 10px;
border-radius: 4px;
}
.product-details .product-links li i,
.product-details .product-links li a{
font-size: 13px;
color: #fff;
}

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
  margin-top: 60px;
}

#product-tab .tab-nav {
  position: relative;
  text-align: center;
  padding: 15px 0px;
  margin-bottom: 30px;
}

#product-tab .tab-nav:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #e4e7ed;
  z-index: -1;
}

#product-tab .tab-nav li {
  display: inline-block;
  background: #fff;
  padding: 0px 15px;
}

#product-tab .tab-nav li + li {
  margin-left: 15px;
}

#product-tab .tab-nav li a {
  display: block;
  font-weight: 700;
  color: #8d99ae;
}

#product-tab .tab-nav li.active a {
  color: var(--title-color);
}

#product-tab .tab-nav li a:after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--title-color);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#product-tab .tab-nav li a:hover:after,
#product-tab .tab-nav li a:focus:after,
#product-tab .tab-nav li.active a:after {
  width: 100%;
}

/*-- Rating --*/

.rating-avg {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.rating-avg .rating-stars {
  margin-left: 10px;
}

.rating-avg .rating-stars,
.rating .rating-stars {
  display: inline-block;
}

.rating-avg .rating-stars > i,
.rating .rating-stars > i {
  color: #e4e7ed;
}

.rating-avg .rating-stars > i.fa-star,
.rating .rating-stars > i.fa-star {
  color: var(--title-color);
}

.rating li {
  margin: 5px 0px;
}

.rating .rating-progress {
  position: relative;
  display: inline-block;
  height: 9px;
  background-color: #e4e7ed;
  width: 120px;
  margin: 0px 10px;
  border-radius: 5px;
}

.rating .rating-progress > div {
  background-color: var(--title-color);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 5px;
}

.rating .sum {
  display: inline-block;
  font-size: 12px;
  color: #8d99ae;
}

/*-- Reviews --*/

.reviews li {
  position: relative;
  padding-left: 145px;
  margin-bottom: 30px;
}

.reviews .review-heading {
  position: absolute;
  width: 130px;
  left: 0;
  top: 0;
  height: 70px;
}

.reviews .review-body {
  min-height: 70px;
}

.reviews .review-heading .name {
  margin-bottom: 5px;
  margin-top: 0px;
}

.reviews .review-heading .date {
  color: #8d99ae;
  font-size: 10px;
  margin: 0;
}

.reviews .review-heading .review-rating {
  margin-top: 5px;
}

.reviews .review-heading .review-rating > i {
  color: #e4e7ed;
}

.reviews .review-heading .review-rating > i.fa-star {
  color: var(--title-color);
}

.reviews-pagination {
  text-align: center;
}

.reviews-pagination li {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.reviews-pagination li:hover {
  background-color: #e4e7ed;
  color: var(--title-color);
}

.reviews-pagination li.active {
  background-color: var(--title-color);
  border-color: var(--title-color);
  color: #fff;
  cursor: default;
}

.reviews-pagination li a {
  display: block;
}

/*-- Review Form --*/

.review-form .input {
  margin-bottom: 15px;
}

.review-form .input-rating {
  margin-bottom: 15px;
}

.review-form .input-rating .stars {
  display: inline-block;
  vertical-align: top;
}

.review-form .input-rating .stars input[type="radio"] {
  display: none;
}

.review-form .input-rating .stars > label {
  float: right;
  cursor: pointer;
  padding: 0px 3px;
  margin: 0px;
}

.review-form .input-rating .stars > label:before {
  content: "\f006";
  font-family: FontAwesome;
  color: #e4e7ed;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.review-form .input-rating .stars > label:hover:before,
.review-form .input-rating .stars > label:hover ~ label:before {
  color: var(--title-color);
}

.review-form .input-rating .stars > input:checked label:before,
.review-form .input-rating .stars > input:checked ~ label:before {
  content: "\f005";
  color: var(--title-color);
}

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
  margin-bottom: 30px;
}

.shiping-details {
  margin-bottom: 30px;
}

.order-details {
  position: relative;
  padding: 0px 30px 30px;

}
.order-summary {
  margin: 15px 0px;
}

.order-summary .order-col {
  /* display: table; */
  width: 100%;
}

/* .order-summary .order-col:after {
  content: "";
  display: block;
  clear: both;
} */

.order-summary .order-col > div {
  display: table-cell;
  padding: 10px 0px;
}

.order-summary .order-col > div:first-child {
  width: calc(100% - 150px);
}

.order-summary .order-col > div:last-child {
  width: 150px;
  text-align: right;
}

.order-summary .order-col .order-total,
.order-total11 {
  font-size: 20px;
color: var(--additional-Color);
font-weight: 400;
margin-left: 5px;
}
.order-summary span{
  font-size: 16px;
  color: var(--title-color);
  font-weight: 500;
}

.order-details .payment-method {
  margin: 30px 0px;
}

.order-details .order-submit {
  display: block;
  margin-top: 15px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
width: 90%;
margin: auto;
border-radius: 10px;
padding: 40px;
position: relative;
z-index: 1;
  background-color: var(--background-EmailSub);
}

.newsletter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-icon{
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-icon i{
  font-size: 45px;
margin-right: 10px;
margin-bottom: 7px;
color: var(--color-EmailSub);
}
.news-icon p{
  max-width: 110px !important;
font-size: 13px;
margin-bottom: 5px !important;
text-transform: uppercase;
font-weight: 700 !important;
display: inline-block;
vertical-align: middle;
margin-right: 0 !important;
}
.newsletter p {
  font-size: 13px;
  margin-bottom: 0;
  max-width: 250px;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  font-weight: 500;
  color: var(--color-EmailSub);
  margin-right: 28px;
  opacity: 0.8;
  text-align: center;
}

.newsletter form {
  position: relative;
  max-width: 520px;
}
.fline{
  background: var(--color-EmailSub);
width: 1px;
height: 40px;
display: inline-block;
vertical-align: middle;
margin: 0 20px;
}
.newsletter form .input {
 width: 360px;
  margin-right: -5px;
  height: 55px !important;
  border-radius: 10px 0 0 10px;
  height: 55px;
  border: none;
  outline: none;
}
@media(max-width:1200px) {
  .newsletter form{
      width: 65% !important;
      display: flex;
      align-items: center;
      justify-content: center;
   }
   .email-seb{
    display: none !important;
  }
.fline{
  display: none;
}}
@media(max-width:675px) {
  .newsletter {
    flex-direction: column;
  }
  .newsletter form{
    width: 100% !important;
 }
 .newsletter form .input {
  min-width: 150px !important;
  max-width: 360px !important;
 }
}
.newsletter form .newsletter-btn {
  width: 125px;
  height: 54px;
  font-weight: 700;
  background: var(--button-EmailSubBackground);
  color: var(--button-EmailSubColor);
  border: none;
  border-radius: 0px 10px 10px 0px;
}

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
  background: var(--background-Footer);
  color: var(--color-Footer);
  padding-top: 60px;
  margin-bottom: 0 !important;
  margin-top: -60px;
}

.footer{
  margin-bottom: 20px;
}
.footer .footer-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin: 0px 0px 30px;
}
.links-foot{
  display: flex;
  align-items: center;
  /* justify-content: left; */
  width: 100%;
  margin-top: 10px;
}
.links-foot ul li{
  list-style: none;
  margin: 5px;
}
.links-foot ul{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0%;
}
.links-foot ul li svg{
  width: 17px;
  height: 17px;
  color: var(--additional-Color);
  cursor: pointer;
  margin-top: 4px;
}
.links-foot ul li a{
min-width: 40px;
min-height: 40px;
border-radius: 10px;
box-shadow: 0 0 5px #0003;
display: inline-block;
text-align: center;
padding-top: 8px;
background: #fff;}
.links-foot ul li i{
  display: inline-block;
  color: var(--additional-Color);
  font-size: 23px;
  border-radius: 50%;
  margin: 0 5px 0 5px;
  position: relative;
  margin-right: .5rem;
}
.footer-links{
  line-height: 45px;
}
.footer-links li + li {
  margin-top: 15px;
}

.footer-links li a {
  color:var(--color-Footer);
}

.footer-links li i {
  margin-right: 15px;
  color: var(--title-color);
  width: 14px;
  text-align: center;
}

.footer-links li a:hover {
  color: var(--additional-Color);
}
footer .bottom-details {
  width: 100%;
  position: relative;
  background: var(--background-BottomFooter);

}
footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 10px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  border-top: 1px solid #eee;
padding: 15px 0;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-BottomFooter);
font-weight: 400;
width: 50%;
text-align: left;
line-height: 40px;
}
.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a {
  margin-right: 10px;
}
@media (max-width: 700px) {

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .footer-payments{
    width: 100% !important;
    justify-content: center !important;
  }
.bottom_text{
  flex-direction: column;
}
.bottom-details .bottom_text span, .bottom-details .bottom_text a{
  width: 100%;
  text-align: center;
}

}
.payment_logo{
  width: 40px;
}
.footer-payments{
  display: flex;
  align-items: center;
  justify-content: right;
  margin: 0;
  padding: 0;
  width: 50%;
}
.footer-payments li {
  display: inline-block;
  margin-right: 5px;
}

.footer-payments li a {
  color: #15161d;
  font-size: 36px;
  display: block;
}

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 22;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: var(--additional-Color);
  border-color: var(--additional-Color);
}

.slick-prev:before,
.slick-next:before {
  font-family: FontAwesome;
  color: var(--additional-Color);
}

.slick-prev:before {
  content: "\f104";
}

.slick-next:before {
  content: "\f105";
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #fff;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
  width: 10px;
  height: 10px;
}

.slick-dots li button:before {
  content: "";
  opacity: 1;
  background: #e4e7ed;
  border-radius: 50%;
}

.slick-dots li.slick-active button:before {
  background-color: var(--title-color);
}

.custom-dots .slick-dots {
  position: static;
  margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 380px) {
  #top-header .header-links.pull-left {
    float: none !important;
  }
  #top-header .header-links.pull-right {
    float: none !important;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 991px) {

  .header-logo {
    float: none;
    text-align: center;
    width: 100%;
  }
  .header-logo .logo {
    display: inline-block;
  }
  #product-imgs {
    margin-bottom: 60px;
    margin-top: 15px;
  }
  #rating {
    text-align: center;
  }
  #reviews {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title .section-nav {
    float: none;
    margin-top: 10px;
  }
  .section-tab-nav li {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  [class*="col-xs"] {
    width: 100%;
  }
  .store-grid {
    float: none;
    margin-top: 10px;
  }
  .store-pagination {
    float: none;
    margin-top: 10px;
  }
}
.jtextfill {
  padding: 6px 0;
}
.title-text {
  font-weight: 700;
  color: var(--title-color);
  font-size: 25px !important;
}
.logo {
  max-width: 280px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: left;
  overflow: hidden;
  max-height: 75px;
margin-top: 10px;
margin-bottom: 10px;
}

.filter {
  display: flex;
  justify-content: center;
}
.filter > .primary-btn {
  padding: 12px 100px;
  margin: 2rem 0;
}
.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-default {
  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
.ldld.full::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 48px;
}
.ldld.default::before,
.ldld.full::before,
.ldld.ldbtn::before,
.ldld.bare::before {
  content: " ";
  display: block;
  background: 0;
  animation: ldld-default 0.5s ease-in-out infinite;
  border-radius: 50%;
  box-sizing: border-box;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
}
.ldld.full {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.ldld.running {
  visibility: visible;
  opacity: 1;
}
.ldld {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
@keyframes ldld-default {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.add-to-cart .primary-btn {
  padding: 10px 9px !important;
min-height: 18px !important;
border-radius: 10px !important;
  border: none;
text-transform: capitalize;
background: #fff;
min-width: 40px !important;
min-height: 40px !important;
display: inline-block;
vertical-align: middle;
color: var(--title-color) ;
text-align: center;
transition: .3s ease;
letter-spacing: .5px;
margin: 5px 0;
box-shadow: 0 0 5px #0003 !important;
}
.products-slick .primary-btn {
  padding: 12px 30px;
}
/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  background-color: var(--additional-Color); /* var(--title-color) background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 10000; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
  transform: translateX(-50%);
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
}
.drag {
  cursor: move;
}
.dragElm {
  opacity: 0.4;
  z-index: 9999;
}
.draggable-source--is-dragging {
  opacity: 0.4;
  z-index: 1;
}
.draggable-mirror {
  z-index: 999;
  box-shadow: 0 0.4rem 3rem var(--title-color);
  background-color: #fff;
}
.product-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
td {
  vertical-align: middle !important;
}
.table > thead > tr > th{
  border-bottom: 1px solid #f0f0f0 !important;
}
.table{
  border-bottom: 1px solid #f0f0f0;
}
.noti-cart{
  width: 50%;
}
.name-cart1{
  width: 60%;

}
.name-cart{
  display: flex;
align-items: baseline;
justify-content: left;
flex-direction: column;
text-align: left;
width: 100%;
height: 100%;
padding-left: 15px;
padding-top: 15px;
line-height: 2;
}
.name-1{
  display: block;
font-size: 13px;
text-transform: capitalize;
font-weight: 500;
}
.img-cart{
  width: 150px;
  max-height: 150px;
  border-radius: 4px;
  border: 1px solid #f2f2f2;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1000px) {
  .qty-table {
    padding-right: 0 !important;
  }
  .products-slick-nav{
    display: none;
  }
}
.big-text {
  font-size: 24px;
}
#reduction-code {
  padding: 0.8rem;
  flex: 1;
}
.apply-reduction {
  background-color: var(--title-color);
  border: none;
  padding: 1rem;
  color: white;
}
.apply-reduction:disabled {
  opacity: 0.4;
}
.reduction {
  display: flex !important;
}
.dropdown-backdrop {
  position: static;
}


.wishlist-img {
  width: 114px;
  height: 114px;
  border-radius: 10px;
  border: 1px solid #8d99ae;
}
/*------------------------------------- carousel -----------------------------------*/
.carouselContainer{
  height: 600px;
  overflow: hidden;
  min-height: 500px;
}

.carouselItems{
  width: 100%;
  height: 100%;
  position: relative;
}
.slick-list{
  height: 100%;
}
.slick-track{
  height: 100%;
}
.carouselContent{
  width: 100%;
  text-align: left;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}
.desc-carousel{
  max-width: 500px;
}
.mini-title h3{
  font-size: 13px;
font-weight: 500;
padding-bottom: 15px;
letter-spacing: 4px;
color: var(--title-color);
margin-bottom: 0;
margin-top: 0;
}

.name-carousel span{
font-size:var(--title-CollectionSize);
font-weight: 600;
padding-bottom: 15px;
color: var(--title-CollectionColor);
}
@media(max-width:500px) {
  .name-carousel span{
    font-size: 22px !important;
    }
    .desc-carousel h3{
      font-size:12px !important;
    }
   }
@media(max-width:1200px) {
  .sideCart{
      height: 93% !important;
   }
  .carouselContainer{
      overflow: hidden;
  }
  .carouselItems{
      width: 100%;
      position: relative;

  }
  .name-carousel span{
      font-size: 30px;
  }
}
.desc-carousel h3{
  font-size: var(--text-CollectionSize);
  font-weight: 500;
  padding-bottom: 15px;
  text-transform: unset;
  line-height: 1.5;
  color: var(--text-CollectionColor);
}
.carouselContent button{
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  border: none;
  color: var(--button-CollectionColor);
  padding: 12px 35px;
text-transform: capitalize;
  transition: all .3s;
  display: inline-block;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  background-color: var(--button-CollectionBackground);
}
.carouselContainer .slick-arrow{
  position: absolute;
  z-index: 20;
  top: 97%;
  transform: translateY(-50%);
}
.carouselContainer .slick-prev{
  right: 0px;
  width: 31px;
  height: 31px;
  background: transparent;
  border: 0 none;
  text-align: center;
  z-index: 5;
  left: 93%;
}


.carouselContainer .slick-prev::before{
  font-family: "FontAwesome";
  content: "\f053";
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  font-size: 16px;
}
.carouselContainer .slick-next::before{
  font-family: "FontAwesome";
  content: "\f054";
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  font-size: 16px;
}
.carouselContainer .slick-next{
  right: 0px;
  width: 31px;
  height: 31px;
  background: transparent;
  border: 0 none;
  text-align: center;
  z-index: 5;
}
.carouselContainer .slick-next:hover, .carouselContainer .slick-prev:hover{
background-color: var(--title-color);
border-radius: 0 !important;
}
@media(max-width:800px) {
  .carouselContainer .slick-next,
  .carouselContainer .slick-prev{
      display: none !important;
   }

  }
.carouselItem{
  width: 100%;
  position: relative;
  height: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translateX(-2px);
}
.carouselItem img{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity .4s cubic-bezier(.25,.46,.45,.94);
  object-fit: cover;
  object-position: center;
}
@media(max-width:620px) {
  .carouselContent{
      text-align: center !important;
   }
   .cta-btn{
     padding: 9px;
   }
   .cta-btn i{
    display: none;
   }
   .text-uppercase, .hot-deal p{
     font-size: 18px;
   }
   .add-to-cart-btn{
     width: 170px !important;
   }
  }

/*----------------------------------- end carousel -----------------------------------*/

.lang-menu {

  position: relative;
}
.lang-menu .selected-lang {
  display: flex;
  justify-content: left;
  line-height: 2;
  cursor: pointer;
  color: var(--second-color);
  font-weight: 600;
}

.lang-menu ul {
  position: absolute;
transform: translate3d(-50%, 40px, 0) !important;
background: #fff;
padding: 10px;
z-index: 151;
overflow-y: auto;
display: none;
min-width: 210px;
transform: none !important;
top: 25px !important;
right: 0;
left: auto !important;
border-radius: 10px;
border: 1px solid #eeeeee;
}


.lang-menu ul li {
  display: block;
  padding: 4px 15px;
  text-transform: capitalize;
}

.lang-menu ul li a {
  text-decoration: none;
  width: 125px;
  display: block;
  color: #777;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}

.lang-menu ul li:hover {
  background-color: #f2f2f2;
}

.lang-menu:hover ul {
  display: block;
}

/***************************promotion****************************************/
.banner{
  margin-top: 60px !important;
  max-width: 1200px;
  padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
margin-bottom: 45px;

}
.case-banner{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
background: #fff;
padding: 30px 0;
box-shadow: 0 0 3px #0003;
text-align: center;
border-radius: 5px;
overflow: hidden;
}
.responsivee{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.case1, .case2, .case3, .case4, .case5{
  width: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.case1 img, .case2 img, .case3 img, .case4 img, .case5 img{
  width: 38px;
  height: 38px;
}
.icon-border{
  display: inline-block;
vertical-align: middle;
border: 1px solid #eeeeee;
border-radius: 100%;
min-width: 65px;
min-height: 65px;
padding: 18px 0;
text-align: center;
transition: .3s all ease;
}
.icon-border:hover{
  box-shadow: 0 0 5px #0003;
}

.txt-case{
  text-align: center;
  padding: 10px 0 0 10px;
  width: 170px;
  word-wrap: break-word;
}
.case1 span, .case2 span, .case3 span, .case4 span, .case5 span{
font-size: 13px;
color: var(--text-color);
}
.case1 h2, .case2 h2, .case3 h2, .case4 h2, .case5 h2{
  text-align: center;
  font-size: 14px;
  color: var(--title-PromotionColor);
  margin-top: 0;
  margin-bottom: 6px;
  }

.slider-case .slick-prev, .slider-case .slick-next{
 display: none !important;
}
@media(max-width:900px) {
  .noti-cart{
    width: 100% !important;
  }
.case-banner{
  flex-direction: column;
}
.responsivee{
  width: 100%;
  margin-bottom: 30px;
}
.section-tab-nav li a{
  padding: 6px 12px;
  font-size: 13px;
}
.section-tab-nav li{
  margin: 5px 5px !important;
}
.carouselContainer{
  height: 55vh;
  min-height: 0;
}
}
@media(max-width:450px) {
  .carouselContainer{
    height: 40vh;
    min-height: 0;
  }
  }
@media(max-width:530px) {
  .case1, .case2, .case3, .case4, .case5{
    width: 100%;
    margin-bottom: 30px;
    /* justify-content: left; */
    margin-left: 20px;
  }
  .responsivee{
    width: 100%;
    flex-direction: column;
    margin: 0 !important;
  }
  }
/*********************************************end promo************************/
#tab-3,
#tab-5 {
  display: none;
}
#tab-3 ~ label,
#tab-4 ~ label,
#tab-5 ~ label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #ece7e7;
  padding-bottom: 10px;
  margin-bottom: 25px;
  width: 100%;
}



#tab-3:checked ~ label ~ .checkbox-filter,
#tab-5:checked ~ label ~ .radio-group1 {
  height: 0px;
  overflow: hidden;
}
#tab-3:checked ~ label .upperdown .upper,
#tab-5:checked ~ label .upperdown .upper
 {
  display: block;
}
#tab-3:checked ~ label .upperdown .down,
#tab-5:checked ~ label .upperdown .down {
  display: none;
}
#tab-4 {
  display: none;
}
#tab-4:checked ~ label ~ .checkbox-filter {
  height: 0px;
  overflow: hidden;
}
#tab-4:checked ~ label .upperdown .upper {
  display: block;
}
#tab-4:checked ~ label .upperdown .down {
  display: none;
}
.upper {
  display: none;
}
.upper i, .down i{
  font-size: inherit;
  color: var(--second-color);
}
.banner-contact{
width: 90%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 40px;
margin-top: 40px;
}
.case-contact1{
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.case-contact1 img{
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}
.case-contact1 h4{
  font-size: 18px;
margin-bottom: 10px;
color: var(--title-color);
font-weight: 500;
text-transform: uppercase;
}
.case-contact1 p{
  font-size: 13px;
  color: #979494;
  width: 100%;
}
.form-control{
  -webkit-appearance: none;
appearance: none;
background-color: #fff;
border: .1rem solid #e1e1e1;
border-radius: 4px;
font-size: 13px;
width: 100%;
height: 45px;
box-sizing: border-box;
}
@media (max-width: 700px) {
  .banner-contact{
    width: 100%;
    flex-direction: column;
    }
}
#map{
  position: relative;
   width: 100%;
height: 450px;
}
.modali {
  border: 2px solid var(--additional-Color);
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  color: #717171;
}
.input_container {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  flex-direction: column;
}
.modali #name {
  direction: ltr !important;
}
.input_container input,
.input_container select {
  text-align: left;
  border: 2px solid var(--additional-Color);
  height: 50px;
  width: 100%;
  border-radius: 3px;
  font-size: 14px;
  padding: 6px 12px;
  background-color: transparent;
  outline: none;
  color: #717171;
}
#tab-3 {
  display: none;
}

#tab-3~label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 42px;
  cursor: pointer;
  border-bottom: 2px solid var(--additional-Color);
  padding: 0 10px;
  margin-top: 25px;
}

.label-span {
  font-size: 16px;
  position: relative;
  color: #0a0a0a;
  font-weight: 500;
}

#tab-3:checked~label~.radio-group {
  height: 0px;
  overflow: hidden;
}

#tab-3:checked~label .upperdown .upper {
  display: block;
}

#tab-3:checked~label .upperdown .down {
  display: none;
}

.upper {
  display: none;
}

.upper i,
.down i {
  font-size: inherit;
  color: var(--additional-Color);
}
#judecheckout_show_hide {
  background: #fcfcfc;
  padding: 10px;
  margin-top: 0;
}

#judecheckout_show_hide table {
  margin-bottom: 0;
}

#judecheckout_count_number {
  display: inline-block;
  font-size: 12px;
  height: 18px;
  line-height: 18px;
  padding: 0 3px;
  background-color: var(--additional-Color);
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
}

#judecheckout_count_number:before {
  content: 'x ';
}

#judecheckout_d_free span {
  display: inline-block;
  font-size: 15px;
  height: 20px;
  line-height: 20px;
  padding: 0 7px;
  background-color: #685f59;
  border-radius: 3px;
  color: #fff;
}

.summary-product-title {
  font-weight: bold !important;
  font-size: 15px;
  color: #0a0a0a;
}

.not-price, .pickup-container span, .input-radio label p, #judecheckout_d_price, .full-price {
  font-size: 14px;
}

.summary-select-state {
  font-size: 14px;
  opacity: .8;
}

.judecheckout_currency {
  display: none;
}

#shipping-methods {
  font-size: 14px;
  margin-left: 10px;
  opacity: .75;
}

#judecheckout_show_hide .variation-prices .crossed-price bdi {
  font-weight: normal;
  color: #aeaeae;
}

#judecheckout_show_hide td {
  border: none;
  border-bottom: 2px dotted #0a0a0a;
  text-align: left;
  padding: 10px 5px 10px;

}

#judecheckout_show_hide .full-price td {
  font-weight: bold;
  border-bottom: 0;
}

#judecheckout_show_hide .full-price td:last-child {
  color: #685f59;

}

@media (max-width: 500px) {
  .input_container{
    margin-top: 0;
  }
  .input_container input, .input_container select{
    width: 100%;
    margin: 0 !important;
    margin-bottom: 20px !important;
  }
  .credit-card-info--form{
    margin-top: 20px;
  }
  .product-details .add-to-cart .add-to-cart-btn,
  .confirm-btn {
    font-size: 11px;
    background-color: #fff;
  color: var(--additional-Color);
  border-color: var(--additional-Color);
  padding: 0px 30px 0px 36px;
  }
  .product-details .add-to-cart .add-to-cart-btn > i,
  .confirm-btn > i {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 370px) {
  .product-details .add-to-cart .add-to-cart-btn,
  .confirm-btn {
    font-size: 10px;
  }
}
.whatsapp-order-section #whatsapp-orders{
    position: relative;
    border: 2px solid transparent;
    padding: 9px 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 10px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  background: #25d466;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

}
.whatsapp-order-section #whatsapp-orders:hover {
  background-color: #fff;
  color: #25d466;
  border-color: #25d466;
}
.whatsapp-order-section #whatsapp-orders > i {
  color: #25d466;
  opacity: 0;
  visibility: hidden;
}
.whatsapp-order-section #whatsapp-orders:hover > i {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 500px) {
  .whatsapp-order-section #whatsapp-orders{
    font-size: 11px;
    background-color: #fff;
  color: #25d466;
  border-color: #25d466;
  }
  .whatsapp-order-section #whatsapp-orders > i {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 370px) {
  .whatsapp-order-section #whatsapp-orders{
    font-size: 10px;
  }
}


.form-group textarea {
  resize: none;
}



.wrapper{
  width: 94%;
}
.containerrr{
  width: 100%;
  height: 20px;
  position: relative;
}
input[type="range"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background-color: transparent;
  pointer-events: none;
}
.slider-track{
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  border-radius: 5px;
  background: linear-gradient(to right, rgb(218, 218, 229) 0%, var(--additional-Color) 0%, var(--additional-Color) 100%, rgb(218, 218, 229) 100%);
}
input[type="range"]::-moz-range-thumb{
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  cursor: col-resize;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--additional-Color);
  pointer-events: auto;
  outline: none;
  outline: none;
}
input[type="range"]::-webkit-range-thumb{
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  cursor: col-resize;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--additional-Color);
  pointer-events: auto;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  cursor: col-resize;
  border-radius: 50%;
  background-color: black;
  pointer-events: auto;
  border: none;
  outline: none;
}
input[type="range"]:active::-webkit-slider-thumb{
  background-color: #ffffff;
  border: 3px solid black;
  border: none;
  outline: none;
}
.values{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}
.values >*{
  margin:0 5px;
}

.wrapper .values div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5ch;
  /* width: calc(50% - 7px); */
  height: 45px;
  width: 100%;
  border: 1px solid #e4e7ed;
  background-color: #fff;

  font-size: 16px;
  color: var(--additional-Color);
  border-radius: 10px;
}

#bigCartTotal, .col-tax {
  display: flex;
  justify-content: space-between;
}

/* language selector */
.language-selector {
  position: relative;
  display: inline-block;
  margin: auto 7px;
}

.language-custom-dropdown {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 5px;
}

.arrow {
  width: 20px !important;
  height: 20px !important;
  transition: transform 0.3s ease;
}

.arrow.flip {
  transform: scaleY(-1); /* Flip the arrow horizontally */
}

.language-dropdown-options {
  width: max-content;
  padding: 10px;
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 1px solid #555555;
  border-radius: 6px;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: all 0.3s ease-in-out;
  display: none;
}

#selected-language {
  font-size: 12px;
}

.language-dropdown-options div {
  padding: 5px 10px;
  cursor: pointer;
  line-height: 1.2;
  color: var(--color-Header);
}

.language-dropdown-options div:hover {
  background-color: #f2f2f2;
}
.show {
  display: block;
}




.arabic-text {
  font-family: "Noto Kufi Arabic", sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.default-text {
  font-family: "Montserrat", sans-serif !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}
.right-tr {
  direction: ltr !important;
  text-align: left;
}
.right-tr::placeholder {
  text-align: right;
}

.right-tr2 {
  direction: ltr !important;
  text-align: left;
}
.right-tr2::placeholder {
  text-align: left;
}


/********** paiment *****/
/* Payment Methods Styles */
.payment-methods-container {
  background: var(--background-color);
  padding:20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}

/* Animation for selection */
@keyframes select-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0);
  }
}

.payment_logo {
  width: 18px;
  object-fit: contain;
  margin-left: 4px;
}

.payment-name {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-align: center;
  margin-left: 10px;
}

.payment-method-item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 5px;
  gap: 10px;
}
#cib-conditions-container {
  display: none;
  margin: 8px 15px;
  padding: 12px 15px;
  border-radius: 3px;
  background-color: transparent;
  border: 1px solid rgb(232, 232, 232);
  transition: 0.3s;
  margin-bottom: 0px;
}