
/*===================== TABLE OF CONTENT =======================

1. Reset
2. Body Style
3. Placeholders & Highlights
4. Container & Grid
5. Headings
6. Buttons
7. Form
8. Paddings & Margins
9. Breadcrumbs
10. Custom Style
11. Cookies
12. Pagination
13. Slider
14.Woocommerce
15. Header
16. Intro
17. Categories
18. About
19. Brands
20. Banner
21. Products
22. Blog
23. Newsletter
24. Footer
25. Products Page
26. Product Page
26. Projects Page
27. About Page
28. Contact Page
29. Custom CSS
=============================================================*/
/* ================================================================================== 
1. Reset
===================================================================================== */
*, *::after, *::before { margin: 0; padding: 0; -webkit-box-sizing: inherit; box-sizing: inherit; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a, a:active, a:hover, a:focus { outline: none; } abbr[title] { border-bottom: 1px dotted; } dfn { font-style: italic; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; max-width: 100%; } svg:not(:root) { overflow: hidden; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; margin-top: 30px; margin-bottom: 35px; border-width: 0; border-top: 1px solid #e1e1e1; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } input:focus, select:focus, textarea:focus, button:focus { outline: none; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } input, textarea, button, select, a { -webkit-tap-highlight-color: transparent; } a { color: inherit; text-decoration: none; -webkit-transition: all 0.6s ease; -o-transition: all 0.6s ease; transition: all 0.6s ease; } strong { font-weight: 700; }
.fancybox__button--zoo, .fancybox__button--slideshow, .fancybox__button--fullscreen, .fancybox__button--thumbs, .fancybox__button--zoom{
  display: none;
}
.none{
  display: none;
}
ul, ol { padding-left: 4rem; }

/* ================================================================================== 
2. Body Style
===================================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 56.25%;
  word-wrap: break-word;
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color:#000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.8rem;
  
}
main{
  position: relative;
}
/* ================================================================================== 
3. Placeholders & Highlights
===================================================================================== */
::-webkit-input-placeholder { color: inherit; opacity: 1 !important; }
:-moz-placeholder { color: inherit; opacity: 1; }
::-moz-placeholder { color: inherit; opacity: 1; }
:-ms-input-placeholder { color: inherit; }
::-moz-selection { background-color: #b8b7af;  color: #fff; }  
::selection { background-color: #b8b7af; color: #fff }
/* ================================================================================== 
4. Container & Grid
===================================================================================== */
.container {
  position: relative;
  width: 100%;
  max-width: 148rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2rem;
}
.container-lg{
  max-width: 170rem;
}
.container-xl{
  max-width: 192rem;
  padding: 0;
}
.container-sm{
  max-width: 100rem;
}
/* ================================================================================== 
5. Headings
===================================================================================== */

h1, h2, h3, h4, h5, h6 { margin-bottom: 2rem; font-weight: 300;line-height:1.4;}
.title h1, .title h2{ font-size: 3.2rem; }
.intro .title h2{
  font-size: 4rem;
}
p { margin-bottom: 2rem; }
.title{ margin-bottom:5rem; }
.title-center{text-align: center;}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .title h1, .title h2{ font-size: 3.6rem; }
  .intro .title h2{
    font-size: 4.8rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .title h1, .title h2{ font-size: 3.8rem; }
  .intro .title h2{
    font-size: 5rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .title h1, .title h2{ font-size: 4rem; }
  .intro .title h2{
    font-size: 6rem;
  }
}


/* ================================================================================== 
6. Buttons
===================================================================================== */

.btn {
	display: inline-block;
	padding: 1.5rem 6rem;
	font-weight: 400;
  border:1px solid transparent;
}
.btn-primary{
  background-color: transparent;
  color: #000;
  border-color: #000;
  background-image: url(images/arrow-right.svg);
  background-position: left 5rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
  padding-left: 9rem;
}
.btn-add-favorites{
  background-image: url(images/heart.svg);
}
.btn-primary:hover{
  background-color: #1A3636;
  border-color: #1A3636;
  color: #fff;
  background-image: url(images/arrow-right-white.svg);

}
.btn-secondary{
  background-color: transparent;
  color: #fff;
  border-color: #1A3636;
  background-image: url(images/arrow-right-white.svg);
  background-position: left 5rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
  padding-left: 9rem;
  background-color: #1A3636;
}
.btn-secondary:hover{
  opacity: 0.6;
}
.btn-white{
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  background-image: url(images/arrow-right-white.svg);
  background-position: left 5rem center;
  background-repeat: no-repeat;
  background-size: 2rem;
  padding-left: 9rem;
}
.btn-white:hover{
  background-color: #fff;
  color: #000;
  background-image: url(images/arrow-right.svg);

}
.btn-arrow{
  display: inline-block;
  font-weight: 500;
  padding-right: 5rem;
  background-image: url(images/arrow-right2.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 3rem;
}
.btn-arrow:hover{
  padding-right: 6rem;
}

button.woocommerce-Button.button, button.woocommerce-button.button,  a.button.wc-backward,   .woocommerce a.button.alt{
	display: inline-block;
	padding: 1.2rem 4.6rem;
	font-weight: 400;
	border-radius: 10rem;
	border: 1px solid transparent;
  transition: all .4s ease-in-out;
  background-color: #4c8459;
  color: #fff;
  border-color: #4c8459;
  font-size: inherit;
}
button.woocommerce-Button.button:hover, button.woocommerce-button.button:hover,  a.button.wc-backward:hover,  .woocommerce a.button.alt:hover{
  background-color: transparent;
  color: #4c8459;
}
#add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{
  font-size: inherit !important;
  width: auto !important;
}
.actions button.button{
  display: inline-block;
	padding: 1.2rem 4.6rem;
	font-weight: 400;
	border-radius: 10rem;
	border: 1px solid transparent;
  transition: all .4s ease-in-out;
  background-color: #e9e6ed;
  color: #515151;
  border-color: #e9e6ed;
  font-size: inherit;
}
.actions button.button:hover{
background-color: #c6c6c6;
}
/* ================================================================================== 
7. Form
===================================================================================== */
form p{
  margin-bottom: 0;
}
input[type="submit"]{
  width: auto;
  transition: all .4s ease-in-out;
}
input,
textarea, select {
  display: block;
  width: 100%;
  border: 1px solid #43515a;
  padding: 1rem 2rem;
  outline: none;
  background-color: #ffffff;
  font-size: 1.5rem;

}
textarea{
  resize: vertical;
  height: 19rem;
}
input:focus,
textarea:focus, select:focus {
  border-color: #b8b7af;

}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.5rem;
}
input[type="button"]{
  width: auto;
  transition: all .4s ease-in-out;
}
button {
  transition: all 0.4s ease-in-out;
  border:0;
}
fieldset{
  border: 0;
  margin-bottom: 2rem;
}
label.check-wrapper {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: none;
}
.check-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #43515a;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.check-wrapper input:checked ~ .checkmark:after {
  display: block;
}
.check-wrapper .checkmark::after {
  left: 0.4rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #43515a;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
/*-----------*/
.wpcf7-list-item label{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap:1rem;
}
.wpcf7-list-item label input{
  width: auto;
  margin: 0;
}
.wpcf7-list-item{
  margin-left: 0;
}
.wpcf7-not-valid-tip{
	position: relative;
	padding: .75rem 1.25rem;
	margin-top: 1rem;
	border: 1px solid #f5c6cb;
	border-radius: .25rem;
  font-size: 1.4rem;
  color: #721c24;
  background-color: #f8d7da;

}
.wpcf7 form .wpcf7-response-output {
	position: relative !important;
	padding: .75rem 1.25rem !important;
	margin-top: 1rem !important;
	border: 1px solid transparent !important;
	border-radius: .25rem !important;
  font-size: 1.4rem !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  font-size: 1.4rem  !important;
  color: #721c24 !important;
  background-color: #f8d7da !important;
  border: 1px solid #f5c6cb !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  font-size: 1.4rem  !important;
  color: #155724 !important;
  background-color: #c3e6cb !important;
  border: 1px solid #d4edda !important;

}
/*---------------*/
.select2-container .select2-selection--single {
	height: 4rem !important;
	display: flex !important;
	align-items: center;
}
.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 1.5rem !important;

}
.select2-container{
  font-size: 1.6rem;
  color: #9c4126!important;
  font-weight: 400  !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	transform: translateY(-50%)  !important;
  top: 50% !important;
}
.select2-container--default .select2-selection--single {
	background-color: #f2d8c3  !important;
	border: 1px solid #f2d8c3!important;
	color: #9c4126!important;
  font-weight: 400  !important;
}
.select2-dropdown {
	background-color: #f2d8c3 !important;
	border: 1px solid #f2d8c3 !important;

}
.select2-results__option{
  padding: 0.5rem  1.5rem !important;
  font-size: 1.6rem  !important;
  color: #000!important;
  font-weight: 400  !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,.select2-container--default .select2-results__option--selected {
 
	background-color: #9c4126 !important;
	color: #f2d8c3 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
	background-color: #ececec;
	color: #fff;
}
/* ================================================================================== 
8. Paddings & Margins
===================================================================================== */
.space {
  padding: 5rem 0;
}
.mt-5{
  margin-top: 5rem;
}
.no-pt{
  padding-top: 0 !important;
}
.no-pb{
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .space {
    padding: 8rem 0;
  }
}
/* .menu-item-has-children za wp sub parent*/
/* .current_page_item za wp active link u navigaciji*/
/* ================================================================================== 
9. Breadcrumbs
===================================================================================== */
.breadcrumbs{
  font-size: 1.4rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e7e7e7;
}
.title-center  .breadcrumbs ul{
  justify-content: center;
}
.breadcrumbs ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumbs ul li{
  display: inline-block;
  font-weight: 600;

}
.breadcrumbs ul li::after{
  content: '|';
  display: inline-block;
  margin: 0 1rem;
}
.breadcrumbs ul li a{
  display: inline-block;
  font-weight: 400;
}
.breadcrumbs ul li:last-child:after{
  content: none;
}
/* ================================================================================== 
10. Custom Style
===================================================================================== */
.list ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.list ul li{
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}
.list ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 2rem;
	height: 2rem;
	background-image: url(images/list.svg);
	background-repeat: no-repeat;
	background-size: 2rem;
}
/* ================================================================================== 
11. Cookies
===================================================================================== */
.cky-btn-accept {
	background: #000 !important;
	border: 2px solid #000 !important;
}
.cky-btn-reject,  .cky-btn-customize, .cky-btn-preferences {
	color: #000 !important;
	border: 2px solid #000 !important;
}
button.cky-show-desc-btn:not(:hover):not(:active){
  color: #000 !important;
  font-weight: 600;
}
.cky-btn-revisit-wrapper{
  background-color: #000 !important;
}
/* ================================================================================== 
12. Pagination
===================================================================================== */
.woocommerce nav.woocommerce-pagination {
	text-align: center;
	width: 100%;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
	min-width: 2em;
}
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
	background: #f0f0f0;
	color: #000;
}
.navigation.posts-navigation{
  width: 100%;
}
.navigation.posts-navigation .nav-links{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-next,.nav-previous{
  display: inline-block;
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
  padding: 1.5rem 6rem;
  cursor: pointer;
  transition: all .4s ease-in-out;
  text-align: center;
}
.nav-next:hover,.nav-previous:hover{
  background-color: #000;
  color: #fff;
}
@media only screen and (max-width: 30em) {
  /*480px*/
  .nav-next,.nav-previous{
    display: inline-block;
    width: 100%;
  }
  .nav-previous{
    margin-bottom: 1rem;
  }
}
/* ================================================================================== 
13. Slider
===================================================================================== */
/* -----swiper--- */
.slider-arrows{
  display: flex;
  flex-direction: column;
  gap:3rem;
  position: absolute;
  left: 30rem;
  top: 50%;
  transform: translateY(-50%);
}
.custom-arrow {
	width: 3rem;
	height: 6rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.7rem;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
.custom-next{
  background-image: url(images/next.svg);
  right: 2rem;
}
.custom-prev{
  background-image: url(images/prev.svg);
  left: 2rem;
}
.swiper-pagination{
  width: 100%;
  justify-content: center;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  margin-top: 3rem;
  flex-wrap: wrap;
  max-width: 90rem;

}
.swiper-pagination-bullet{
  width: 10%;
  height: 1px;
  background-color: #e0e3e1;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: #000;
}

/* ================================================================================== 
14. Woocommerce
===================================================================================== */
.woocommerce-checkout input[type="checkbox"], .woocommerce-checkout input[type="radio"] {
	position: static !important;
	width: 100%;
	left: auto;
	top: auto;
}
.woocommerce-checkout-payment  li,  .woocommerce-shipping-methods li{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}
.woocommerce-checkout-payment  li input, .woocommerce-shipping-methods li input{
    width:auto;
    margin-right:1rem;
}
.woocommerce-shipping-methods li label{
    margin:0;
}
.woocommerce-shipping-methods li, .woocommerce ul#shipping_method li{
    margin:0;
    padding:0 !important;
    
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox{
      display:flex;
    align-items:center;
    flex-wrap:wrap; 
      margin:0;
    padding:0 !important;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox input{
      width:auto;
    margin-right:1rem;
}
.woocommerce ul#shipping_method li input {
	position: static !important;
	width: 100%;
	left: auto;
}
.woocommerce form .form-row textarea {
	height: 20rem;

}
.wc_payment_methods.payment_methods.methods label{
    margin:0;
}
#order_review_heading {
	margin-top: 3rem;
	clear: both;
	display: block;
	float: left;
}
.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before {
	content: none !important;
	display: none !important;
}
.woocommerce form .form-row::after, .woocommerce form .form-row::before, .woocommerce-page form .form-row::after, .woocommerce-page form .form-row::before {
	content: none !important;
	display: none !important;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
	background: #f6f9f7;
	border-radius: 5px;
}
/* ------login------- */
#customer_login h2{
  text-transform: uppercase;
}
#customer_login .u-column1 form,  #customer_login .u-column2 form{
  /* background-color: #f7f4f1;
  border: 0 !important; */
  padding:2.5rem;
}
.woocommerce form .form-row::after, .woocommerce form .form-row::before, .woocommerce-page form .form-row::after, .woocommerce-page form .form-row::before {
	content: none !important;
	display: none !important;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme{
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  gap:1rem
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme input{
  width: auto;


}
#customer_login  .form-row{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.password-input{
  width: 100%;
}
#customer_login .button{
  align-self: flex-start;
}
.woocommerce .col2-set::after, .woocommerce .col2-set::before, .woocommerce-page .col2-set::after, .woocommerce-page .col2-set::before {
	content: none !important;
	display: none !important;
}
#customer-login {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  #customer_login .u-column1 form,  #customer_login .u-column2 form{
    height: 45rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  #customer_login .u-column1 form,  #customer_login .u-column2 form{
    padding:5rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  #customer_login .u-column1 form,  #customer_login .u-column2 form{
    height: 40rem;
  }
}
/* ------remember me------- */
#customer_login h2{
  text-transform: uppercase;
}
#customer_login .u-column1 form,  #customer_login .u-column1 form{
  background-color: #f7f4f1;
  border: 0 !important;
  padding:5rem;
}
.woocommerce form .form-row::after, .woocommerce form .form-row::before, .woocommerce-page form .form-row::after, .woocommerce-page form .form-row::before {
	content: none !important;
	display: none !important;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme{
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  gap:1rem
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme input{
  width: auto;


}
#customer_login  .form-row{
  display: flex;
  flex-direction: column;
  width: 100%;
}
.password-input{
  width: 100%;
}
#customer_login .button{
  align-self: flex-start;
}

