/**
* 2007-2022 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2022 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&display=swap');

/*ESTILO MELCHOR: Begin*/

/*GENERAL*/

/* Style the video: 100% width and height to cover the entire window */
.slick-prev:before{
    content: url('/melchor/img/arrow-izq.svg');
}

.slick-next:before {
	content: url('/melchor/img/arrow-der.svg');
}

body{
	overflow-x: hidden;
	font-family: 'Cormorant Garamond', serif;
	color: #fff;
	background-color: #19191A;
}

body#product {
    background-color: transparent;
}

body#my-account {
    background-color: #fff;
}

body#my-account #wrapper {
    background: transparent;
    padding-top: 30px;
}

body a{
	cursor: pointer;
}

:focus-visible {
    outline: none;
}

section#main {
    padding: 0px;
}

#main .page-content, 
#main .page-header {
   	margin-bottom: 0px;
}

a:focus {
    outline: none;
    outline-offset: unset;
}

.cart-empty{
	display: block;
}

.cart-with-items,
.totalCartProducts{
	display: none;
}

.yesProducts .cart-empty{
	display: none;
}

.yesProducts .cart-with-items,
.yesProducts .totalCartProducts{
	display: block;
}

.user-logoff{
	display: inline-block;
}

.user-login{
	display: none;
}

.yesLogged .user-logoff{
	display: none;
}

.yesLogged .user-login{
	display: inline-block;
}


.nav-tabs .nav-link{
	border: unset;
}

.nav-tabs .nav-item.open .nav-link, 
.nav-tabs .nav-item.open .nav-link:focus, 
.nav-tabs .nav-item.open .nav-link:hover, 
.nav-tabs .nav-link.active, 
.nav-tabs .nav-link.active:focus, 
.nav-tabs .nav-link.active:hover {
    color: inherit;
    background-color: inherit;
    border-color: none;
}

.nav-tabs {
    border-bottom: none;
}

#main .page-footer, 
#main .page-header, 
#wrapper .breadcrumb {
    display: none;
}

#wrapper {
    background: transparent;
   	padding-top: 0px
}

section#wrapper > .container-fluid{
	padding-left: 0px;
	padding-right: 0px;
}

.page-content.page-cms {
    background: transparent;
    padding: 0px;
}

.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1800px !important;
}

.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 0px;
}

/*Quickview Modal - PLP: begin*/
.quickview .modal-body {
    padding-left: 15%;
}

.quickview .modal-content {
    background: #3E3E3E;
    min-height: 28.13rem;
}

.quickview .has-discount.product-price, 
.quickview .has-discount p,
.quickview .h1, 
.quickview .h2, 
.quickview .h3 {
    color: #fff;
}

.quickview .btn-primary,
.quickview .btn-primary.focus, 
.quickview .btn-primary:focus, 
.quickview .btn-primary:hover {
    color: #fff;
    background-color: transparent;
    border: solid 1px #fff;
}

.quickview .has-discount .discount {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 0.3125rem 0.625rem;
    font-size: 1rem;
    margin-left: 0.625rem;
    text-transform: uppercase;
    display: inline-block;
    border-bottom: solid 1px #fff;
}

.quickview .close {
    float: right;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: 1 !important;
}

.quickview .product-quantity #quantity_wanted {
    color: #fff;
    background-color: transparent;
    height: 2.75rem;
    padding: 0.175rem 0.5rem;
    width: 3rem;
    border: solid 1px #fff;
    text-align: center;
}

.quickview .bootstrap-touchspin .input-group-btn-vertical>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
    padding: 8px 10px;
    margin-left: -1px;
    position: relative;
    background: transparent;
    color: #fff;
    border: solid 1px #fff;
}
/*Quickview Modal - PLP: begin*/

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 20px;
  top: 6px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3E3E3E;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 30px;
	width: 30px;
	left: 1px;
	bottom: -5px;
	background-color: #908161;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
  background-color: #3E3E3E;
}

input:focus + .slider {
  box-shadow: 0 0 1px #3E3E3E;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
}

.mc-h1 {
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    color: #fff;
}

.mc-btn{
	padding: 12px 75px;
	border: solid 1px #fff;
	color:#fff !important;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	background: transparent;
}

.mc-btn:hover{
	padding: 12px 75px;
	border: solid 1px #3E3E3E;
	color:#3E3E3E !important;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	background: #F7F3F0;
}

.mc-btn-clear{
	padding: 5px 0px;
	border: none;
	border-bottom: solid 1px #fff;
	color:#fff !important;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	background: transparent;
}

.mc-btn-white-full-width{
	width: 100%;
	padding: 5px 40px;
	border: solid 1px #EBE5CB;
	color:#000 !important;
	font-size: 20px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	background: #EBE5CB;
}

/*Sidemenu: begin*/

/* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  background: #19191A;/* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 0px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
	height: 80px;
	padding: 0px 8px 0px 0px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
	border-bottom:1px solid #3E3E3E ;
}

.sidenav .nav-filter-title{
	display: block;
	width: 80%;
	height: 100%;
	float: left;
	border-right:0.5px solid #3E3E3E;
	padding: 40px 0px 0px 15px;
}

.sidenav .nav-filter-close{
	display: block;
	width: 20%;
	height: 100%;
	float: left;
	border-left:0.5px solid #3E3E3E ;
	font-size: 80px;
	padding: 27px 0px 0px 0px;
	text-align: center;
}

.sidenav ul{
	position: relative;
	top: 40px;
}

.sidenav ul li{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	color: #F7F3F0;
}

.sidenav ul li label{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	color: #F7F3F0;
}

.sidenav ul li label{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	color: #F7F3F0;
}

.sidenav [type=checkbox], 
.sidenav [type=radio] {
    float: left;
    width: 30px;
    height: 30px;
    margin-top: 10px;
    margin-left: 30px;
    margin-right: 15px;
}

.sidenav .nav-buttons{
	position: absolute;
	bottom: 15px;
	width: 100%;
	padding: 20px 15px 0px 15px;
	border-top: solid 1px #3E3E3E;
	text-align: center;
}

.sidenav .nav-buttons .mc-btn-clear{
	margin-bottom: 30px;
}

.sidenav-show{
	width: 350px !important;
	opacity: 1;
}

.sidenav-hide{
	width: 0px !important;
	opacity: 0;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  width: 100%;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
/*Sidemenu: end*/

/*Nav*/
.mc-nav-desktop{
    /*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;*/
    background: #000;
  }

  .mc-nav-desktop .mc-header-logo{
    margin: 10px 0px 10px 0px;
  }

  .mc-nav-desktop .mc-header-logo img{
  	width: 300px;
  }

  .mc-nav-desktop ul li{
    float: left;
  }

  .mc-nav-desktop ul li{
    list-style: none;
    padding: 10px 20px;
  }

  .mc-nav-desktop ul li a,
  .mc-nav-desktop ul li a:hover{
    list-style: none;
    padding: 5px 5px;
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    text-align: center;
    color: #FFFFFF !important;
  }

  .mc-nav-desktop ul li.mc-secondary-link a{
    color: #908161 !important;
  }

  .mc-nav-desktop ul li.mc-secondary-link a:hover{
    border-bottom: solid 2px #908161 !important;
  }

  .mc-nav-secondary-ul{
    margin-top: 0px;
    padding: 8px 0px 8px 0px;
    background: rgba(247, 243, 240, 0.8);
    backdrop-filter: blur(5px);
    display: none;
  }

  .mc-nav-secondary-ul li {
    list-style: none;
    padding: 8px 10px !important;
  }

  .mc-nav-secondary-ul li a{
    color: #908161 !important;
    padding: 10px 20px 5px 20px !important;
  }
  
  .mc-nav-secondary-ul li a:hover{
    border-bottom: solid 2px #908161 !important;
  }

  .mc-secondary-link{
    display: none;
  }

  .mc-user-links-wrapper{
    display: flex;
    justify-content: flex-end;
  }

  .mc-user-element-wrapper{
    float: left;
    margin: 20px 5px;
  }

  .mc-user-search form{
  	padding: 5px 0px 5px 5px;
  	border: solid transparent 1px;
  	margin-top: -5px;
  }

  .mc-user-search form.form-open{
  	border: solid #fff 1px;
  }

  .mc-user-search input {
    width: 165px;
    height: 18px;
    border: none;
    background: transparent;
    display: none;
    color: #fff;
    position: relative;
    top: 3px;
    margin-left: 5px;
  }

  .mc-cart-link{
    position: relative;
  }

  .totalCartProducts {
    position: absolute;
    top: -7px;
    right: -6px;
    z-index: 100;
    width: 17px;
    height: 17px;
    border-radius: 100%;
    background: #EBE5CB;
    color: #908161;
    text-align: center;
    font-weight: bold;
    line-height: 12px;
    font-size: 12px;
}

.mc-search-btn,
.mc-user-link img,
.mc-cart-link img{
	cursor: pointer;
}

/*Nav*/

/*Bloque mc-banner: begin*/
.mc-banner{
	min-height: 100px;
	background: #3E3E3E;
	/*padding-top: 10px;*/
}

	.mc-banner .mc-text{
		min-height: 600px;
		display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 0px 60px;
		justify-content: end;
		padding-bottom: 230px;
	}

	.mc-banner p, 
	.mc-banner span {
    	margin-bottom: 40px;
    	color: #fff;
    	font-style: normal;
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
	}
/*Bloque mc-banner: begin*/

/*Bloques mc-info-zone: begin*/
.mc-info-zone{
	background:#19191A;
}

