*{
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/*scroll animate*/
	scroll-behavior: smooth;
}

/*--------------------------------
    variables of the  site
--------------------------------*/
:root 
{
  --blue-site: #264278;
  --red-site: #b32628;
  --red-light-site: rgba(193, 52, 54, 0.9);
  --caffe-site: #6b5b4e;
  --gray-light-site: #f6f5f5;
  --gray-dark-site: #a6a6a6;
  --white-site: #ffffff;
  --dark-site: #2f2f2e;
  --black-dark-site: #000000;
  --font-family-quick-serif: 'Quicksand', sans-serif;
  --font-family-font-awesome: 'Font Awesome 5 Free';
  --font-family-font-awesome-brands: 'Font Awesome 5 Brands';
}

/*---------------------------------
 		bar of pages scroll
---------------------------------*/

::-webkit-scrollbar 
{
      width: 8px;
      height: 8px;
}

::-webkit-scrollbar-track
{
      background-color: rgba(0,0,0,0.1);
} 

::-webkit-scrollbar-thumb
{
      background-color: rgba(0,0,0,0.2);
      border-radius: 10px 10px 10px 10px;
}

::-webkit-scrollbar-thumb:hover
{
      background-color: rgba(0, 0, 0, 0.2);      
}

::-webkit-scrollbar-button 
{
     width: 0px;
     height: 0px;
}

::-webkit-scrollbar-corner
{
      background-color: transparent;
}


/*-- explorer --*/

body 
{
    scrollbar-face-color: transparent;
    overflow: hidden;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-site);
    text-align: left;
    background-color: var(--white-site);
}

.btn-floating {
  position: fixed;
  width: 55px;
  height: 55px;
  line-height: 55px;
  bottom: 30px;
  right: 30px;
  background: #0df053;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
  z-index: 100;
}

.btn-floating:hover{
  text-decoration: none;
  color: #0df053;
  background: #fff;
}

.btnWhatsapp{
  font-family: var(--font-family-quick-serif);
  font-size: 1.1em;
  font-weight: 500;
  padding: .5em 1.5em;
  border: none;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background: #0df053;
  color: #fff;
}


/*--------------------------------------
		   Styles Globals
--------------------------------------*/

/* --- contentId ---*/

#contentId
{
	opacity: 0;
}

/*--- loading ---*/

.loader-container
{
	width: 100%;
	height: auto;
	min-height: 100vh;
	position: fixed;
	background-color: var(--white-site);
	z-index: 5000;
	transition: all 500ms ease-in-out;
}

.loader-animation
{
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%,-50%);
}

.closelg 
{
    z-index: 0;
    opacity: 0;
}

/* rollers */

