@font-face{
	font-family: 'Montserrat';
	font-weight: 400;
	font-style: normal;
	src: url('/fonts/Montserrat-Regular.ttf') format('truetype');
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
	-webkit-box-shadow: 0 0 0px 1000px rgb(40,40,40) inset !important;
    -webkit-text-fill-color: white !important;
}
/* Geral */
.no-padding {
   padding: 0 !important;
}
.no-margin {
	margin: 0 !important;
}
#hideAll {
   position: fixed;
   width: 100%;
   left: 0px;
   right: 0px;
   top: 0px;
   bottom: 0px;
   background-color: white;
   z-index: 9999;
}
#loading-image {
    position: absolute;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -15px;
    width: 30px;
	height: 30px;
	border: 3px solid #f8f8f8;
	border-radius: 50%;
	border-top-color: #c0a062;
	animation: spin 1s ease-in-out infinite;
	-webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
  	-webkit-transform: rotate(360deg);
  	-moz-transform: rotate(360deg);
  	-ms-transform: rotate(360deg);
  	-o-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
  	-webkit-transform: rotate(360deg);
  	-moz-transform: rotate(360deg);
  	-ms-transform: rotate(360deg);
  	-o-transform: rotate(360deg);
  }
}
a{
    color: #282828;
    text-decoration: underline;
    text-align: left;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
a:hover {
    color: #c0a062;
}
a.btnShare{
	cursor: pointer;
}
/*Carousel animation overwrite */
.carousel .carousel-inner > .item.active.left {
    z-index: -1;
    transform: translate3d(-50%,0,0);
	-webkit-transform: translate3d(-50%,0,0);
	-moz-transform: translate3d(-50%,0,0);
	-ms-transform: translate3d(-50%,0,0);
	-o-transform: translate3d(-50%,0,0);
}
.carousel .carousel-inner > .item.next.left {
	z-index: 0;
}
.carousel .carousel-inner > .item.active.right {
	z-index: -1;
    transform: translate3d(50%,0,0);
	-webkit-transform: translate3d(50%,0,0);
	-moz-transform: translate3d(50%,0,0);
	-ms-transform: translate3d(50%,0,0);
	-o-transform: translate3d(50%,0,0);
}
.carousel .carousel-inner > .item.prev.right {
    z-index: 0;
}
/* Para alterar o timing do slide modificar também o js do bootsrap (Procurar por c.TRANSITION_DURATION=800 no ficheiro minificado)*/
.carousel .carousel-inner > .item {
	-webkit-transition: -webkit-transform .8s ease-in-out;
	-moz-transition: -moz-transform .8s ease-in-out;
	-ms-transition: -ms-transform .8s ease-in-out;
    -o-transition: -o-transform .8s ease-in-out;
    transition: transform .8s ease-in-out;
}
/* Header */
header{
	position: fixed;
	top: 0;
	height: auto;
	background-color: white;
	width: 100%;
	z-index: 999;
}
input{
	outline: none;
}
.header-wrapper-left {
    position: relative;
    display: block;
    height: 33px;
	margin-top: 30px;
}
.header-wrapper-center{
	position: relative;
	display: block;
	text-align: left;
	padding-top: 14px;
	padding-bottom: 10px;
	z-index: 2;
}
.header-wrapper-center-menu{
	position: relative;
	display: block;
	text-align: left;
	padding-top: 14px;
	padding-bottom: 10px;
	z-index: 2;
}
.header-wrapper-center-menu img,
.header-wrapper-center img{
	width: auto;
	height: auto;
}
.header-wrapper-right .fa-share-alt,
.header-wrapper-right .fa-times{
  	font-size: 20px;
    background-color: #565656;
    color: white;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
}
.header-wrapper-right .fa-facebook{
	display: none;
	font-size: 16px;
    background-color: #565656;
    color: white;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
}
.header-wrapper-right .fa-google-plus{
	display: none;
	font-size: 16px;
    background-color: #565656;
    color: white;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
}
.header-wrapper-right .fa-twitter{
	display: none;
	font-size: 17px;
    background-color: #565656;
    color: white;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
}
.close-icon,
.menu-icon{
	position: relative;
	display: inline-block;
	width: 24px;
	height: 16px;
	cursor: pointer;
	z-index: 3;
	float: right;
}
.close-icon.open,
.menu-icon.open{
	cursor: pointer;
}
.close-icon span,
.menu-icon span{
	position: relative;
	display: block;
	width: 24px;
	height: 2px;
	background-color: black;
	transition: all 0.5s, background 0s;
	-webkit-transition: all 0.5s, background 0s;
	-moz-transition: all 0.5s, background 0s;
	-ms-transition: all 0.5s, background 0s;
	-o-transition: all 0.5s, background 0s;
}
.close-icon span:nth-child(2),
.menu-icon span:nth-child(2){
	margin-top: 5px;
	margin-bottom: 5px;
}
.close-top-line,
.icon-top-line {
	background-color: black;
	top: 0px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}
.close-top-line.open,
.icon-top-line.open{
	background-color: white;
	top: 9px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}
.close-bottom-line,
.icon-bottom-line {
	background-color: black;
	top: 0px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}
.close-bottom-line.open,
.icon-bottom-line.open{
    background-color: white;
    top: 5px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.close-center-line,
.icon-center-line {
	left: 0px;
	margin-top: 5px;
    margin-bottom: 5px;
}
.close-center-line.open,
.icon-center-line.open{
	right: 0px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    opacity: 0;
}
.current-area {
    position: relative;
    display: block;
    padding-left: 20px;
    font-family: 'Montserrat';
    color: #c0a062;
    font-size: 15px;
    font-weight: 400;
    text-align: right;
    text-transform: uppercase;
    z-index: 3;
    margin-top: -2.5px !important;
    margin-right: 35px;
}
.menu-wrapper{
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 0;
	z-index: 1001;
	background-color: rgba(40,40,40,.97);
	transition: all 0.8s ease-in-out;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
}
.menu-wrapper.open{
	display: block;
	opacity: 1;
}
.newsletter{
	position: relative;
	display: block;
}
.newsletter #subscribe-newsletter{
    display: block;
    width: 60%;
    height: 74px;
    margin-left: calc((100% - 75%)/2);
}
.newsletter .btn_newsletter{
    position: relative;
    display: none;
    right: 0px;
    top: -6px;
    cursor: pointer;
    float: left;
    margin-left: 15px;
	width: 38px;
	height: 38px;
	background-color: white;
	border-radius: 50%;
}
.newsletter .btn_newsletter .newsletter-btn{
	position: absolute;
	display: block;
	top: 40%;
	left: 32%;
	width: 10px;
	height: 10px;
	border-top: 2px solid rgb(40,40,40);
	border-right: 2px solid rgb(40,40,40);
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg)
}
.newsletter input#email{
	position: relative;
    display: inline-block;
    width: 80%;
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: solid;
    border-width: 2px;
    border-color: #565656;
    font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
}
.newsletter input#email::-webkit-input-placeholder{
	font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 29px;
	text-align: left;
	padding-left: 15px;
}
.newsletter input#email::-moz-placeholder{
	font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	text-align: left;
	padding-left: 15px;
}
.newsletter input#email::-ms-placeholder{
	font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	text-align: left;
	padding-left: 15px;
}
.newsletter .label-wrapper{
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.newsletter .label-wrapper label#subscribe{
    position: relative;
    display: block;
    font-family: 'Montserrat';
	color:  #6e6d6d;
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	text-transform: uppercase;
}
.menu-social-wrapper .label-wrapper label#follow-us{
    position: relative;
    display: block;
    width: 100%;
    float: left;
    font-family: 'Montserrat';
	color:  #6e6d6d;
	font-size: 18px;
	font-weight: 400;
	line-height: 29px;
	text-align: center;
	text-transform: uppercase;
}
.close-menu{
	position: relative;
    display: block;
    font-family: 'Montserrat';
    color: #c0a062;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    margin-top: 40px;
    margin-left: 70px;
}
.navigation{
	position: relative;
	display: block;
	padding-top: 60px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.9s;
	-webkit-transition: opacity 0.9s;
	-moz-transition: opacity 0.9s;
	-ms-transition: opacity 0.9s;
	-o-transition: opacity 0.9s;
	transition-timing-function: linear;
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	-o-transition-timing-function: linear;
}
.navigation a {
	position: relative;
}
.navigation .menu-right{
	padding-top: 3px;
}
.navigation.open{
	opacity: 1;
	visibility: visible;
}
#menu-navigation-left,
#menu-navigation-right{
	text-align: center;
}
#menu-navigation-left .menu-subs,
#menu-navigation-right .menu-subs{
	margin-bottom: 35px;
}
.menu-left .menu-option,
.menu-right .menu-option{
	margin-bottom: 30px;
}
#menu-navigation-left li,
#menu-navigation-right li{
	list-style-type: none;
}
#menu-navigation-right > li > a,
#menu-navigation-left > li > a{
	text-align: center;
	list-style-type: none;
	line-height: 20px;
}
.navigation  ul > li > ul > li a:hover,
#menu-navigation-right > li > a:hover,
#menu-navigation-left > li > a:hover,
#menu-navigation-right li.selected > a:hover,
#menu-navigation-left li.selected > a:hover{
	text-decoration: none;
}
#menu-navigation-right > li.selected > a,
#menu-navigation-right li ul li.selected > a,
#menu-navigation-left li.selected > a{
	position: relative;
	color:  #c0a062;
    text-align: center;
    cursor: default;
}
#menu-navigation-right li ul.selected > a,
#menu-navigation-left li ul.selected > a{
	position: relative;
	color:  #c0a062;
    line-height: 32px;
    text-align: center;
    cursor: default;
}
#menu-navigation-right li ul.selected > a span:not(.menu-underline),
#menu-navigation-left li ul.selected > a span:not(.menu-underline){
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #c0a062;
	margin-top: 15px;
}
#menu-navigation-right li ul li.selected > a span:not(.menu-underline){
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #c0a062;
	margin-top: 10px;
}
#menu-navigation-right > li.selected > a span:not(.menu-underline),
#menu-navigation-left > li.selected  > a span:not(.menu-underline){
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #c0a062;
	margin-top: 9px;
	-moz-margin-top: 10px;
	cursor: default;
}
#menu-navigation-left ul li.selected  > a span:not(.menu-underline){
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: #c0a062;
	margin-top: 10px;
}
.navigation  ul > li a{
	font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
}
.navigation  ul > li > ul,
.navigation ul{
	padding-left: 0px;
	margin-bottom: 30px;
}
.navigation  ul > li > ul > li{
	position: relative;
	height: 13px;
	margin-top: 14px;
	margin-bottom: 0 !important;
}
.navigation  ul > li > ul > li a{
	position: absolute;
	display: table;
	width: auto;
	left: 50%;
	top: 50%;;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
	text-transform: none;
	list-style-type: none;
}
.navigation li a:hover span.menu-underline{
	width: 100%;
}
.navigation li a span.menu-underline{
	position: absolute;
	display: block;
    width: 0;
    height: 2px;
    background-color: #c0a062;
    bottom: 0;
    left: 0;
    transition: width .4s ease-in-out;
}
.navigation .submenu{
	font-family: 'Montserrat';
	color:  #808080;
	font-size: 20px;
	font-weight: 400;
	line-height: 30.667px;
	text-align: center;
	text-transform: uppercase;
	list-style-type: none;
}
.search{
    position: relative;
    display: none;
    right: 0;
    text-align: right;
    margin-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
}
.search span.fa.fa-search{
	display: block; */
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: white;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    opacity: 0.8;
    cursor: pointer;
}
.search-query,
.error-text-wrapper{
	position: fixed;
	width: 0;
	right: -15px;
	top: 0px;
	text-align: center;
	height: 70px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: rgb(86,86,86);
    z-index: 3;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.search-query .container,
.error-text-wrapper .container,
.search-query > .container .row{
	height: inherit;
}
.search-query.open,
.error-text-wrapper.open{
	width: 100%;
	right: 0px;
}
.search-icon-wrapper,
.form-wrapper,
.submit-button-wrapper,
.search-query.open .container,
.error-text-wrapper.open .container,
.search-query.open > .container .row{
	height: inherit;
}
.search-query img[alt="close_search"]{
	display: none;
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 0;
	padding-right: 15px;
	cursor: pointer;
	transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.search-icon-wrapper span.fa.fa-search{
	position: relative;
    display: inline-block;
    font-size: 16px;
    color: white;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    opacity: 0.8;
    cursor: pointer;
    top: 23%;
    right: 30px;
}
.search-query input,
.error-text-wrapper input{
	position: absolute;
	width: 0px;
    top: 50%;
    left: 48%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    background-color: rgb(86,86,86);
    border: 0;
    height: 33px;
    transition: width 0.5s;
    -webkit-transition: width 0.5s;
    -moz-transition: width 0.5s;
    -ms-transition: width 0.5s;
    -o-transition: width 0.5s;
    font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 18px;
	font-weight: 400;
	line-height: 29.333px;
	text-align: left;
}
.search-query .submit-button-wrapper span.btn-submit-search{
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	top: 40%;
    left: 32%;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: translateY(-50%) , rotate(45deg);
	-webkit-transform: translateY(-50%) , rotate(45deg);
	-moz-transform: translateY(-50%) , rotate(45deg);
	-ms-transform: translateY(-50%) , rotate(45deg);
	-o-transform: translateY(-50%) , rotate(45deg);
}
.search-query .submit-button-wrapper .btn-form-wrapper{
	position: absolute;
	display: block;
	width: 38px;
	height: 38px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    cursor: pointer;
}
.main-error-wrapper{
	position: absolute;
	display: block;
	width: 100%;
	z-index: 1002;
}
.close-error-wrapper{
	position: absolute;
	display: block;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: white;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    cursor: pointer;
    right: -30px;
}
.error-text-wrapper.open .close-error-wrapper{
	right: 15px;
}
.close-error-wrapper .line-one{
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    background-color: rgb(40,40,40);
    transform: rotate(45deg);
    top: 50%;
    left: 32%;
}
.close-error-wrapper .line-two{
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    background-color: rgb(40,40,40);
    transform: rotate(-45deg);
    top: 50%;
    right: 28%;
}
.search-query.open input{
	width: 100%;
}
.error-text-wrapper.open input{
	width: 50%;
}
.header-wrapper-right .icones .facebook-icon,
.header-wrapper-right .icones .google-icon,
.header-wrapper-right .icones .twitter-icon{
	cursor: pointer;
}
.socials-wrapper{
	position: relative;
    display: block;
    width: 100%;
}
.menu-social-wrapper {
    width: 206px;
    margin-left: calc((100% - 206px)/2);
}
.menu-social-wrapper .menu-facebook-icon,
.menu-social-wrapper .menu-google-icon,
.menu-social-wrapper .menu-twitter-icon,
.menu-social-wrapper .menu-instagram-icon,
.menu-social-wrapper .menu-pinterest-icon,
.menu-social-wrapper .menu-youtube-icon,
.menu-social-wrapper .menu-tumblr-icon,
.menu-social-wrapper .menu-snapchat-icon{
	position: relative;
	display: inline-block;
	margin-right: 10px;
}
.menu-social-wrapper .menu-pinterest-icon,
.menu-social-wrapper .menu-youtube-icon,
.menu-social-wrapper .menu-tumblr-icon,
.menu-social-wrapper .menu-snapchat-icon{
	margin-top: 10px;
}
.menu-social-wrapper .menu-facebook-icon i,
.menu-social-wrapper .menu-google-icon i,
.menu-social-wrapper .menu-twitter-icon i,
.menu-social-wrapper .menu-instagram-icon i,
.menu-social-wrapper .menu-pinterest-icon i,
.menu-social-wrapper .menu-youtube-icon i,
.menu-social-wrapper .menu-tumblr-icon i,
.menu-social-wrapper .menu-snapchat-icon i{
	position: relative;
	display: inline-block;
	font-size: 16px;
    color: white;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 38px;
    opacity: 0.8;
    cursor: pointer;
}
.menu-social-wrapper .menu-twitter-icon i{
	font-size: 17px;
}
.menu-footer-wrapper{
    position: relative;
    display: block;
    width: 280px;
    margin-left: auto;
    margin-right: auto;
	font-family: 'Montserrat';
	color:  #808080;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 20px;
}
.menu-footer-wrapper a{
	font-family: 'Montserrat';
	color:  #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
}
.menu-footer-wrapper span{
	position: relative;
	display: block;
}
div.header-wrapper-center-menu-link-escuro{
	background-image: url(/img/logo_responsive_escuro.png);
    background-repeat: no-repeat;
    height: 50px;
}
.header-wrapper-center-menu-link,
div.header-wrapper-center-menu-link-claro{
	background-image: url(/img/logo_responsive_claro.png);
    background-repeat: no-repeat;
    height: 50px;
}
a[href^="/votartauromaquia"] {
    display:none !important;
}

.menu-google-icon {
    display:none !important;
}
/* HEADER RESPONSIVE */
@media screen and (min-width: 319px) and (max-width: 479px){
	.newsletter input#email {
    	width: 250px !important;
	}
	.newsletter #subscribe-newsletter{
		margin: 0 !important;
		width: 100%;
	}
	.menu-social-wrapper {
    	margin-top: 60px !important;
	}
	.search-query input{
		left: 55px;
	}
	.search-query.open input{
		width: 230px;
	}
}
@media screen and (min-width: 320px) and (max-width: 991px){
	.newsletter #subscribe-newsletter{
		width: 100%;
	}
}
@media screen and (min-width: 425px) and (max-width: 991px){
	.newsletter .label-wrapper label#subscribe{
		margin-left: 0;
	}
}
@media screen and (max-width: 480px){
	.error-text-wrapper.open input{
		width: 75%;
	}
	.current-area{
		padding: 0;
	}
	.header-wrapper-center{
		padding-right: 0;
	}
}
@media screen and (min-width: 480px) and (max-width: 767px){
	.search-query.open input{
		width: 350px;
	}
}
@media screen and (max-width: 767px){
	.menu-social-wrapper{
		margin-top: 40px;
	}
	.newsletter.text-center{
		margin-top: 20px;
	}
	.newsletter input#email{
		width: 332px;
	}
	.header-wrapper-left{
		padding-left: 0;
	}
	.search-query input, .error-text-wrapper input{
		font-size: 18px;
	}
	div.header-wrapper-center-menu-link-claro{
		background-image: url(/img/logo_responsive_escuro_old.png);
		left: 15px;
	}
	.header-wrapper-center-menu-link{
		background-image: url(/img/logo_responsive_claro_old.png);
		left: 15px;
	}
	div.header-wrapper-center-menu-link-escuro{
		background-image: url(/img/logo_responsive_escuro_old.png);
		left: 15px;
	}
}
@media screen and (max-width: 991px){
	.newsletter #subscribe-newsletter{
		margin-left: auto;
		margin-right: auto;
	}
	.menu-social-wrapper {
	    margin-left: auto;
	    margin-right: auto
	}
}
@media screen and (min-width: 768px) and (max-width: 992px){
	div.header-wrapper-center-menu-link-claro{
		background-image: url(/img/logo_responsive_escuro.png);
		left: 15px;
	}
	.header-wrapper-center-menu-link{
		background-image: url(/img/logo_responsive_claro.png);
		left: 15px;
	}
	div.header-wrapper-center-menu-link-escuro{
		left: 15px;
	}

}
@media screen and (min-width: 992px){
	.newsletter #subscribe-newsletter{
		width: 75%;
	}
	header.container-fluid{
		padding: 0 30px;
	}
	.menu-wrapper.open .container-fluid{
		padding: 0 30px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1199px){
	.header-wrapper-right .partilhar{
		display: none;
	}
	.header-wrapper-right .icones .share-icon{
		position: absolute	;
		top: 14px;
		right: 15px;
		padding-top: 8px;
		cursor: pointer;
	}
	.header-wrapper-right span{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		-moz-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		-o-transform: translate(-50%,-50%);
	}
	.header-wrapper-right .icones .facebook-icon,
	.header-wrapper-right .icones .google-icon,
	.header-wrapper-right .icones .twitter-icon{
		position: absolute;
		display: inline-block;
		padding-top: 8px;
		right: 15px;
		top: 14px;
		z-index: -1;
		transition: right .5s ease-in-out;
		-webkit-transition: right .5s ease-in-out;
		-moz-transition: right .5s ease-in-out;
		-ms-transition: right .5s ease-in-out;
		-o-transition: right .5s ease-in-out;
	}
	.header-wrapper-right .icones .facebook-icon.open{
		right: 162px;
		z-index: unset;
	}
	.header-wrapper-right .icones .google-icon.open{
		right: 113px;
		z-index: unset;
	}
	.header-wrapper-right .icones .twitter-icon.open{
		right: 64px;
		z-index: unset;
	}
	.newsletter input#email{
		width: 90%;
		float: left;
	}
}
@media screen and (min-width: 1200px){
	.header-wrapper-center-menu-link{
		padding-top: 14px;
    	padding-bottom: 14px;
	}
	.header-wrapper-center{
		text-align: left;
		padding-top: 14px;
    	padding-bottom: 14px;
	}
	.header-wrapper-center img{
		width: auto;
		height: auto;
	}
	.header-wrapper-right{
		position: relative;
		font-family: 'Montserrat';
		color:  #ffffff;
		font-size: 15px;
		font-weight: 400;
		text-align: left;
		text-transform: uppercase;
		z-index: 2;
	}
	.header-wrapper-right .fa-facebook,
	.header-wrapper-right .fa-google-plus,
	.header-wrapper-right .fa-twitter{
		display: inline-block;
	}
	.header-wrapper-right .icones .facebook-icon,
	.header-wrapper-right .icones .google-icon,
	.header-wrapper-right .icones .twitter-icon{
		position: absolute;
		display: inline-block;
		right: 15px;
		top: 12px;
	}
	.header-wrapper-right .icones .facebook-icon{
		    position: relative;
	    display: inline-block;
	    margin-right: 5px;
	    margin-left: 15px;
	}
	.header-wrapper-right .icones .google-icon{
		position: relative;
	    display: inline-block;
	    margin-right: 5px;
	}
	.header-wrapper-right .icones .twitter-icon{
		position: relative;
	    display: inline-block;
	    margin-right: 5px;
    }
}
@media screen and (min-width: 1200px){
	.header-wrapper-right{
		position: relative;
		font-family: 'Montserrat';
		color:  #ffffff;
		font-size: 15px;
		font-weight: 400;
		text-align: left;
		text-transform: uppercase;
		z-index: 2;
		float: right;
	}
	.header-wrapper-right span{
		position: absolute;
		top: 20px;
		right: 15px;
		font-family: 'Montserrat';
	    color: #808080;
	    font-size: 15px;
	    font-weight: 400;
	    line-height: 0px;
	}
	.header-wrapper-right .icones{
		position: relative;
		display: inline-block;
		float: right;
		height: 50px;
		margin-top: 14px;
		padding: 0px 20px 0px 15px;
	}
	.header-wrapper-right .partilhar{
        position: relative;
        display: inline-block;
        height: 40px;
        width: 110px;
        float: right;
        border-right: 1px solid #eeeeee;
        line-height: 15px;
        margin-top: 22px;
    }
	.header-wrapper-right .icones .share-icon{
		display: none;
	}
}

.jconfirm-content, .jconfirm-content-pane {
    background-color: #1a1a1a;
}