.mc-info-zone .mc-text {
	min-height: 428px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; 
    padding:40px 55px;
}

.mc-info-zone .mc-text h3,
.mc-info-zone .mc-text p,
.mc-info-zone .mc-text span,
.mc-info-zone .mc-text a
{
	color: #fff;
}

.mc-info-zone .mc-text h3{
	font-style: normal;
	font-weight: 700;
	font-size: 35px;
}

.mc-info-zone .mc-text h3 span{
	color:#3E3E3E;
	font-size: 30px;
}

.mc-info-zone .mc-text p,
.mc-info-zone .mc-text span{
	margin-bottom: 40px;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
}

.mc-info-zone .mc-img {
	padding: 0px 0px;
}

.mc-info-zone .mc-img img{
	display: block;
	margin: auto;
}

.mc-info-zone .mc-btn{
	padding: 11px 97px !important;
}
/*Bloques mc-info-zone: begin*/

/*Bloques mc-info-zone-clear: begin*/
.mc-info-zone-clear{
	background:#F9F8F6;
}

.mc-info-zone-clear .mc-text {
	min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; 
    padding:0px 60px;
}

.mc-info-zone-clear .mc-text h3,
.mc-info-zone-clear .mc-text p,
.mc-info-zone-clear .mc-text span,
.mc-info-zone-clear .mc-text a
{
	color: #000;
}

.mc-info-zone-clear .mc-text h3{
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
}

.mc-info-zone-clear .mc-text h3 span{
	color:#3E3E3E;
	font-size: 30px;
}

.mc-info-zone-clear .mc-text p,
.mc-info-zone-clear .mc-text span{
	margin-bottom: 40px;
	font-size: 20px;
}

.mc-info-zone-clear .mc-img {
	padding: 0px 0px;
}

.mc-info-zone-clear .mc-img img{
	width: 100%;
}
/*Bloques mc-info-zone-clear: begin*/

/*Bloque mc-products-display: begin*/
.mc-products-display{
	background:#19191A;
	padding: 40px 0px;
	text-align: center;
}

	.mc-products-display img{
		display: inline-block;
		margin: auto;
	}

	.mc-products-display h6,
	.mc-products-display p{
		padding: 10px 0px;
		color: #fff;
	}
/*Bloque mc-products-display: end*/

/*Bloque contato: begin*/
.mc-contact-zone{
	padding: 80px 15px 40px 15px;
	background: #fff;
}

	.mc-contact-zone h2{
		font-style: normal;
		font-weight: 700;
		font-size: 61px;
		line-height: 74px;
		text-align: center;
		color: #3E3E3E;
		margin-bottom: 40px;
	}

.mc-contact-box-wrapper{
	text-align: center;
}

.mc-contact-box{
	width: 28%;
	display: inline-block;
	background: rgba(235, 229, 203, 0.35);
	margin: 0px 15px;
	padding: 40px 15px;
	cursor: pointer;
}

	.mc-contact-box img{
		display: block;
		margin: auto;
	}

	.mc-contact-box img.mc-default{
		display: block;
	}

	.mc-contact-box img.mc-hover{
		display: none;
	}

	.mc-contact-box .mc-text-main{
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		line-height: 29px;
		text-align: center;
		color: #19191A;
		text-transform: uppercase;
		margin: 15px 0px;
	}

	.mc-contact-box .mc-text-secondary{
		font-style: normal;
		font-weight: 300;
		font-size: 18px;
		line-height: 26px;
		color: #fff;
		text-align: center;
	}

	.mc-contact-box .mc-text-small{
		font-style: normal;
		font-weight: 300;
		font-size: 17px;
		line-height: 26px;
		color: #908161;
		text-align: center;
	}

.mc-contact-box:hover{
	background: #3E3E3E;
}

	.mc-contact-box:hover .mc-text-main{
		color: #fff;		
	}

	.mc-contact-box:hover img.mc-default{
		display: none;
	}

	.mc-contact-box:hover img.mc-hover{
		display: block;
	}


/*Bloque contato: end*/

/*Bloque ver safras*/
.mc-ver-safras{
	min-height: 100px;
}
/*Bloque ver safras*/

/*Bloque comprar: begin*/
.mc-buy-zone{
	min-height: 40px;
    background: #19191A;
    padding: 10px 15px;
}

	.mc-buy-zone .mc-buy-info h2{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 700;
		font-size: 61px;
		line-height: 74px;
		text-align: left;
		color: #FFFFFF;
	}
	.mc-buy-zone .mc-buy-info h1 {
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 700;
		font-size: 61px;
		line-height: 74px;
		text-align: left;
		color: #FFFFFF;
	}

	.mc-buy-zone .mc-buy-info p{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 300;
		font-size: 17px;
		line-height: 26px;
		color: #F7F3F0;
	}

	.mc-buy-zone .mc-buy-filtro .form-group{
		border: solid 1px #3E3E3E;
		padding: 10px 0px 10px 15px;
	}

	.mc-buy-zone .mc-buy-filtro h3{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 700;
		font-size: 24px;
		line-height: 29px;
		color: #FFFFFF;
		padding-right: 15px;
		cursor: pointer;
	}

	.mc-comprar-display{

	}

	.mc-comprar-display h4{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 500;
		font-size: 24px;
		line-height: 29px;
		color: #F7F3F0;
		text-align: left;
		padding-left: 30px;
		margin-top: 20px;
	}

	.mc-comprar-display .mc-year{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 700;
		font-size: 42px;
		line-height: 51px;
		color: #908161;
		text-align: left;
		padding-left: 30px;
	}

	.mc-comprar-display .mc-price{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 500;
		font-size: 42px;
		line-height: 51px;
		color: #FFFFFF;
		text-align: right;
		padding-right: 30px;
	}

	

/*Bloque comprar: begin*/

/*Bloque ficha producto: */
.mc-product-buy-zone{
	padding: 40px 15px;
}

.mc-product-buy-zone.mc-banner p, 
.mc-product-buy-zone.mc-banner span {
    margin-bottom: 15px;
    color: #fff;
}

.mc-product-name{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 26px;
	text-align:center;
	color: #F7F3F0;
}

.mc-price-info h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 61px;
	line-height: 74px;
	text-align:center;
	color: #EBE5CB;
}

.mc-original-price{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	text-decoration-line: line-through;
	color: #908161;
}


body#category .mc-original-price{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 22px;
	line-height: 0;
	text-align: right;
	text-decoration-line: line-through;
	color: #fff;
	min-height: 10px;
	margin-bottom: 0px;
	padding-right: 20px;
}


.mc-sale-price{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #F7F3F0;
}

.mc-form-buy .mc-btn-square,
.mc-form-buy .form-control{
	width: 35px;
    height: 35px;
    display: inline;
    padding: 5px 5px;
    border: solid 1px #fff;
    color: #fff ;
    font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 35px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    background: transparent;
}

.mc-form-buy .form-control{
	line-height: 0px;
}

.mc-available-text{
	position: relative;
}

.mc-available-text::before{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #3D8F7A;
	border-radius: 100%;
	top: 10px;
}

.mc-available-text span{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #F7F3F0;
	padding-left: 20px;
}

.mc-price-info h1.producttitle {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 700;
    font-size: 61px;
    line-height: 74px;
    text-align: center;
    color: #EBE5CB;
}

.mc-info-links a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 26px;
	text-decoration-line: underline;
	text-align: center;
	color: #F7F3F0;
}

.mc-product-description{
	background-color: #F9F8F6;;
	padding: 40px 8%;
}

.mc-product-description h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #3E3E3E;
}

.mc-product-description p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #3E3E3E;
}

.mc-product-awards{
	background-color: #F9F8F6;
	padding: 40px 15px;
}

.mc-product-awards h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #3E3E3E;
}

/*
.mc-product-awards .mc-first-row-awards{
	padding: 0px 10%;
}
*/

.mc-product-awards .mc-award-box .mc-points{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	text-align: center;
	color: #000000;
}

.mc-product-awards .mc-award-box .mc-award-name{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #908161;
}

.mc-product-info{
	background-color: #F9F8F6;
	padding: 40px 8%;
}

.mc-product-info h2,
.mc-product-info h3,
.mc-product-info div,
.mc-product-info p,
.mc-product-info span,
.mc-product-info a{
	color: #3E3E3E;
}

.mc-product-info h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	margin-bottom: 40px;
}

.mc-product-info .mc-product-extra-info-box{
	margin-top: 15px;
}

.mc-product-info .mc-extra-info-title{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	line-height: 33px;
	align-items: center;
	color: #000000;
	position: relative;
	cursor: pointer;
}

.mc-product-info .mc-extra-info-title::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 40px;
}

.mc-product-info .mc-extra-info-title[aria-expanded="true"]::after {
    content: url('/melchor/img/clarity_minus-line.svg');
    position: absolute;
    right: 0;
    top: -5px;
}

.mc-product-info .mc-extra-info-title[aria-expanded="false"]::after {
    content: url('/melchor/img/clarity_add-line.svg');
    position: absolute;
    right: 0;
    top: -5px;
}

.mc-product-info .mc-extra-info-content{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 26px;
	align-items: center;
	color: #3E3E3E;
}

.mc-product-info .mc-product-stats:first-of-type{
	padding: 15px 30px 15px 30px;
}
.mc-product-info .mc-product-stats{
	padding: 0px 30px 15px 30px;
	background: #EBE5CB;
}

.mc-product-info .mc-product-stats .row{
	border-bottom: 1px solid #19191A;
}

.mc-product-info .mc-product-stats h4{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 17px;
	line-height: 26px;
	align-items: center;
	color: #19191A;
}