.lds-roller 
{
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-roller div 
{
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px;
}

.lds-roller div:after 
{
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(188, 191, 191, 1);
  margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) 
{
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after 
{
  top: 50px;
  left: 50px;
}

.lds-roller div:nth-child(2) 
{
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after 
{
  top: 54px;
  left: 45px;
}

.lds-roller div:nth-child(3) 
{
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after 
{
  top: 57px;
  left: 39px;
}

.lds-roller div:nth-child(4) 
{
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after 
{
  top: 58px;
  left: 32px;
}

.lds-roller div:nth-child(5) 
{
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after 
{
  top: 57px;
  left: 25px;
}

.lds-roller div:nth-child(6) 
{
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after 
{
  top: 54px;
  left: 19px;
}

.lds-roller div:nth-child(7) 
{
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after 
{
  top: 50px;
  left: 14px;
}

.lds-roller div:nth-child(8) 
{
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after 
{
  top: 45px;
  left: 10px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--- menu ---*/

.menu 
{
  top: 0px;
  width: 100%; 
  height: auto;
  min-height: 80px;
  position: relative;
  z-index: 2000;
  background-color: var(--white-site); 
}

/*--- style elements ---*/

a
{
  text-decoration: none;
}

img 
{
    vertical-align: middle;
    border-style: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6
{
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

p
{
  margin-top: 0;
  margin-bottom: 1rem;
}

hr 
{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button[disabled]
{
  cursor: not-allowed;
  box-shadow: none; 
  opacity: 0.65;
}

.message-alerts
{
  width: 100%;
  height: auto;
  position: relative;
}

.alert
{
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    font-family: var(--font-family-quick-serif);
}

.alert ul
{
  list-style: none;
}

.alert-success 
{
    color: #fff;
    background-color: #21aa93;
    border-color: #21aa93;
}

.alert-info 
{
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-danger,
.alert-error 
{
    color: #fff;
    background-color: #ee4540;
    border-color: #c72c41;
}

.alert-warning 
{
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-dismissible 
{
    padding-right: 2.8em;
}

.close 
{
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000 !important;
    text-shadow: 0 1px 0 #fff; 
    opacity: .5;
    cursor: pointer;
}

.alert-dismissible .close 
{
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit;
}

button.close 
{   
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.show 
{
    opacity: 1;
    visibility: visible;
}

.fade 
{
    transition: opacity .15s linear;
}

/*--- banner sections ---*/

.banner-header
{
  top: 0px;
  width: 100%;
  height: auto;
  min-height: 400px;
  background: transparent 50% no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative;
  display: flex;
}

.banner-header:before
{
  content: '';
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.3);
}

.banner-header-text
{
  width: 70%;
  height: auto;
  position: relative;
  margin: 0 auto;
  text-align: center;
}

.banner-header-text h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  font-size: 3em;
  line-height: 1em;
  color: var(--white-site);
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  margin-bottom: 0px;
}

.banner-header-text hr
{
  width: 100px;
  height: 1px;
  position: relative;
  background: var(--white-site);
  display: inline-block;
  margin-top: .6em;
  margin-bottom: .5em;
}

.banner-header-text p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 300;
  font-size: 1.5em;
  line-height: 1.2em;
  color: var(--white-site);
  margin-bottom: 0px;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}

/*--- responsive banner section ---*/

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

  .banner-header
  {
    min-height: 300px;
  }

  .banner-header-text
  {
    width: 70%;
  }

  .banner-header-text h2
  {
    font-size: 2.2em;
  }

  .banner-header-text hr
  {
    width: 90px;
  }

  .banner-header-text p
  {
    font-size: 1.3em;
  }

}

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

  .banner-header
  {
    min-height: 200px;
  }

  .banner-header-text
  {
    width: 100%;
  }

  .banner-header-text h2
  {
    font-size: 1.5em;
  }

  .banner-header-text hr
  {
    width: 90px;
  }

  .banner-header-text p
  {
    font-size: .9em;
  }

}

/*--- breadcrumbs ---*/

.breadcrumbs
{
  width: 100%;
  height: auto;
  position: relative;
  font-family: var(--font-family-quick-serif);
  font-size: 1em;
  line-height: 1em;
  color: var(--dark-site);
  margin-top: 2em;
  margin-bottom: 2em;
}

.breadcrumbs a
{
  font-weight: 600;
  color: var(--dark-site);
  display: inline-block;
  vertical-align: middle;
}

.breadcrumbs a:after
{
  content: '/';
  font-weight: 400;
  position: relative;
  margin-left: .2em;
  float: right;
}

.breadcrumbs span
{
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumbs span:after
{
  content: '/';
  font-weight: 400;
  position: relative;
  margin-left: .2em;
  float: right;
}

.breadcrumbs span:last-child:after,
.breadcrumbs a:last-child:after
{
  display: none;
}

.breadcrumbs a:hover
{
 text-decoration: underline;
}


/*--- breadcrumbs ---*/

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

 .breadcrumbs
  {
    width: 100%;
    font-size: .9em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
}

/*--- cart ---*/

.cart-views
{
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: fixed;
  z-index: 5000;
  -webkit-transition: all 700ms ease-in-out;
  -o-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
  visibility: hidden;
  overflow: hidden;
}

.cart-background
{
 width: 100%;
 height: 100%;
 background: rgba(0,0,0,0.5);
 position: absolute;
 opacity: 0;
 -webkit-transition: all 700ms ease-in-out;
 -o-transition: all 700ms ease-in-out;
 transition: all 700ms ease-in-out;
}

.show-cart
{
  visibility: visible;
}

.show-cart .cart-background
{
  opacity: 1;
}

.cart-full
{
  width: 500px;
  height: 100vh;
  right: -500px;
  max-height: 100vh;
  position: relative;
  float: right;
  overflow: hidden !important;
  background: var(--white-site);
  -webkit-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.cart-full-container
{
  width: 100%;
  height: 100vh;
  position: absolute;
  padding: 20px !important;
  overflow: hidden;
  overflow-y: scroll;
  float: right;
}

.show-cart .cart-full
{
  right: 0px;
}

/*--- style scroll cart ---*/

.cart-full-container::-webkit-scrollbar 
{
  width: 0px;
  height: 0px;
}

.cart-full-container::-webkit-scrollbar-track
{
  background-color: var(--white-site);
} 

.cart-full-container::-webkit-scrollbar-thumb
{
  background-color: rgba(0,0,0,0.2);
  border-radius: 10px 10px 10px 10px;
}

.cart-full-container::-webkit-scrollbar-thumb:hover
{
  background-color: rgba(0, 0, 0, 0.5);      
}

.cart-full-container::-webkit-scrollbar-button 
{
  width: 0px;
  height: 0px;
}

.cart-full-container::-webkit-scrollbar-corner
{
  background-color: transparent;
}

/*--- style cart header ---*/

.cart-full-header
{
  top: -20px;
  width: 100%;
  height: auto;
  position: sticky;
  background: var(--white-site);
  z-index: 2;
  margin-top: -20px;
  padding-top: 20px;
}

.cart-full-header .cart-full-button-close
{
  top: 20px;
  left: 0px;
  border: none;
  background: transparent;
  position: absolute;
  cursor: pointer;
  display: block;
  color: var(--dark-site);
  z-index: 1;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.cart-full-header .cart-full-button-close:hover,
.cart-full-header .cart-full-button-close:focus,
.cart-full-header .cart-full-button-close:active
{
  outline: none;
  color: var(--red-site);
}

.cart-full-header h2
{
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
  font-family: var(--font-family-quick-serif);
  font-size: 1.5em;
  font-weight: 500;
}

.cart-full-header h2:after
{
  content: '';
  bottom: 0px;
  width: 180px;
  height: 1px;
  background: var(--gray-light-site);
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
}

.cart-full-header h2 span
{
  top: 1.3em;
  width: 30px;
  height: 30px;
  position: absolute;
  background: var(--red-site);
  border-radius: 50%;
  color: var(--white-site);
  font-size: .6em !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: .5em;
}

/*--- style cart body ---*/

.cart-full-body
{
  width: 100%;
  height: auto;
  min-height: calc(100vh - 231px);
  position: relative;
  margin-bottom: .5em;
  z-index: 1;
}

.items-cart
{
  width: 100%;
  height: auto;
  position: relative;
  padding: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.items-cart:after
{
  content: '';
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  position: absolute;
  background: var(--gray-light-site);
}

.items-cart:last-child:after
{
  display: none;
}

.items-cart img
{
  top: 0px;
  width: 120px;
  height: 120px;
  position: relative;
  float: left;
  margin-right: .8em;
}

.item-cart-text
{
  width: 100%;
  height: auto;
  position: relative;
  display: inline-grid;
}

.item-cart-text h3
{
  width: 100%;
  height: auto;
  position: relative;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1.2em;
  color: var(--dark-site);
  margin-bottom: .2em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

}

.item-cart-text p
{
  width: 100%;
  height: auto;
  position: relative;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: .9em;
  color: var(--gray-dark-site);
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.items-cart .item-button-close
{
  top: 20px;
  right: 10px;
  border: none;
  background: transparent;
  position: absolute;
  cursor: pointer;
  display: block;
  color: var(--gray-dark-site);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.items-cart .item-button-close:hover,
.items-cart .item-button-close:focus,
.items-cart .item-button-close:active
{
  outline: none;
  color: var(--dark-site);
}

/*--- style cart footer ---*/

.cart-full-footer
{
  bottom: -20px;
  left: -20px;
  position: sticky;
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: -20px;
  z-index: 2;
  
}

.items-group-cart
{
  width: 100%;
  height: auto;
  position: relative;
  text-align: right;
  display: flex;
}

.cart-full-subtotal
{
  width: 100%;
  height: auto;
  position: relative;
  background: var(--gray-light-site);
  padding: 20px;
  display: flex;
}

.cart-full-subtotal p
{
    width: 50%;
    height: auto;
    background: var(--gray-light-site);
    font-family: var(--font-family-quick-serif);
    font-weight: 700;
    font-size: 1.2em;
    color: var(--dark-site);
    display: inline-block;
    justify-content: center;
    align-items: center;
    float: left;
    margin-bottom: 0px;
    text-transform: uppercase;
    text-align: left;
}

.cart-full-subtotal p:last-child
{
  text-align: right;
}

.cart-full-buttons
{
  width: 50%;
  height: auto;
  position: relative;
  float: left;
}

.cart-full-buttons a,
.cart-full-buttons button
{
  padding: 1.3em 1em;
  text-align: center;
  display: block;
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.2em;
  color: var(--white-site);
  background: var(--black-dark-site);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.cart-full-buttons button
{
  width: 100%;
  height: auto;
  border: none;
  background: var(--dark-site);
  cursor: pointer;
}

.cart-full-buttons a:hover,
.cart-full-buttons a:focus,
.cart-full-buttons a:active,
.cart-full-buttons button:hover,
.cart-full-buttons button:focus,
.cart-full-buttons button:active
{
  outline: none;
  background: var(--white-site);
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
  color: var(--dark-site);
}

/*--- responsive cart views ---*/


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

  .cart-full-header h2
  {
    padding-top: 1em;
    margin-bottom: 1em;
    font-size: 1.3em;
  }

  .cart-full-header h2 span
  {
    top: 1.3em;
    width: 30px;
    height: 30px;
    font-size: .6em !important;
  }

  .items-cart img
  {
    width: 120px;
    height: 120px;
  }

  .item-cart-text h3
  {
    font-size: 1em;
    margin-bottom: .2em;
  }

  .item-cart-text p
  {
    font-size: .8em;
  }

  .cart-full-subtotal p
  {
    font-size: 1em;
  }

  .cart-full-buttons a,
  .cart-full-buttons button
  {
    padding: 1.3em 1em;
    font-size: 1em;
    line-height: 1.2em;
  }
}

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

  .cart-full
  {
    width: 70%;
    right: -70%;
  }

  .cart-full-header h2
  {
    padding-top: 1em;
    margin-bottom: 1em;
    font-size: 1.3em;
  }

  .cart-full-header h2 span
  {
    top: 1.3em;
    width: 30px;
    height: 30px;
    font-size: .6em !important;
  }

  .items-cart img
  {
    width: 120px;
    height: 120px;
  }

  .item-cart-text h3
  {
    font-size: .9em;
    margin-bottom: .2em;
  }

  .item-cart-text p
  {
    font-size: .8em;
  }

  .cart-full-subtotal p
  {
    font-size: 1em;
  }

  .cart-full-buttons a,
  .cart-full-buttons button
  {
    padding: 1.3em 1em;
    font-size: .9em;
    line-height: 1.2em;
  }
}

@media screen and (max-width: 575px)
{
  .cart-full
  {
    width: 100%;
    right: -100%;
  }

  .cart-full-header h2
  {
    padding-top: 1em;
    margin-bottom: 1em;
    font-size: 1.3em;
  }

  .items-cart img
  {
    width: 90px;
    height: 90px;
  }
}

/*--- footer ---*/

.footer
{
  width: 100%;
  height: auto;
  position: relative;
}

.footer-container
{
  width: 100%;
  height: auto;
  position: relative;
  background: var(--gray-light-site);
}

.footer-copyright
{
  width: 100%;
  height: auto;
  position: relative;
  padding: 1em 0px;
  background: var(--white-site);
}

.footer-container .items-footer
{
  width: 100%;
  height: auto;
  position: relative;
}

.footer-container .items-footer h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  font-size: 1.8em;
  letter-spacing: 2px;
  color: var(--red-site);
}

.footer-container .items-footer a
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1.2em;
  color: var(--dark-site);
  display: table;
}

.footer-container .items-footer a:hover,
.footer-container .items-footer a.active
{
  text-decoration: underline;
}

.footer-container .items-footer p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1.2em;
  color: var(--dark-site);
  display: block;
  margin-bottom: 0px;
}

.footer-container .items-footer p a
{
  color: var(--dark-site);
  display: inline-block;
  font-size: 1em;
}

/*--- form newsletter ---*/

.form-newsletter
{
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  margin-top: .8em;
}

.form-newsletter form
{
  width: 100%;
  height: auto;
  position: relative;
  display: table;
}

.input-group-newsletter
{
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  margin-bottom: 1.2em;
}

.input-group-newsletter:last-child
{
  margin-bottom: 0px;
}

.input-group-newsletter input
{
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  padding: .5em 1em;
  font-size: 1.2em;
  font-weight: 500;
}

.input-group-newsletter input::-webkit-input-placeholder
{
  color: var(--dark-site);
  font-family: var(--font-family-quick-serif);
}

.input-group-newsletter input::-moz-placeholder
{
  color: var(--dark-site);
  font-family: var(--font-family-quick-serif);
  opacity: 1;
}

.input-group-newsletter input:-moz-placeholder
{
  color: var(--dark-site);
  font-family: var(--font-family-quick-serif);
  opacity: 1;
}

.input-group-newsletter input:-ms-input-placeholder
{
  color: var(--dark-site); 
  font-family: var(--font-family-quick-serif);
}

.input-group-newsletter input:hover,
.input-group-newsletter input:focus,
.input-group-newsletter input:active
{
  outline: none;
}

/*--- checkbox ---*/

input[type=checkbox] 
{
  display: none;
}

.checkmark 
{
  top: 0px;
  left: 0px;
  width: 20px;
  height: auto;
  max-height: 16px;
  padding: 0px 1px;
  position: relative;
  background-color: var(--white-site);
  z-index: 20;
  display: inline-block !important;
  cursor: pointer;
  float: left;
}

.checkmark:after
{
  content: "\f0c8";
  font-family: var(--font-family-font-awesome);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark-site);
  float: left;
}

/* The container */

.input_checkbox
{
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.2em;
}

.input_checkbox input 
{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.input_checkbox:hover input ~ .checkmark 
{
  background-color: var(--white-site);
}

.input_checkbox input:checked ~ .checkmark:after
{
  content: "\f14a";
}

.input_checkbox a
{
  color: var(--dark-site);
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  font-family: var(--font-family-quick-serif);
  text-decoration: none; 
  position: relative;
  display: table !important;
  cursor: pointer;
  margin-top: 0.03em;
  padding-left: .5em;
}

.input_checkbox a.active
{
  text-decoration: none !important;
}

.input_checkbox a:hover,
.input_checkbox a.active:hover
{
  text-decoration: underline !important;
}



.checkmark,
.input_checkbox a 
{
  vertical-align: middle;
}

.button-submit
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.1em;
  font-weight: 500;
  color: var(--white-site);
  padding: .5em 1.5em;
  border: none;
  background: var(--red-site);
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.button-submit i
{
  font-size: .8em;
  margin-left: .5em;
}

.button-custom i
{
  margin-left: 0px !important;
  margin-right: .5em;
}

.button-submit:hover,
.button-submit:focus,
.button-submit:active
{
  background: var(--red-light-site);
  outline: none;
}

/*--- responsive footer menu ---*/

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

  .footer-container .items-footer h2
  {
    font-size: 1.5em;
    letter-spacing: 2px;
  }

  .footer-container .items-footer a
  {
    font-size: 1em;
    display: table;
  }

  .footer-container .items-footer p
  {
    font-size: 1em;
  }

  .footer-container .items-footer p a
  {
    font-size: .9em;
  }

  .input-group-newsletter input
  {
    font-size: 1em;
  }

  .input_checkbox a
  {
    font-size: 1em;
  }

  .button-submit
  {
    font-size: 1em;
    padding: .5em 1.5em;
  }

  .button-submit i
  {
    font-size: .8em;
    margin-left: .5em;
  }

  .btnWhatsapp{
    font-size: 1em;
    padding: .5em 1.5em;
  }

  .button-custom i
  {
    margin-left: 0px !important;
    margin-right: .5em;
  }

}

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

  .footer-container .items-footer h2
  {
    font-size: 1.3em;
    letter-spacing: 2px;
  }

  .footer-container .items-footer a
  {
    font-size: .9em;
    display: table;
  }

  .footer-container .items-footer p
  {
    font-size: .9em;
  }

  .footer-container .items-footer p a
  {
    font-size: .9em;
  }

  .input-group-newsletter input
  {
    font-size: .9em;
  }

  .input_checkbox
  {
    line-height: 1em;
  }

  .input_checkbox a
  {
    font-size: .9em !important;
  }

  .button-submit
  {
    font-size: .9em;
    padding: .5em 1.5em;
  }

  .button-submit i
  {
    font-size: .8em;
    margin-left: .5em;
  }

  .btnWhatsapp{
    font-size: .9em;
    padding: .5em 1.5em;
  }

  .button-custom i
  {
    margin-left: 0px !important;
    margin-right: .5em;
  }

}

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

  .row-site .grid-col .items-footer:after
  {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--gray-dark-site);
    position: absolute;
    bottom: -16px;
  }

  .row-site .grid-col:last-child .items-footer:after
  {
    display: none;
  }

  .footer-container .items-footer h2
  {
    font-size: 1.3em;
    letter-spacing: 2px;
  }

  .footer-container .items-footer a
  {
    font-size: 1em;
  }

  .footer-container .items-footer p
  {
    font-size: 1em;
  }

  .footer-container .items-footer p a
  {
    font-size: .9em;
  }

  .input-group-newsletter input
  {
    font-size: .9em;
  }

  .input_checkbox
  {
    line-height: 1em;
  }

  .input_checkbox a
  {
    font-size: .9em !important;
  }

  .button-submit
  {
    font-size: .9em;
  }

  .btnWhatsapp{
    font-size: .9em;
  }

}

/*--- copyright ---*/

.copyright
{
  width: 100%;
  height: auto;
  position: relative;
}

.copyright p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: .9em;
  color: var(--dark-site);
  margin-bottom: 0px;
}

.copyright p a
{
  color: var(--dark-site);
}

.copyright p a:hover
{
  text-decoration: underline;
}

/*--- social media ---*/

.footer-social-media
{
  position: relative;
}

.social-media
{
  display: block;
  position: relative;
}

.social-media li
{
  display: inline-block;
  vertical-align: middle;
  margin: 0px .2em;
}

.social-media li.title
{
  font-family: var(--font-family-quick-serif);
  font-weight: 800;
  font-size: .9em;
  margin-right: 1em;
}

.social-media li a
{
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--red-site);
  color: var(--white-site);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.social-media li a:hover
{
  background: var(--red-light-site);
}

/*--- button top ---*/

.button-top-footer
{
  bottom: 0px;
  width: 70px;
  height: 100px;
  right: 0px;
  position: absolute;
  background: var(--red-site);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

}

.button-content-top
{
  text-align: center;
}

.button-content-top i
{
  color: var(--white-site);
}

.button-content-top p
{
  color: var(--white-site);
  font-family: var(--font-family-quick-serif);
  font-size: 1em;
  margin-bottom: 0px;
}

/*--- responsive copyright ---*/

@media screen and (max-width: 1920px)
{
  .footer-social-media
  {
    padding-right: 2em !important
  }

}

@media screen and (max-width: 1700px)
{
  .footer-social-media
  {
    padding-right: 3em !important
  }

  .button-top-footer
  {
    bottom: 0px;
    width: 60px;
    height: 90px;
  }
}

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

  .copyright p
  {
    font-size: .8em;
  }

  .footer-social-media
  {
    padding-right: 3em !important
  }

  .social-media li.title
  {
    font-family: var(--font-family-quick-serif);
    font-weight: 800;
    font-size: .8em;
    margin-right: 1em;
  }

  .social-media li a
  {
    width: 35px;
    height: 35px;
  }

  .button-top-footer
  {
    bottom: 0px;
    width: 60px;
    height: 90px;
  }

}

@media screen and (max-width: 845px)
{
  .footer-social-media
  {
    padding-right: 15px !important;
  }

  .button-top-footer
  {
    display: none;
  }

}

@media screen and (max-width: 790px)
{
  .copyright p
  {
    text-align: center !important;
    font-size: .7em;
  }

  .social-media li.title
  {
    font-family: var(--font-family-quick-serif);
    font-weight: 800;
    font-size: .7em;
    margin-right: 1em;
  }

  .social-media li a
  {
    width: 35px;
    height: 35px;
  }

}

@media screen and (max-width: 767px)
{
  .footer-social-media
  {
    text-align: center !important;
  }

  .copyright
  {
    margin-top: -15px !important;
  }
}

/*--- button up ---*/

.button_up 
{
    bottom: 130px;
    right: 20px;
    width: 45px;
    height: auto;
    position: fixed;
    z-index: 1000;
    text-align: center;
    display: none;
}

.button_up button:first-child 
{
    background-color: rgba(234, 234, 234, .7);
    color: var(--dark-site);
    line-height: 0;
    padding-top: .1em;
    display: none;
}

.button_up button:first-child i
{
  color: var(--caffe-site);
  font-size: 1.5em;
}

.button_up button 
{
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    position: relative;
    text-align: center;
    border: none;
    border-radius: 50%;
    background-color: rgba(179, 38, 40, .95);
    color: var(--white-site);
    cursor: pointer;
    margin-bottom: .5em;
    z-index: 2; 
    outline: none;
    -ms-touch-action: none !important;
    touch-action: none !important;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);  
}

.button_up button img
{
    width: 14px;
}

.button_up button:last-child
{
  display: none;
}

.button_up .button-shop
{
    background-color: var(--red-site);
    color: var(--white-site);
    line-height: 0;
    padding-top: .1em;
    transition: 1s;
}

.button_up .button-shop .count-shop
{
  top: -5px;
  right: -5px;
  width: 25px;
  height: 25px;
  background: var(--gray-light-site);
  position: absolute;
  color: var(--dark-site);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .8em;
  border-radius: 50%;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

.button_up .button-shop img
{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  float: left;
  position: absolute;
}

.button_up .button-shop:hover span
{
  opacity: 1;
  right: 70px;
  z-index: 1;
  visibility: visible;
}

.button_up .button-shop span
{
    top: 50%;
    position: absolute;
    width: 145px;
    height: auto;
    padding: 1em;
    right: 140px;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    color: var(--dark-site);
    transform: translateY(-50%);
    background-color: rgba(234, 234, 234, .7);
    transition: .5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1000;
}

.button_up .button-shop span:after
{
  content: "";
  top: 50%;
  right: -20px;
  border: 10px solid transparent;
  border-left-color: rgba(234, 234, 234, .7);
  position: absolute;
  transform: translateY(-50%);
}

.button_up button:hover,
.button_up button:active,
.button_up button:focus
{
  outline: none;
}


/* -- responsive footer and buttons up - menu ---*/

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

  .button_up 
  {
      bottom: 80px;
      right: 5%;
      width: 45px;
      height: auto;
      position: fixed;
      z-index: 1000;
      text-align: center;
      display: none;
  }

  .button_up button:first-child
  {
      display: block;
  }
  .button_up button:last-child
  {
    display: block;
  }

  .button-top-footer
  {
    display: none;
  }
}

/*----------------------------------------------
                Home Styles
----------------------------------------------*/

.slider_home
{
  top: 0px;
  width: 100%;
  height: auto;
  position: relative;
}

.swiper-container
{
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: var(--font-family-quick-serif);
  transform: scaleX(1);
}

/* slide home */

#home 
{
  width: 100%;
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
}


#home .swiper-slide 
{
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  min-height: 300px;
  position: relative;
}

#home .swiper-slide > a
{
   display: contents;
}

#home .swiper-slide .slide_img 
{
  width:  100%;
  height: 100%;
  position: relative;
}

#home .swiper-slide .slide_img:before 
{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

#home .swiper-slide .slide_img img
{
  width:  100%;
  height: 100%;
  max-height: 900px;
  display: block;
  object-fit: cover;
  
}

#home .swiper-slide .slide_content
{
  top: 50%;
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 2000;
  text-align: center;
  padding: 3em 1em;
  transform: translateY(-50%);
}

#home .swiper-slide .slide_content h2
{
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  color: var(--white-site);
  font-size: 3em;
  line-height: 1em;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 3px 3px 3px rgba(0,0,0,0.3);
  margin-bottom: 0px;
}


#home .swiper-slide .slide_content h3
{
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  color: var(--red-site);
  font-size: 2em;
  letter-spacing: 2px;
  line-height: 1em;
  font-weight: 500;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  margin-bottom: .5em;
}

#home .swiper-slide .slide_content hr
{
  width: 100px;
  height: 1px;
  background: var(--white-site);
  position: relative;
  display: block;
  margin: 0 auto;
}

#home .swiper-slide .slide_content p 
{
  width: 100%;
  height: auto;
  font-size: 1.2em;
  line-height: 1em;
  color: var(--white-site);
  font-weight: 300;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.3);
  position: relative;
  display: block;
  margin-top: .8em;
}


#home .swiper-slide .slide_content a
{
  padding: .5em 2em;
  display: inline-block;
  background: var(--white-site);
  color: var(--dark-site);
  font-size: 1em;
  margin-top: 2.5em;
  position: relative;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

#home .swiper-slide .slide_content a:hover
{
  background: var(--red-site);
  color: var(--white-site);
}


/*---- style arrows -----*/

.arrow-slider
{
  bottom: 0px;
  width: 120px;
  height: auto;
  left: 0px;
  position: absolute;
  background: var(--red-site);
  z-index: 1000;
  text-align: center;
  padding: .8em .5em;
}


.arrow-slider >  .swiper-button-prev 
{
    background-image: none;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 40px;
    height: auto;
    position: relative;
    display: inline-block;

}

.arrow-slider > .swiper-button-prev:before
{
  content: "\f060";
  font-family: var(--font-family-font-awesome);
  font-weight: 800;
  color: var(--white-site);

}

.arrow-slider > .swiper-button-next 
{
    background-image: none;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 40px;
    height: auto;
    position: relative;
    display: inline-block;
    
}

.arrow-slider >.swiper-button-next:before
{
  content: "\f061";
  font-family: var(--font-family-font-awesome);
  font-weight: 800;
  color: var(--white-site);

}

.arrow-slider > .swiper-button-disabled
{
    opacity: .8;
    cursor: not-allowed;
    pointer-events: auto;
}

.arrow-slider >  .swiper-button-prev:hover,
.arrow-slider >.swiper-button-next:hover,
.arrow-slider >  .swiper-button-prev:focus,
.arrow-slider >.swiper-button-next:focus,
.arrow-slider >  .swiper-button-prev:active,
.arrow-slider >.swiper-button-next:active
{
  outline: none;
}

/*--- paginations bullets ---*/

#home >.swiper-pagination-bullets 
{
    bottom: 50%;
    float: right;
    right: 40px;
    left: inherit;
    width: 12px;
    height: auto;
    transform: translateY(50%);
}

 #home >.swiper-pagination-bullets .swiper-pagination-bullet 
{

  display: block;
  margin: 8px 8px;
  background: var(--white-site);
  opacity: 1;
  border-radius: 0px;
  width: 12px;
  height: 12px;
  border: none;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

#home >.swiper-pagination-bullets .swiper-pagination-bullet:hover,
#home >.swiper-pagination-bullets .swiper-pagination-bullet-active 
{
    opacity: 1;
    background: var(--red-site);
}

#home >.swiper-pagination-bullets .swiper-pagination-bullet:hover,
#home >.swiper-pagination-bullets .swiper-pagination-bullet:focus,
#home >.swiper-pagination-bullets .swiper-pagination-bullet:active
{
  outline: none;
}


/* animation general */
#home .swiper-slide .slide_content h2,
#home .swiper-slide .slide_content h3,
#home .swiper-slide .slide_content hr,
#home .swiper-slide .slide_content p,
#home .swiper-slide .slide_content a
{
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: textAnimateOutDown;
  animation-name: textAnimateOutDown;
}

/* animation in event active */

#home .swiper-slide-active .slide_content h2, 
#home .swiper-slide-active .slide_content h3,
#home .swiper-slide-active .slide_content hr, 
#home .swiper-slide-active .slide_content p, 
#home .swiper-slide-active .slide_content a 
{
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: textAnimateInDown;
  animation-name: textAnimateInDown;
}

/* animation title */

/* animation paragraph */
#home .swiper-slide-active .slide_content h2, 
#home .swiper-slide-active .slide_content h3,
#home .swiper-slide-active .slide_content hr, 
#home .swiper-slide-active .slide_content p, 
#home .swiper-slide-active .slide_content a 
{
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}


/* animations for slide home */

@-webkit-keyframes textAnimateInDown 
{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes textAnimateInDown 
{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes textAnimateOutDown 
{
   0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes textAnimateOutDown 
{
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

/* responsive slider home */

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

  #home .swiper-slide .slide_content h2
  {
    font-size: 2em;
    letter-spacing: 2px;
  }


  #home .swiper-slide .slide_content h3
  {
    font-size: 1.5em;
    margin-bottom: .5em;
  }

  #home .swiper-slide .slide_content hr
  {
    width: 100px;
    height: 1px;
  }

  #home .swiper-slide .slide_content p 
  {
    font-size: 1.2em;
    margin-top: .8em;
  }

  #home .swiper-slide .slide_content a
  {
    margin-top: 2.5em;
    padding: .5em 2em;
    font-size: .9em;
  }

}

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

  #home .swiper-slide 
  {
    min-height: 250px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #home .swiper-slide .slide_img 
  {
    width:  100%;
    height: 100%;
    position: absolute;
  }

  #home .swiper-slide .slide_content
  {
    top: 0px;
    transform: none;
    position: relative;
    width: 100%;
    padding: 3em 1.5em;
  }

  #home .swiper-slide .slide_content p 
  {
    font-size: 1em;
  }


}

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

  #home .swiper-slide .slide_content h2
  {
    font-size: 1.5em;
    letter-spacing: 1px;
  }


  #home .swiper-slide .slide_content h3
  {
    font-size: 1.2em;
    margin-bottom: .5em;
  }

  #home .swiper-slide .slide_content hr
  {
    width: 100px;
    height: 1px;
  }

  #home .swiper-slide .slide_content p 
  {
    font-size: .9em;
    margin-top: .8em;
  }

  #home .swiper-slide .slide_content a
  {
    margin-top: 1.5em;
    padding: .5em 1.5em;
    font-size: .75em;
  }

  .arrow-slider
  {
    width: 95px;
    padding: .2em .2em;
  }

  .arrow-slider >.swiper-button-next:before,    
  .arrow-slider > .swiper-button-prev:before
  {
    font-size: .8em;

  }
  #home >.swiper-pagination-bullets 
  {
      right: 25px;
      width: 10px;
      height: auto;
  }

   #home >.swiper-pagination-bullets .swiper-pagination-bullet 
  {
    margin: 8px 8px;
    width: 10px;
    height: 10px;
  }

}

/*--- Main Categories ---*/

.text-main-categories
{
  width: 100%;
  height: auto;
  position: relative;
  display: block;
}

.main-categories-margin-bottom
{
  margin-bottom: 30px;
}

.text-main-categories h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  font-size: 1.8em;
  letter-spacing: 2px;
  line-height: 1em;
  color: var(--red-site);
}

.text-main-categories p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.25em;
  color: var(--dark-site);
  text-align: justify;
}

.text-main-categories a
{
  background: var(--red-site);
  color: var(--white-site);
  display: inline-block;
  padding: .5em 1.5em;
  font-family: var(--font-family-quick-serif);
  font-size: 1.1em;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.text-main-categories a:hover
{
  background: var(--red-light-site);
}

.text-main-categories a i
{
  margin-left: 1em;
}

.image-main-categories
{
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
}

.full-image,
.full-image-custom,
.image-custom
{
  width: 100%;
  height: 100%;
  min-height: 200px;
  position: relative;
  display: block;
  overflow: hidden;
}

.image-custom
{
  min-height: 200px;
}

.image-main-categories::before,
.full-image::before,
.full-image-custom::before
{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background: rgba(0,0,0,0.1);
}

.image-main-categories img
{
  width: 100%;
  min-height: 160px;
  max-height: 250px;
  height: auto;
  object-fit: cover;
  float: left;
}

.full-image img,
.full-image-custom img,
.image-custom img
{
  height: 100%;
  min-height: 100%;
  position: absolute;
}



/*---- responsive main categories ----*/

@media screen and (min-width: 1580px)
{
  .image-custom
  {
    min-height: 250px;
    max-height: 250px;
  }
}

@media (min-width: 990px) and (max-width: 1580px)
{
  .image-custom
  {
    max-height: 200px;
  }
}

@media screen and (max-width: 1580px)
{
  .text-main-categories h2
  {
    font-size: 1.5em;
  }

  .text-main-categories p
  {
    font-size: 1em;
  }

  .text-main-categories a
  {
    padding: .5em 1.5em;
    font-family: var(--font-family-quick-serif);
    font-size: .9em;
  }
}

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

  .text-main-categories h2
  {
    font-size: 1.5em;
  }

  .text-main-categories p
  {
    font-size: 1em;
  }

  .text-main-categories a
  {
    padding: .5em 1.5em;
    font-family: var(--font-family-quick-serif);
    font-size: .9em;
  }

  .text-main-categories a:hover
  {
    background: var(--red-light-site);
  }

  .text-main-categories a i
  {
    margin-left: 1em;
  }

}

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

    .text-main-categories h2
    {
      font-size: 1.3em;
    }

    .text-main-categories p
    {
      font-size: .9em;
    }

    .text-main-categories a
    {
      padding: .5em 1.5em;
      font-family: var(--font-family-quick-serif);
      font-size: .8em;
    }

   .image-custom img
   {
     height: 100%;
     position: absolute;
   }

   .full-image-custom img
   {
     position: relative;
   }
}

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

  .full-image,
  .full-image-custom,
  .image-custom
  {
    min-height: 160px;
    max-height: 160px;
  }

  .image-main-categories img
  {
    min-height: 160px;
    max-height: 160px;
  }

  .full-image img
  {
    position: relative;
  }

  .image-custom img
   {
     height: 100%;
     position: relative;
   }

  .image-none
  {
    display: none !important;
  }
}

/*--- main categories slider ---*/

.slide_collections
{
  height: auto;
  position: relative;
}

.slide_collections .swiper-container
{
  width: 100%;
  padding-top: 0px;
  padding-bottom: 0px;
  font-family: var(--font-family-quick-serif);
  transform: scaleX(1);
}

/* slide collections */

#collections 
{
  width: 100%;
  height: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
}


#collections .swiper-slide 
{
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  position: relative;
}

.slide_collections .swiper-pagination-two 
{
    position: absolute;
    text-align: right;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10;
    padding: 0px 1em;
}

/*--- paginations bullets ---*/

.slide_collections >.swiper-pagination-bullets 
{
    top: 230px;
    float: right;
    right: 10px;
    left: inherit;
    width: 100%;
    height: auto;
    
}

.slide_collections >.swiper-pagination-bullets .swiper-pagination-bullet 
{

  display: inline-block;
  margin: 8px 4px;
  background: var(--white-site);
  opacity: 1;
  border-radius: 0px;
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.slide_collections >.swiper-pagination-bullets .swiper-pagination-bullet:hover,
.slide_collections >.swiper-pagination-bullets .swiper-pagination-bullet-active 
{
    opacity: 1;
    background: var(--red-site);
}

.slide_collections >.swiper-pagination-bullets .swiper-pagination-bullet:hover,
.slide_collections >.swiper-pagination-bullets .swiper-pagination-bullet:focus,
.slide_collections >.swiper-pagination-bullets .swiper-pagination-bullet:active
{
  outline: none;
}

/*---  responsive slider main categories ---*/

@media screen and (max-width: 1580px)
{
  .slide_collections .swiper-pagination-two 
  {
      text-align: right;
      padding: 0px 1em;
  }

  /*--- paginations bullets ---*/

  .slide_collections >.swiper-pagination-bullets 
  {
      top: 180px;
      right: 10px;      
  }

}

@media screen and (max-width: 767px)
{
  .slide_collections .swiper-pagination-two 
  {
      text-align: left;
      padding: 0px 1em;
  }

  /*--- paginations bullets ---*/

  .slide_collections >.swiper-pagination-bullets 
  {
      top: 80%;
      right: inherit; 
      left: 10px;     
  }

}

@media screen and (max-width: 575px)
{
 .slide_collections .swiper-pagination-two 
  {
      text-align: right;
      padding: 0px 1em;
  }

  /*--- paginations bullets ---*/

  .slide_collections >.swiper-pagination-bullets 
  {
      top: 85%;
      right: 10px;
      left: inherit;     
  }

}

/*--- section text ---*/

.section-text
{
   width: 400px;
   height: auto;
   position: relative;
   display: block;
}

.section-text h3
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--dark-site);
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 0px;
  line-height: 1em;
}

.section-text h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--red-site);
  font-size: 2em;
  letter-spacing: 2px;
  line-height: 1em;
  margin-bottom: .5em;
}

.section-text p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
  font-size: 1.2em;
  line-height: 1.2em;
}

/*--- responsive section text ---*/

@media screen and (max-width: 1580px)
{
  .section-text
  {
     width: 350px;
  }

  .section-text h3
  {
    font-size: 1em;
  }

  .section-text h2
  {
    font-size: 1.8em;   
  }

  .section-text p
  {
    font-size: 1em;
  }

}

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

  .section-text
  {
     width: 300px;
  }
  
  .section-text h3
  {
    font-size: .9em;
  }

  .section-text h2
  {
    font-size: 1.5em;   
  }

  .section-text p
  {
    font-size: .9em;
  }

}

@media screen and (max-width: 575px)
{
  .section-text
  {
     width: 100% !important;
  }
}

/*--- slider products featured ---*/


.slide-product-featured
{
  top: 0px;
  width: 100%;
  height: auto;
  position: relative;
}


/* slide product featured and most */

#featured,
#most 
{
  width: 100%;
  height: auto;
  padding-top: 2em;
  padding-bottom: 0px;
  position: relative;
  overflow: hidden;
}


#featured .swiper-slide,
#most .swiper-slide  
{
  background-position: center;
  background-size: cover;
  width: 25%;
  height: auto;
  min-height: 300px;
  position: relative;
  padding: .5em;
}


/*---- style arrows -----*/

.arrow-slider-products
{
  top: 0px;
  right: 0px;
  position: relative;
  z-index: 1000;
  text-align: right;
}

.arrow-slider-products >  .swiper-button-prev-featured,
.arrow-slider-products >  .swiper-button-prev-most
{
    background-image: none;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 50px;
    height: 40px;
    position: relative;
    display: inline-block;
    background: var(--red-site);
    cursor: pointer;

}

.arrow-slider-products > .swiper-button-prev-featured:before,
.arrow-slider-products > .swiper-button-prev-most:before
{
  content: "\f060";
  font-family: var(--font-family-font-awesome);
  font-weight: 800;
  color: var(--white-site);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

}

.arrow-slider-products > .swiper-button-next-featured,
.arrow-slider-products > .swiper-button-next-most  
{
    background-image: none;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 50px;
    height: 40px;
    position: relative;
    display: inline-block;
    background: var(--red-site);
    cursor: pointer;
    
}

.arrow-slider-products >.swiper-button-next-featured:before,
.arrow-slider-products >.swiper-button-next-most:before
{
  content: "\f061";
  font-family: var(--font-family-font-awesome);
  font-weight: 800;
  color: var(--white-site);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

}

.arrow-slider-products > .swiper-button-disabled
{
    opacity: .8;
    cursor: not-allowed;
    pointer-events: auto;
}

.arrow-slider-products >  .swiper-button-prev-featured:hover,
.arrow-slider-products >.swiper-button-next-featured:hover,
.arrow-slider-products >  .swiper-button-prev-featured:focus,
.arrow-slider-products >.swiper-button-next-featured:focus,
.arrow-slider-products >  .swiper-button-prev-featured:active,
.arrow-slider-products >.swiper-button-next-featured:active,
.arrow-slider-products >  .swiper-button-prev-most:hover,
.arrow-slider-products >.swiper-button-next-most:hover,
.arrow-slider-products >  .swiper-button-prev-most:focus,
.arrow-slider-products >.swiper-button-next-most:focus,
.arrow-slider-products >  .swiper-button-prev-most:active,
.arrow-slider-products >.swiper-button-next-most:active
{
  outline: none;
}

/*--- responsive slider products featured ---*/

@media screen and (max-width: 925px)
{
  #featured,
  #most 
  {
    padding-top: .2em;
    padding-bottom: 10px;
  }

}

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

  #featured,
  #most 
  {
    padding-top: 0px;
    padding-bottom: 5px;
  }

  .arrow-slider-products
  {
    top: 15px;
    position:absolute;
  }

  .arrow-slider-products >  .swiper-button-prev-featured,
  .arrow-slider-products >  .swiper-button-prev-most 
  {
      width: 35px;
      height: 30px;
  }

  .arrow-slider-products > .swiper-button-next-featured,
  .arrow-slider-products > .swiper-button-next-most
  {
      width: 35px;
      height: 30px;      
  }
}