/*-----woo result-----*/
.woocommerce .woocommerce-result-count{
  margin: 0;
  float: none;
}
.woocommerce-notices-wrapper{
  width: 100%;
}
.woocommerce .woocommerce-ordering{
  margin: 0;
  float: none;
}
/*-----woo cart-----*/
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
	padding: 1rem 2rem;
	width: 23rem;
  border-color: transparent;
}
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text:focus {
	border-color: #eaaa28;
}
.woocommerce .quantity .qty {
	width: 8rem;
	padding: 1rem 1.5rem 1rem 1.5rem;
}
.woocommerce a.remove{
  font-size: 0;
  width: 2rem;
  height: 2rem;
  background-image: url(images/delete.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center;
}
.woocommerce a.remove:hover{
  background-color: transparent;
  background-image: url(images/delete.svg);
  background-repeat: no-repeat;
  background-size: 1.5rem;
  background-position: center;
}

@media only screen and (max-width: 48em) {
  /*768px*/
  .woocommerce .quantity .qty {
    margin-left: auto;
  }
}
 
@media only screen and (max-width: 37.5em) {
  /*600px*/
  #add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
    width:100%;
  }
  .actions .coupon  button.button{
    width: 100% !important;
    margin-top: 1rem;
  }
 
}
/*----my account---*/