.mc-product-info .mc-product-stats span{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 26px;
	align-items: center;
	color: #3E3E3E;
	display: inline-block;
	padding-top: 5px;
}

.mc-key-values{
	background: #F7F3F0;
	padding: 40px 8%;
}

.mc-key-values h6{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 17px;
	text-transform: uppercase;
	line-height: 26px;
	text-align: center;
	color: #3E3E3E;
	margin-top: 10px;
}

.mc-key-values p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 26px;
	text-align: center;
	color: #3E3E3E;
}

/*Bloque ficha producto*/

/*Bloque Descobrir: begin*/
.mc-descobrir-banner-1{
	position: relative;
}

.mc-descobrir-banner-1 ul{
	position: absolute;
	right: 30px;
	bottom: 30px;
}

.mc-descobrir-banner-1 ul li{

}

.mc-descobrir-banner-1 ul li a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	text-align: center;
	color: #EBE5CB;
}

.mc-descobrir-banner-1 .mc-text {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0px 60px;
    justify-content: end;
    padding-bottom: 80px;
    position: relative;
}

.mc-descobrir-banner-2{

}

.mc-descobrir-banner-2 h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #FFFFFF;
}

.mc-descobrir-banner-2 p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	text-align: center;
	color: #FFFFFF;
}

.mc-descobrir-story{
	background: #F7F3F0;
	padding: 80px 10%;
}

.mc-descobrir-story p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #19191A;
}

.mc-descobrir-story img{
	margin-bottom: 40px;
}

.mc-descobrir-timeline .slick-prev {
    left: 5px;
}

.mc-descobrir-timeline .slick-next {
    right: 0px;
}

.mc-descobrir-timeline ul.timeline-carousel{
	padding: 20px 20px;
}

.mc-descobrir-timeline .nav-tabs .nav-link {
    display: block;
    padding: 10px 10px;
    border: 1px solid transparent;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    text-align: center;
}

.mc-descobrir-timeline ul.timeline-carousel li a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 35px;
	text-align: center;
	color: #FFFFFF;
}

.mc-descobrir-timeline ul.timeline-carousel li a.active{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 61px;
	text-align: center;
	color: #FFFFFF;
	background: transparent;
}

.mc-descobrir-timeline .nav-tabs .nav-item.open .nav-link, 
.mc-descobrir-timeline .nav-tabs .nav-item.open .nav-link:focus, 
.mc-descobrir-timeline .nav-tabs .nav-item.open .nav-link:hover, 
.mc-descobrir-timeline .nav-tabs .nav-link.active, 
.mc-descobrir-timeline .nav-tabs .nav-link.active:focus, 
.mc-descobrir-timeline .nav-tabs .nav-link.active:hover,
.mc-descobrir-timeline .tab-content{
	background: transparent;
}

.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text{
	min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0px 60px;
}

.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text h3{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #FFFFFF;
}

.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	display: flex;
	align-items: center;
	text-align: center;
	color: #F7F3F0;
}

.mc-descobrir-info .mc-text h3 {
	display: inline-block; 
    max-width: 40%;
    margin: 0px auto;
    margin-bottom: 40px;
    border-bottom: solid 1px #EBE5CB;;
    padding-bottom: 10px;
    
}

.mc-descobrir-info .mc-text p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 27px;
	display: flex;
	align-items: center;
	text-align: center;
	color: #F7F3F0;
}

.mc-descobrir-map{
	text-align: center;
	padding: 20px 15px 0px 15px;
}

.mc-descobrir-map h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #EBE5CB;
	display: inline-block; 
    max-width: 40%;
    margin: 0px auto;
    margin-bottom: 20px;
    border-bottom: solid 1px #EBE5CB;;
    padding-bottom: 10px;
}

.mc-descobrir-map h3{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #EBE5CB;
}

.mc-descobrir-map ul.maps-carousel{
	display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.mc-descobrir-map ul.maps-carousel li{
	margin: 0px 20px;
}

/*
.mc-descobrir-map .slick-track{
	display: flex;
    justify-content: space-evenly;
	width: 1000px !important;
}
*/

.mc-descobrir-map .slick-slide img {
    display: block;
    margin: auto;
}

.mc-descobrir-map .map-description{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #F7F3F0;
}

.mc-descobrir-map .map-description p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #F7F3F0;
}

.map-number img{
	display: block;
	margin: auto;
}

.map-number,
.map-description{
	display: flex;
    justify-items: center;
    align-items: center;
    min-height: 250px;
    text-align: center;
}

.mc-awards{
	padding: 20px 15px;
}

.mc-awards h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #FFFFFF;
}

.mc-awards .mc-award-wrapper{
	padding: 40px 4%;
}

.mc-awards .mc-award-wrapper h3{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #908161;
}

.mc-awards .mc-award-wrapper .mc-award-img-1{
	display: block;
	margin: 10px auto;
}

.mc-awards .mc-award-wrapper .mc-awards-year{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	text-align: center;
	color: #FFFFFF;
}

.mc-awards .mc-award-wrapper .mc-awards-description{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 17px;
	line-height: 26px;
	color: #F7F3F0;
	text-align: left;
}

.mc-awards .mc-award-wrapper .mc-award-img-2{
	display: block;
	margin: 10px auto;
}

.mc-descobrir-safras{
	padding: 40px 15px;
}

.mc-descobrir-safras h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #FFFFFF;
	position: relative;
	margin-bottom: 50px;
}

.mc-descobrir-safras h2::after{
	content: "";
	width: 100px;
	height: 1px;
	background: #EBE5CB;
	position: absolute;
	left: 46%;
	bottom: -10px;
}


.mc-descobrir-safras ul.safras-years,
.mc-descobrir-safras div.safras-years{
	text-align: center;
	padding-top: 40px;
}

.mc-descobrir-safras ul.safras-years li a,
.mc-descobrir-safras div.safras-years div a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 42px;
	line-height: 51px;
	color: #908161;
	padding: 15px 15px;
}

.mc-descobrir-safras ul.safras-years li a.active,
.mc-descobrir-safras div.safras-years div a.active{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 61px;
	line-height: 74px;
	color: #EBE5CB;
}

.mc-descobrir-safras .tab-content .tab-pane h3{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 61px;
	line-height: 74px;
	text-align: center;
}

.mc-descobrir-safras .tab-content .tab-pane h4{
	display: block; 
    max-width: 40%;
    margin: 0px auto;
    margin-bottom: 40px;
    margin-top: 40px;
    clear: both;
    border-top: solid 1px #908161;
    padding-top: 10px;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #908161;
}

.mc-descobrir-safras .tab-content .tab-pane p{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 29px;
	text-align: center;
	color: #F7F3F0;
}

.mc-descobrir-safras .tab-content .tab-pane span.mc-safra-points{
	display: block;
	width: 50%;
	float: left;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 29px;
	line-height: 35px;
	text-align: center;
	color: #EBE5CB;
}

.mc-descobrir-safras .tab-content .tab-pane span.mc-safra-award-name{
	display: block;
	width: 50%;
	float: left;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	color: #FFFFFF;
}

.mc-process{
	padding: 20px 15px;
}

.mc-process h2{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 42px;
	line-height: 51px;
	text-align: center;
	color: #FFFFFF;
	position: relative;
	margin-bottom: 40px;
}

.mc-process h2::after{
	content: "";
	width: 100px;
	height: 1px;
	background: #EBE5CB;
	position: absolute;
	left: 46%;
	bottom: -10px;
}
/*Bloque Descobrir: begin*/

/*GENERAL*/

/*Header: begin*/
#header {
    background: #000000;
    color: #fff;
}

#header a,
#header .header-top a,
#header .header-top a[data-depth="0"],
#header .material-icons.search {
    color: #fff;
}

#header .header-nav {
    border-bottom: none;
    max-height: 50px;
    margin-bottom: 30px;
}

#header #_desktop_logo{
	text-align: center;
	margin-bottom: 20px;
}

.search-widget form input[type=text],
.search-widget form input[type=text]:focus {
    padding: 10px;
    color: #fff;
    border: 1px solid #fff;
    background: #000;
}

#header .mc-head-user-links{
	display: flex;
    justify-content: flex-end;
}

#header .mc-head-user-links #_desktop_user_info,
#header .mc-head-user-links #_desktop_cart
{
	display: inline-block;
	margin: 10px 10px;
}
/*Header: begin*/

/*Footer: begin*/
#footer {
    padding-top: 0;
    background-color: #3E3E3E;
}

.footer-container {
    margin-top: 0px;
    padding-top: 0px;
    overflow: hidden;
    box-shadow: none
}

.footer-container .footer-logo{
	text-align: center;
}

.footer-container .footer-logo-wrapper
{
	margin: 20px 0px;
}

.footer-container .footer-logo-wrapper img{
	width: 215px;
}

.footer-container .footer-rrss-wrapper{
	margin: 20px 0px 40px 0px;
}

.footer-container .footer-rrss-wrapper img{
	margin: 0px 20px;
	width: 18px;
	height: 18px;
}

.footer-container .mc-link-block{
	padding: 0px 15%;
}

.footer-container .mc-link-block .wrapper{
	text-align: center;
}

.footer-container .mc-link-block p.h3{
	display: none;
}

.footer-container .mc-link-block .cms-page-link,
.footer-container .mc-link-block .custom-page-link{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	text-align: center;
	color: #F0EEEA;
	text-transform: capitalize;
}

.footer-container .mc-link-block .cms-page-link:hover,
.footer-container .mc-link-block .custom-page-link:hover{
	color: #fff;
}