/*--- banner ---*/

.banner
{
  width: 100%;
  height: auto;
  min-height: 400px;
  position: relative;
  background: transparent 50% no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  display: flex;
}

.banner:before
{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.3);
}

.banner-text
{
  width: 70%;
  height: auto;
  position: relative;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 2em;
  margin: 0 auto;
}

.banner-text h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  font-size: 2.3em;
  color: var(--white-site);
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  margin-bottom: 0px;
  line-height: 1em;
}

.banner-text hr
{
  width: 100px;
  background: var(--white-site);
  display: inline-block;
  margin-top: .5em;
  margin-bottom: .3em;
}

.banner-text p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.2em;
  color: var(--white-site);
  text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  margin-bottom: 1.2em;
}

.banner-text a
{
  background: var(--white-site);
  padding: .5em 2em;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1em;
  color: var(--dark-site);
  display: inline-block;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.banner-text a:hover
{
  background: var(--red-site);
  color: var(--white-site);
}

/*--- responsive banner ---*/

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

  .banner
  {
    min-height: 300px;
  }

  .banner-text
  {
    width: 70%;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .banner-text h2
  {
    font-size: 2em;
  }

  .banner-text p
  {
    font-size: 1.2em;
  }

  .banner-text a
  {
    font-size: 1em;
  }

}


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

  .banner-text h2
  {
    font-size: 1.8em;
  }

  .banner-text p
  {
    font-size: 1em;
  }

  .banner-text a
  {
    font-size: .9em;
  }

}

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

  .banner
  {
    min-height: 250px;
  }

  .banner-text
  {
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .banner-text h2
  {
    font-size: 1.5em;
  }

  .banner-text p
  {
    font-size: .9em;
  }

  .banner-text a
  {
    font-size: .8em;
  }

}

/*--- what our clients say ---*/

.clients-image
{
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 200px;
  overflow: hidden;
}

.clients-image img
{
  object-fit: cover;
  width: 100%;
  height: 100%;
  float: left;
}

.clients-image:before
{
  content: '';
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.3);
}

@media screen and (max-width: 575px)
{
  .clients-image
  {
    min-height: 160px;
    max-height: 160px;
  }

  .clients-image img
  {
    width: 100%;
    height: auto;
  }

}

/*--- slider testimonials ---*/

#clients
{
  width: 100%;
  height: auto;
  padding-top: 2em;
  padding-bottom: 3em;
  position: relative;
  overflow: hidden;
}


#clients .swiper-slide
{
  background-position: center;
  background-size: cover;
  width: 50%;
  height: auto;
  min-height: 150px;
  position: relative;
}


/*--- paginations bullets ---*/

.swiper-pagination-clients 
{
    bottom: 0px;
    float: right;
    right: inherit;
    left:0px;
    width: 100%;
    height: auto;
    text-align: center;
    
}

.swiper-pagination-clients > .swiper-pagination-bullet 
{

  display: inline-block;
  margin: 8px 4px;
  background: var(--gray-light-site);
  opacity: 1;
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.swiper-pagination-clients > .swiper-pagination-bullet:hover,
.swiper-pagination-clients > .swiper-pagination-bullet-active 
{
    opacity: 1;
    background: var(--red-site);
}

.swiper-pagination-clients > .swiper-pagination-bullet:hover,
.swiper-pagination-clients > .swiper-pagination-bullet:active,
.swiper-pagination-clients > .swiper-pagination-bullet:focus
{
  outline: none;
}

/*--- responsive slider clients ---*/


@media screen and (max-width: 925px)
{
  #clients
  {
    padding-top: .2em;
  }

}

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

  #clients
  {
    padding-top: 0px;
  }
}

/*--- clients testimonials ---*/

.clients-content
{
  width: 100%;
  height: auto;
  position: relative;
  border: 2px solid var(--gray-light-site);
  border-radius: 10px;
  background: var(--white-site);
  padding: 2em;
}

.clients-text
{
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.clients-text:after
{
  content: "\f10d";
  font-family: var(--font-family-font-awesome);
  font-weight: 900;
  font-size: 5em;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: 10px;
  color: var(--gray-light-site);
  z-index: -1;

}

.clients-text p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.2em;
  color: var(--dark-site);
  text-align: justify;
}

.clients-text h4
{
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  font-size: .9em;
  line-height: 1.2em;
  color: var(--red-site);
  font-style: italic;
}

.clients-content img
{
  bottom: -45px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/*-- responsive clients testimonials --*/

@media screen and (max-width: 1580px)
{
  .clients-text:after
  {
    font-size: 4em;
  }

  .clients-text p
  {
    font-size: 1em;
  }

  .clients-text h4
  {
    font-size: .8em;
  }

  .clients-content img
  {
    bottom: -30px;
    width: 60px;
    height: 60px;
  }

}

@media screen and (max-width: 925px)
{
  .clients-text:after
  {
    font-size: 3em;
  }

  .clients-text p
  {
    font-size: .9em;
  }

  .clients-text h4
  {
    font-size: .7em;
  }

  .clients-content img
  {
    bottom: -25px;
    width: 50px;
    height: 50px;
  }
}


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

.about-container
{
  width: 100%;
  height: auto;
  position: relative;
}

.about-text
{
  width: 100%;
  height: auto;
  position: relative;
}

.about-text h3
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--dark-site);
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 0px;
  line-height: 1em;
}

.about-text h2
{
  font-family: var(--font-family-quick-serif);
  font-size: 2em;
  line-height: 1em;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red-site);
  margin-bottom: .5em;
}


.about-text p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1.2em;
  color: var(--dark-site);
  line-height: 1.2em;
  text-align: justify;
}