.woocommerce-MyAccount-navigation ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-MyAccount-navigation{
  padding: 3rem;
  border-radius: 1rem;
  background-color: #f9f9f9;
  margin-bottom: 3rem;
}
.woocommerce-MyAccount-navigation ul li{
  margin-bottom: 2rem;
}
.woocommerce-MyAccount-navigation ul li a{
  padding-left: 5rem;
  position: relative;

}
.woocommerce-MyAccount-navigation ul li a::before{
  content: '';
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(246, 137, 2,.1);
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::before{
  background-image: url(images/home.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::before{
  background-image: url(images/orders.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::before{
  background-image: url(images/downloads.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::before{
  background-image: url(images/address.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a::before{
  background-image: url(images/payment.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::before{
  background-image: url(images/details.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::before{
  background-image: url(images/logout.svg);
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout{
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px dashed #000;
}
.woocommerce-MyAccount-navigation ul li a:hover,  .woocommerce-MyAccount-navigation ul li.is-active a{
  color: #e97600;
}
.woocommerce-MyAccount-content .edit{
  display: inline-block;
  padding: 1rem 3.6rem;
  font-weight: 400;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #f68902;
  color: #fff;
}
header.woocommerce-Address-title{
  position: static;
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-size: 1.7rem;


}
.woocommerce-MyAccount-content .woocommerce-Addresses{
  border-radius: 1rem;
  background-color: #f9f9f9;
  padding: 2rem;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment{
  background-color: #f9f9f9;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box{
  background-color: rgba(246, 137, 2,.1);
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {

	border-color:rgba(246, 137, 2,.1);
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;

}
.woocommerce-MyAccount-content em{
  font-size: 1.4rem;
  opacity: 0.8;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .woocommerce-MyAccount-navigation{
    margin-bottom: 0;
  }
}
.woocommerce div.product .product_title {
	margin: 3rem 0;

}
.woocommerce-product-details__short-description p{
  margin-bottom: 2rem !important;
}
/* ================================================================================== 
15. Header
===================================================================================== */
.lang{
  color: #497ca9;
  z-index: 3;
  margin-left: auto;
}
.wpml-ls-legacy-dropdown{
  width: auto;
}
.wpml-ls-legacy-dropdown a{
  border: 0;
  color: #497ca9;
}
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
	border-top: 1px solid transparent;
  opacity: 0;
  transition: all .4s ease-in-out;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle::after {
	display: inline-block;
	border: 0.25em solid transparent;
	border-top: 0.3em solid;
	right: 0;
	top: 50%;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
	position: relative;
	padding-right: 16px;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:focus .wpml-ls-sub-menu, .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover .wpml-ls-sub-menu {
	visibility: visible;
  opacity: 1;
}
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover > a, .wpml-ls-legacy-dropdown a:focus, .wpml-ls-legacy-dropdown a:hover {
	color: #0d3e66;
	background: transparent;
}
.wpml-ls-legacy-list-horizontal a {
	padding: 5px 6px 6px;

}
.wpml-ls-legacy-list-horizontal li:last-child a{
  padding-right: 0;
}
.wpml-ls-legacy-list-horizontal{
  padding: 0;
}
/*--------*/
.social{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:1rem
}
.social a{
  display: block;
}
.social a img{
  display: block;
  width: 3.3rem;
  height: auto;
}
/*---------*/
.toggle {
	cursor: pointer;
	overflow: hidden;
	width: 36px;
	height: 30px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
    z-index: 11;
    margin-left: 3rem;
    order: 3;
}


.line-toggle {
	position: absolute;
	display: block;
	width: 36px;
	height: 2px;
	background: #fff;
	border-radius: 20px;
	transition: all .6s;
	right: 0;
  z-index: 11;
}
header.scrolled .line-toggle, .toggle.activate .line-toggle,  header.scrolled  .toggle.activate .line-toggle,header.header-pages .line-toggle{
  background: #000;
}
.line-toggle:first-child {
transform: translateY(-10px) translateX(0);
transition-delay: 0s;
}

.toggle .line-toggle:nth-child(2) {
    transition-delay: .12s;
}

.line-toggle:last-child {
    transform: translateY(10px) translateX(0);
    transition-delay: 0s;
}
.toggle.activate .line-toggle:first-child {

	transform: translateY(0) translateX(0) rotate(45deg);
	width: 30px;
	height: 2px;
	transition-delay: .1s;
}

.toggle.activate .line-toggle:nth-child(2) {
    transform: translateX(110px);
    transition-delay: 0s;
}

.toggle.activate .line-toggle:last-child {

	transform: translateY(0) translateX(0) rotate(314deg);
	width: 30px;
	height: 2px;
	transition-delay: .1s;
}
/*-----------*/
header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 1.5rem 0;
  transition: all .4s ease-in-out;

}
header.scrolled, header.header-pages{
  background-color: #fff;
  color: #000;
}
header.header-pages{
  background-color: #b8b7af;
}
header .container{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-logo{
  display: block;
}
.header-logo img{
  display: block;
  width: 13rem;
  transition: all .4s ease-in-out;
  filter: brightness(0) invert(100);
}
header.scrolled .header-logo img, header.header-pages .header-logo img{
  filter: none;
}
header nav{
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #fff;
  padding: 4rem;
  padding-top: 10rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all .4s ease-in-out;
  z-index: 2;
  overflow-y: auto;
}
header nav.open{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
header nav li{
  display: block;
}
header nav li a{
  display: block;
  padding: 1rem 0;
  font-weight: 400;
}
header nav h3{
  font-weight: 500;
  font-size: 1.6rem;
  opacity: 0.4;
}
header nav li a:hover, header nav li.current_page_item a{
  color: #b8b7af;
}
header.header-pages nav li a:hover, header.header-pages nav li.current_page_item a{
  color: #000;
  opacity: 0.4;
}



.mobile-info{
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px dashed #000;
}
.menu-item-has-children{
  position: relative;
}
header .sub-menu{

  display: none;
  padding-left: 3rem;
}

header .sub-menu li{
  display: block;
}
header .sub-menu li a{
  display: block;
  padding: 1rem;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  header  nav{
    width: 40rem;
  }
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .header-logo img{
    width: 19rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .toggle{
    display: none;
  }
  header{
    color: #fff;
  }
  header  nav{
    position: static;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    min-height: auto;
    overflow-y: visible;
    transform: none;
    transition: none;
    padding: 0;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    margin-left: auto;

  }
  header  nav li{
    display: inline-block;
  }
  header  nav li a{
    display: inline-block;
    padding: 2rem 1.6rem;
  }
  .mobile-info{display: none;}
  header .sub-menu{
    position: absolute;
    left: 0;
    top: 6rem;
    width: 24rem;
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #e7e7e7;
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  header .menu-item-has-children:hover .sub-menu{
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  header  nav li a{
    padding: 2rem;
  }
}
@media only screen and (min-width: 90em) {
  /*1440px*/

}
/*-----------*/
.header-search{
  margin-left: 4rem;
  margin-right: auto;
}
.header-search input{
  border: 1px solid #fff;
  background-color: transparent;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  width: 25rem;

}
.header-search form{
  position: relative;
}
.header-search input.search-btn{
  border:0;
  position: absolute;
  right: 0;
  top: 0;
  width: 5rem;
  height: 100%;
  background-image: url(images/search-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
  padding: 0;

}
.mobile-search input.search-btn{
  background-image: url(images/search.svg);


}
.mobile-search input{
  border: 1px solid #000;
  color: #000;
  width: 100%;

}
header.scrolled .header-search input, header.header-pages .header-search input{
  border-color: #000;
  color: #000;
}
header.scrolled .header-search input.search-btn, header.header-pages .header-search input.search-btn{
  background-image: url(images/search.svg);

}
.desktop-search{
  display: none;
}
.mobile-search{
  margin: 0;
  padding: 0;
  margin-bottom: 2rem;
  position: relative;
}
.header-search input::placeholder{
  color: #fff;
}
header.scrolled .header-search input::placeholder,  .mobile-search input::placeholder, header.header-pages .header-search input::-webkit-input-placeholder{
  color: #000;
}
.header-pages input::placeholder{
  color: #000;
}

@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .desktop-search{
    display: block;
  }
  .mobile-search{
    display: none;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .header-search input{
    width: 20rem;
  
  }
  .header-search{
    margin-right: 0;
  }

}
@media only screen and (min-width: 90em) {
  /*1440px*/
  .header-search{
    margin-left: 8rem;
  }
  .header-search input{
    width: 37rem;
  
  }
}
  
/*---------*/
.header-favorites{
  display: block;
  margin-left: auto;

}
.header-favorites img{
  display: block;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: brightness(0) invert(100);
  transition: all .4s ease-in-out;
}
header.scrolled .header-favorites img, header.header-pages .header-favorites img{
  filter: none;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .header-favorites{
    margin-left: 2rem;
  
  }

}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  .header-favorites{
    margin-left: 5rem;
  
  }

}
/*-------------*/
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
	background: transparent;
	padding: 0;
	border-radius: 0;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input {
	padding: 13px 40px 13px 24px;
	line-height: 24px;
	font-size: 17px;
	border: 2px solid transparent;
	border-radius: 0;
	height: auto;
	font-family: 'Outfit',sans-serif;
	background-color: transparent;
  border:1px solid #fff;
  color: #fff;
}
header.scrolled .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input, .header-pages .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input{
  color: #000;
  border-color: #000;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
	top: 50%;
	filter: brightness(0) invert(100);
	right: 1.6rem !important;
	left: auto;
	transform: translateY(-50%);
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit:hover {
	background: transparent;
	box-shadow: none;

}
header.scrolled .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit, .header-pages .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{
  filter: none;
}
.dgwt-wcas-open .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  border-radius:0;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:hover {
	background-color: transparent !important;

}
.dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input:focus {
	outline: 0;
	background: transparent !important;

}
.dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  border-color:rgba(255,255,255,.5)
}
header.scrolled .dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input, .header-pages .dgwt-wcas-style-pirx.dgwt-wcas-search-focused .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  border-color:rgba(0,0,0,.5)
}
.dgwt-wcas-open-pirx .dgwt-wcas-open .dgwt-wcas-suggestions-wrapp, .dgwt-wcas-open-pirx .dgwt-wcas-open.dgwt-wcas-nores .dgwt-wcas-suggestions-wrapp {
	border-radius: 0 !important;
}
.dgwt-wcas-sf-wrapp {
	max-width: 23rem;
}
@media only screen and (max-width: 37.5em) {
  /*600px*/
  .dgwt-wcas-sf-wrapp {
    max-width: 100%;
  }
  .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit{
    filter: none;
  }
  .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type="search"].dgwt-wcas-search-input{
    color: #000;
    border-color: #000;
  }
}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  .dgwt-wcas-sf-wrapp {
	max-width: 27rem;
}
}
/* ================================================================================== 
16. Intro
===================================================================================== */
.intro-slider img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.intro-slider{
  overflow: hidden;
}
.intro-slider .swiper-slide{
  position: relative;
}
.intro-overlay{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0) 100%);
}
.intro-text{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.intro-text .container{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.intro-inner{
  max-width: 60rem;
  width: 100%;
  color: #fff;
  font-size: 2rem;
}
.intro-inner .title{
  margin-bottom: 2rem;
}
.intro-inner .btn{
  margin-top: 3rem;
}
@media only screen and (orientation: landscape) and (max-width: 1024px) {
  /* .intro-slider img{
    height: 90rem;
  } */
}
/* ================================================================================== 
17. Categories
===================================================================================== */

.categories-box {
  width: 100%;
	position: relative;
	overflow: hidden;
	display: block;
  margin-bottom: 3rem;
  aspect-ratio: 16/10;
}

.categories-box::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.35);
  z-index: 1;
}
.categories-box img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all  .4s ease-in-out;
}

.categories-box-text{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 3rem;
  color: #fff;
  z-index: 2;

}
.categories-box h3{
  font-size: 2.4rem;
}
.categories-box:last-child{
  margin-bottom: 0;
}
.categories-box .btn-arrow{
  filter: brightness(0) invert(100);
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .categories-box:hover img{
    transform: scale(1.1);
  }
  .categories-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%
  }
  
  
  .categories-box {
    width: 48.3%;
  }
  .categories-box:last-child{
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .categories-box:first-child h3{
    font-size: 4rem;
  }
  .categories-wrapper {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap:3rem
    
  }
  .categories-box:nth-child(1) { grid-area: 1 / 1 / 3 / 7; }
  .categories-box:nth-child(2) { grid-area: 1 / 7 / 2 / 10; }
  .categories-box:nth-child(3) { grid-area: 1 / 10 / 2 / 13; }
  .categories-box:nth-child(4) { grid-area: 2 / 7 / 3 / 13; }
  .categories-box:nth-child(5) { grid-area: 3 / 1 / 4 / 8; }
  .categories-box:nth-child(6) { grid-area: 3 / 8 / 4 / 13; }
  .categories-box {
    width: auto;
    aspect-ratio: 16/10;
    margin-bottom: 0;
  }
  .categories-box:nth-child(1){
    aspect-ratio: 16/11;
  }
  .categories-box:nth-child(4){
    aspect-ratio: 16/5.55;
  }
  .categories-box:nth-child(5) {
    aspect-ratio: 16/3.92;
  }
  .categories-box:nth-child(6){
    aspect-ratio: 16/5.55;
  }
  .categories-box:last-child{
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  .categories-box h3{
    font-size: 3rem;
  }

}
@media only screen and (min-width: 80.0625em) {
  /*1281px*/
  .categories-box:first-child h3{
    font-size: 5rem;
  }

}
@media only screen and (min-width: 100.0625em) {
  /*1601px*/
  .categories-box h3{
    font-size: 4rem;
  }
  .categories-box:first-child h3{
    font-size: 6rem;
  }


  
}
/* ================================================================================== 
18. About
===================================================================================== */

.about-text{
  width: 100%;
  margin-bottom: 5rem;
}
.about-image{
  width: 100%;
}
.about-image img{
  display: block;
  width: 100%;
  height: auto;
}

.about-text  .btn{
  margin-top: 3rem;
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .about-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about-text{
    width: 48%;
    margin-bottom: 0;
  }
  .about-image{
    width: 48%;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .about-wrapper{
    align-items: center;
  }
  .about-text .title{
    max-width: 70%;
  }
}
/* ================================================================================== 
19. Brands
===================================================================================== */
.brands{
  background-color: #252729;
  color: #fff;
}
.brands-slider{
  overflow: hidden;
}
.brands-slider .swiper-slide{
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  box-sizing: border-box;
}
.brands-slider .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 18/6;
	object-fit: contain;
  filter: grayscale(100);
}
/* ================================================================================== 
20. Banner
===================================================================================== */
.banner-wrapper{
  background-color: #b8b7af;
}
.banner-text{
  width: 100%;
  padding: 5rem 2.5rem;
}
.banner-text .btn{
  margin-top: 3rem;
}
.banner-image{
  width: 100%;
  position: relative;
}

.banner-image img {
	display: block;
	width: 100%;
	height: 33rem;
	object-fit: cover;
}
.banner-popup-trigger{
  position: absolute;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border:4px solid #a68f79;
  transition: all .4s ease-in-out;
  cursor: pointer;
}
.banner-popup.open .banner-popup-trigger{
  border-color: #ebebeb;
  background-color: #a68f79;
  z-index: 10;
}
.banner-popup-trigger img{
  width: 0.2rem;
  height: 1rem;
  object-fit: contain;
  display: block;
  transition: all .4s ease-in-out;
}
.banner-popup.open .banner-popup-trigger img{
  filter: brightness(0) invert(100);
}
.banner-popup:nth-child(1){
  top: 10rem;
  left: 25%;
}

.banner-popup:nth-child(2) {
	bottom: -7rem;
	left: 50%;
  z-index: 5;
}
.banner-popup{
  position: absolute;
  z-index: 1;
}
.banner-popup-content {
	width: 21rem;
	background-color: #fff;
	padding: 2rem;
	text-align: center;
	font-size: 1.4rem;
  left: 4rem;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease-in-out;
  position: relative;
}
.banner-popup.open .banner-popup-content{
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.banner-popup:nth-child(3) {
	bottom: -3rem;
	right: 3rem;
	display: flex;
	flex-direction: row-reverse;
}
.banner-popup:nth-child(3) .banner-popup-content{
  right: 4rem;
  left: auto;
}

.banner-popup-content h4{
  font-size: 1.8rem;
  color: #b49b84;
  margin-bottom: 0;
}
.banner-popup-content p{
  margin-bottom: 0;
}
.banner-popup.open{
  z-index: 5;
}
@media only screen and (max-width: 30em) {
  /*480px*/
  .banner-popup:nth-child(2) {
    display: flex;
    flex-direction: row-reverse;
  }
  .banner-popup:nth-child(2) .banner-popup-content{
    right: 4rem;
    left: auto;

  }
  .banner-popup:nth-child(2){
    left: 20%;
  }
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .banner-popup:nth-child(3) {
    bottom: -5rem;
    right: 5rem;
  }
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .banner-image img {
    height: 60rem;
  }
  .banner-popup:nth-child(3) {
    bottom: 5rem;
  }
  .banner-popup:nth-child(2){
    bottom: 0rem;

  }
  .banner-text{
    padding: 5rem;
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .banner-wrapper{
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #b8b7af;
  }
  .banner-text{
    width: calc(100% - 80rem);
    padding: 5rem;
  }
  .banner-image{
    width: 80rem;

  }
}
@media only screen and (min-width: 90.0625em) {
  /*1441x*/
  .banner-text .title{
    width: 80%;
  }
  .banner-text p{
    width: 80%;
  }
}
@media only screen and (min-width: 100.0625em) {
  /*1601px*/
  .banner-text{
    padding: 10rem;
  }
  
}
/* ================================================================================== 
21. Products
===================================================================================== */
.products-slider{
  overflow: hidden;
  padding: 5rem 0;
}
.products-slider .swper-slide{
  height: auto;
}
.products-section .title{
  margin-bottom: 3rem;
}
.tinv-wraper.tinv-wishlist{
  margin-left: auto !important;
}
.single-btns  .tinv-wraper.tinv-wishlist{
  margin-left: 0 !important;
}
.product-box .tinv-wraper.tinv-wishlist {
	margin-bottom: 2rem;
}
.product-box {
	border: 1px solid #bebebe;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	text-align: center;
	height: auto;
	padding: 2rem 3rem 3rem 3rem;
	transition: all .4s ease-in-out;
	position: relative;
}
.product-image img{
  display: block;
  width: 100%;
  height: auto;

}
.product-image{
  display: block;
  margin-bottom: 2rem;
}
.product-box h3{
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
}
.product-box p{
  font-size: 1.5rem;
  opacity: 0.53;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.price-box{
  margin-top: auto;
  display: flex;
  align-items: center;
  gap:2rem;
}
.price-old{
  text-decoration: line-through;
  color: #9a9a9a;
}
.product-box:hover {
	box-shadow: 0 0 65px -5px rgba(0,0,0,0.2);
}
.favorites-btn{
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 1;
}
.favorites-btn img{
  display: block;
  width: 2.3rem;
  height: auto;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .product-box h3{
    font-size: 1.8rem;
  }
}
/* ================================================================================== 
22. Blog
===================================================================================== */

.blog-box{
  width: 100%;
  margin-bottom: 3rem;
}
.blog-box:last-child{
  margin-bottom: 0;
}
.text-center{
  max-width: 50rem;
  width: 100%;
  margin: 0  auto;
  margin-bottom: 6rem;
  text-align: center;
}
.blog-image{
  overflow: hidden;
  display: block;
  margin-bottom: 2rem;
}
.blog-image img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/16;
  transition: all .4s ease-in-out;
}

.blog-date{
  display: flex;
  align-items: center;
  gap:1rem;
  font-size: 1.4rem;
  width: 100%;
  margin-bottom: 3rem;

}
.blog-line{
  width: 3.2rem;
  height: 1px;
  background-color: #000;
}
.blog-box h3{
  font-size: 2.1rem;
  font-weight: 400;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .blog-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%
  }
  .blog-box{
    width: 31.3%;
  }
  .blog-box:last-child{
    margin-bottom: 3rem;
  }
  .blog-image:hover img{
    transform: scale(1.1);
  }
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .blog-box h3{
    font-size: 2.6rem;
  }

}
/*---------*/
.article-image{
  margin: 5rem 0;
}
.article-image img{
  display: block;
  width: 100%;
  height: auto;
}
.article-text h3{
  font-weight: 500;
}
/* ================================================================================== 
23. Newsletter
===================================================================================== */
.newsletter-section{
  background-color: #09090a;
  color: #fff;
}
.newsletter-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.newsletter-text{
  max-width: 40rem;
  width: 100%;
}
.newsletter-text .title{
  margin-bottom: 2rem;
}
.newsletter-section form{
  position: relative;
}
.newsletter-content{
  position: relative;
  max-width: 58rem;
  width: 100%;
}
.newsletter-section input{
  border: 1px solid #fff;
  background-color: transparent;
  font-size: 1.6rem;
  padding: 2rem 2rem;

  color: #fff;
  background-color: transparent;
  width: 100%;
}
.newsletter-section input.btn-newsletter {
	border: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 5rem;
	height: 100%;
	background-image: url(images/arrow-right2-white.svg);
	background-repeat: no-repeat;
	background-position: right 2rem center;
	background-size: 3rem;
	padding: 0;
}
/* ================================================================================== 
24. Footer
===================================================================================== */
footer{
  background-color: #b8b7af;
}

.footer-box{
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
}
.footer-box:last-child{
  margin-bottom: 0;
}
footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-logo img{
  display: block;
  width: 19rem;
  height: auto;
  margin: 0 auto;
}
.footer-box h3{
  font-size: 2.1rem;
}
.footer-logo {
  display: block;
  margin-bottom: 3rem;
}
.copyright{
  padding: 1rem 0;
  font-size: 1.4rem;
  background-color: #fff;
}
.copyright .container{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .copyright .container{
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-box{
    width: 48%;
    text-align: left;
  }
  .footer-box:last-child{
    margin-bottom: 3rem;
  }
  .footer-logo img{
    margin: 0;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .footer-box{
    width: auto;
    margin-bottom: 0;
  }
  .footer-box:last-child{
    margin-bottom: 0;
  }

 
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .footer-box h3{
    font-size: 2.6rem;
  }
}
/* ================================================================================== 
25. Products Page
===================================================================================== */
.top-height{
  width: 100%;
  height: 5.78rem;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .top-height{
    height: 7.43rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .top-height{
    height: 9.88rem;
  }
}
.text-center{
  margin: 0 auto;
  max-width: 70rem;
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
}
.title-sm{
  margin-bottom: 3rem;
}
.page-aside{
  width: 100%;
}
.page-content{
  width: 100%;
  margin-top: 3rem;
}
.page-aside ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-aside ul li{
  margin-bottom: 1rem;
}
.page-aside ul li a {
	display: block;
	color: #000;
  background-color: #f0f0f0;
	padding: 0.7rem;
}
.page-aside ul.sub-menu{
  padding-left: 0;
  padding-top: 1rem;

}
.page-aside ul.sub-menu li a{
  text-transform: none;
  border-bottom: 0;
  background-color: transparent;
}
.page-aside li a:hover, .page-aside li.current_page_item a{
  opacity: 0.6;
}
.page-aside h3 {
	background-image: url(images/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 1rem;
	cursor: pointer;
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 0;
}
.aside-content{
  padding-top: 1rem;
  display: none;
}
.aside-content .menu-item-has-children{
  position: relative;
}

.aside-content .menu-item-has-children > a{
  position: relative;
}
.aside-content .sub-menu{
  display: none;
}
.menu-toggle {
	position: absolute;
	right: 0;
	top: 1px;
	width: 5rem;
	height:4.1rem;
	background-image: url(images/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.2rem;
	cursor: pointer;
	transition: all.4s ease-in-out;
	z-index: 2;
	background-color: transparent;
}
.o.menu-toggle{
  transform: rotate(180deg);
}
.page-top{
 
  margin-bottom: 5rem;
  font-size: 1.6rem;
  color: #000;
  border-top: 1px solid #e7e7e7;
  padding-top: 3rem;
}
.page-top p{
  margin-bottom: 0;
}
.top-filter{
  width: 100%;
}
.top-filter form{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap:2rem;
}
.top-filter select {
	width: 100%;
	border: 1px solid #cacaca;
	padding: 1rem 1.6rem;
  appearance: none;
  background-image: url(images/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: right 1.6rem center;
	background-size: 1rem;
  font-size: 1.6rem;
  margin-top: 2rem;
}
.top-filter select:last-of-type{
  margin-top: 0;
}

.products-wrapper .product-box{
  width: 100%;
  margin-bottom: 3rem;
}
/* .search-results  .page-content{
  width: 100%;
} */
.products-wrapper .product-box:last-child{
  margin-bottom: 0;
}
.product-accordion{
  margin-top: 4rem !important;
}
.product-accordion h3{
  font-weight: 600;
  font-size: 1.8rem;
}
.woocommerce-result-count{
  margin-bottom: 2rem !important;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .products-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:3%;
  }
  .products-wrapper .product-box{
    width: 48.5%;
    margin-bottom: 3rem;
  }
  .products-wrapper .product-box:last-child{
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .page-top{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .top-filter{
    margin-top: 0;
  }
.woocommerce-result-count{
  margin-bottom: 0  !important;
}
  .top-filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .top-filter select {
    margin-left: 2rem;
    margin-top: 0;
    width: 30rem;
  }

}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .products-wrapper .product-box{
    width: 31.3%;
  }
}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  .aside-content .menu-item-has-children > a{
    background-image: url(images/arrow-right3.svg);
    background-repeat: no-repeat;
    background-position: right 2rem center;
    background-size: 0.7rem;
  }
  .aside-content .menu-item-has-children .sub-menu {
    position: absolute;
    top: 0;
    right: -100%;
    background-color: #f0f0f0;
    z-index: 1;
    width: 100%;
    padding: 1rem;
    font-size: 1.6rem;
  }
  .page-aside h3 {
    background-image: none;
  }
  .aside-content .menu-item-has-children:hover .sub-menu{
    display: block;
  }
  .page-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .menu-toggle {
    display: none;
  }
  .page-top{
    border-top: 0;
    padding-top:0;
  }
  .page-aside{
    position: sticky;
    top: 15rem;
    width: 31rem;
    z-index: 5;

  }
  .page-content{
    width: calc(100% - 36rem);
    margin-top: 0;
  }
  .aside-content{
    display: block;
  }
}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  
}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .page-aside{
    width: 33rem;
  }
  .page-content{
    width: calc(100% - 40rem);
  }
}
/* ================================================================================== 
26. Product Page
===================================================================================== */

/*---------*/
.single-wrapper{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-images{
  width: 100%;
  overflow: hidden;
}
.single-text{
  width: 100%;
  margin-top: 5rem;
}
.single-text .product-price{
  margin-top: 3rem;
}
.single-text .btn{
  margin-top: 3rem;
}
.thumbs-gallery img{
  display: block;
  height: auto;
  width: 100%;
}
.single-gallery .sticker-wrapper {
	right: 0;
	top: 0;
  bottom: auto;
  left: auto;
  z-index: 2;
	
}
.single-gallery .swiper-slide{
  background: #fff;
}
.thumbs-gallery .swiper-slide {
  cursor: pointer;
}
.single-gallery{
  position: relative;
}
.single-gallery img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 4/3;
}
.single-price{
  font-size: 2.6rem;
  margin: 3rem 0;
}
.single-selection{
  padding-top: 3rem;
  border-top:1px solid #e7e7e7;
}
.single-link{
  padding: 2.5rem;
  background-color: #eef2ee;
  margin-top: 2.5rem;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.single-text .title h1{
  padding-left: 0;
  margin-bottom: 0;
}
.single-text .title{
  margin-bottom: 2rem;
}
.single-text .breadcrumbs ul{
  justify-content: flex-start;
}
.single-text .price-wrap{
  font-size: 2.3rem;
  border-right: 0;
}
.single-gallery  .swiper-button-next{
  right: 1rem;
}
.single-gallery  .swiper-button-prev{
  left: 1rem;
}

.thumbs-gallery{
  margin-top: 2rem;
}
.thumbs-gallery img {
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 3/3;
	border: 1px solid #faf5f2;
	object-position: center;
}
.swiper-slide{
  box-sizing: border-box;
}
.thumbs-gallery .swiper-slide-thumb-active img{
  border-color: #a66666;
}
.single-category {
	opacity: 0.57;
	margin-bottom: 2rem;
}
.single-text .btn{
  margin-top: 0;
}
.single-quantity {
	position: relative;
	padding-right: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.single-btns {
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
	gap: 2.2rem;
	align-items: flex-start;
}
.single-quantity input {
	width: 4.7rem;
	height: 4.7rem;
	border: 1px solid #c9c9c9;
	padding: 0;
	text-align: center;
  border-radius: 0;
}
.plus, .minus {
	width: 4.7rem;
	height: 4.7rem;
	background-color: #b8b7af;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.desc2{
  margin-top: 3rem;
}
.price-wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:1rem;
}

.single-description{
  margin-top: 3rem;
}
.single-options span{
  color: #000;
}
.single-options  select{
  width: 100%;
	border: 1px solid #cacaca;
	padding: 1rem 1.6rem;
  appearance: none;
  background-image: url(images/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: right 1.6rem center;
	background-size: 1rem;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.single-text .social{
  margin-top: 3rem;
}
.bg-flower{
  background-image: url(images/bg-pages.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 27rem;
}
.similar-products .custom-arrows{
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.single-text .favorites-btn {
	width: 5rem;
	height: 5rem;
	background-color: #b8b7af;
	display: flex;
	align-items: center;
	justify-content: center;
  margin-right: 1rem;
}
.single-text .favorites-btn img {
	display: block;
	width: 2rem;
	height: 1.7rem;
	object-fit: contain;
}
.single-text .favorites-btn:hover{
  background-color: #fff;
}
.single-product-price{
  justify-content: flex-start;
  font-size: 3rem;
}
.single-btns .btn{
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .single-btns{
    flex-direction: row;
    align-items: center;
    gap:1rem;
    flex-wrap: wrap;
  }
  .single-options  select{
    width: 30rem;
  }
  .single-btns .btn{
    width: auto;
  }
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .single-wrapper{
    flex-direction: row;
  }
  .single-images{
    width: 41%;

  }
  .single-text{
    width: 59%;
    padding-left: 5rem;
    margin-top: 0;
  }
  .single-link{
    padding: 5rem;
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 90.0625em) {
  /*1441x*/

  .bg-flower{
    background-size: 43rem;
  }
}
/*---------*/
.tabs {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px solid #e7e7e7;
}
.tabs a {
  display: inline-block;
  border-bottom: 1px solid #e7e7e7;
  font-weight: 600;
  padding: 2rem;
  width: 100%;
}
.tabs a:hover,
.tabs a.active-tab {
  border-color: #3e9bb1;
  color: #3e9bb1;
}
.tabs-container {
	width: 100%;
	display: none;
	padding: 2rem 0;
}
.tabs-container.active-tab {
  display: block;
}
.single-bottom{
  margin-top: 5rem;
  padding: 3rem;
  background-color: #f1f1f1;
  border-radius: 3.1rem;

}

@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .tabs a {
    width: auto;
    border-bottom: 1px solid transparent;
  }
}
@media only screen and (min-width: 50.0625em) {
  /*801px*/
  .single-bottom{
    padding: 3rem  5rem;
  }
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .tabs-container {
    padding: 2rem 0;
  }
}
/*----------*/
.share{
  background-color: #f7f7f7;
  margin-top: 5rem;
  padding: 2rem;
}

.share-wrap{
  display: flex;
  flex-direction: row;
  flex-wrap:wrap;
  gap:1rem
}
.share a{
  display: inline-block;
}
.share a  img{
  display: block;
  width: 4rem;
  height: auto;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .share h3{
    margin-bottom: 0;
  }
  .share{
    display: flex;
    flex-direction: row;
    flex-wrap:wrap;
    justify-content: space-between;
  }
}
/*-------*/

.accordion-wrapper {
  counter-reset: accordion-counter;
  max-width: 110rem;
  width: 100%;
  margin: 0 auto;

}
.accordion__body_text{
  padding-top: 2rem;
}
.accordion {
	padding: 1rem 0;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	counter-increment: accordion-counter;
	border-bottom: 1px solid #e7e7e7;
}
.accordion__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.accordion__head_text {
  position: relative;
  margin-bottom: 0;
  font-weight: 500;
  width: 80%;
  color: #000;
}

.accordion__head_btn {
  width: 4rem;
  height: 4rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: none;
  background-color: transparent;
  }
  .accordion__head_btn:before, .accordion__head_btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.accordion__head_btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  line-height: 1.8;

}

.accordion--active .accordion__head_btn {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.accordion--active .accordion__head_btn:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.single-gallery .swiper-button-next {
	right: 1rem;
}
.single-gallery .swiper-button-prev {
	left: 1rem;
}
.single-gallery  .swiper-button-next, .single-gallery .swiper-button-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
  filter: brightness(0) invert(100);
}
/*-----*/
.docs{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:3rem;
}
.docs a {
	display: inline-block;
	font-weight: 600;
	background-image: url(images/downloads.svg);
	background-repeat: no-repeat;
	background-size: 2rem;
	background-position: left center;
	padding-left: 4.2rem;
}
/*-----------*/
.fancybox__backdrop{
  background-color: #fff;
}
.fancybox__toolbar{
  background: #fff;
}

.fancybox__slide{
  padding: 0;
  justify-content: center;
}

.fancybox__carousel{
  z-index: 30;
}
.carousel__button svg {
  fill: #000; 
  stroke: #000; 
  filter: none; 
}
.fancybox__nav .carousel__button svg{
  display: none;
}
.fancybox__nav .carousel__button.is-next{
  background-image: url(images/next.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
}
.fancybox__nav .carousel__button.is-prev{
  background-image: url(images/prev.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2rem;
}
/*-------------*/
.single-table table{
  width: 100%;
}
.single-table table td{
  border-bottom: 1px solid #e7e7e7;
  padding: 1rem 0;
}
.single-table table td:last-child{
  text-align: right;
}

.single-table table td:first-child{
  font-weight: 600;
}
/*--------*/
.single-price-box {
	font-size: 3rem;
	
}
.single-main-box{
  background-color: #f4f4f4;
	padding: 3rem 2rem 5rem 2rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .single-main-box{
    padding: 3rem 2rem 4rem 2rem;
  }
}
/*--------*/
.single-form{
  margin-top: 5rem;
  display: none;
}

/* ================================================================================== 
26. Projects Page
===================================================================================== */
.grid-item{
  width: 100%;
  margin-bottom: 3rem;

  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;

}

.grid-nav{
  margin-bottom: 5rem;
}
.grid-nav ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap:3%;
}
.grid-nav ul  li{
  position: relative;
  padding-right: 3rem;
  cursor: pointer;
  margin-bottom: 1rem;
  border:1px solid #000;
  text-align: center;
  padding: 1rem 2rem;
  width: 100%;
}
.grid-nav ul  li.active{
  background-color: #b8b7af;
  border-color:#b8b7af;
}

.grid-item{
  margin-bottom: 3rem;
  overflow: hidden;
}
.grid-item h3{
  font-size: 2.1rem;
}
.grid-item img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/12;
  margin-bottom: 2rem;
}
.grid-item ul{
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
}
.grid-item .btn{
  margin-top: auto;
  align-self:center;
}


@media only screen and (min-width: 42.5625em) {
  /*681px*/
  .grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  
  }
  .grid-item{
    width:50%;
    padding: 0 2rem;
  
  }
  .grid-nav ul  li{
    width: auto;

  }
  .grid-nav ul{
 
    display: flex;
    flex-direction: row;
    
  }
  
}
@media only screen and (min-width: 64.0625em) {
  /*1025px*/
  .grid-item h3{
    font-size: 2.6rem;
  }

}
@media only screen and (min-width: 68.75em) {
  /*1100px*/
  .grid-item{
    width:33.333%;
  }
}
/*-------*/
.text-center-lg{
  max-width: 90rem;
}
.gallery-wrapper{
  column-count: 2;
  gap: 1.5rem;

}
.gallery-wrapper a{
  display: block;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.gallery-wrapper a img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all .4s ease-in-out;
}
.gallery-wrapper a:hover img{
  transform: scale(1.1);
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .gallery-wrapper{
    column-count: 3;
    gap:3rem
   
  
  }
  .gallery-wrapper a{
    margin-bottom: 3rem;
  }
 
}
 /* ================================================================================== 
27. About Page
===================================================================================== */

.about-page-text{
  width: 100%;
  margin-bottom: 5rem;
}
.about-page-image{
  width: 100%;
}
.about-page-image img{
  display: block;
  width: 100%;
  height: auto;
}
.about-page-wrapper:not(:last-child){
  margin-bottom: 5rem;
}
.about2{
  background-color: #b8b7af;
}
@media only screen and (min-width: 37.5625em) {
  /*601px*/
  .about2-text ul{
    column-count: 2;
    column-gap: 3rem;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .about-page-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about-page-text{
    width: 45%;
    margin-bottom: 0;
  }
  .about-page-image{
    width: 48%;
  }
  .about-page-wrapper:nth-child(2n+2){
    flex-direction: row-reverse;
  }
  .about-page-wrapper:not(:last-child){
    margin-bottom: 10rem;
  }
  .about2-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about2-text{
    width: 45%;
    margin-bottom: 0;
  }


}  
/* ================================================================================== 
28. Contact Page
===================================================================================== */

.contact-wrapper{
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}
.contact-text{
  width: 100%;
  margin-bottom: 5rem;
  background-color: #f9f9f9;
  padding: 5rem 2rem;
}
.contact-form{
  width: 100%;
}
.contact-boxes{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-box{
  width: 48%;
  padding: 3rem;
  background-color: #f8f8f8;
  margin-bottom: 3rem;
}

.contact-wrapper  strong{
  font-weight: 500;
}
.contact-form form p{
  margin-bottom: 0;
}
.contact-form form br{
  display: none;
}

.contact-map iframe{
  width: 100%;
  height: 40rem;
  display: block;
}
.contact-form input.btn{
  transition: all .4s ease-in-out;
  width: auto;
}
.map iframe{
  width: 100%;
  height: 40rem;
  display: block;
}
@media only screen and (min-width: 30.0625em) {
  /*481px*/
  .contact-form form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact-form fieldset{
    width: 48%;
  }
  .contact-form fieldset.w-100{
    width: 100%;
  }
}
@media only screen and (min-width: 56.3125em) {
  /*901px*/
  .contact-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .contact-text{
    width: 43%;
    margin-bottom: 0;
    padding: 5rem;
  }
  .contact-form{
    width: 55%;
  }
}

@media only screen and (min-width: 64.0625em) {
  /*1025px*/

}
@media only screen and (min-width: 75.0625em) {
  /*1201px*/
  .contact-text{
    width: 48%;
  }
  .contact-form{
    width: 48%;
  }

}

/* ================================================================================== 
Woocommerce
===================================================================================== */
/*----start detalji narudžbe / plaćanje----*/
body .woocommerce ul.order_details {
	margin: 0;
	list-style: none;
	padding: 0;
	margin-bottom: 3rem;
}
body .woocommerce ul.order_details li {
	float: none;
	margin-right: 0;
	text-transform: uppercase;
	font-size: 1.4rem;
	line-height: 1;
	border-right:0;
  border-bottom: 1px solid #e7e7e7;
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
	background: #fff;
	padding: 2rem;
	width: 100%;
}
body .woocommerce ul.order_details li strong {
	display: block;
	font-size: 1.4rem;
	text-transform: none;
	line-height: 1.5;
  margin-top: 5px;
}
body.woocommerce-order-received .woocommerce-order-details{
  padding: 2rem;
}
body.woocommerce-order-received .woocommerce-columns{
  display: flex;
  flex-direction: column;
  gap:2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 2rem;
}
body.woocommerce-order-received .woocommerce-column--2,body.woocommerce-order-received .woocommerce-column--1{
  float: none;
  width: 100%;
}
body  .woocommerce .woocommerce-customer-details address {
	border: 0; 
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  body .woocommerce ul.order_details {
    display: flex;
    flex-direction: row;
  }
  body .woocommerce ul.order_details li {

    width: 25%;
    border-right: 1px solid #e7e7e7;
    border-bottom: 0;
  }
  body.woocommerce-order-received .woocommerce-columns{
    flex-direction: row;
    gap:0
  }
  body.woocommerce-order-received .woocommerce-column--2,body.woocommerce-order-received .woocommerce-column--1{
    width: 48%;
  }
}
/*----end detalji narudžbe / plaćanje----*/


/* ================================================================================== 
29. Custom CSS
===================================================================================== */
#proizvod-url, #proizvod-ime,
td.product-action > .button,
.tinvwl-to-right,
.tinvwl-to-left,
th.product-cb,
tr.wishlist_item > td.product-cb,
.tinv-header  {
  display: none;
}

/*-------*/
.wishlist-page{
}
#btn-print{
  margin: 5rem 0;
}
.wishlist-form{
  max-width: 70rem;
  width: 100%;
  padding: 5rem;
  background-color: #f9f9f9;
}
.wishlist-form .btn{
  width: auto;
  transition: all .4s ease-in-out;
}

.woocommerce-variation-add-to-cart {
  display: none;
}

.tinvwl-table-manage-list td{
  border:1px solid #e7e7e7;
}
.tinvwl-table-manage-list th{
  text-align: left;
}
.wishlist_item ins{
  text-decoration: none;
}
/* ---- */
.single-text-box .variations{
  width: 100%;
  margin-top: 3rem;
}
.single-text-box .variations tr {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.single-text-box .variations td{
  width: 100%;
}
.single-text-box .variations select{
  width: 100%;
}
.single-text-box .reset_variations {
	visibility: visible;
	font-size: 1.4rem;
	padding: 0.2rem 0.7rem;
	background: #000;
	color: #fff;
  margin: 5px 0;
}
.single-text-box form  .price{
  font-size: 3rem;
  margin-top: 2rem;
}
@media only screen and (min-width: 48.0625em) {
  /*769px*/
  .single-text-box .variations select{
    width: 30rem;
  }

}

.cky-btn-revisit-wrapper,
.grecaptcha-badge {
	display: none !important;
}


.single-text-box > .cart {
	display: none;
}