.footer-container .mc-copyright-text a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	color: #F9F9F9;
}

.footer-rrss-links-site{
	Text-align: center;
	margin-bottom: 28px;
}

.footer-rrss-links-site a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 20px;
	line-height: 26px;
	text-align: center;
	color: #F0EEEA;
}

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

	.footer-rrss-links-site a{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 300;
		font-size: 17px;
		line-height: 26px;
		text-align: center;
		color: #F0EEEA;
	}
	/*#products .thumbnail-container .product-thumbnail img, 
	.featured-products .thumbnail-container .product-thumbnail img, 
	.product-accessories .thumbnail-container .product-thumbnail img, 
	.product-miniature .thumbnail-container .product-thumbnail img {
		max-width: 100%!important;
	}*/

}
/*Footer: end*/

/*PLP: begin*/
body#category .block-category .block-category-inner {
    display: block;
}

body#category .block-category .block-category-inner .category-cover img {
    max-width: 100%;
    height: auto;
    width: auto;
}

#products .products{
    clear: both;
}

#products .product-miniature{
    margin: 0;
}

#products .thumbnail-container{
    position: relative;
    margin-bottom: 1.563rem;
    height: 400px;
    width: 100%;
    background: transparent;
    box-shadow: none;
}

body#category #left-column,
body#category #js-product-list-header h1,
#products .product-flags,
#products .highlighted-informations,
#products .regular-price {
    display: none;
}

body#category #js-product-list-header .block-category.card{
	background: transparent;
	box-shadow: none;
	border: none;
	padding: 0px 0px;
}

#products .product-description{
    position: absolute;
    z-index: 3;
    background: transparent;
    width: 100%;
    bottom: 0;
    height: 70px;
}

#products .product-description .h3.product-title{
	text-align: left;
	padding-left: 20px;
    padding-right: 20px;
}

#products .product-description .h3.product-title a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 1.5rem;
	text-align: left;
	color: #FFF;
}

#products .product-description span.price{
	display: block;
	text-align: right;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
	color: #FFFFFF;
	padding-right: 20px;
}

#products .mc-add-btn{
	display: block;
	margin: 10px auto;
	padding: 18px 20px;
	width: 90%;
	border: solid 1px #E5E5E5;
	text-align: center;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	text-transform: uppercase;
}

#products .mc-add-btn:hover{
	border: solid 1px #fff;
	color: #000;
	background: #fff;
}

#products .pagination {
    display: block;
    padding-left: 0;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-radius: 0;
    clear: both;
    margin-top: 114px;
    text-align: right;
}
/*PLP: end*/

/*cart - checkout: begin*/
body#cart {
    background-color: #000;
}

body#cart .card {
    background-color: #000;
    border: 1px solid rgba(0,0,0,.125);
}

body#cart h1.h1{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 29px;
	line-height: 35px;
	color: #908161;
}

body#cart .product-line-info a.label{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 29px;
	color: #908161;
}

body#cart .product-price{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 17px;
	line-height: 26px;
	color: #F7F3F0;
}

body#cart .product-line-grid-right .cart-line-product-actions .remove-from-cart{
    color: #fff;
    display: inline-block;
    margin-top: 0.3125rem;
}

body#cart .card.cart-summary .cart-summary-line .label{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 300;
	font-size: 17px;
	line-height: 26px;
	color: #EBE5CB;
}

body#cart .card.cart-summary .cart-summary-line .value{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	color: #F7F3F0;
}

body#cart .card-block.cart-summary-totals .cart-summary-line.cart-total {
    background-color: transparent;
    padding: 0.5rem;
}

body#cart .bootstrap-touchspin input.form-control, 
body#cart .bootstrap-touchspin input.input-group {
    color: #fff;
    background-color: transparent;
    height: 2.5rem;
    padding: 0.175rem 0.5rem;
    width: 3rem;
    border: 1px solid #fff;
    float: left;
}

body#cart .bootstrap-touchspin .btn-touchspin {
    background-color: transparent;
    border: 1px solid #fff;
    height: 1.3125rem;
    color: #fff;
}

body#cart .checkout.cart-detailed-actions .btn.btn-primary{
	display: block;
	margin: 40px auto;
	padding: 10px 20px;
	width: 90%;
	border: solid 1px #E5E5E5;
	text-align: center;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	text-transform: uppercase;
	background: transparent;
}

body#cart .checkout.cart-detailed-actions .btn.btn-primary:hover{
	border: solid 1px #fff;
	color: #000;
	background: #fff;
}

body#cart .has-discount .discount {
    display: none;
}

body#cart h1.h1{
	float: left;
}

body#cart .mc-return-to-buy{
	float: right;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	text-align: center;
	text-decoration-line: underline;
	text-transform: uppercase;
	color: #EBE5CB;
}

body#checkout {
    background: #fff;
}


body#checkout section.checkout-step {
    box-shadow: none;
    border-bottom: none;
}

body#checkout .card {
    box-shadow: none;
    border: none;
}

body#checkout .step-title.h3{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 29px;
	color: #000000;
}

body#checkout .form-control {
    background: #F9F8F6;
    color: #908161;
    border: none;
    border-bottom: solid 1px #000;
    padding: 0.5rem 1rem;
}

body#checkout .btn-primary {
    font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	color: #000000;
    background-color: #F7F3F0;
	border: 1px solid #000000;
}

body#checkout section.checkout-step .form-footer {
    text-align: left;
    display: flex;
    justify-content: center;
}

body#checkout .mc-cart-summary-title{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	color: #908161;
}

body#checkout .cart-summary-products a {
    color: #3E3E3E;
    text-decoration: none;
}

body#checkout .product-price {
    color: #3E3E3E;
    display: inline-block;
}

body#checkout .forgot-password{
	margin: 15px 0px;
}

body#checkout .forgot-password a{
	color: #3E3E3E;
}

body#checkout section.checkout-step .address-item.selected {
    background: #fff;
    border: 3px solid #000;
}