.about-image
{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.about-full-image
{
  max-height: 520px;
}
.about-full-image-sm
{
  max-height: 300px;
}
.about-full-image-xs
{
  max-height: 200px;
}

.about-image:before
{
  content: '';
  top: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.2);
  z-index: 2;
}

.about-image img
{
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
} 

.about-video
{
  width: 100%;
  height: auto;
  max-height: 250px;
  position: relative;
  overflow: hidden;
}

.about-video:before
{
  content: '';
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  position: absolute;
}

.about-video img
{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-video .btn-play
{
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e3e3e3;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  transition: all 500ms ease-in-out;
  z-index: 2;
}

.about-video .btn-play:before,
.about-video .btn-play:after
{
    content: '';
    display: none;
    position: absolute;
    border: 50%;
    border: 1px solid #e3e3e3;
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: pulse 1.5s linear infinite;
    opacity: 0;
    background-color: rgba(227, 227, 227, .2);
    background-visibility: hidden;
    z-index: 1;

}

.about-video .btn-play:after
{
  animation-delay: .5s;
}

@keyframes pulse 
{
  0%
  {
    transform: scale(0.5);
    opacity: 0;
  }
  50%
  {
    opacity: 1;
  }
  100%
  {
    transform: scale(1.2);
    opacity: 0;
  }
}

.about-video:hover .btn-play
{
  opacity: 1;
}

.about-video:hover .btn-play:before,
.about-video:hover .btn-play:after
{
  display: block;
}

.about-video .btn-play i
{
  font-size: 1.7em;
  color: #fff;
}

/*--- responsive about ---*/

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

  .about-text h3
  {
    font-size: 1em;
  }

  .about-text h2
  {
    font-size: 1.8em;
  }

  .about-text p
  {
    font-size: 1em;
  }
  
}

@media screen and (max-width: 925px)
{
  .about-text h3
  {
    font-size: .9em;
  }

  .about-text h2
  {
    font-size: 1.5em;
  }

  .about-text p
  {
    font-size: .9em;
  }

}

/*----------------------------------------------
              Section Products
----------------------------------------------*/

.products-container
{
  width: 100%;
  height: auto;
  position: relative;
}

.filter-header
{
  width: 100%;
  height: auto;
  position: relative;
  line-height: 0px;
}

.filter-header form
{
  width: 100%;
  height: auto;
  position: relative;
  display: table;
}

.filter-input-group
{
  width: 100%;
  height: auto;
  position: relative;
}

.filter-input-group .select-custom,
.filter-input-group .input-control-content
{
  width: 100%;
  height: 35px;
  position: relative;
  border-radius: 0px;
  border: 1px solid var(--dark-site);
  display: flex;
  overflow: hidden;
}

.filter-input-group .input-group-custom .button-select
{
  top: -25px;
}

.filter-input-group .select-custom select
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: .9em;
  border: 0px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  flex: 1;
  padding: .5em;
  color: var(--dark-site);
  background: var(--white-site);
  cursor: pointer;
}

/* Remove IE arrow */

.filter-input-group .select-custom select::-ms-expand 
{
  display: none;
}

.filter-input-group .select-custom:after
{
  content: "\f0d7";
  font-family: var(--font-family-font-awesome);
  font-weight: 800;
  font-size: 1em;
  top: 0px;
  right: 0px;
  width: 25px;
  height: 35px;
  pointer-events: none;
  background: var(--white-site);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filter-button-show
{
  border: none;
  background: transparent;
  outline: none;
  margin-left: .8em;
  cursor: pointer;
}

.filter-button-show:first-child
{
  margin-left: 0px;
}

.filter-input-group .select-custom select:hover,
.filter-input-group .select-custom select:focus,
.filter-input-group .select-custom select:active,
.filter-button-show:hover,
.filter-button-show:focus,
.filter-button-show:active
{
  outline: none;
}

.filter-button-show i
{
  font-size: 1.8em;
  color: var(--dark-site);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.filter-button-show.active i,
.filter-button-show i:hover
{
  color: var(--red-site);
}


.botton-filter-custom.active i:first-child,
.botton-filter-custom i:last-child
{
  display: none;
}


.botton-filter-custom.active i:last-child
{
  display: block;
}


/*--- filter products ---*/

.filter-products
{
  width: 100%;
  height: auto;
  position: relative;
}

.filter-products-button
{
  top: -40px;
  left: 0px;
  position: absolute;
  z-index: 1500;
  display: none;
  justify-content: center;
  align-items: center;
}

.filter-products-button .filter-button-show
{
  margin-left: 0px;
}

.filter-products-button .title-button
{
  line-height: .9em;
  display: block;
}

.filter-products-button .title-button span
{
  font-family: var(--font-family-quick-serif);
  font-size: .7em;
  line-height: 1.1em;
  font-weight: 600;
  margin-left: .5em;
  display: table;
  position: relative;
  color: var(--dark-site);
}

.filter-products-button .title-button span strong
{
  font-size: 1.4em !important;
  display: inline-block;
  color: var(--red-site);
}

/*--- responsive filter button ---*/

@media screen and (max-width: 575px)
{
  .filter-products-button
  {
    display: flex;
  }
}

/*--- filter container products ---*/

.filter-container
{
  width: 100%;
  height: auto;
  position: relative;
  background: var(--gray-light-site);
  padding: 2em 1em;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

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

  .filter-container
  {
    position: absolute;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
  }

}

.filter-group
{
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: .7em;
  margin-bottom: .7em;
}

.filter-group:after
{
  content: '';
  width: 100%;
  height: 1px;
  bottom: 0px;
  position: absolute;
  background: var(--gray-dark-site);
}

.filter-group:last-child
{
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.filter-group:last-child:after
{
  display: none;
}

.filter-group h3
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.5em;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--red-site);
}

.filter-input-search
{
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 1em;
}

.filter-input-search input
{
  width: 100%;
  height: 35px;
  border: none;
  position: relative;
  background: var(--white-site);
  border-radius: 10px;
  padding: .5em 1em;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: .9em;
  color: var(--dark-site);
  outline: none;
}

.filter-input-search input::-webkit-input-placeholder
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
}

.filter-input-search input::-moz-placeholder
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
  opacity: 1;
}

.filter-input-search input:-moz-placeholder
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
  opacity: 1;
}

.filter-input-search input:-ms-input-placeholder
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
}

.button-search
{
  top: 0px;
  right: 0px;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: var(--white-site);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:.5em;
}