body#checkout .custom-radio input[type=radio]:checked+span {
    background-color: #000;
}
/*cart - checkout: end*/

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

	::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	  color: #fff !important;
	  opacity: 1; /* Firefox */
	}

	:-ms-input-placeholder { /* Internet Explorer 10-11 */
	  color: #fff !important;
	}

	::-ms-input-placeholder { /* Microsoft Edge */
	  color: #fff !important;
	}

	#header {
    	background: transparent;
    	color: #fff;
	}

	.slick-dots li button:before {
	    font-family: 'slick';
	    font-size: 16px;
	    line-height: 20px;
	    position: absolute;
	    top: 0;
	    left: 0;
	    width: 20px;
	    height: 20px;
	    content: '•';
	    text-align: center;
	    opacity: .25;
	    color: #fff !important;
	    -webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
	}

	.slick-prev {
    	left: 4px;
	}

	.slick-next {
    	right: 4px;
	}

	.slick-prev, .slick-next {
    	z-index: 100;
	}

	.mc-h1 {
	    font-style: normal;
	    font-weight: 700;
	    font-size: 35px;
	    color: #fff;
	}

	.mc-info-zone .mc-text h3 {
	    font-style: normal;
	    font-weight: 700;
	    font-size: 24px;
	}

	.mc-info-zone .mc-text p, .mc-info-zone .mc-text span {
    	font-size: 17px;
	}

	.mc-descobrir-banner-2 h2 {
	    font-size: 35px;
	}

	.mc-descobrir-banner-2 p {
	    font-size: 20px;
	}

	.mc-descobrir-timeline ul.timeline-carousel li a.active {
	    font-size: 50px;
	}

	.mc-descobrir-map h2 {
	    font-size: 35px;
	    max-width: 90%;
	}
	
	.mc-btn {
    	font-size: 14px;
	}

	.mc-info-zone .mc-text {
	    min-height: 400px;
	    padding: 20px 20px;
	}

	.mc-descobrir-safras ul.safras-years li a.active,
	.mc-descobrir-safras div.safras-years div a.active {
	    font-size: 50px;
	    line-height: 48px;
	}

	.mc-descobrir-safras h2 {
    	margin-bottom: 0px;
	}

	.mc-descobrir-safras h2::after {
	    content: "";
	    width: 100px;
	    height: 1px;
	    background: #EBE5CB;
	    position: absolute;
	    left: 39%;
	    bottom: -10px;
	}

	.mc-descobrir-map ul.maps-carousel {
    	margin-bottom: 40px;
	}

	.mc-contact-zone {
    	padding: 20px 15px 20px 15px;
	}

	.mc-contact-zone h2 {
	    font-size: 29px;
	    line-height: 30px;
	    margin-bottom: 10px;
	}

	.mc-contact-box {
	    width: 93%;
	    display: block;
	    background: rgba(235, 229, 203, 0.35);
	    margin: 15px 15px;
	    padding: 40px 15px;
	    cursor: pointer;
	}

	/*PLP: begin*/
	body#category .category-cover {
    	display: block;
    	margin-bottom: 20px;
	}

	#products .product-miniature {
	    margin: 15px 20px;
	    width: 100%;
	    display: block;
	    min-height: auto;
	}

	body#category .mc-buy-filtro {
	    height: 100%;
	    width: 0;
	    position: fixed;
	    z-index: 1;
	    top: 0;
	    right: 0;
	    background: #19191A;
	    overflow-x: hidden;
	    padding-top: 0px;
	    transition: 0.5s;
	    z-index: 100;
	}

	.mc-buy-mobile-filter a{
	    height: 80px;
	    padding: 0px 8px 0px 0px;
	    text-decoration: none;
	    font-size: 25px;
	    color: #818181;
	    display: block;
	    transition: 0.3s;
	}

	.mc-buy-mobile-filter .nav-filter-title {
	    display: block;
	    width: 80%;
	    height: 100%;
	    float: left;
	    border-right: 0.5px solid #3E3E3E;
	    padding: 40px 0px 0px 15px;
	}

	.mc-buy-mobile-filter .nav-filter-close {
	    display: block;
	    width: 20%;
	    height: 100%;
	    float: left;
	    border-left: 0.5px solid #3E3E3E;
	    font-size: 80px;
	    padding: 27px 0px 0px 0px;
	    text-align: center;
	}

	.mc-buy-zone .mc-buy-filtro .form-group {
    	border: none;
    	border-bottom: solid 1px #3E3E3E;
    	padding: 10px 0px 10px 15px;
	}

	.mc-buy-filtro .nav-buttons-wrapper .nav-buttons {
	    position: absolute;
	    bottom: 15px;
	    width: 100%;
	    padding: 20px 15px 0px 15px;
	    border-top: solid 1px #3E3E3E;
	    text-align: center;
	}

	.mc-buy-filtro .nav-buttons-wrapper .nav-buttons .mc-btn-white-full-width {
	    width: 80%;
	    padding: 5px 40px;
	    border: solid 1px #EBE5CB;
	    color: #000 !important;
	    font-size: 20px;
	    text-transform: uppercase;
	    text-align: center;
	    cursor: pointer;
	    background: #EBE5CB;
	    margin-top: 15px;
	}

	.mc-buy-zone .mc-buy-info h2 {
	    font-size: 20px;
	    line-height: 25px;
	    text-align: left;
	    display: block;
	    width: 60%;
	    float: left;
	    height: 40px;
	    border-top: solid 1px #3E3E3E;
	    border-left: solid 1px #3E3E3E;
	    border-bottom: solid 1px #3E3E3E;
	    border-right: solid 0.5px #3E3E3E;
	    padding: 10px 10px;
	}

	.mc-buy-zone .mc-filter-trigger-mobile{
		display: block;
	    width: 40%;
    	float: right;
    	height: 40px;
	    border-top: solid 1px #3E3E3E;
	    border-left: solid 0.5px #3E3E3E;
	    border-bottom: solid 1px #3E3E3E;
	    border-right: solid 1px #3E3E3E;
	    padding: 10px 10px;
	}

	.mc-buy-zone .mc-buy-info p {
	    font-size: 17px;
	    clear: both;
	}
	/*PLP: end*/

	/*Ficha Producto: begin*/
	.mc-banner {
	    min-height: 100px;
	    background-color: #fff;
	    /*padding-top: 10px;*/
	    background-image: none;
	}

	.mc-product-buy-zone.mc-banner p, .mc-product-buy-zone.mc-banner span {
    	margin-bottom: 15px;
    	color:#3E3E3E;
	}

	span.mc-btn.add-to-cart2ProductList {
		border: 1px solid #3E3E3E;
		color: #3E3E3E !important;
	}

	.mc-info-links a {
	    color:#3E3E3E;
	}

	.mc-form-buy .mc-btn-square, .mc-form-buy .form-control {
	    width: 35px;
	    height: 35px;
	    display: inline;
	    padding: 5px 5px;
	    border: solid 1px #3E3E3E;
	    color: #3E3E3E;
	    font-size: 35px;
	}

	.mc-product-info {
    	padding: 40px 0%;
	}

	.mc-product-info .mc-product-extra-info-box {
    	margin-top: 15px;
    	padding: 0px 8%;
	}
	
	/*Ficha Producto: end*/

	/*Footer: begin*/
	.footer-container .links .h3 {
    	line-height: 1.5;
    	font-size: 1rem;
    	color: #fff;
	}

	.footer-container .links ul {
    	background-color: transparent;
    	margin-bottom: 0;
	}
	/*Footer: end*/

	body#cms .mc-banner {
    	background-color: #000;
	}

	.mc-product-buy-zone {
    	padding: 0px 15px;
	}

	.mc-product-description {
    	background-color: #F9F8F6;
    	padding: 20px 8%;
	}

	.mc-info-zone-clear .mc-text h3 {
    	font-style: normal;
    	font-weight: 700;
    	font-size: 42px;
    	margin-top: 30px;
	}

	.mc-copyright-text{
    	text-align: center;
    	padding-top: 5px;
	}

	.mc-info-zone .mc-btn {
    	padding: 11px 48px !important;
	}

	.mc-ver-safras {
    	min-height: 70px;
    	margin-top: 25px;
	}

	body#index .elementor-slick-slider .slick-arrows-inside .slick-prev {
    	left: 129px;
	}

	body#index .elementor-slick-slider .slick-arrows-inside .slick-next {
    	right: 116px;
	}

	body#index .elementor-slick-slider .slick-prev, 
	body#index .elementor-slick-slider .slick-next {
    	top: 96%;
	}

	body#index article .thumbnail:after {
	    content: " ";
	    position: absolute;
	    left: 30px;
	    right: 30px;
	    bottom: 0;
	    top: 20px;
	    border-radius: 50% 50% 0px 0px;
	    background: #ebe5cb;
	    z-index: 1;
	    padding-left: 30px;
	}

	.mc-home-enologo{
		padding-bottom: 20px;
	}

	.mc-descobrir-banner-1 .mc-text {
	    min-height: 597px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 0px 60px;
	    justify-content: end;
	    padding-bottom: 80px;
	    position: relative;
	}

}

/*Section Enologo*/
.mc-product-description.mc-enologo-description {
    background-color: #E5E5E5;
    padding: 100px 8%;
}
/*Section Enologo*/

/*Sections Main Banners*/
#mc-banner-home{
	/*background-color: #19191A;
	background-image: url("/melchor/img/home-banner-ppal-desk.png") !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;*/
	position: relative;
	height: auto;
	overflow: hidden;
}

	#mc-banner-home #mc-home-video {
	  position: absolute;
	  z-index: 0;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  min-width: 100%;
	  min-height: 100%;
	}

	#mc-banner-home .mc-text-wrapper {
	  position: absolute;
	  z-index: 1;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  background: rgba(0, 0, 0, 0.5);
	  color: #f1f1f1;
	  width: 100%;
	  /*padding-bottom: 14%;*/
	  display: flex;
      flex-direction: column;
      justify-content: center; /*flex-end;*/
      padding: 1rem;
	}

body#cms .mc-descobrir-banner-1{
	/*min-height: 800px;*/
	background-image: url("/img/descobrir-banner-ppal-desk.png") !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	height: auto;
    overflow: hidden;
}

body#cms .mc-descobrir-banner-2{
	background-image: url("/img/descobrir-uma-historia-desk.png") !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

body#cms .mc-banner-descobrir-3{
	background-image: url("/img/descobrir-um-terroir-desk2.jpg") !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;

}

body#cms .mc-banner-descobrir-4 {
	background-image: url("/img/descobrir-um-vinho2.jpg") !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center;
}

body#cms .mc-banner-enologo{
	background-image: url("/img/enologo-enrique-tirado-desk.png") !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center;
}

body#cms #mc-contato-banner{
	background-image: url("/img/contato-banner-ppal-desk.png") !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
}

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

	/*
	#mc-banner-home{
		background-color: #19191A;
		background-image: url("/melchor/img/home-banner-ppal-mob.png") !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}
	*/

	#mc-banner-home #mc-home-video {
	  position: absolute;
	  z-index: 0;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  min-width: 100%;
	  min-height: 100%;
	  object-fit: cover;
	}


	body#cms .mc-descobrir-banner-1{
		background-image: url("/img/descobrir-banner-ppal-mob.png") !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}

	body#cms .mc-descobrir-banner-2{
		background-image: url("/img/descobrir-uma-historia-mob.png") !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}

	/*body#cms .mc-banner-descobrir-3{
		background-image: url("/melchor/img/descobrir-um-terroir-mob.png") !important;
		background-size: cover important;
		background-repeat: no-repeat !important;
	}

	body#cms .mc-banner-descobrir-4{
		background-image: url("/melchor/img/descobrir-um-vinho-mob.png") !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}*/

	body#cms .mc-banner-enologo{
		background-image: url("/img/enologo-enrique-tirado-mob.png") !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
		background-position-x: right;
	}

	body#cms #mc-contato-banner{
		background-image: url("/img/contato-banner-ppal-mob.png") !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}

}

/*@media screen and (min-width: 1500px){

	#mc-banner-home .mc-text-wrapper {
	  padding-bottom: 8%;
	  display: flex;
      flex-direction: column;
      justify-content: flex-end;
	}

}*/
/*Sections Main Banners*/

/*nav mobile: begin*/

.navigation{
	display:none;
}