.button-search button
{
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.button-show-all
{
  width: 100%;
  height: auto;
  position: relative;
}

.button-show-all a
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1em;
  line-height: 1.2em;
  color: var(--dark-site);
  display: inline-block;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.button-show-all a:hover
{
  color: var(--red-site);
  text-decoration: underline;
}

/* ranger price */

.button-filter-clear
{
  margin-top: 1em !important;
  margin: 0 auto;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: .9em;
  text-decoration: underline;
  display: block;
  color: var(--dark-site);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.button-filter-clear:hover
{
  color: var(--red-site);
}

.ranger-filter
{
  top: 0;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: .9em;
  margin-bottom: .5em;
}

.price_cont
{
    position: relative;
    display: block;
    width: 100%;
    height: 15px;
    margin-bottom: .7em;
}

.price_cont span
{
    color: var(--red-site);
    font-size: 12px;
    position: absolute;
    font-family: var(--font-family-quick-serif);
    font-weight: 500;
}

.price_cont span:first-child
{
    float: left;
    left: 0px;
}

.price_cont span:nth-child(2)
{
   left: 50%;
   font-size: 12px;
   transform: translateX(-50%);
   color: var(--dark-site);
   font-family: var(--font-family-quick-serif);
   font-weight: 600;
}

.price_cont span:last-child
{
    float: right;
    right: 0px;
}

/*-- responsive price --*/

@media (min-width: 575px) and (max-width: 925px)
{
  .price_cont span
  {
    font-size: 10px;
  }
  .price_cont span:nth-child(2)
  {
    font-size: 10px;
  }
}

@media (max-width: 575px)
{
  .price_cont span
  {
    font-size: 11px;
  }
  .price_cont span:nth-child(2)
  {
    font-size: 11px;
  }
}

/*-- slide price --*/

.noUi-horizontal
{
    height: 10px !important;
    border: 0px !important;
    padding-left: 3px !important;
    padding-right: 7px !important;
}

.noUi-horizontal .noUi-handle 
{
    width: 13px !important;
    height: 22px !important;
}

.noUi-horizontal .noUi-handle:hover,
.noUi-horizontal .noUi-handle:focus,
.noUi-horizontal .noUi-handle:active
{
  outline: none;
}

.noUi-connect 
{
    background: var(--red-site) !important;
}

.noUi-handle:before, 
.noUi-handle:after 
{
    content: "";
    display: block;
    position: absolute;
    height: 12px !important;
    width: 1px;
    background: var(--gray-dark-site);
    left: 4px !important;
    top: 4px !important;
}

.noUi-handle:after {
    left: 7px !important;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle 
{
    right: -9px !important;
    left: auto;
}

/*--- menu filter ---*/

#menu-filter,
#menu-filter ul,
#menu-filter ul li,
#menu-filter ul li a 
{
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#menu-filter 
{
  width: 100%;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
}

#menu-filter ul ul 
{
  display: none;
}

#menu-filter > ul > li.active > ul 
{
  display: block;
}

#menu-filter > ul > li.active > a
{
  color: #000;
}

.align-right 
{
  float: right;
}

#menu-filter > ul > li > a 
{
  width: 100%;
  height: auto;
  padding: .3em 0px;
  cursor: pointer;
  z-index: 2;
  font-size: 1em;
  text-decoration: none;
  color: var(--dark-site);
  background: var(--gray-light-site);
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  position: relative;
  display: block;
}

#menu-filter > ul > li > a:hover 
{
  color: var(--red-site);
  font-weight: 500;
}


#menu-filter ul > li.has-sub > a:after 
{
  position: absolute;
  right: 9px;
  top: 7px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  background: var(--dark-site);
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

#menu-filter ul > li.has-sub > a:before 
{
  position: absolute;
  right: 5px;
  top: 11px;
  display: block;
  width: 10px;
  height: 2px;
  background: var(--dark-site);
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

#menu-filter ul > li.has-sub.open > a:after,
#menu-filter ul > li.has-sub.open > a:before 
{ 
  background: var(--red-site);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-filter ul > li.has-sub > a:hover:after,
#menu-filter ul > li.has-sub > a:hover:before
{
  background: var(--red-site);
} 

#menu-filter ul ul
{
  padding: .5em 0px;
  background: rgba(255,255,255,.8);
}

#menu-filter ul ul li a 
{
  width: inherit;
  height: auto;
  padding: .3em .5em;
  cursor: pointer;
  z-index: 2;
  font-size: .9em;
  text-decoration: none;
  color: var(--dark-site);
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
  position: relative;
  display: table;

}

#menu-filter  ul li .active,
#menu-filter  ul li ul li .active,
#menu-filter ul > li.has-sub.open > a
{
  color: var(--red-site);
}

#menu-filter ul ul ul li a
{
  padding-left: 32px;
}

#menu-filter ul ul li a:hover 
{
  color: var(--red-site);
  font-weight: 500;
}

#menu-filter ul ul > li.has-sub > a:after 
{
  top: 16px;
  right: 16px;
  background: #dddddd;
}

#menu-filter ul ul > li.has-sub > a:before 
{
  top: 20px;
  background: #dddddd;
}

/*--- filters items ---*/

.filters-items
{
  width: 100%;
  height: auto;
  position: relative;
}

.filters-items button
{
  font-family: var(--font-family-quick-serif);
  color: var(--dark-site);
  font-weight: 500;
  font-size: 1em;
  margin-bottom: .5em;
  display: table;
  background: transparent;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-transition: all  300ms ease-in-out;
  -o-transition: all  300ms ease-in-out;
  transition: all  300ms ease-in-out;
}

.filters-items button.active
{
  display: block;
  width: 100%;
  text-align: left;
  color: var(--red-site);
  position: relative;
}

.filters-items button.active:after 
{
  position: absolute;
  right: 9px;
  top: 6px;
  z-index: 5;
  display: block;
  height: 10px;
  width: 2px;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.filters-items button.active:before 
{
  position: absolute;
  right: 5px;
  top: 10px;
  display: block;
  width: 10px;
  height: 2px;
  content: "";
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.filters-items button.active:after,
.filters-items button.active:before 
{ 
  background: var(--red-site);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.filters-items button span
{
  width: 20px;
  height: 20px;
  position: relative;
  float: left;
  margin-right: .5em;
  border: none;
  background: transparent 50% no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

.filters-items button:hover
{
  color: var(--red-site);
}

/*--- products ---*/

.product-container
{
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--white-site);
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.product-image
{
  width: 100%;
  height: auto;
  position: relative;
  overflow:hidden;
}

.product-image img
{
  width: 100%;
  min-height: 150px;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.product-image .image-explicit
{
  width: 100%;
  height: auto;
  position: relative;
  overflow:hidden;
}

.product-image .image-explicit a
{
  width: 100%;
  position: relative;
  display: block;
  z-index: 1;
}

.product-image .image-explicit img
{
  width: 100%;
  min-height: 150px;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.product-discount
{
  top: 0px;
  width: 50px;
  height: 50px;
  right: 0px;
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center; 
  color: var(--white-site);
  font-family: var(--font-family-quick-serif);
  font-size: .9em; 
}

.product-discount:before
{
  content: '';
  top: -25px;
  left: -40px;
  width: 150px;
  height: 80px;
  background: var(--red-site);
  position: absolute;
  z-index: -1;
  transform: rotate(45deg);
}

.product-promotion
{
    top: 40px;
    width: 200px;
    height: auto;
    right: -50px;
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-site);
    font-family: var(--font-family-quick-serif);
    text-align: center;
    transform: rotate(45deg);
}

.content-promotion
{
  width: 100%;
  position: relative;
  padding: .2em 2em;
  overflow: hidden;
}

.product-promotion .content-promotion h4
{
  display: block;
  font-size: .67em;
  margin-bottom: 0px;
}

.product-buttons
{
  bottom: -5px;
  width: 100%;
  height: auto;
  position: absolute;
  display: flex;
  padding-left: 1em;
  padding-right: 1em;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}


.product-buttons a
{
  width: 40px;
  height: 40px;
  background: var(--gray-light-site);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--dark-site);
  box-shadow: 0px 1px 8px rgba(0,0,0,0.18);
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  cursor: pointer;
}

.product-buttons a:hover
{
  background: var(--red-site);
  color: var(--white-site);
}

.product-details-item
{
  width: 100%;
  height: auto;
  position: relative;
  background: var(--white-site);
  text-align: center;
  padding: 1em .5em;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.product-starts
{
  display: flex;
  margin-bottom: .2em;
  align-items: center;
  justify-content: center;
}

.product-starts span
{
  display: inline-block;
  cursor: pointer;
  padding-right: .2em;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; 
}

.product-starts span:last-child
{
  padding-right: 0px;
}

.product-starts span i
{
  font-size: 1em;
  font-weight: 300;
  color: var(--red-site);
}

.product-starts span.active i
{
  font-weight: 800 !important;
}

.product-details-item h3
{
  max-width: 100%;
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  font-weight: 700;
  color: var(--dark-site);
  margin-bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-details-item h3 a
{
  font-family: var(--font-family-quick-serif);
  color: var(--dark-site);
}

.product-details-item h3 a:hover,
.product-details-item h3 a:active,
.product-details-item h3 a:focus
{
  color: var(--dark-site);
}

.product-details-item p
{
 font-family: var(--font-family-quick-serif);  
  font-size: 1em;
  font-weight: 700;
  color: var(--red-site);
  margin-bottom: 0px;
}

.product-details-item p i
{
  color: var(--dark-site);
  display: inline-block;
  margin-left: .2em;
  margin-right: .3em;
}

.product-details-item p span
{
  color: var(--gray-dark-site);
  text-decoration: line-through;
  position: relative;
}

/*--- animations ---*/

.product-container:hover
{
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
  border: 1px solid var(--gray-light-site);
}

.product-container:hover .product-image img,
.product-container:hover .product-image .image-explicit img
{
  transform: scale(1.04);
}

.product-container:hover .product-buttons
{
  bottom: 10px;
  opacity: 1;
  visibility: visible;
}

.product-container:hover .product-details-item
{
  background: var(--gray-light-site);
}

/*--- responsive products ---*/

@media screen and (max-width: 1580px)
{
  .product-starts span i
  {
    font-size: .9em;
  }

  .product-details-item h3
  {
    font-size: 1em;
  }

  .product-details-item p
  {
    font-size: .9em;
  }
}

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

  .product-starts span i
  {
    font-size: .8em;
  }

  .product-details-item h3
  {
    font-size: .9em;
  }

  .product-details-item p
  {
    font-size: .8em;
  }

}

/*--- list products ---*/

.showProducts
{
  position: relative;
}

.showProducts .item-product
{
  width: 100%;
  height: auto;
}

.showProducts .item-product:after
{
  content: '';
  left: 0px;
  bottom: -16px;
  width: 100%;
  height: 1px;
  background: var(--gray-dark-site);
  position: relative;
  float: left;

}

.showProducts .item-product:last-child:after
{
  display: none;
}


.showProducts .item-product .product-container:hover
{
  box-shadow: 0px 0px 0px rgba(0,0,0,0.1);
  border: 1px solid var(--white-site);
}

.showProducts .item-product .product-image
{
  width:100%;
  max-width: 300px;
  height: auto;
  position: relative;
  overflow:hidden;
  float: left;
  margin-right: 1.5em;
}

.showProducts .item-product .product-image .image-explicit a
{
  width: 100%;
  position: relative;
  display: block;
  z-index: 1;
}

.showProducts .item-product .product-image img,
.showProducts .item-product .product-image .image-explicit img
{
  width: 100%;
  min-height: 150px;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 600ms ease-in-out;
  -o-transition: all 600ms ease-in-out;
  transition: all 600ms ease-in-out;
}

.showProducts .item-product .product-container:hover .product-image img,
.showProducts .item-product .product-container:hover .product-image .image-explicit img
{
  transform: scale(1.05);
}

.showProducts .item-product .product-details-item
{
  display: none;
}

.product-details-list
{
  width: 100%;
  height: auto;
  position: relative;
  display: none;
  padding: 1em;
  padding-bottom: 1.5em;
}

.showProducts .item-product .product-details-list
{
  display: block;
}

.product-details-list h3
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.8em;
  font-weight: 700;
  color: var(--dark-site);
  margin-bottom: 0px;
  overflow: inherit;
  display: inline-block;
}

.product-details-list h3 a
{
  font-family: var(--font-family-quick-serif);
  color: var(--dark-site);
}

.product-details-list h3 a:hover,
.product-details-list h3 a:active,
.product-details-list h3 a:focus
{
  color: var(--dark-site);
}

.product-details-list h4
{
 font-family: var(--font-family-quick-serif);  
  font-size: 1.3em;
  font-weight: 700;
  color: var(--red-site);
  margin-bottom: 0px;
}

.product-details-list h4 i
{
  color: var(--dark-site);
  display: inline-block;
  margin-left: .2em;
  margin-right: .3em;
}

.product-details-list h4 span
{
  color: var(--gray-dark-site);
  text-decoration: line-through;
  position: relative;
}

.product-details-list .product-starts
{
  margin-top: .5em;
}

.product-starts span i
{
  font-size: 1em;
  font-weight: 300;
  color: var(--red-site);
}

.product-details-list p
{
  font-family: var(--font-family-quick-serif);  
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2em;
  color: var(--dark-site);
  margin-bottom: 0px;
  text-align: justify;
}

.showProducts .item-product .product-image .product-buttons
{
  display: none;
}

.showProducts .item-product .product-details-list .product-buttons
{
  bottom: 0px;
  width: auto;
  height: auto;
  position: relative;
  display: flex;
  opacity: 1;
  visibility: visible;
  padding: 0px;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  margin-top: 1em;
}

.showProducts .item-product .product-details-list .product-buttons a
{
  width: 40px;
  height: 40px;
  background: var(--gray-light-site);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--dark-site);
  box-shadow: 0px 1px 8px rgba(0,0,0,0.18);
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  margin-right: 1em;
}

.showProducts .item-product .product-details-list .product-buttons a:last-child
{
  margin-right:  0px;
}

.showProducts .item-product .product-details-list .product-buttons a:hover
{
  background: var(--red-site);
  color: var(--white-site);
}


/*--- responsive grid and list products ---*/

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

  .product-details-list h3
  {
    font-size: 1.5em;
  }

  .product-details-list h4
  {  
    font-size: 1.2em;
  }


  .product-details-list p
  {
    font-size: 1em;
  }

}

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

  .product-details-list h3
  {
    font-size: 1.5em;
  }

  .product-details-list h4
  {  
    font-size: 1em;
  }


  .product-details-list p
  {
    font-size: .9em;
  }

}

@media (min-width: 575px) and (max-width: 980px)
{

  .showProducts .item-product .product-image
  {
    width:100%;
    max-width: 100%;
    height: auto;
    position: relative;
    float: inherit;
    margin-right: 0px;
    text-align: center;
  }

  .showProducts .item-product .product-image img,
  .showProducts .item-product .product-image .image-explicit img
  {
    width: 100%;
    max-width: 300px;
    min-height: 150px;
  }
}

@media (max-width: 575px)
{

  .showProducts .item-product .product-image
  {
    width:100%;
    max-width: 100%;
    height: auto;
    position: relative;
    float: inherit;
    margin-right: 0px;
    text-align: center;
  }

  .showProducts .item-product .product-image img,
  .showProducts .item-product .product-image .image-explicit img
  {
    width: 100%;
    min-height: 150px;
  }
}

/*--- style paginate ---*/

.pagination
{
  position: relative;
  display: table;
  list-style: none;
  font-family: var(--font-family-quick-serif);
  font-weight: 300;
  font-size: 1em;
  text-align: center;
  margin: 0 auto;
  margin-top: 1em;
}

.pagination>li
{
  display: inline-block;
  margin-right: .4em;
  margin-left:  .4em;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
  margin-bottom: .2em;
  border-radius: 2px;
  overflow: hidden;
}

.pagination> .disabled
{
  opacity: 0.7;
  cursor: not-allowed;

}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: var(--white-site);
    cursor: default;
    background-color: var(--red-site);
}

.pagination>li>a:hover,
.pagination>li>a:hover>span,
.pagination>li.active>a,
.pagination>li.active>a>span
{
    background-color: var(--red-site);
    color: var(--white-site);
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: var(--dark-site);
    text-decoration: none;
    background-color: var(--gray-light-site);
}

.pagination>li>a,
.pagination>li.active>span
{
  font-weight: 500;
}

/*--- description products ---*/

.description-products
{
  width: 100%;
  height: auto;
  position: relative;
  display: inline-block;
  padding-top: 15px;
  padding-bottom: 15px;
}

.description-products h4,
.description-products p,
.description-products p strong,
.description-products p a,
.description-products a
{
  font-family: var(--font-family-quick-serif);
  color: var(--dark-site);
}

.description-products h4
{
  color: var(--red-site);
  font-weight: 700;
  font-size: 1.3em;
}

.description-products p,
.description-products > a
{
  color: var(--dark-site);
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.2em;
  text-align: justify;
}

.description-products > a
{
  margin-bottom: 1em;
  display: inline-block;
}

.description-products p strong
{
  font-weight: 800;
}

.description-products p a,
.description-products a
{
   color: var(--red-site);
}

.description-products p a:hover,
.description-products a:hover
{
  text-decoration: underline;
}

.description-products-image
{
  width: 100%;
  height: auto;
  position: relative;
  min-height: 400px;
  max-height: 400px;
  overflow: hidden;
}

.description-products-image img
{
  object-fit: cover;
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
}

.description-products-image:before
{
  content: '';
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.3);
  z-index: 2;
}

@media screen and (max-width: 925px)
{
  .description-products-image
  {
    min-height: 350px;
    max-height: 400px;
  }
}

@media screen and (max-width: 575px)
{
  .description-products-image
  {
    min-height: 200px;
    max-height: 200px;
  }

  .description-products-image img
  {
    width: 100%;
  }
}



/*--- responsive description products ---*/

@media (min-width: 925px) and (max-width: 1580px)
{

  .description-products h4
  {
    color: var(--red-site);
    font-weight: 700;
    font-size: 1.2em;
  }

  .description-products p,
  .description-products > a
  {
    color: var(--dark-site);
    font-weight: 500;
    font-size: 1em;
    line-height: 1.2em;
    text-align: justify;
  }

}

@media (max-width: 925px)
{
  .description-products h4
  {
    color: var(--red-site);
    font-weight: 700;
    font-size: 1em;
  }

  .description-products p,
  .description-products > a
  {
    color: var(--dark-site);
    font-weight: 500;
    font-size: .9em;
    line-height: 1.2em;
    text-align: justify;
  }

}

@media (max-width: 575px)
{

  .description-products
  {
    padding-bottom: 0px;
  }

}

/*----------------------------------------------
             Product extends
----------------------------------------------*/

.slider-product-container
{
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
}

.slide-container,
.image-container
{
  float: left;
  display: inline-block;
}

.slide-container
{
  width: 20%;
  padding-right: 15px;
}

.image-container
{
  width: 80%;
  padding-left: 15px;
}

/*-- responsive image */

@media (min-width: 1580px)
{

  .slide-container
  {
    width: 13%;
    padding-right: 15px;
  }

  .image-container
  {
    width: 87%;
    padding-left: 15px;
  }
}

@media (min-width: 1000px) and (max-width: 1580px)
{

  .slide-container
  {
    width: 15%;
    padding-right: 15px;
  }

  .image-container
  {
    width: 85%;
    padding-left: 15px;
  }
}

@media (min-width: 575px) and (max-width: 925px)
{

  .slide-container
  {
    width: 15%;
    padding-right: 0px;
  }

  .image-container
  {
    width: 85%;
    padding-left: 15px;
  }
}

@media (max-width: 575px)
{

  .slide-container
  {
    width: 15%;
    padding-right: 0px;
  }

  .image-container
  {
    width: 85%;
    padding-left: 15px;
  }
}

/* slide product amp */

.gallery-thumbs 
{
  width:100%;
  height: 100%;
  padding-top: 1em;
  padding-bottom: 0px;
  padding-left: .1em;
  padding-right: .1em;
  position: relative;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide 
{
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto !important;
  position: relative;
  text-align: center;
  margin-bottom: .8em !important;

}

.gallery-thumbs .swiper-slide .slide_img 
{
  width:  100%;
  height: auto;
  position: relative;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}

.gallery-thumbs .swiper-slide .slide_img img
{
  width:  100%;
  height: auto;
  display: block;
  object-fit: cover;
  float: left;
}

/*---- style arrows -----*/


.gallery-thumbs >  .swiper-button-prev-thumbs 
{
    background-image: none;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 13px;
    position:absolute;
    display: inline-block;
    background: var(--red-site);
    z-index: 1;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;

}

.gallery-thumbs > .swiper-button-prev-thumbs:before
{
  content: "\f0d8";
  top: 50%;
  left: 50%;
  font-family: var(--font-family-font-awesome);
  font-weight: 800;
  color: var(--white-site);
  position: absolute;
  transform: translate(-50%, -50%);

}

.gallery-thumbs > .swiper-button-next-thumbs 
{
    background-image: none;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 13px;
    position: absolute;
    display: inline-block;
    background: var(--red-site);
    z-index: 1;
    overflow: hidden;
    border-radius:  0px 0px 5px 5px;
    cursor: pointer;
    
}

.gallery-thumbs >.swiper-button-next-thumbs:before
{
  content: "\f0d7";
  top: 50%;
  left: 50%;
  font-family: var(--font-family-font-awesome);
  font-weight: 800;
  color: var(--white-site);
  position: absolute;
  transform: translate(-50%, -50%);
}

.gallery-thumbs > .swiper-button-disabled
{
    opacity: .8;
    cursor: not-allowed;
    pointer-events: auto;
}

.gallery-thumbs > .swiper-button-prev-thumbs:hover,
.gallery-thumbs > .swiper-button-next-thumbs:hover,
.gallery-thumbs > .swiper-button-prev-thumbs:focus,
.gallery-thumbs > .swiper-button-next-thumbs:focus,
.gallery-thumbs > .swiper-button-prev-thumbs:active,
.gallery-thumbs > .swiper-button-next-thumbs:active
{
  outline: none;
}

@media (max-width: 925px)
{
  .gallery-thumbs 
  {
    padding-top: 1em;
    padding-left: .2em;
    padding-right: .2em;
  }
}

/* image product amp */

.image-product-amp
{
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}

.image_amp
{
  width: 100%;
  height: auto;
  max-height: 500px;
  position: relative;
  overflow: hidden;
  cursor: all-scroll;

}

.image_amp img
{
  width: 100%;
  height: auto;
  object-fit: cover;
  float: left;
} 

/*--- responsive image ---*/

@media (min-width:767px) and (max-width: 1100px)
{

  .slider-product-container
  {
    height: 80%;
  }

  .image-product-amp
  {
    width: 100%;
    height: 100%;
  }

  .image_amp
  {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image_amp img
  {
    width: 100%;
    height: auto;
    object-fit: cover;
    float: left;
  } 

}

.button-image
{
  top: 10px;
  left: 10px;
  position: absolute;
  z-index: 100;
}

.button-image a
{
  width: 40px;
  height: 40px;
  background: var(--gray-light-site);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dark-site);
  box-shadow: 0px 1px 8px rgba(0,0,0,0.1);
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.button-image a:hover
{
  background: var(--red-site);
  color: var(--white-site);
}

/*--- details product ---*/

.product-details
{
  width: 100%;
  height: auto;
  position: relative;
}

.product-details h2
{
  font-family: var(--font-family-quick-serif);
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--red-site);
}

.product-details h3
{
    font-family: var(--font-family-quick-serif);
    font-size: 1.1em;
    font-weight: 700;
    color: var(--dark-site);
}

.product-details h3 i
{
    color: var(--dark-site);
    display: inline-block;
    margin-left: .2em;
    margin-right: .3em;
}

.product-details h3 span
{
    color: var(--gray-dark-site);
    text-decoration: line-through;
    position: relative;
}

.product-details h4
{
    font-family: var(--font-family-quick-serif);
    font-size: 1.1em;
    font-weight: 700;
    color: var(--dark-site);
}

.product-details h4 span
{
    color: var(--red-site);
}

.product-details p
{
    font-family: var(--font-family-quick-serif);
    font-size: 1.2em;
    line-height: 1.2em;
    font-weight: 500;
    color: var(--dark-site);
    text-align: justify;
}

.product-details hr
{
    border-top: 1px solid var(--gray-dark-site); 
}

.product-details hr:last-child
{
  margin-bottom: 0px;
}

/*--- responsive details ---*/

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

  .product-details h2
  {
    font-size: 1.8em;
  }

  .product-details h3
  {
      font-size: .9em;
  }

  .product-details h4
  {
      font-size: .9em;
  }

  .product-details p
  {
      font-size: 1em;
  }

}

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

  .product-details h2
  {
    font-size: 1.5em;
  }

  .product-details h3
  {
      font-size: .8em;
  }

  .product-details h4
  {
      font-size: .8em;
  }

  .product-details p
  {
      font-size: .9em;
  }

}

.product-buttons-details
{
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.product-buttons-details .container-quantity
{
  left: 0px;
  position: relative;
  float: left;
}

.product-buttons-details .container-quantity span
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  font-size: .9em;
  display: inline-block;
}

.input-quantity
{
  position: relative;
  display: inline-block;
  margin-left: 1em;
}

.input-quantity input
{
  width: 35px;
  height: 35px;
  border-radius: 0px;
  border: 1px solid var(--black-dark-site);
  text-align: center;
  font-family: var(--font-family-quick-serif);
  outline: none;
}

.input-quantity button
{
  width: 30px;
  height: 35px;
  background: var(--black-dark-site);
  color: var(--white-site);
  border: none;
  outline: none;
  cursor: pointer;
  float: left;
}

.input-quantity button:hover
{
  background: var(--dark-site);
}

.input-quantity button:last-child
{
 float: right;
}


.product-buttons-details .social-media
{
  right: 0px;
  position: relative;
  float:right;
}

.product-buttons-details .container-quantity,
.product-buttons-details .social-media
{
  vertical-align: middle;
}


.product-buttons-details .social-media li a 
{
    width: 35px;
    height: 35px;
}

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

  .input-quantity input
  {
    width: 28px;
    height: 28px;
  }

  .input-quantity button
  {
    width: 28px;
    height: 28px;
  }

  .product-buttons-details .container-quantity span
  {
    font-size: .7em;
  }

  .input-quantity
  {
    margin-left: .5em;
  }

  .product-buttons-details .social-media li.title 
  {
      font-size: .7em;
      margin-right: .5em;
  }

  .product-buttons-details .social-media li a 
  {
      width: 28px;
      height: 28px;
  }

}

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

  .input-quantity input
  {
    width: 25px;
    height: 25px;
  }

  .input-quantity button
  {
    width: 25px;
    height: 25px;
  }

  .product-buttons-details .container-quantity span
  {
    font-size: .68em;
  }

  .input-quantity
  {
    margin-left: .1em;
  }

  .product-buttons-details .social-media li.title 
  {
      font-size: .68em;
      margin-right: .1em;
  }

  .product-buttons-details .social-media li
  {
    margin: 0px 0.010em;
  }

  .product-buttons-details .social-media li a 
  {
      width: 27px;
      height: 27px;
      font-size: .9em;
  }

}

/*--- form product amp ---*/

.form-group-custom
{
  position: relative;
  padding: 0px;
}

.input-group-custom,
.textarea-group-custom
{
  width: 100%;
  height: auto;
  position: relative;
}

.textarea-group-custom
{
  margin-bottom: -.5em;
}

.input-group-custom label
{
  font-family: var(--font-family-quick-serif);
  position: relative;
  display: block;
  font-size: 1.1em;
  margin-bottom: .2em;
}

.input-group-custom label strong
{
  z-index: 2;
  position: relative;
  margin-left: 1.2em;
}

.input-group-custom label span
{
  color: var(--red-site);
  font-weight: 800;
}

.info-input
{
  width: 100%;
  position: absolute;
  display: inline-block;
}

.info-input i
{
  color: var(--red-site);
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 1;
  font-size: 1em;
}

.info-input i:hover ~ .info-text-input
{
  opacity: 1;
  visibility: visible;
}

.info-input .info-text-input
{
  top: 30px;
  left: -5px;
  width: calc(100% + 10px);
  height: auto;
  padding: 1em;
  position: absolute;
  background: var(--gray-light-site);
  z-index: 1000;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.info-input .info-text-input:before
{
    content: '';
    width: 0px;
    height: 0px;
    border-bottom: 13px solid var(--gray-light-site);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    top: -10px;
    left: 3px;
    float: left;
    z-index: 10;
}

.info-input .info-text-input p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: .9em;
  margin-bottom: 0px;
  text-align: justify;
}

.input-group-custom .button-select
{
  top: -27px;
  right: 10px;
  float: right;
  position: relative;
  cursor: pointer !important;
  pointer-events: none;
  margin-bottom: -2em;
  background: var(--white-site);
}

.input-group-custom .button-password
{
  color: var(--gray-dark-site);
  right: 30px;
  cursor: pointer !important;
  pointer-events: auto !important;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.input-group-custom .button-password:before
{
  content: "\f06e";
  font-family: var(--font-family-font-awesome);
  font-weight: 900;
}

.input-group-custom .password-active:before
{
  content: "\f070" !important;
  font-family: var(--font-family-font-awesome);
  font-weight: 900;
}

.input-group-custom .input-control-content:hover ~ .button-password,
.input-group-custom .button-password:hover
{
  opacity: 1;
}

.input-group-custom .button-password:hover
{
  color: var(--dark-site);
}

.input-group-custom .button-input
{
  outline: none;
  pointer-events: auto !important;
  border: none;
}

.textarea-group-custom .button-select
{
  top: 12px;
  right: 10px;
  float: right;
  position: absolute;
  cursor: pointer !important;
  pointer-events: none;
  background: var(--white-site);
  margin-bottom: 0px;
}

.input-group-custom .button-select.active:before
{
  content: "\f00d";
}

.input-control-content
{
  width: 100%;
  height: 40px;
  border: 1px solid var(--black-dark-site);
  padding: .5em;
  font-family: var(--font-family-quick-serif);
  font-size: 1em;
  font-weight: 500;
  color: var(--black-dark-site);
  background: var(--white-site);
  outline: none;
  -moz-appearance:textfield;
}

.input-control-content::-webkit-inner-spin-button,
.input-control-content::-webkit-outer-spin-button
{
  -webkit-appearance: none; 
  margin: 0; 
}

.input-custom
{
  cursor: pointer;
  padding-right: 2em;
}

.textarea-custom
{
  padding-top: .75em;
  width: 100%;
  height: 40px;
  min-height: 40px;
  resize: vertical;
  margin-bottom: -.5em;
}

.select-control-custom
{ 
  width: 100%;
  height: 40px;
  border: 1px solid var(--black-dark-site);
  background: var(--white-site);
  outline: none;
  position: relative;
  display: flex;
}

.select-control-custom select
{ 
  font-family: var(--font-family-quick-serif);
  font-size: 1em;
  font-weight: 500;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  padding: .5em;
  color: var(--dark-site);
  background: var(--white-site);
  cursor: pointer;
  border: none;
  flex: 1;
}

/* Remove IE arrow */

.select-control-custom select::-ms-expand 
{
  display: none;
}

.select-control-custom:after 
{
    content: "\f0d7";
    font-family: var(--font-family-font-awesome);
    font-weight: 800;
    font-size: 1em;
    top: 0px;
    right: 0px;
    width: 25px;
    height: 38px;
    pointer-events: none;
    background: var(--white-site);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.input-control-content-textarea
{
  width: 100%;
  height: auto;
  min-height: 100px;
  border: 1px solid var(--black-dark-site);
  padding: .5em;
  font-family: var(--font-family-quick-serif);
  font-size: 1em;
  color: var(--black-dark-site);
  position: relative;
  overflow: auto;
  resize: vertical;
  background: var(--white-site);
  outline: none;
  margin: 0px;
}

.input-control-content::-webkit-input-placeholder,
.input-control-content-textarea::-webkit-input-placeholder
{
  color: var(--black-dark-site);
  font-weight: 500;
}

.input-control-content::-moz-placeholder,
.input-control-content-textarea::-moz-placeholder
{
  color: var(--black-dark-site);
  font-weight: 500;
  opacity: 1;
}

.input-control-content:-moz-placeholder,
.input-control-content-textarea:-moz-placeholder
{
  color: var(--black-dark-site);
  font-weight: 500; 
  opacity: 1;
}

.input-control-content:-ms-input-placeholder,
.input-control-content-textarea:-ms-input-placeholder
{
  color: var(--black-dark-site);
  font-weight: 500; 
}


/*--- select ---*/

.input-group-custom .content_options 
{
    width: 100%;
    height: auto;
    position: absolute;
    left: 0px;
    z-index: 100;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
    background: var(--gray-light-site);
}

.input-group-custom .content_options .no-results-custom
{
    width: 100%;
    height: auto;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 1em;
}

.input-group-custom .content_options .no-results-custom p
{
    font-family: var(--font-family-quick-serif);
    font-weight: 500;
    font-size: .9em;
    color: var(--dark-site);
    margin-bottom: 0px;
}

.input-group-custom .content_options .options-custom 
{
    list-style: none;
    width: 100%;
    height: auto;
    position: relative;
    margin: 0;
    padding: 1em;
    font-family: var(--font-family-quick-serif);
    font-size: .9em;
    background: var(--gray-light-site);
    border-top: 0px;
    min-height: 100px;
    max-height: 250px;
    overflow: hidden;
    overflow-y: scroll;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*--- style scroll ---*/

.input-group-custom .content_options .options-custom::-webkit-scrollbar 
{
  width: 0px;
  height: 0px;
}

.input-group-custom .content_options .options-custom::-webkit-scrollbar-track
{
  background-color: var(--white-site);
} 

.input-group-custom .content_options .options-custom::-webkit-scrollbar-thumb
{
  background-color: rgba(0,0,0,0.2);
  border-radius: 10px 10px 10px 10px;
}

.input-group-custom .content_options .options-custom::-webkit-scrollbar-thumb:hover
{
  background-color: rgba(0, 0, 0, 0.5);      
}

.input-group-custom .content_options .options-custom::-webkit-scrollbar-button 
{
  width: 0px;
  height: 0px;
}

.input-group-custom .content_options .options-custom::-webkit-scrollbar-corner
{
  background-color: transparent;
}

.input-group-custom .content_options .options-custom li 
{
    width: 50%;
    height: auto;
    padding:.5em;
    position: relative;
    float: left;
    display: inline-block;
}

/*--- responsive option custom li ---*/

@media (min-width: 1450px)
{
  .input-group-custom .content_options .options-custom li 
  {
      width: 33.33%;
  }
}

.option-item
{
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}

.option-item h2
{
  width: 100%;
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  font-size: 1.2em;
  color: var(--dark-site);
  margin-top: .5em;
  margin-bottom: 0px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.option-item span
{
  width: 100%;
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  font-size: 1em;
  color: var(--red-site);
  margin-bottom: 0px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.option-image
{
  width: 100%;
  height: auto;
  position: relative;
  background: transparent 50% repeat;
  background-color: var(--gray-light-site);
  overflow: hidden;
}

.option-image img
{
  width: 100%;
  height: auto;
  object-fit: cover;
  float: left;
}

.option-image-buttons
{
  bottom: 0px;
  width: 100%;
  height: auto;
  position: absolute;
  padding: 2em .5em .5em .5em;
  display: flex;
  justify-content: center;
}

.option-image-buttons span
{
  width:30px;
  height: 30px;
  background: transparent;
  border: none;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gray-light-site);
  color: var(--dark-site);
  margin: .3em;
  cursor: pointer;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.button-none
{
  display: none !important;
}

.option-image-buttons span:hover
{
  color: var(--white-site);
  background: var(--red-site);
}

.input-group-custom .content_options .options-custom .active-select .option-image-buttons > span,
.input-group-custom .content_options .options-custom .active-select-multiple .option-image-buttons > span
{
  color: var(--white-site);
  background: var(--red-site);
}

.input-group-custom .content_options .options-custom .active-select-multiple .option-image-buttons > span i:before
{
  content: "\f00d";
}


/*--- responsive form product amp ---*/

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

  .input-group-custom label strong
  {
    font-size: .9em;
  }

  .info-input .info-text-input p
  {
    font-size: .9em;
  }

  .info-input i
  {
    font-size: .9em;
  }

  .input-control-content
  {
    font-size: .9em;
  }

  .select-control-custom select
  { 
    font-size: .9em;  
  }

  .select-control-custom:after 
  {
    font-size: 1em;
  }

  .input-control-content-textarea
  {
    font-size: 1em;
  }

  .option-item h2
  {
    font-size: 1.1em;
  }

  .option-item span
  {
    font-size: 1em;
  }

}

@media screen and (max-width: 1200px)
{
  .input-group-custom .content_options .no-results-custom p
  {
    font-size: .8em;
  }

  .input-group-custom label strong
  {
    font-size: .8em;
  }

  .info-input .info-text-input p
  {
    font-size: .8em;
  }

  .info-input i
  {
    font-size: .8em;
  }

  .input-control-content
  {
    font-size: .8em;
  }

  .select-control-custom select
  { 
    font-size: .8em;  
  }

  .select-control-custom:after 
  {
    font-size: 1em;
  }

  .input-control-content-textarea
  {
    font-size: .8em;
  }

  .option-item h2
  {
    font-size: .9em;
  }

  .option-item span
  {
    font-size: .8em;
  }

}

/*--- description and details ---*/

.border-section
{
  position: relative;
  padding-top: 3em;
  padding-bottom: 3em;
}

.border-section:before
{
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--black-dark-site);
  position: absolute;
}

.border-section:after
{
  content: '';
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--black-dark-site);
  position: absolute;
}

.description-tags
{
  width: 100%;
  height: auto;
  position: relative;
}

.tags-buttons
{
  width: 100%;
  height: auto;
  position: relative;
  display: table;
}

.tags-buttons span
{
  padding: .5em 1em;
  background: var(--gray-light-site);
  color: var(--dark-site);
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  font-size: 1.2em;
  display: inline-block;
  cursor: pointer;
  float: left;
  position: relative;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.tags-buttons span.active
{
  color: var(--white-site);
  background: var(--red-site) !important;
}

.tags-buttons span:hover
{
  text-decoration: underline;
}

.tags-container
{
  width: 100%;
  height: auto;
  position: relative;
  border: 1px solid var(--gray-light-site);
  padding: 1em;
}

.tags-content
{
  width: 100%;
  height: auto;
  position: relative;
  display: none;
}

.tags-content.active
{
  display: block;
}

.tags-content h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  line-height: 1.2em;
  font-size: 1.3em;
  color: var(--red-site);
}

.tags-content p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  line-height: 1.2em;
  font-size: 1.2em;
  color: var(--dark-site);
  text-align: justify;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.tags-content p:last-child
{
  margin-bottom: 0px;
}

.tags-content p > a
{
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  color: var(--red-site);
}

.tags-content > a
{
  font-family: var(--font-family-quick-serif);
  font-weight: 600;
  font-size: 1.2em;
  color: var(--red-site);
}

.tags-content a:hover
{
  text-decoration: underline;
}

.tags-content ul
{
  list-style: none;
  display: block;
}

.tags-content ul li
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em; 
  padding-left: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: .5em;
  text-align: justify;
  color: var(--dark-site);
}

.tags-content ul li:before
{
  content: "\f192";
  font-family: var(--font-family-font-awesome);
  font-weight: 500;
  font-size: .8em;
  left: 0px;
  position: absolute;
}

/*-- responsive tags --*/

@media screen and (max-width: 1580px)
{
  .tags-buttons span
  {
    padding: .5em 1em;
    font-size: 1em;
  }

  .tags-content h2
  {
    font-size: 1.2em;
  }

  .tags-content p
  {
    font-size: 1em;
  }

  .tags-content > a
  {
    font-size: 1em;
  }

  .tags-content ul li
  {
    font-size: 1em; 
  }

}

@media screen and (max-width: 925px)
{
  .tags-buttons span
  {
    padding: .5em 1em;
    font-size: .9em;
  }

  .tags-content h2
  {
    font-size: 1em;
  }

  .tags-content p
  {
    font-size: .9em;
  }

  .tags-content > a
  {
    font-size: .9em;
  }

  .tags-content ul li
  {
    font-size: .9em; 
  }

}

@media screen and (max-width: 767px)
{
  .border-section
  {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}

/*----------------------------------------------
               cart summary
----------------------------------------------*/

.summary-container
{
  width: 100%;
  height: auto;
  position: relative;
}

.table-responsive 
{
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table
{
    width: 100%;
    min-width: 900px;
    margin-bottom: 0px;
    color: var(--dark-site);
}

table 
{
    border-collapse: collapse;
    display: table;
    font-family: var(--font-family-quick-serif);
}

tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}


thead
{
  background: var(--gray-light-site);
}

.table td,
.table th 
{
    padding: .75rem;
    vertical-align: top;
    border: 1px solid var(--gray-light-site);
}

.table td
{
  font-weight: 500;
  vertical-align: middle;
}

.table td p
{
 
  margin-bottom: 0px;
}

.table td p strike
{
  color: var(--gray-dark-site);
}

.table td p em
{
  font-size: .8em;
  color: var(--gray-dark-site);
}

.table td p a,
.table td p a:hover
{
  color: var(--dark-site);
  text-decoration: none;
}

.table td,
.table th
{
  font-size: 1.2em;
  line-height: 1.2em;
}

.table td a
{
  color: var(--dark-site);
  cursor: pointer;
  text-decoration: underline;
  margin-right: .3em;
}

.table td a:last-child
{
  margin-right: 0px;
}

.table td a:hover
{
  color: var(--red-site);
}

.table td .input-quantity
{
  margin-left: 0px;
}

/*--- responsive table ---*/

@media screen and (max-width: 1580px)
{
  .table td,
  .table th
  {
    font-size: 1em;
  }
}

@media screen and (max-width: 925px)
{
  .table td,
  .table th
  {
    font-size: .9em;
  }
}

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

.footer-summary
{
  width: 100%;
  height: auto;
  background: var(--gray-light-site);
  padding: 1em 2em;
}

.coupon-container .input-control-content
{
  height: 37px;
  padding-right: 2em;
}

.subtotal-container
{
  position: relative;
}

.subtotal-items
{
  right: 0px;
  float: right;
}

.subtotal-items span
{
  right: 0px;
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  display: block;
  line-height: 1.2em;
  position: relative;
}

.subtotal-items > span
{
  font-weight: 500;
}

.subtotal-items span strong
{
  margin-right: .5em;
}

.subtotal-items .row-site-custom div span:last-child
{
  color: var(--red-site);
  font-weight: 600;
}

/*--- responsive footer summary ---*/

@media screen and (max-width: 1580px)
{
  .subtotal-items span
  {
    font-size: 1em;
  }
}

@media screen and (max-width: 1200px)
{
  .coupon-container .input-control-content
  {
    height: 34px;
    padding-right: 2em;
  }
}

@media screen and (max-width: 925px)
{
  .subtotal-items span
  {
    font-size: .9em;
  }
}

@media (max-width: 575px)
{
  .subtotal-items
  {
    right: inherit;
    left: 0px;
    float: left;
  }
}


/*--- buttons summary ---*/

.buttons-summary
{
  width: 100%;
  height: auto;
  position: relative;
  padding-top: 3em;
  text-align: center;
}

.btn-site
{
  padding: .5em 1.5em;
  margin-left: .5em;
  margin-right: .5em;
  margin-bottom: 1em;
  background: var(--black-dark-site);
  border: none;
  color: var(--white-site);
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2em;
  display: inline-block;
  outline: none;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn-site i
{
  font-size: .8em;
}

.btn-black
{
  background: var(--black-dark-site);
  color: var(--white-site);
}

.btn-black:hover
{
  background: var(--dark-site);
}

.btn-gray
{
  background: var(--gray-light-site);
  color: var(--dark-site);
}

.btn-gray:hover
{
  background: var(--black-dark-site);
  color: var(--white-site);
}

.btn-red
{
  background: var(--red-site);
  color: var(--white-site);
}

.btn-red:hover
{
  background: var(--red-light-site);
}

.btn-no-margin
{
  margin: 0px;
}

.icon-left i
{
  margin-right: .5em;
}

.icon-right i
{
  margin-left: .5em;
}

/*--- responsive buttons summary ---*/

@media screen and (max-width: 1580px)
{
  .btn-site
  {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 1200px)
{
  .btn-site
  {
    font-size: 1em;
  }
}


@media screen and (max-width: 925px)
{
  .btn-site
  {
    font-size: .9em;
  }
}

/*----------------------------------------------
                  Login
----------------------------------------------*/

.login-countainer
{
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 3em;
  overflow: hidden;
}

.form-left
{
  padding-right: 3em;
  position: relative;
}

.form-right
{
  padding-left: 3em;
  position: relative;
}

.border-form
{
  position: relative;
}

.border-form:after
{
  content: '';
  top: 0px;
  right: 0px;
  width: 1px;
  height: 100%;
  background: var(--gray-light-site);
  position: absolute;
}

.form-site
{
  width: 100%;
  height: auto;
  position: relative;
}

.forgot-form
{
  position: relative;
}


.forgot-form span
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  color: var(--dark-site);
  cursor: pointer;
}

.forgot-form span:hover
{
  text-decoration: underline;
}

/*--- responsive login ---*/

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

  .forgot-form span
  {
    font-size: 1em;
  }

  .login-countainer .section-text
  {
    width: 300px;
  }

}

@media screen and (max-width: 925px)
{
  .login-countainer .section-text
  {
    width: 250px;
  }

  .forgot-form span
  {
    font-size: .9em;
  }

  .login-countainer
  {
    padding-bottom: 1em;
  }

  .form-left
  {
    padding-right: 2em;
  }

  .form-right
  {
    padding-left: 2em;
  }
}

@media screen and (max-width: 780px)
{
  .login-countainer .section-text
  {
    width: 220px;
  }
}

@media screen and (max-width: 695px)
{
  .login-countainer .section-text
  {
    width: 190px;
  }

  .form-left
  {
    padding-right: 1.3em;
  }

  .form-right
  {
    padding-left: 1.3em;
  }
}


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

  .login-countainer
  {
    padding-bottom: 0px;
  }

  .form-left
  {
    padding-right: 15px;
  }

  .form-right
  {
    padding-left: 15px;
  }

  .border-form:after
  {
    content: '';
    top: inherit;
    bottom: 5px;
    right: inherit;
    left: 0px;
    width: 100%;
    height: 1px;
  }
}

/*----------------------------------------------
                  Checkout
----------------------------------------------*/

.checkout-container
{
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 1em;
}

.checkout-section
{
  width: 100%;
  height: auto;
  position: relative;
}

.checkout-items-address
{
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 2em;
}

.item-address
{
  width: 100%;
  height: auto;
  position: relative;
  border: 2px solid var(--gray-light-site);
  background: var(--white-site);
  border-radius: 10px;
  padding: 1.5em;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.item-address:hover
{
  background: var(--gray-light-site);
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

.item-address i
{
  top: 50%;
  color: var(--gray-light-site);
  font-size: 4em;
  position: absolute;
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.item-address:hover i
{
  color: var(--white-site);
}

.item-address h2
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.8em;
  font-weight: 600;
  color: var(--red-site);
  text-align: center;
  position: relative;
  line-height: 1em;
  z-index: 2;
}

.item-address p
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  color: var(--dark-site);
  text-align: center;
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}

/*--- text checkout no marting bottom ---*/

.text_notify_checkout p:last-child
{
  margin-bottom: 0px;
}

/*--- input item address ---*/

.label-item-address
{
  width: 100%;
  height: auto;
  position: relative;
  cursor: pointer;
}

.label-item-address input
{
  display: none;
}

.label-item-address input:checked ~ .item-address 
{
  background-color: var(--gray-light-site);
  box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

.label-item-address input:checked ~ .item-address i
{
  color: var(--white-site);
}

/*--- comments and  observations ---*/

.checkout-container-forms
{
  width: 100%;
  height: auto;
  position: relative;
}

.checkout-container-comments
{
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 2em;
  background: var(--white-site);
}

.checkout-container-comments .input-control-content-textarea
{
  border: 2px solid var(--gray-light-site);
  background: transparent;
  padding: 1em;
  height: 100px;
  z-index: 1;
}

.checkout-container-comments .button-select
{
  color: var(--gray-light-site);
  top: .6em;
  right: .6em;
  font-size: 1.5em;
  z-index: 0;
}

/*--- payment methods ---*/

.checkout-payment
{
  width: 100%;
  height: auto;
  position: relative;
  border: 2px solid var(--gray-light-site);
  padding: 1.5em;
}

.checkout-payment:after
{
  content: '\f53a';
  top: 20px;
  right: 30px;
  font-family: var(--font-family-font-awesome);
  font-weight: 600;
  font-size: 4em;
  color: var(--gray-light-site);
  position: absolute;
  z-index: 1;
}

.icon-checkout-notify:after
{
  content: '\f46c';
}

.checkout-payment .section-text
{
  z-index: 2;
}

.checkout-methods
{
  width: 100%;
  height: auto;
  position: relative;
  padding: 15px;
  padding-top: 0px; 
}

.method-content
{
  font-family: var(--font-family-quick-serif);
  color: var(--dark-site);
  float: left;
  margin-right: 1em;
  cursor: pointer;
}

.method-content input
{
  display: none;
}

.method-title
{
  width: 100%;
  height: auto;
  font-size: 1.2em;
  font-weight: 600;
}

.method-title i
{
  margin-left: .2em;
}

.method-title:before
{
  content: '\f111';
  font-family: var(--font-family-font-awesome);
  font-weight: 500;
  position: relative;
  margin-right: .5em;
  color: var(--dark-site);
}

.method-content input:checked ~ .method-title:before
{
  content: '\f058';
  color: var(--red-site);
  font-weight: 800;
}

/*--- responsive items address and paymethods ---*/

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

  .item-address h2
  {
    font-size: 1.5em;
  }

  .item-address p
  {
    font-size: 1em;
  }

  .method-title
  {
    font-size: 1em;
  }

}

@media (max-width: 925px)
{

  .item-address h2
  {
    font-size: 1.3em;
  }

  .item-address p
  {
    font-size: .9em;
  }

  .method-title
  {
    font-size: .9em;
  }

}

/*--- checkout-buttons ---*/

.checkout-buttons
{
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 2em;
}

.checkout-buttons-margin
{
  margin-bottom: -.8em;
}

/*--- checkout cart ---*/

.cart-checkout-container
{
  width: 100%;
  height: auto;
  position: relative;
}

.cart-checkout-header
{
  width: 100%;
  height: auto;
  position: relative;
  border-top: 2px solid var(--gray-light-site);
  border-right: 2px solid var(--gray-light-site);
  border-left: 2px solid var(--gray-light-site);
  padding: 1.5em;
  padding-bottom: 0px;
  overflow:hidden;
}

.cart-checkout-header h3
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--dark-site);
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 0px;
  line-height: 1em;
}

.cart-checkout-header h2
{ 
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--red-site);
  font-size: 2em;
  letter-spacing: 2px;
  line-height: 1em;
  margin-bottom: .5em;
}

/*--- responsive cart checkout header ---*/

@media screen and (max-width: 1580px)
{
  .cart-checkout-header h3
  {
    font-size: 1em;
  }

  .cart-checkout-header h2
  { 
    font-size: 1.8em;
  }
}

@media screen and (max-width: 925px)
{
  .cart-checkout-header h3
  {
    font-size: .9em;
  }

  .cart-checkout-header h2
  { 
    font-size: 1.5em;
  }
}

.cart-checkout-body
{
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 450px;
  border-right: 2px solid var(--gray-light-site);
  border-left: 2px solid var(--gray-light-site);
  padding: 1.5em !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  overflow: hidden;
  overflow-y: scroll;
}

.cart-checkout-body > .cart-checkout-body
{
  border: none;
  padding: 1.5em !important;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/*--- style scroll ---*/

.cart-checkout-body::-webkit-scrollbar 
{
  width: 0px;
  height: 0px;
}

.cart-checkout-body::-webkit-scrollbar-track
{
  background-color: var(--white-site);
} 

.cart-checkout-body::-webkit-scrollbar-thumb
{
  background-color: rgba(0,0,0,0.2);
  border-radius: 10px 10px 10px 10px;
}

.cart-checkout-body::-webkit-scrollbar-thumb:hover
{
  background-color: rgba(0, 0, 0, 0.5);      
}

.cart-checkout-body::-webkit-scrollbar-button 
{
  width: 0px;
  height: 0px;
}

.cart-checkout-body::-webkit-scrollbar-corner
{
  background-color: transparent;
}

.cart-checkout-body .items-cart
{
  justify-content: center;
}

.cart-checkout-body .items-cart img
{
  width: 100px;
  height: 100px;
}

/*-- responsive images items cart --*/

@media screen and (max-width: 1580px)
{
  .cart-checkout-body .items-cart img
  {
    width: 80px;
    height: 80px;
  }
}

.text-normal p
{
  text-transform: inherit;
}

.background-dark
{
  background: var(--black-dark-site);
}

.background-dark p
{
  color: var(--white-site);
  background: var(--black-dark-site);
}

/*----------------------------------------------
                  contact
----------------------------------------------*/

.contact-container
{
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 1em;
}

.headquarters-container
{
  width: 100%;
  height: auto;
  min-height: 100%;
  position: relative;
  background: transparent 50% no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 7em 4em;
}

.headquarters-container:before
{
  content:'';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0,0,0,0.3);
}

.headquarter-title
{
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 3em;
}

.headquarter-title h3
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white-site);
  margin-bottom: 0px;
  line-height: 1em;
}

.headquarter-title h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--white-site);
  font-size: 2em;
  letter-spacing: 2px;
  line-height: 1em;
  margin-bottom: .5em;
}

.headquarter-title p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--white-site);
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 0px;
  text-align: justify;
}

.headquarter-items
{
  width: 100%;
  height: auto;
  position: relative;
}

.headquarter-item
{
  width: 100%;
  height: auto;
  position: relative;
  padding-left: 4em;
  margin-bottom: 2em;
}

.headquarter-item i
{
  top: 50%;
  left: 0px;
  width: 45px;
  height: 45px;
  font-size: 1.2em;
  color: var(--white-site);
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.headquarter-item a,
.headquarter-item p
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  font-weight: 500;
  color: var(--white-site);
  display: table;
  line-height: 1.2em;
}

.headquarter-item a:hover
{
  text-decoration: underline;
}

/*--- responsive headquarters ---*/

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

  .headquarter-title h3
  {
    font-size: 1em;
  }

  .headquarter-title h2
  {
    font-size: 1.8em;
  }

  .headquarter-title p
  {
    font-size: 1em;
  }

  .headquarter-item
  {
    padding-left: 3.5em;
  }

  .headquarter-item i
  {
    width: 40px;
    height: 40px;
    font-size: 1em;
  }

  .headquarter-item a,
  .headquarter-item p
  {
    font-size: 1em;
  }

}