.melchor-logo-mobile--img{
	background-color:#90805F;
	padding:10px 10px;
	text-align:center;
}

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

	.mc-nav-mobile{
	    background: #000;
		height: 76px;
		/*position: fixed;
		top: 0;
		z-index: 999;
		right: 0;
		left: 0; */
	}

	.mc-nav-mobile > .row{
		height: 100%;
	}

	.mc-nav-number-tittle{
		color: #3E3E3E !important;
		padding-right: 5px !important;
	}

	.mc-nav-mobile-first-level,
	.mc-nav-mobile-second-level,
	.mc-nav-mobile-third-level{
		text-align: left !important;
	}

	.mc-nav-mobile-second-level,
	.mc-nav-mobile-third-level{
		display: none;
	}

	.mc-nav-mobile-second-level{
		margin-left: 30px;
	}

	.mc-nav-mobile-third-level{
		margin-left: 30px;
	}

	.mc-nav-mobile-first-level li{
		margin-bottom: 10px;
	}

	.mc-nav-mobile-first-level li a,
	.mc-nav-mobile-first-level li a span{
		font-family: 'Cormorant Garamond' !important;
		font-style: normal !important;
		font-weight: 700 !important;
		font-size: 29px !important;
		line-height: 35px !important;
		color: #FFFFFF !important;
	}

	.mc-nav-mobile-second-level li{
		margin-bottom: 10px;
	}

	.mc-nav-mobile-second-level li a,
	.mc-nav-mobile-second-level li a span{
		font-family: 'Cormorant Garamond' !important;
		font-style: normal !important;
		font-weight: 700 !important;
		font-size: 26px !important;
		line-height: 35px !important;
		color: #EBE5CB !important;
	}

	.mc-nav-mobile-third-level li{
		margin-bottom: 10px;
	}

	.mc-nav-mobile-third-level li a,
	.mc-nav-mobile-third-level li a span{
		font-family: 'Cormorant Garamond' !important;
		font-style: normal !important;
		font-weight: 500 !important;
		font-size: 24px !important;
		line-height: 29px !important;
		color: #908161 !important;
	}

	.mc-nav-mobile-cart,
	.mc-nav-mobile-logo{
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.mc-nav-mobile-cart{
		position: relative;
	}

	.mc-nav-mobile-cart img{
		width: 18px;
		height: 18px;
	}

	.mc-nav-mobile-cart .totalCartProducts {
	    position: absolute;
	    top: 22px;
	    right: 10px;
	    height: 15px;
	    width: 15px;
	    background: #EBE5CB;
	    line-height: 10px;
	    text-align: center;
	    color: #908161;
	    font-size: 12px;
	}

	.mc-nav-mobile-sign-in{
	    position: absolute;
	    width: 100%;
	    bottom: 30px;
	    left: 10px;
	}

	.mc-nav-mobile-sign-in a{
		font-family: 'Cormorant Garamond' !important;
		font-style: normal !important;
		font-weight: 300 !important;
		font-size: 17px !important;
		line-height: 26px !important;
		color: #FFFFFF !important;
		padding: 5px 5px 0px 5px;
	}

	.navigation{
		display:block;
	}

	.navigation .mc-nav-mobile-search {
	    display: block;
	    width: 73%;
	    float: left;
	    border-bottom: solid 1px #E5E5E5;
	    border-right: solid 0.5px #E5E5E5;
	    height: 69px;
	    display: flex;
	    align-items: center;
	    padding-left: 15px;
	    margin-bottom: 15px;
	}

	.navigation .mc-nav-mobile-search input{
		border: none;
		background: transparent;
		color: #fff;
		font-size: 17px;
	}

	.navigation .mc-nav-mobile-close{
		display: block;
	    width: 27%;
	    float: left;
	    border-bottom: solid 1px #E5E5E5;
	    border-left: solid 0.5px #E5E5E5;
	    height: 69px;
	}

	.navigation__checkbox {
  		display: none; 
	}

	.navigation__button {
	  background-color: #000;
	  height: 50px;
	  width: 50px;
	  position: fixed;
	  top: 15px;
	  left: 20px;
	  border-radius: 50%;
	  z-index: 2000;
	  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
	  text-align: center;
	  cursor: pointer; 
	  transition: all .2s; 
	}

	.navigation__background {
	  height: 45px;
	  width: 45px;
	  border-radius: 50%;
	  position: fixed;
	  top: 20px;
	  left: 20px;
	  /*background-image: radial-gradient(#19191B, #000);*/
	  background: #000;
	  z-index: 1000;
	  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); 
	}

	.navigation__nav {
	  height: 100vh;
	  position:fixed;
	  top: 0;
	  left: 0;
	  z-index: -1;
	  opacity: 0;
	  width: 0;
	  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}

	.navigation__item {
	  margin: 1rem; 
	}

	.navigation__link:link span, .navigation__link:visited span {
	  margin-right: 1.5rem;
	  display: inline-block; 
	}

	.navigation__link:hover, 
	.navigation__link:active {
	  background-position: 100%;
	  color: #fff;
	  /*transform: translateX(1rem);*/
	}

	.navigation__checkbox:checked ~ .navigation__button {
		top: 10px;
	    left: 80%;
	}

	.navigation__checkbox:checked ~ .navigation__background {
	  transform: scale(80); 
	}

	.navigation__checkbox:checked ~ .navigation__nav {
		  opacity: 1;
		  width: 100%; 
		  z-index: 1500;
	}

	.navigation__nav .mc-nav-mobile-first-level{
		display: none;
	}

	.navigation__checkbox:checked ~ .navigation__nav .mc-nav-mobile-first-level{
		display: block;
	}

	.navigation__icon {
		position: relative;
	  	margin-top: 25px; 
	}

	.navigation__icon, .navigation__icon::before, .navigation__icon::after {
		width: 20px;
		height: 2px;
		background-color: #fff;
		display: inline-block; 
	}
	  
	.navigation__icon::before, .navigation__icon::after {
	    content: "";
	    position: absolute;
	    left: 0;
	    transition: all .2s; 
	}
	  
	.navigation__icon::before {
	    top: -10px; 
	}

	.navigation__icon::after {
	    top: 10px; 
	}

	.navigation__button:hover .navigation__icon::before {
	  top: -10px; 
	}

	.navigation__button:hover .navigation__icon::after {
	  top: 10px; 
	}

	.navigation__checkbox:checked + .navigation__button .navigation__icon {
	  background-color: transparent; }

	.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
	  top: 0;
	  transform: rotate(135deg); 
	}

	.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
	  top: 0;
	  transform: rotate(-135deg); 
	}

}

/*nav mobile: end*/

/*Ajustes: begin*/
@media (min-width: 1200px) {

	.container {
		width: 1330px;
		max-width: 100%
	}

}

body#category section#wrapper {
	background: #19191a;
}

article .thumbnail:after {
	content: " ";
	position: absolute;
	left: 20px;
	right: 20px;
	bottom: 0;
	top: 40px;
	border-radius: 50% 50% 0px 0px;
	background: #ebe5cb;
	z-index: 1;
	padding-left: 30p;
}

article .thumbnail img {
	position: relative;
	z-index: 100;
}

#products .thumbnail-container .product-thumbnail img, 
.featured-products .thumbnail-container .product-thumbnail img, 
.product-accessories .thumbnail-container .product-thumbnail img, 
.product-miniature .thumbnail-container .product-thumbnail img {
	position: inherit;
	max-width: 50%;
	height: auto;
}

#products .thumbnail-container .product-thumbnail, 
.featured-products .thumbnail-container .product-thumbnail, 
.product-accessories .thumbnail-container .product-thumbnail, 
.product-miniature .thumbnail-container .product-thumbnail {
	height: inherit;
}

#products .thumbnail-container {
	height: inherit;
}

#products .product-description {
	position: inherit;
	height: inherit;
}

img.img-center {
	margin: 0 auto;
	display: block;
}

article span.year {
	font-size: 28px;
	padding: 0px 20px;
	line-height: 0;
	font-weight: bold;
	color: #918061;
}

.col-xs-12.col-sm-12.col-md-12.col-lg-12.mc-descobrir-video-wrapper {
	padding: 0;
}

/*.mc-descobrir-video{
	padding: 0;
}*/

.col-xs-12.col-sm-12.col-md-12.col-lg-6.mc-img img {
	width: 100%;
}

.elementor-image img{
	width: 100%;
}

.mc-product-stats > .row > div{
	padding: 0px 0px;
}
/*Ajustes: end*/

/*Product carousel home*/
body#index .slick-slide {
    min-height: 1px;
    margin-top: 120px;
    padding: 0px 25px;
}

body#index .product-miniature{
    margin: 0;
}

body#index .thumbnail-container{
    position: relative;
    margin-bottom: 1.563rem;
    height: 400px;
    width: 100%;
    background: transparent;
    box-shadow: none;
}

body#index .product-flags,
body#index .highlighted-informations,
body#index .regular-price {
    display: none;
}

body#index .product-description{
	width: 100%;
	background: transparent;
    position: relative !important;
}

body#index .product-description .h3.product-title{
	text-align: left;
}

body#index .product-description .h3.product-title a{
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 28px;
	text-align: left;
	color: #FFF;
	padding-left: 30px;
	padding-right: 30px;
}

body#index .product-description span.price{
	display: block;
	text-align: right;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 500;
	font-size: 42px;
	line-height: 51px;
	color: #FFFFFF;
}

body#index .mc-add-btn{
	display: block;
	margin: 40px auto;
	padding: 18px 20px;
	width: 90%;
	border: solid 1px #E5E5E5;
	text-align: center;
	font-family: 'Cormorant Garamond';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	text-transform: uppercase;
}

body#index .mc-add-btn:hover{
	border: solid 1px #fff;
	color: #000;
	background: #fff;
}

body#index .thumbnail-container {
	height: inherit;
}

body#index .product-description {
	position: inherit;
	height: inherit;
}
/*Product carousel home*/