@media (min-width: 925px) and (max-width: 1580px)
{
  .headquarters-container
  {
    padding: 4em 2em;
  }
}

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

  .headquarters-container
  {
    padding: 4em 1em;
  }

  .headquarter-title h3
  {
    font-size: .9em;
  }

  .headquarter-title h2
  {
    font-size: 1.5em;
  }

  .headquarter-title p
  {
    font-size: .9em;
  }

  .headquarter-item
  {
    padding-left: 3em;
  }

  .headquarter-item i
  {
    width: 35px;
    height: 35px;
    font-size: .8em;
  }

  .headquarter-item a,
  .headquarter-item p
  {
    font-size: .9em;
  }

}

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

  .headquarters-container
  {
    padding: 4em 1em;
  }

  .headquarter-item
  {
    padding-left: 2.5em;
  }

  .headquarter-item i
  {
    width: 30px;
    height: 30px;
    font-size: .7em;
  }

  .headquarter-item a,
  .headquarter-item p
  {
    font-size: .8em;
  }

}

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

  .headquarters-container
  {
    padding: 4em 2em;
  }

  .headquarter-item
  {
    padding-left: 3em;
  }

  .headquarter-item i
  {
    width: 35px;
    height: 35px;
    font-size: .8em;
  }

  .headquarter-item a,
  .headquarter-item p
  {
    font-size: .9em;
  }

}

/*----------------------------------------------
                information
----------------------------------------------*/

.information-container
{
  width: 100%;
  height: auto;
  position: relative;
  padding-bottom: 1em;
}

.information-items
{
  width: 100%;
  height: auto;
  position: relative;
}

.information-item
{
  width: 100%;
  height: auto;
  position: relative;
}

.information-item h2
{
  font-family: var(--font-family-quick-serif);
  font-size: 2em;
  font-weight: 700;
  color:  var(--red-site);
  line-height: 1em;
  margin-bottom: .5em;
}

.information-item h3
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.5em;
  font-weight: 700;
  color:  var(--dark-site);
  line-height: 1em;
  margin-bottom: .5em;
}

.information-item h4
{
  font-family: var(--font-family-quick-serif);
  font-size: 1em;
  font-weight: 700;
  color:  var(--dark-site);
  line-height: 1em;
  margin-bottom: .5em;
}

.information-item > p
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  color:  var(--dark-site);
  text-align: justify;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.information-item > p a
{
  color: var(--red-site);
}

.information-item > a
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  color:  var(--red-site);
  display: inline-block;
  margin-bottom: 1em;
}

.information-item > p a:hover,
.information-item > a:hover
{
  text-decoration: underline;
}

.information-item p > span
{
  font-family: var(--font-family-quick-serif);
  font-size: .9em;
  line-height: 1em;
  font-weight: 500;
  color:  var(--dark-site);
  margin-top: -.3em;
  margin-bottom: 2em;
  display: block;
  position: relative;
}

.information-item ul
{
  list-style: none;
  margin-bottom: 1em;
}

.information-item ul:last-child
{
  margin-bottom: 0px;
}

.information-item ul li
{
  font-family: var(--font-family-quick-serif);
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  color:  var(--dark-site);
  text-align: justify;
  padding-left: 1em;
  white-space: pre-wrap;
  word-wrap: break-word;
  position: relative;
}

.information-item ul li:before
{
  top: 0px;
  left: 0px;
  content: '\f111';
  font-family: var(--font-family-font-awesome);
  font-weight: 500;
  font-size: .6em;
  position: absolute;
}

.information-item iframe
{
  width: 100%;
  height: auto;
  min-height: 500px;
  margin-bottom: 2em;
  position: relative;
}

.information-item img
{
  max-width: 100%;
  margin: 0 auto;
  margin-top: 2em;
  margin-bottom: 2em;
  display: block;
  position: relative;
}

.information-item img:last-child
{
  margin-bottom: 0px;
}

.img-sm
{
  width: 280px;
}

.img-md
{
  width: 380px;
}

.img-lg
{
  width: 580px;
}

.img-xl
{
  width: 100%;
}

/*--- accordeon info ---*/

.info-accordeon
{
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 2em;
}

.info-accordeon ul
{
  list-style: none;
  position: relative;
  margin-bottom: 1em;
}

.info-accordeon ul:last-child
{
  margin-bottom: 0px;
}

.info-accordeon ul ul 
{
  display: none;
}

.info-accordeon ul li 
{
  padding-left: 0px;
  white-space: normal;
  word-wrap: normal;
}

.info-accordeon > ul > li 
{
  border-bottom: 1px solid var(--gray-light-site);
  display: block;
  margin-bottom: 1em;
}

.info-accordeon > ul > li:last-child
{
  border-bottom: none;
}

.info-accordeon > ul > li > a > h2
{
  font-size: 1.5em;
}

.info-accordeon > ul > li > a > h2:hover
{
  text-decoration: underline;
}

.info-accordeon ul li:before
{
  display: none;
}

.info-accordeon > ul > li.active > ul 
{
  display: block;
}

.info-accordeon > ul > li.active > a
{
  border-bottom: none;
}

.info-accordeon > ul > li > a 
{
  cursor: pointer;
  z-index: 2;
  text-decoration: none;
  color: var(--dark-site);
  background-color: var(--white-site);
  display: table;
}

.accordeon-description
{
  padding: 1.5em 1.5em;
  background: var(--gray-light-site);
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  margin-top: .5em;
  margin-bottom: 1em;
}

.accordeon-description:before
{
  content: '';
  top: -12px;
  width: 0px;
  height: 0px;
  border-bottom: 13px solid var(--gray-light-site);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  left: 12px;
  float: left;
  z-index: 10;
}

.accordeon-description p 
{
  white-space: pre-wrap;
  word-wrap: break-word;
}

.accordeon-description p
{
  width: 100%;
  height: auto;
  font-size: 1.2em;
  line-height: 1.2em;
}

.accordeon-description p > a,
.accordeon-description > a
{
  color: var(--red-site);
}

.accordeon-description > a
{
  display: inline-block;
  margin-bottom: 1em;
  font-size: 1.2em;
  line-height: 1.2em;
}
 
.accordeon-description p > a:hover,
.accordeon-description > a:hover
{
  text-decoration: underline;
}

.accordeon-description p:last-child
{
  margin-bottom: 0px;
}

.accordeon-description h3,
.accordeon-description h2,
.accordeon-description strong
{
  font-weight: 600;
}

.accordeon-description h2
{
  font-size: 1.5em;
  line-height: 1.2em;
}