/*Ajustes Mobile: begin */
@media screen and (min-width: 0px) and (max-width: 767px){

	.navigation__list.mc-nav-mobile-first-level{
		margin-top: 90px;
	}

	.map-number{
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.mc-product-info .mc-product-stats:first-of-type{
		margin-top: 20px;
	}

	.mc-nav-mobile-logo img{
		height: 40px;
	}

	.map-banner{
		padding: 0px;
		float: right;
	}

	.map-banner img{
		width: 100%;
	}

	.map-number{
		float: left;
	}

	.mc-descobrir-timeline .tab-content>.active {
    	padding: 0px;
	}

	.mc-descobrir-timeline .mc-timeline-image{
		padding: 0px;
	}

	.map-number, .map-description {
    	display: flex;
    	justify-items: center;
    	align-items: center;
    	min-height: 0px;
    	text-align: center;
	}

	.mc-descobrir-map .map-description p{
		font-family: 'Cormorant Garamond';
		font-style: normal;
		font-weight: 500;
		font-size: 17px;
		line-height: 26px;
		color: #F7F3F0;
		margin: 15px 0px;
	}

	.maps-carousel .slick-prev, 
	.maps-carousel .slick-next {
	    top: 91%;
	}

	.maps-carousel .slick-prev {
    	left: 40%;
	}

	.maps-carousel .slick-next {
    	right: 40%;
	}

	.timeline-carousel .slick-prev, 
	.timeline-carousel .slick-next {
	    top: 76%;
	}

	.timeline-carousel .slick-prev {
    	left: 40%;
	}

	.timeline-carousel .slick-next {
    	right: 40%;
	}

	.safras-years .slick-prev, 
	.safras-years .slick-next {
	    top: 91%;
	}

	.safras-years .slick-prev {
    	left: 40%;
	}

	.safras-years .slick-next {
    	right: 40%;
	}	

	/*body#product,
	body#cms{
		padding-top:76px !important;
	}*/

	#um-terroir .mc-h1 {
	    font-style: normal;
	    font-weight: 700;
	    font-size: 61px;
	    color: #fff;
	    padding: 15px 15px;
	    margin: 0px auto 0px auto;
	    width: 100%;
	    background: rgba(0, 0, 0, 0.7);
	}

	#um-terroir p {
	    margin-bottom: 40px;
	    color: #fff;
	    font-style: normal;
	    font-weight: 500;
	    font-size: 24px;
	    line-height: 29px;
	    background: rgba(0, 0, 0, 0.7);
	    padding-bottom: 15px;
	    display: block;
	    width: 100%;
	    margin: 0px auto 40px auto;
	    background: rgba(0, 0, 0, 0.7);
	}

	#nossas-safras img {
	    max-width: 30%;
	    margin-top:15px;
	}

	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text{
		min-height: 400px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 0px 60px;
	}

	.mc-btn {
	    padding: 12px 35px;
	    border: solid 1px #fff;
	    color: #fff !important;
	    font-size: 14px;
	    text-transform: uppercase;
	    text-align: center;
	    cursor: pointer;
	    background: transparent;
	}

	#mc-contato-banner .mc-text {
	    min-height: 453px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 0px 60px;
	    justify-content: end;
	    padding-bottom: 100px;
	}

	.mc-contact-box .mc-text-secondary {
	    font-style: normal;
	    font-weight: 300;
	    font-size: 18px;
	    line-height: 26px;
	    color: #000;
	    text-align: center;
	}

}
/*Ajustes Mobile: end */

/*Ajustes tablet small: begin*/
@media screen and (min-width: 768px) and (max-width: 1025px){

	.map-banner{
		padding: 0px;
		float: right;
	}

	.map-banner img{
		width: 100%;
	}

	.map-number{
		float: left;
	}

	.mc-descobrir-timeline .tab-content>.active {
    	padding: 0px;
	}

	.mc-descobrir-timeline .mc-timeline-image{
		padding: 0px;
	}

	.mc-nav-mobile-logo img{
		height: 60px;
	}

	.mc-btn {
	    font-size: 16px;
	}

	.mc-nav-mobile {
    	height: 100px;
	}

	.mc-nav-mobile-cart .totalCartProducts {
	    position: absolute;
	    top: 35px;
	    right: 31%;
	    height: 15px;
	    width: 15px;
	    background: #EBE5CB;
	    line-height: 10px;
	    text-align: center;
	    color: #908161;
	    font-size: 12px;
	}

	.mc-nav-mobile-sign-in {
	    position: absolute;
	    width: 30%;
	    bottom: unset;
	    left: unset;
	    right: 15px;
	    top: 90px;
	}

	.mc-info-zone .mc-text {
	    min-height: 387px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 20px 60px;
	}

	.navigation__list.mc-nav-mobile-first-level{
		margin-top: 90px;
	}

	.mc-timeline-image{
		text-align: center;
	}

	.mc-timeline-image img{
		width: 100%;
	}

	.map-banner img{
		width: 100%;
		margin: 15px 0px;
	}

	.mc-info-zone .mc-text {
	    min-height: 327px;
	}

	.mc-user-search input {
	    width: 140px;
	}

	.maps-carousel .slick-prev, 
	.maps-carousel .slick-next {
	    top: 91%;
	}

	.maps-carousel .slick-prev {
    	left: 40%;
	}

	.maps-carousel .slick-next {
    	right: 40%;
	}

	.timeline-carousel .slick-prev, 
	.timeline-carousel .slick-next {
	    top: 76%;
	}

	.timeline-carousel .slick-prev {
    	left: 40%;
	}

	.timeline-carousel .slick-next {
    	right: 40%;
	}

	.safras-years .slick-prev, 
	.safras-years .slick-next {
	    top: 91%;
	}

	.safras-years .slick-prev {
    	left: 40%;
	}

	.safras-years .slick-next {
    	right: 40%;
	}

	.mc-info-zone .mc-text h3 {
	    font-style: normal;
	    font-weight: 700;
	    font-size: 24px;
	}

	.mc-info-zone .mc-text p, .mc-info-zone .mc-text span {
	    margin-bottom: 40px;
	    font-family: 'Cormorant Garamond';
	    font-style: normal;
	    font-weight: 500;
	    font-size: 14px;
	    line-height: 20px;
	}

	#um-terroir .mc-h1 {
	    font-style: normal;
	    font-weight: 700;
	    font-size: 61px;
	    color: #fff;
	    padding: 15px 15px;
	    margin: 30px auto 0px auto;
	    width: 60%;
	    background: rgba(0, 0, 0, 0.7);
	}

	#um-terroir p {
	    margin-bottom: 40px;
	    color: #fff;
	    font-style: normal;
	    font-weight: 500;
	    font-size: 24px;
	    line-height: 29px;
	    background: rgba(0, 0, 0, 0.7);
	    padding-bottom: 15px;
	    display: block;
	    width: 60%;
	    margin: 0px auto 40px auto;
	    background: rgba(0, 0, 0, 0.7);
	}

	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text {
    	min-height: 400px;
    	padding: 0px 60px;
	}

	#nossas-safras .nossas-safras-text{
	    /*height: 700px;*/
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	}

}
/*Ajustes tablet small: end*/

/*Ajustes tablet standard: begin*/
@media screen and (min-width: 1026px) and (max-width: 1199px){

	.mc-nav-mobile-logo img{
		height: 60px;
	}

	/*.mc-btn {
	    font-size: 16px;
	}*/

	.mc-nav-mobile {
    	height: 100px;
	}

	.mc-nav-mobile-cart .totalCartProducts {
	    position: absolute;
	    top: 35px;
	    right: 31%;
	    height: 15px;
	    width: 15px;
	    background: #EBE5CB;
	    line-height: 10px;
	    text-align: center;
	    color: #908161;
	    font-size: 12px;
	}

	.mc-nav-mobile-sign-in {
	    position: absolute;
	    width: 30%;
	    bottom: unset;
	    left: unset;
	    right: 15px;
	    top: 90px;
	}

	.mc-info-zone .mc-text {
	    min-height: 387px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 20px 60px;
	}

	.navigation__list.mc-nav-mobile-first-level{
		margin-top: 90px;
	}

	.mc-timeline-image{
		text-align: center;
	}

	.mc-timeline-image img{
		width: 100%;
	}

	.map-banner img{
		width: 100%;
		margin: 15px 0px;
	}

	.mc-info-zone .mc-text {
	    min-height: 375px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 40px 60px;
	}

	.mc-info-zone .mc-text h3 {
	    font-style: normal;
	    font-weight: 700;
	    font-size: 24px;
	}

	.mc-info-zone .mc-text p, .mc-info-zone .mc-text span {
	    margin-bottom: 40px;
	    font-family: 'Cormorant Garamond';
	    font-style: normal;
	    font-weight: 500;
	    font-size: 16px;
	    line-height: 28px;
	}

	.mc-user-search input {
	    width: 140px;
	}

	.map-number,
	.map-description{
		display: flex;
	    justify-items: center;
	    align-items: center;
	    min-height: 250px;
	    text-align: center;
	}

	.maps-carousel .slick-prev, 
	.maps-carousel .slick-next {
	    top: 91%;
	}

	.maps-carousel .slick-prev {
    	left: 40%;
	}

	.maps-carousel .slick-next {
    	right: 40%;
	}

	.timeline-carousel .slick-prev, 
	.timeline-carousel .slick-next {
	    top: 76%;
	}

	.timeline-carousel .slick-prev {
    	left: 40%;
	}

	.timeline-carousel .slick-next {
    	right: 40%;
	}

	.safras-years .slick-prev, 
	.safras-years .slick-next {
	    top: 91%;
	}

	.safras-years .slick-prev {
    	left: 40%;
	}

	.safras-years .slick-next {
    	right: 40%;
	}

	#nossas-safras .nossas-safras-text{
	    height: 700px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	}

}

/*Ajustes tablet standard: end*/

/*Ajustes Desktop: begin*/

#products .pagination {
    margin-top: 0px !important;
    display: none;
}