.accordeon-description h3
{
  font-size: 1.3em;
  line-height: 1.2em;
}

.accordeon-description ul
{
  width: 100%;
  height: auto;
  position: relative;
  display: table !important;
  list-style: none;
}

.accordeon-description > ul > li
{
  width: 100%;
  height: auto;
  font-size: 1.2em;
  line-height: 1.2em;
  display: block !important;
  margin-bottom: .2em;
  padding-left: 1.3em;
}

.accordeon-description ul li:before
{
  content: "\f111";
  font-family: var(--font-family-font-awesome);
  top: .2em;
  left: 0px;
  font-size: .9em;
  font-weight: 500;
  position: absolute;
  display: block;

}


/*--- responsive information ---*/

@media screen and (max-width:1580px)
{
  .information-item h2
  {
    font-size: 1.8em;
  }

  .information-item > p
  {
    font-size: 1em;
  }

  .information-item > a
  {
    font-size: 1em;
  }

  .information-item ul li
  {
    font-size: 1em;
  }

  .information-item ul li:before
  {
    font-size: .6em;
  }

  .information-item h4
  {
    font-size: .9em;
  }

  .information-item p > span
  {
    font-size: .8em;
  }

  .information-item iframe
  {
    min-height: 450px;
  }

  .accordeon-description p
  {
    font-size: 1em;
  }

  .accordeon-description > a
  {
    font-size: 1em;
  }

  .accordeon-description h2
  {
    font-size: 1.3em;
  }

  .accordeon-description h3
  {
    font-size: 1.1em;
  }

  .accordeon-description > ul > li
  {
    font-size: 1em;
  }
}

@media screen and (max-width:925px)
{
  .information-item h2
  {
    font-size: 1.5em;
  }

  .information-item h3
  {
    font-size: 1.2em;
  }

  .information-item > p
  {
    font-size: .9em;
  }

  .information-item > a
  {
    font-size: .9em;
  }

  .information-item ul li
  {
    font-size: .9em;
  }

  .information-item ul li:before
  {
    font-size: .6em;
  }

  .information-item h4
  {
    font-size: .8em;
  }

  .information-item p > span
  {
    font-size: .7em;
  }

  .information-item iframe
  {
    min-height: 300px;
  }

  .info-accordeon > ul > li > a > h2
  {
    font-size: 1.2em;
  }

  .accordeon-description
  {
    padding: 1.5em 1em;
  }

  .accordeon-description p
  {
    font-size: 1em;
  }

  .accordeon-description > a
  {
    font-size: 1em;
  }

  .accordeon-description h2
  {
    font-size: 1.3em;
  }

  .accordeon-description h3
  {
    font-size: 1.1em;
  }

  .accordeon-description > ul > li
  {
    font-size: 1em;
  }
}

/*--- links ---*/

.links-container
{
  width: 100%;
  height: auto;
  position: relative;
  background: var(--gray-light-site);
  padding: 2em;
}

.links-title
{
  width: 100%;
  height: auto;
  position: relative;
}

.links-title h3
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--dark-site);
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 0px;
  line-height: 1em;
}

.links-title h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--red-site);
  font-size: 2em;
  letter-spacing: 2px;
  line-height: 1em;
  margin-bottom: .5em;
}

.links-items
{
  width: 100%;
  height: auto;
  position: relative;
}

.links-items ul
{
  width: 100%;
  height: auto;
  position: relative;
  display: table;
  counter-reset: section;
  list-style: none;
}

.links-items ul li
{
  width: 100%;
  height: auto;
  position: relative;
  padding: .8em 0px;
  border-top: 1px solid var(--gray-dark-site);
}

.links-items ul li:last-child
{
  border-bottom: 1px solid var(--gray-dark-site);
}

.links-items ul li a
{
  width: 80%;
  height: auto;
  position: relative;
  float: left;
  display: inline-block;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.2em;
  color: var(--dark-site);
  cursor: pointer;
}

.links-items ul li.active a,
.links-items ul li.active a p::before
{
  color: var(--red-site);
}

.links-items ul li a:nth-child(2n)
{
  width: inherit;
  float: right;
  right: 0px;
  position: absolute;
}

.links-items ul li a p
{
  max-width: 100%;
  position: relative;
  margin: 0;
  padding-right: .5em;
}

.links-items ul li a p::before
{
  counter-increment: section;
  content: counter(section) '. ';
  position: relative;
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  font-size: 1em;
  color: var(--caffe-site);
}

.links-items ul li:hover a,
.links-items ul li:hover a p::before
{
  color: var(--red-site);
}

/*--- responsive links ---*/

@media screen and (max-width: 1580px)
{
  .links-title h3
  {
    font-size: 1em;
  }

  .links-title h2
  {
    font-size: 1.8em;
  }

  .links-items ul li a
  {
    font-size: 1em;
  }

  .links-items ul li a p::before
  {
    font-size: 1em;
  }
}

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

  .links-container
  {
    padding: 1.5em;
  }
  .links-title h3
  {
    font-size: .9em;
  }

  .links-title h2
  {
    font-size: 1.5em;
  }

  .links-items ul li a
  {
    font-size: .9em;
  }

  .links-items ul li a p::before
  {
    font-size: .9em;
  }
}

/*----------------------------------------------
                Materials
----------------------------------------------*/

.materials-bottons
{
  bottom: 40%;
  transform: translateY(40%);
  justify-content: center;
}

.product-container:hover .materials-bottons
{
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.product-buttons-details .social-media {
    right: 0px;
    position: relative;
    float: right;
}

/*----------------------------------------------
                Material Amp
----------------------------------------------*/

.material-image
{
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 400px;
  position: relative;
  overflow:hidden;
}

.material-image img
{
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  float: left;
}

.material-amp .social-media 
{
    right: inherit;
    left: 0px;
    position: relative;
    float: left;
}

/*--- responsive material amp ---*/

@media screen and (max-width: 1580px)
{
  .material-image
  {
    max-height: 300px;
  }

  .material-image img
  {
    min-height: 300px;
  }
}

@media screen and (max-width: 925px)
{
  .material-image
  {
    max-height: 250px;
  }

  .material-image img
  {
    min-height: 250px;
  }
}

@media screen and (max-width: 575px)
{
  .material-image
  {
    max-height: 200px;
  }

  .material-image img
  {
    min-height: 200px;
  }
}

/*--- button amp ---*/

.button-container
{
  position: relative;
}

.button-amp
{
  top: 60%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-light-site);
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.button-amp:hover
{
  background: var(--red-site);
}

.button-container:hover .button-amp
{
  top: 50%;
  opacity: 1;
  visibility: visible;
}

.button-amp i
{
  color: var(--dark-site);
  -webkit-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.button-amp:hover i
{
  color: var(--white-site);
}

/*----------------------------------------------
               Collection Amp
----------------------------------------------*/

.collection-image
{
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 400px;
  position: relative;
  overflow:hidden;
}

.collection-image img
{
  width: 100%;
  height: auto;
  min-height: 450px;
  object-fit: cover;
  float: left;
}

.collection-amp .social-media 
{
    right: inherit;
    left: 0px;
    position: relative;
    float: left;
}

.collection-amp .border-section
{
    position: relative;
    padding-top: .5em;
    padding-bottom: 3em;
}

.collection-amp .border-section:before
{
  display: none;
}

/*--- responsive collection amp ---*/

@media screen and (max-width: 1580px)
{
  .collection-image
  {
    max-height: 300px;
  }

  .collection-image img
  {
    min-height: 300px;
  }
}

@media screen and (max-width: 925px)
{
  .collection-image
  {
    max-height: 250px;
  }

  .collection-image img
  {
    min-height: 250px;
  }
}

@media screen and (max-width: 767px)
{
  .collection-amp .border-section 
  {
    padding-top: .5em;
    padding-bottom: 2em;
  }
}

@media screen and (max-width: 575px)
{
  .collection-image
  {
    max-height: 200px;
  }

  .collection-image img
  {
    min-height: 200px;
  }
}

/*----------------------------------------------
                  Dashboard
----------------------------------------------*/

.dashboard-container
{
  width: 100%;
  height: auto;
  position: relative;
}

.image-profile
{
  width: 100px;
  height: 100px;
  background: var(--gray-light-site);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 1em;
  box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
}

.image-profile img
{
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  float: left;
  position: absolute;
}

.background-profile
{
  background: transparent 50% repeat;
}

.dashboard-content
{
  width: 100%;
  height: auto;
  position: relative;
}

.border-section-top
{
  width: 100%;
  height: auto;
  margin-top: .2em;
  margin-bottom: 2em;
  position: relative;
  display: block;
}

.border-section-top:before
{
  content: '';
  top: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: var(--gray-light-site);
  position: absolute;
}

.dashboard-no-padding
{
  padding-top: 0px;
  padding-bottom: 0px;
}

.dashboard-margin
{
  margin: .5em 0px;
}

.dashboard-margin-top
{
  margin-top: 2em;
}

.dashboard-margin-bottom
{
  margin-bottom: 1em;
}

.dashboard-align-items
{
   -webkit-box-align: center!important; 
    -ms-flex-align: center!important;
    align-items: center!important;
}

.dashboard-text
{
  width: 100%;
  height: auto;
  position: relative;
}

.dashboard-text h3 
{
    font-family: var(--font-family-quick-serif);
    font-weight: 700;
    color: var(--dark-site);
    font-size: 1.2em;
    letter-spacing: 2px;
    margin-bottom: 0px;
    line-height: 1em;
}

.dashboard-text h2
{
    font-family: var(--font-family-quick-serif);
    font-weight: 700;
    color: var(--red-site);
    font-size: 2em;
    letter-spacing: 2px;
    line-height: 1em;
    margin-bottom: .5em;
}

.dashboard-text p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
  font-size: 1.2em;
  line-height: 1.2em;
}

.dashboard-no-padding-top
{
  padding-top: 0px !important;
}

/*--- responsive dashboard ---*/

@media screen and (max-width: 1580px)
{
  .dashboard-text h3 
  {
    font-size: 1em;
  }

  .dashboard-text h2
  {
    font-size: 1.8em;
  }

  .dashboard-text p
  {
    font-size: 1em;
  }
}

@media screen and (max-width: 925px)
{
  .image-profile
  {
    width: 60px;
    height: 60px;
  }

  .dashboard-text h3 
  {
    font-size: .9em;
  }

  .dashboard-text h2
  {
    font-size: 1.5em;
  }

  .dashboard-text p
  {
    font-size: .9em;
  }
}

/*--- responsive menu dashboard ---*/

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

  .dashboard-text
  {
    padding-top: 40px;
  }

  .dashboard-menu
  {
      left: 50%;
      position: absolute;
      transform: translateX(-50%);
      z-index: 1000;
      padding-left: 0px;
      padding-right: 0px;
  }

  .dashboard-menu .filter-container
  {
    top: 30px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.2);
  }

  .dashboard-menu .filter-products-button
  {
      top: 0px;
      left: inherit;
      right: 0px;
  }

  .dashboard-align-items
  {
    -webkit-box-align: start!important;
    -ms-flex-align: start!important;
    align-items: flex-start!important;
  }
}

/*----------------------------------------------
                notify
----------------------------------------------*/

.ui-pnotify
{
    right: 36px !important;
    top: 46px !important;
 }

@media screen and (max-width: 575px)
{
  .ui-pnotify
  {
      right: 50% !important;
      top: 10px !important;
      transform: translateX(50%) !important;
  }

}

/*----------------------------------------------
                  search
----------------------------------------------*/

.search-site-container
{
  width: 100%;
  height: auto;
  position: relative;
}

.search-site-item
{
  width: 100%;
  height: auto;
  position: relative;
  background: transparent 50% repeat;
  background-image: url('../img/background/18.png');
  background-attachment: fixed;
  border: 2px solid var(--gray-light-site);
  padding: 1.5em;
  margin-top: 2.5em;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.search-site-item:first-child
{
  margin-top: 0px;
}

.search-site-item:hover
{
  background-color: var(--gray-light-site);
  box-shadow: 0px 0px 8px rgba(0,0,0,0.2);
}

.search-site-text
{
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  font-family: var(--font-family-quick-serif);
}

.search-site-text h3 
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--dark-site);
  font-size: 1.2em;
  letter-spacing: 2px;
  margin-bottom: 0px;
  line-height: 1em;
  padding-right: 30px;
}

.search-site-text h2
{
  font-family: var(--font-family-quick-serif);
  font-weight: 700;
  color: var(--red-site);
  font-size: 2em;
  letter-spacing: 2px;
  line-height: 1em;
  margin-bottom: .5em;
  padding-right: 30px;
}

.search-site-text h2 a
{
  color: var(--red-site);
  text-decoration: none;
}

.search-site-text h2 a:hover,
.search-site-text h2 a:active,
.search-site-text h2 a:focus
{
  text-decoration: underline;
}

.search-site-text p
{
  font-family: var(--font-family-quick-serif);
  font-weight: 500;
  color: var(--dark-site);
  text-align: justify;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: 0px;
}

.search-site-text i
{
  top: -1px;
  right: 0px;
  color: var(--dark-site);
  font-size: 1.5em;
  position: absolute;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.search-site-text i:hover
{
  color: var(--red-site);
}

/*--- responsive search ---*/

@media screen and (max-width: 1580px)
{
  .search-site-text h3 
  {
    font-size: 1em;
  }

  .search-site-text h2
  {
    font-size: 1.8em;
  }

  .search-site-text p
  {
    font-size: 1em;
  }

  .search-site-text i
  {
    font-size: 1.3em;
  }
  
}

@media screen and (max-width: 925px)
{
  .search-site-text h3 
  {
    font-size: .9em;
  }

  .search-site-text h2
  {
    font-size: 1.5em;
  }

  .search-site-text p
  {
    font-size: .9em;
  }

  .search-site-text i
  {
    font-size: 1em;
  }

}

/*----------------------------------------------
                paypal button
----------------------------------------------*/

 /* Media query for mobile viewport */
@media screen and (max-width: 400px) {
    #paypal-button-container {
        width: 100%;
    }
}

/* Media query for desktop viewport */
@media screen and (min-width: 400px) {
    #paypal-button-container {
        width: 350px;
    }
}

/*----------------------------------------------
                paypal button
----------------------------------------------*/

.modal
{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  padding-top: 60px; /* Location of the box */
  padding-bottom: 60px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  overflow-y: auto;
}

.modal.hide
{
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.modal.show
{
    opacity: 1;
    transition: all 300ms ease-in-out;
}

/* Modal Content */
.modal-content
{
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  overflow-y: auto;
  font-family: var(--font-family-quick-serif);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px)
{
    .modal-content
    {
        width: 800px;
        margin: 30px auto;
    }
}

.modal_content_external
{
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.modal-header
{
    padding: 15px;
    border-bottom-color: #f4f4f4;
}

.modal-header .close 
{
    margin-top: -2px;
}

.modal-title 
{
    margin: 0;
    font-size: 1.8em;
    line-height: 1.2em;
    color: var(--red-site);
    font-weight: 800;
    padding-right: 1em;
}

.modal-body
{
    position: relative;
    padding: 15px;
}

.section-modal
{
  width: 100%;
  height: auto;
  margin-bottom: 1em;
  position: relative;
}

.modal-body h3
{
  font-size: 1.5em;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: .3em;
  color: var(--red-site);
}

.modal-body p
{
  font-size: 1.2em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: .3em;
  color: var(--dark-site);
}

/*--- responsive modal ---*/

@media screen and (max-width: 1580px)
{
  .modal-title 
  {
    font-size: 1.8em;
  }

  .modal-body h3
  {
    font-size: 1.5em;
  }

  .modal-body p
  {
    font-size: 1em;
  }  
}

@media screen and (max-width: 925px)
{
  .modal-title 
  {
    font-size: 1.5em;
  }

  .modal-body h3
  {
    font-size: 1em;
  }

  .modal-body p
  {
    font-size: .9em;
  } 

}

/*----------------------------------------------
              style paragraph
----------------------------------------------*/

.show_p_text 
{
    position: relative;
    width: 100%;
    height: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*----------------------------------------------
               chat jivosite
----------------------------------------------*/

/* ---  chat style ---*/
body > jdiv > jdiv > jdiv,
body > jdiv > jdiv > jdiv > jdiv,
body > jdiv > jdiv > jdiv > #jvlabelWrap
{
  z-index: 1000 !important;
}

@media screen and (max-width: 845px)
{
  body > jdiv > jdiv > jdiv > jdiv:last-child
  {
      width: 45px !important;
      height: 45px !important;
      border-radius: 50px!important;
      margin-right: 0px !important;
      background: rgba(179, 38, 40, .95) !important;
      z-index: 999 !important;
  }

  body > jdiv > jdiv > jdiv > jdiv:nth-last-child(2)
  {
      width: 45px !important;
      height: 45px !important;
      border-radius: 50px!important;
      margin-right: 0px !important;
      z-index: 1000 !important;
  }

  body > jdiv > jdiv > jdiv
  {
    right: 5% !important;
    bottom: 15px !important;
  }
}

/*----------------------------------------------
                end styles
----------------------------------------------*/