.hidden-md-up.text-xs-right.up .btn.btn-secondary{
	display: none;
}

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

	#um-terroir .mc-h1 {
	    font-style: normal;
	    font-weight: 700;
	    font-size: 61px;
	    color: #fff;
	    padding:15px 15px;
	    margin:0px auto 0px auto;
	    width:35%;
	    background: rgba(0, 0, 0, 0.7);
	}

	#um-terroir p{
	    margin-bottom: 40px;
	    color: #fff;
	    font-style: normal;
	    font-weight: 500;
	    font-size: 24px;
	    line-height: 29px;
	    background: rgba(0, 0, 0, 0.7);
	    padding-bottom: 15px;
	    display: block;
	    width: 35%;
	    margin: 0px auto 40px auto;
	    background: rgba(0, 0, 0, 0.7);
	}

	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text {
	    min-height: 563px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 0px 60px;
	}

	.mc-info-zone .mc-text {
	    min-height: 400px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 20px 30px;
	}

	.mc-descobrir-info .mc-text p {
	    font-family: 'Cormorant Garamond';
	    font-style: normal;
	    font-weight: 500;
	    font-size: 16px;
	    line-height: 25px;
	    display: flex;
	    align-items: center;
	    text-align: center;
	    color: #F7F3F0;
	}

	.mc-info-zone .mc-text p, .mc-info-zone .mc-text span {
	    margin-bottom: 19px;
	    font-family: 'Cormorant Garamond';
	    font-style: normal;
	    font-weight: 500;
	    font-size: 20px16;
	    line-height: 25px;
	}

	.safras-years .nav-item{
		float: none;
	}

	.mc-nav-desktop ul li a, 
	.mc-nav-desktop ul li a:hover {
	    list-style: none;
	    padding: 5px 5px;
	    font-family: 'Cormorant Garamond';
	    font-style: normal;
	    font-weight: 700;
	    font-size: 24px;
	    text-align: center;
	    color: #FFFFFF !important;
	}

	.mc-nav-desktop {
    	padding: 0px 5%;
	}

	.mc-nav-desktop ul li {
	    list-style: none;
	    padding: 10px 10px;
	}

	#nossas-safras .nossas-safras-text{
	    height: 700px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	}

}

@media screen and (min-width: 1300px){

	.safras-years .nav-item{
		float: none;
	}

	.mc-nav-desktop ul li a, 
	.mc-nav-desktop ul li a:hover {
	    font-size: 24px;
	}

	.mc-nav-desktop {
	    padding: 0px 20px;
	}

	.mc-nav-desktop ul li {
	    list-style: none;
	    padding: 10px 15px;
	}

	.mc-descobrir-timeline .tab-content>.active {
    	padding: 0px;
	}

	.mc-descobrir-timeline .mc-timeline-image{
		padding: 0px;
	}

	#nossas-safras .nossas-safras-text{
	    height: 700px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	}

}

@media screen and (min-width: 1585px){

	.mc-info-zone .mc-text {
	    min-height: 502px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 20px 55px;
	}

	.mc-info-zone .mc-img img {
	    display: block;
	    margin: auto;
	    max-height: 560px;
	    object-fit: fill;
	}

}
/*Ajustes Desktop: end*/
@media (min-width: 768px) {
	body#category .container{
		width: 960px;
	}
}
@media (max-width: 950px) and (min-width: 768px) {
	#products .product-description span.price {
		font-size: 25px;
		line-height: 30px;
	}
	article span.year {
		font-size: 25px;
	}
	body#category .mc-original-price,
	#products .mc-add-btn {
		font-size: 19px;
	}
	#products .mc-add-btn {
		padding: 10px 20px;
	}
	#products .product-description .h3.product-title a {
		font-size: 1.2rem;
		text-align: left;
	    display: -webkit-box;
	    -webkit-line-clamp: 2;
	    -webkit-box-orient: vertical;
	    text-overflow: ellipsis;
	    overflow: hidden;
	    text-decoration: none;
	}
	#products .product-description .h3.product-title {
	    height: 2.2rem;
	}
}
body#cms #uma-historia #mc-home-history {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

/*sticky*/
.sticky-top,
header#header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1080px){
	.mc-banner .mc-text {
	    min-height: 430px;
	    display: flex;
	    flex-direction: column;
	    justify-content: center;
	    text-align: center;
	    padding: 0px 60px;
	    justify-content: end;
	    padding-bottom: 230px;
	}
}

/**/
.col-xs-12.col-sm-12.col-md-6.col-lg-6.mc-img img {
    width: 100%;
}
.text-descobrir-best {
	top: 0;
    position: absolute;
    right: 0;
    padding: 40px;
}
#um-terroir .mc-h1,
#cms .mc-info-zone .mc-text h3,
#cms #um-vinho .text-descobrir-best .mc-h1 {
    font-size: 42px;
}
#um-terroir p,
#cms #um-vinho .text-descobrir-best p,
#cms #premios p.mc-awards-years {
    font-size: 29px;
}
#cms .mc-info-zone .mc-text p {
    font-size: 24px;
}
@media screen and (min-width: 1150px) and (max-width: 1350px){
	.mc-descobrir-banner-1 .mc-text {
		min-height: 600px;
	}
	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text {
		min-height: 460px;
	}
}
@media screen and (min-width: 1081px) and (max-width: 1149px){
	.mc-descobrir-banner-1 .mc-text {
		min-height: 500px;
	}
	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text {
		min-height: 400px;
		padding: 0px 30px;
	}
}
@media screen and (min-width: 992px) and (max-width: 1280px){
	.mc-info-zone .mc-text {
		padding: 20px 20px;
	}
	.mc-info-zone .mc-text p {
    	margin-bottom: 20px;
    }
    .mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text {
		min-height: 400px;
		padding: 0px 30px;
	}
}
@media screen and (min-width: 1100px) and (max-width: 1280px){
    .mc-info-zone .mc-text {
        min-height: 350px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1099px){
	.mc-info-zone .mc-text {
        min-height: 310px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1080px){
	.text-descobrir-best {
		padding: 10px;
	}
	.text-descobrir-best .mc-h1 {
		font-size: 40px;
	}
}
@media screen and (min-width: 907px) and (max-width: 991px){
	.mc-info-zone .mc-text {
        padding: 100px 30px;
    }
}
@media screen and (min-width: 576px) and (max-width: 991px){
	.mc-timeline-image img {
        width: 50%;
    }
    #nossas-safras img {
    	max-width: 15%;
    }
    .mc-descobrir-safras ul.safras-years li a, .mc-descobrir-safras div.safras-years div a {
    	font-size: 35px;
    }
}
@media screen and (min-width: 768px) and (max-width: 906px){
    .mc-info-zone .mc-text {
        min-height: 384px;
        padding: 20px 20px;
    }
    .mc-info-zone .mc-text p {
    	margin-bottom: 20px;
    }
    .mc-info-zone .mc-btn {
    	padding: 10px !important;
    }
}
@media screen and (min-width: 480px) and (max-width: 767px){
	.col-xs-12.col-sm-12.col-md-6.col-lg-6.mc-img img {
	    width: auto;
	}
	.mc-info-zone .mc-text {
        min-height: auto;
        padding: 30px 60px;
    }
    .mc-info-zone .mc-text p {
    	margin-bottom: 20px;
    }
    .mc-home-enologo .col-xs-12.col-sm-12.col-md-6.col-lg-6.mc-img img {
    	width: 50%;
    }
}
@media screen and (max-width: 991px){
	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text {
		min-height: auto;
		padding: 0px 30px;
	}
}
@media screen and (max-width: 767px){
	body#cms #uma-historia #mc-home-history {
		object-fit: cover;
	}
	body#cms .mc-descobrir-banner-2.mc-banner .mc-text {
        padding-bottom: 130px;
        min-height: 400px;
	}
	.mc-banner p, 
	#mc-banner-home .mc-btn,
	.mc-btn, 
	.mc-descobrir-story p,
	#um-terroir p, #cms #um-vinho .text-descobrir-best p,
	.mc-banner span {
		font-size: 20px;
	}
	.mc-info-zone .mc-text p {
		margin-bottom: 1rem;
	}
	.mc-descobrir-banner-1 ul li a,
	.mc-product-buy-zone.mc-banner .mc-original-price,
	#category .mc-buy-zone .mc-buy-info h1 {
		font-size: 24px;
	}
	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text h3,
	#um-terroir .mc-h1, #cms .mc-info-zone .mc-text h3, #cms #um-vinho .text-descobrir-best .mc-h1,
	#cms #premios.mc-awards h2,
	.mc-product-buy-zone.mc-banner .mc-sale-price, .mc-product-description h2,
	.mc-product-awards h2,
	#product .mc-info-zone-clear .mc-text h3 {
		font-size: 35px;
	}
	.mc-descobrir-timeline .tab-content .tab-pane .mc-timeline-text p,
	#cms .mc-info-zone .mc-text p,
	#cms .mc-descobrir-safras .tab-content .tab-pane p,
	.mc-product-description p {
		font-size: 17px;
	}
	#cms .mc-info-zone .mc-text {
   	 min-height: auto;
	}
	#cms .mc-awards .mc-award-wrapper {
	    padding: 20px 4%;
	}
	#cms .mc-awards .mc-award-wrapper .mc-award-img-1 {
		max-width: 80%;
	}
	#cms .mc-descobrir-safras .tab-content .tab-pane h3,
	#product .mc-price-info h1.producttitle,
	#product .mc-price-info h2  {
		font-size: 42px;
		line-height: 51px;
	}

}