/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/************************************/
/* RESET */
/************************************/

/*-webkit-transform: translate();
-moz-transform: translate();
-ms-transform: translate();
-o-transform: translate();
transform: translate();*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
	position: relative;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
/*
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
*/
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
  	margin: 0;
  	padding: 0;
	box-sizing: border-box;
}

img {
  	width: 100%;
}

:active {
    outline: none;
    text-decoration: none;
}

a:active {
	outline: none;
    text-decoration: none;
}

:visited {
    outline: none;
    text-decoration: none;
}

a:visited {
	outline: none;
    text-decoration: none;
}

:focus {
	outline: none;
    text-decoration: none;
}

a:focus {
	outline: none;
    text-decoration: none;
}

:hover {
	outline: none;
    text-decoration: none;
}

a:hover {
	outline: none;
    text-decoration: none;
}

button:active {
    outline: none;
    text-decoration: none;
}

button:visited {
    outline: none;
    text-decoration: none;
}

button:focus {
	outline: none;
    text-decoration: none;
}

button:hover {
    outline: none;
    text-decoration: none;
}


.clearFix {
	clear: both;
}

section {
    z-index: 999;
    position: relative;
}

select {
	-webkit-appearance:none;
	-moz-appearance:none;
	-o-appearance:none;
	appearance:none;
}

select::-ms-expand {
    display: none;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
	-webkit-appearance: none;
	-moz-appearance:none;
	-o-appearance:none;
	appearance:none;
	margin: 0;  
}

.relative {
    position: relative;
}

.absolute {
	position: absolute;
}

.right {
	right: 0;
}

.bottom {
	bottom: 0;
}

.left {
	left: 0;
}

.top {
	top: 0;
}

.hidden {
	display: none;
}

/************************************/
/* END RESET */
/************************************/

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
	
}


a {
    color: #333333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #333333;
}

/*section {
	width: 100%;
	padding: 70px 0 0 0;
	background: #fff;
	position: relative;
}

section:first-of-type {
    padding: 0;
}*/

::-webkit-input-placeholder {
   color: #333333;
}

:-moz-placeholder { /* Firefox 18- */
   color: #333333;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #333333;  
}

:-ms-input-placeholder {  
   color: #333333;  
}

.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-15 {
	width: 20%;
	float: left;
}

.verticalMiddle {
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	top: 50%;
	position: relative;
}

.horizontalMiddle {
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	left: 50%;
	position: relative;
}


.h100 {
	height: 100%;
}

.margin70 {
    margin-bottom: 70px;
}

.sectionM50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

/************************************/
/* HEADER */
/************************************/

#stickyHeader {
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
	background-color: #f2f2f2;
	height: 100px;
}

.menu {
	display: block;
	width: 100%;
	text-align: right;
}

.menu_ul {
	display: block;
	width: 100%;
}

.menu_ul > li {
	display: inline-block;
	margin-top: 33px;
	margin-right: -4px;
	position: relative;
    background-color: #c52b11;
    margin-right: 2px;
    border-radius: 4px;
}

/*.menu_ul > li:last-child {
	background-color: #c52b11;
}*/

.menu_ul > li:not(:last-child):hover {
	background-color: #c52b11;
}

.menu_ul > li > a {
	display: block;
	height: 100%;
	width: 100%;
    color: #FFF;
}

.menu_ul > li:not(:last-child) > a {
	padding: 8px 12px;
}

.menu_ul > li:last-child > a {
	padding: 8px 12px;
}

.menu_ul > li:hover > .sub_menuBox {
	opacity: 1.0; 
	visibility: visible;
}

.menu_ul > li:not(:last-child):hover > a > p {
	color: #FFF
}

/*.menu_ul > li:last-child > a > p {
	color: #FFF;
}*/

.sub_menuBox {
	position: absolute;
	left: -415px;
	background-color: #FFF;
	width: 1140px;
	visibility: hidden;
	top: 60px;
	opacity: 0;
	transition: 0.2s all ease-out;
}

.sub_menu {
	display: block;
	width: 100%;
	position: absolute;
	top: 0;
	left: 10px;
	width: 1120px;
	text-align: left;
	padding-top: 10px;
	height: 420px;
	background-color: #FFF;
}

.sub_menu > li {
	display: inline-block;
	width: calc(20% - 4px);
	vertical-align: top;
	position: absolute;
	border-left: 1px solid #b2b2b2;
	padding-left: 10px;
	
}

.sub_menu > li > a {
	display: block;
	width: 100%;
}

.sub_menu > li > a > p {
	display: block;
	width: 100%;
	font-weight: 700;
	color: #c52b11;
}

.subSub_menu {
	display: block;
	width: 100%;
	padding-top: 10px;
}

.subSub_menu > li {
	display: block;
}

.subSub_menu > li > a {
	padding-bottom: 3px;
	display: block;
	width: 100%;
	height: 100%;
}

.subSub_menu > li > a > p {
	color: #c52b11;
}

.logo {
	display: block;
	width: 100%;
	max-width: 260px;
}

.logo a {
	display: block;
	width: 100%;
}

.loginLinks {
	margin-top: 10px;
}

.loginLinks a {
	display: inline-block;
	vertical-align: middle;
}

.loginLinks a p {
	font-size: 12px;
}

.loginLinks a:first-of-type {
	padding-right: 20px;
}

.userIcon {
	display: inline-block;
	width: 30px;
	vertical-align: middle;
	height: 30px;
}

.lupaBox {
	display: inline-block;
    width: 30px;
    vertical-align: top;
    height: 30px;
}

.searchBox, .searchBoxMobile {
	height: 30px;
    background-color: #FFF;
    border: 1px solid #b2b2b2;
    border-radius: 3px;
	/*margin-top: 20px;
    margin-top: 35px;*/
}

.searchBoxMobile {
	width: 200px;
	margin: 30px auto;
}

.searchBox input, .searchBoxMobile input {
	border: none;
    height: 28px;
    display: inline-block;
    width: calc(100% - 34px);
    vertical-align: middle;
}

.burgerIconBox, .loginLinksMobile, .mobileMenuBox {
	display: none;
}


/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/

.sliderContainer {
	position: relative;
}

.sliderWrapper {
	position: relative;
}

.slider {
	height: 420px;
}

.sliderContentBox {
	width: 380px;
	height: 420px;
	position: absolute;
	bottom: 0;
	right: 15px;
	background-color: rgba(255,255,255,0.7);
	padding-top: 180px;
}

.sliderText {
	width: 340px;
	margin-left: 20px;
}

.sliderButton {
	margin-left: 20px;
	width: 220px;
	height: 40px;
	background-color: #c52b11;
	border-radius: 3px;
	margin-top: 20px;
}

.sliderButton > a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.sliderButton > a > p {
	color: #FFF;
	position: relative;
	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%);
}

.slickDots {
	position: absolute;
	bottom: 100px;
	text-align: right;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -40px;
	z-index: 9999;
}

.slickDots li {
	display: inline-block;
    background-color: #A5A7AA;
    width: 10px;
	height: 10px;
	border-radius: 5px;
    cursor: pointer;
	margin: 10px;
}

.slickDots li.slick-active {
    background-color: #57585A;
}



.sliderTitle {
	font-size:36px;
	font-style:italic;
	padding-bottom:15px;
}

.homepageMainText {
	margin: 80px 0 50px;
	display: block;
}

.homepageMainText p {
	font-size: 18px;
	color: #808080;
}

.homepageMainText p span {
	font-weight: 700;
	color: #333333; 
}

.homepageCatalogs {
	height: 247px;
	display: block;
	width: 100%;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.catalogIcon {
	width: 80px;
	height: 80px;
	display: inline-block;
	vertical-align: top;
}

.catalogMain {
	display: inline-block;
	width: calc(100% - 84px);
	padding-left: 20px;
	vertical-align: top;
}

.catalogTitle {
	font-size: 24px;
	font-style: italic;
	color: #333;
	padding-bottom: 20px;
}

.catalogText {
	color: #666;
}

.catalogText p a {
	color: #c52b11;
}

.catalogButton {
	width: 220px;
	height: 40px;
	background-color: #c52b11;
	border-radius: 3px;
	top: 26px;
	position: absolute;
	left: 119px;
	top: 107px;
}

.catalogButton a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.catalogButton a p {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	color: #FFF;
}

.arrowsWrapper {
	display: block;
	width: 100%;
	margin-bottom: 20px;
}

.secondSliderArrowText {
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 140px);
}

.secondSliderArrowText p {
	color: #808080;
	font-size: 18px;
}

.secondSliderArrows {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

.sliderbackArrow {
	margin-right: 10px;
}

.slidernextArrow, .sliderbackArrow {
	display: inline-block !important;
	width: 50px;
	height: 40px;
	background-color: #333333;
	border-radius: 3px;
	font-size: 14px;
	color: #FFF;
	text-align: center;
	cursor: pointer;
}

.sliderbackArrow p, .slidernextArrow p {
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	top: 50%;
	position: relative;
}

.secondHomepageSlider {
	margin-bottom: 70px;
}

.secondSlider {
	position: relative;
}

.secondSlider a {
	display: block;
	width: 100%;
	height: 100%;
}

.secondSlider::after {
	position: absolute;
	content: "";
	width: 1px;
	background-color: #b2b2b2;
	right: 0;
	top: 0;
	height: 162px;
}

.secondSliderImage {
	width: 100%;
    height: 200px;
	margin-bottom: 20px;
}

.secondSliderText {
	text-align: center;
	display: block;
	width: 100%;
}

.productName {
	font-size: 13px;
	color: #333333;
}

.productType {
	color: #666666;
	font-style: italic;
	font-size: 13px;
}

.footerBreak {
	width: 100%;
	height: 3px;
	background-color: #b2b2b2;
}

.imageWrapper_ul {
    display: block;
    margin-bottom: 50px;
}

.imageWrapper_ul li {
    width: 33.33%;
    float: left;
}

.imageWrapper_ul li:not(:last-child) {
    border-right: 1px solid #FFF;
}

.imageWrapper {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
}

.imageWrapper a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.imageWrapper a p {
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	left: 50%;
	position: absolute;
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
}

/************************************/
/* END HOMEPAGE */
/************************************/


/************************************/
/* FOOTER */
/************************************/

.footerMenu {
	display: block;
	border-bottom: 1px solid #b2b2b2;
	margin-bottom: 40px;
}

.footerMenu_ul {
	display: block;
	text-align: center;
}

.footerMenu_ul > li {
	display: inline-block;
	width: 20%;
	margin-right: -4px;
	text-align: center;
	padding: 10px 0;
}

.footerMenu_ul >li > a {
	color: #c52b11;
	display: block;
	width: 100%;
	border-right: 1px solid #b2b2b2;
}

.footerMenu_ul > li:last-child > a {
	border-right: none;
}

.footerBottom {
	display: block;
	text-align: center;
}

.footerNewsletter {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 30px;
}

.footerNewsletter > p {
	font-size: 14px;
	color: #333;
	display: inline-block;
	vertical-align: middle;
}

.newsletterWrapper {
	display: inline-block;
	height: 30px;
	vertical-align: middle;
	width: 300px;
	margin: 0 20px;
	position: relative;
	border: 1px solid #b2b2b2;
	border-radius: 3px;
	background-color: #FFF;
}

.newsletterWrapper input {
	border: none;
	background-color: #FFF;
	height: 28px;
	width: calc(100% - 32px);
	color: #333;
	padding-left: 10px;
	display: inline-block;
	vertical-align: top;
}

.newsletterWrapper button {
	width: 28px;
	height: 28px;
	display: inline-block;
	vertical-align: top;
	border: none;
	background-color: rgba(255,255,255,1);
}

.facebookLogo {
	width: 30px;
	display: inline-block;
	vertical-align: middle;
	height: 30px;
}

.footerName {
	display: block;
	margin-bottom: 20px;
}

.footerName p {
	font-size: 14px;
	color: #333333;
	display: block;
	padding-bottom: 15px;
}

.logoKriacao {
	display: block;
	width: 59px;
	height: 12px;
	margin: 0 auto 20px;
}

/************************************/
/* END FOOTER */
/************************************/


/************************************/
/* SERVIÇOS */
/************************************/

#servicos, #contactos, #empresa, #informacoes, #catalogos, #listagem, #produto {
	margin-bottom: 50px;
}

.breadCrumbArea {
	padding: 30px 0;
	border-bottom: 1px solid #b2b2b2;
	margin-bottom: 50px;
}

.breadCrumbArea .pageTitle {
	font-size: 36px;
	color: #3d6aa7;	
	text-align: center;
}

.breadCrumbArea .pageBreadCrumbs {
	text-align: center;
	color: #808080;
	margin-top: 20px;
}

.breadCrumbArea .pageBreadCrumbs a {
	display: inline-block;
	color: #808080;
}

.breadCrumbArea .pageBreadCrumbs a p {
	color: #808080;
}

.pageSubTitle {
	font-size: 18px;
	color: #808080;
	margin-bottom: 50px;
	text-align: center;
}

.serviceBorderLeft {
	border-right: 1px solid #b2b2b2;
	margin: 10px 0;
    margin-right: -1px;
}

.serviceBorderRight {
	border-left: 1px solid #b2b2b2;
	margin: 10px 0;
}

.serviceBox {
	display: block;
	width: 100%;
	text-align: center;
}

.serviceTitle {
	font-size: 24px;
	color: #3d6aa7;
	margin-bottom: 20px;
}

.serviceText p {
	font-size: 16px;
	color: #333;
	margin-bottom: 10px;
}

.serviceText p:last-of-type {
	margin-bottom: 0;
}

/************************************/
/* END SERVIÇOS */
/************************************/




/************************************/
/* CONTACTOS */
/************************************/

.contactItem {
	margin-bottom: 10px;
}

#contactos iframe {
	margin-top: 50px;
}

.geoIcon, .telIcon, .mailIcon, .gpsIcon {
	max-width: 150px;
}


/************************************/
/* END CONTACTOS */
/************************************/


/************************************/
/* EMPRESA */
/************************************/	
	
.pageContentText {
	padding-top: 30px;
}	
	

/************************************/
/* END EMPRESA */
/************************************/		


/************************************/
/* INFORMAÇÕES */
/************************************/		

.infoBox, .infoBox_ul {
	display: block;
	width: 100%;
}

.infoBox_ul > li {
	padding: 15px 20px;
	margin-bottom: 20px;
	border: 1px solid #b2b2b2;
	border-radius: 3px;
}

.infoBox_ul > li:last-child {
	margin-bottom: 0;
}

.infoBox_ul > li:nth-child(odd) {
	background-color: #FFF;
}

.infoBox_ul > li:nth-child(even) {
	background-color: #f2f2f2;
}

.infoBox_ul > li > p {
	color: #333;
	font-size: 16px;
}


/************************************/
/* END INFORMAÇÕES */
/************************************/		



/************************************/
/* CATALOGOS */
/************************************/	


.catalogosBox, .catalogosBox_ul {
	display: block;
	width: 100%;
}

.catalogosBox_ul > li {
	padding: 15px 20px;
	margin-bottom: 20px;
	border: 1px solid #b2b2b2;
	border-radius: 3px;
}

.catalogosBox_ul > li:last-child {
	margin-bottom: 0;
}

.catalogosBox_ul > li:nth-child(odd) {
	background-color: #FFF;
}

.catalogosBox_ul > li:nth-child(even) {
	background-color: #f2f2f2;
}

.catalogosBox_ul > li > a {
	display: block;
	width: 100%;
}

.catalogosBox_ul > li > a > p {
	color: #333;
	font-size: 16px;
	color: #c52b11;
}



/************************************/
/* END CATALOGOS */
/************************************/	


/************************************/
/* LISTAGEM */
/************************************/	

.selectArea {
	margin-bottom: 30px;
	text-align: center;
}

.selectBox {
	display: inline-block;
	border: 1px solid #808080;
	border-radius: 3px;
	position: relative;
}

.selectBox:first-of-type {
	margin-right: 10px;
}

.selectBox select {
	border: none;
	display: inline-block;
	vertical-align: middle;
	height: 30px;
	background-color: rgba(255,255,255,0);
	z-index: 999;
	position: relative;
	padding-left: 10px;
}

.selectArrow {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0;
	top: 0;
	z-index: 990;
}

.listagemBox {
	display: block;
	width: 100%;
}

.listagem_ul {
	display: block;
	width: 100%;
}

.listagem_ul > li {
	display: inline-block;
	text-align: center;
	width: calc(33.33% - 10px);
	-webkit-box-shadow: 0px 0px 5px 5px rgba(242,242,242,1);
	-moz-box-shadow: 0px 0px 5px 5px rgba(242,242,242,1);
	box-shadow: 0px 0px 5px 5px rgba(242,242,242,1);
	padding: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	vertical-align: top;
}

.listagem_ul > li:nth-child(3n) {
	margin-right: 0;
}

.listagem_ul > li:nth-last-child(-n+3) {
	margin-bottom: 0;
}

.produto_li {
	display: block;
	width: 100%;
}

.produto_image {
	width: 100%;
	display: block;
	height: 270px;
}

#marcas .produto_li {
	display: block;
	width: 100%;
    
    text-align: center;
}

#marcas .listagemBoxWrapper {
    
}

#marcas .produto_image {
	width: 100%;
	display: block;
	height: 200px;
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}

.detalhesBtn {
	display: block;
	width: 145px;
	height: 40px;
	background-color: #c52b11;
	text-align: center;
	border-radius: 3px;
	margin: 10px auto;
}


.detalhesBtn > a {
	display: block;
	width: 100%;
	height: 100%;
}

.detalhesBtn > a > p {
	color: #FFF;
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.produtoText {
	display: block;
	width: 100%;
	margin-bottom: 30px;
}

#listagem .productName, #listagem .productType {
	font-size: 14px;
}




/************************************/
/* END LISTAGEM */
/************************************/	




/************************************/
/* PRODUTO */
/************************************/	

.productMainImage {
	display: block;
	width: 100%;
	padding: 65px 10px;
	border: 1px solid #b2b2b2;
    height: 560px;
}

.productMainInfo {
	display: block;
	width: 100%;
	padding: 30px 0px;
	text-align: center;
    margin: 30px 0px;
}

.productMainType, .productMainCode {
	font-size: 18px;
	font-style: italic;
	color: #666666;
}

.productMainTitle {
	font-size: 36px;
	color: #333333;
	margin: 10px 0 20px 0;
}

.productMainDescription {
	color: #333333;
	margin: 40px 0;
	text-align: left;
}

.downloadBox {
	display: block;
	width: 100%;
	margin-bottom: 40px;
}

.adobe {
	display: inline-block;
	vertical-align: middle;
	height: 50px;
	width: 50px;
}

.downloadButton {
	width: 230px;
	height: 40px;
	display: inline-block;
	border-radius: 3px;
	background-color: #c52b11;
	text-align: center;
	vertical-align: middle;
}

.downloadButton > a {
	display: block;
	width: 100%;
	height: 100%;
}

.downloadButton > a > p {
	display: block;
	width: 100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	color: #fff;
}

.otherDownloadsBox {
	
}

.otherDownloads {
	font-size: 18px;
	font-style: italic;
	color: #666666;
	width: 100%;
	border-bottom: 1px solid #b2b2b2;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.otherDownloadsBox > a {
	color: #c52b11;
	display: block;
}

.productOptions {
    text-align: left;
    margin-bottom: 20px;
}
    
.optionsTitle {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    margin-bottom: 20px;
}

.productOptionName {
    display: inline-block;
    text-align: left;
    font-size: 16px;
    margin-right: 10px;
    font-weight: 700;
}

.productOptionsSelect {
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    padding-left: 5px;
    min-width: 200px;
    border-radius: 4px;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    -o-appearance: menulist;
    appearance: menulist;
}

/************************************/
/* END PRODUTO */
/************************************/	













/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/















/************************************/
/************************************/
/* TABLET */
/************************************/
/************************************/

@media (max-width:1200px) {

    .col-sm-15 {
        width: 20%;
        float: left;
    }
    
    .margin70 {
        margin-bottom: 50px;
    }
    
    .sectionM50 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

/************************************/
/* HEADER */
/************************************/
	
	.mobileMenuBox {
		display: block;
		position: fixed;
		top: 100px;
		z-index: 9998;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
	}
	
	.menu {
		display: none;
	}
	
	.loginLinks {
		text-align: right;
        display: none;
	}
	
	.searchBox {
		display: none;
	}
	
	.tabletMobileArea {
		display: block;
	}
	
	.burgerIconBox {
		text-align: right;
		display: block;
		width: 100%;
		/*margin-top: 20px;*/
        margin-top: 35px;
	}

	.burgerIcon {
		height: 30px;
		width: 30px;
		display: inline-block;
		cursor: pointer;
	}

	.mobileMenu {
		text-align: center;
		width: 100%;
		padding-top: 7px;
		background-color: #f2f2f2;
		position: relative;
		display: none;
		float: left;
	}

	.mobileMenu_ul {
		display: block;
		width: 100%;
		padding-top: 30px;
	}

	.mobileMenu_ul > li {
		display: block;
	}

	.mobileMenu_ul > li > a {
		display: block;
		width: 100%;
	}

	.mobileMenu_ul > li > a > p {
		color: #c52b11;
	}

	/*.mobileMenu_ul > li:last-child {
		background-color: #c52b11;
	}

	.mobileMenu_ul > li:last-child > a {
		padding: 12px 0;
	}

	.mobileMenu_ul > li:last-child > a > p{
		color: #FFF;
	}*/

	.mobileMenu_ul > li:not(:last-child) {
		padding-bottom: 20px;
	}

	.mobileSubMenu_ul {
		width: 320px;
		background-color: #FFF;
		position: absolute;
		padding-top: 7px;
		left: 0;
		display: none;
		top: 0;
	}
	
	.mobileSubMenu_ul > li:first-child {
		position: relative;
		height: 30px;
		max-width: 280px;
		margin: 0 auto 15px;
	}
	
	.mobileSubMenu_ul > li:first-child p {
		color: #c52b11;
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		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%);
	}
    
    .loginLinksMobile {
		display: block;
		width: 200px;
		margin: 0 auto;
		padding-top: 30px;
	}
	
	.loginLinksMobile a {
		display: inline-block;
	}
	
	.loginLinksMobile a:last-of-type {
		padding: 0 19px;
	}
	
	.loginLinksMobile a p {
		display: block;
	}
	
	.backArrow {
		display: inline-block;
		width: 30px;
		height: 30px;
		vertical-align: middle;
		position: absolute;
		left: 0;
	}
	
	.mobileSubMenu_ul > li:not(:first-child) {
		border-bottom: 2px solid #f2f2f2;
		max-width: 280px;
		margin: 0 auto;
		position: relative;
		text-align: center;
	}
	
	.mobileSubMenu_ul > li:not(:first-child) > a {
		display: block;
		width: 100%;
		position: relative;
		height: 30px;
	}
	
	.mobileSubMenu_ul > li:not(:first-child) > a > p {
		color: #c52b11;
		position: absolute;
		transform: translate(-50%,-50%);
		-webkit-transform: translate(-50%,-50%);
		-moz-transform: translate(-50%,-50%);
		-ms-transform: translate(-50%,-50%);
		-o-transform: translate(-50%,-50%);
		top: 50%;
		left: 50%;
		width: 100%;
	}
	
	.subSub_menuMobile {
		padding-top: 10px;
		display: none;
		padding-bottom: 10px;
	}
	
	.plusBtn {
		display: inline-block;
		width: 30px;
		height: 30px;
		position: absolute;
		right: 0;
		top: 0;
	}
	
	.subSub_menuMobile > li {
		padding-bottom: 2px;
	}
	
	.subSub_menuMobile > li > a {
		display: block;
		width: 100%;
	}
	
	.subSub_menuMobile > li > a > p{
		color: #c52b11;
	}
	
/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/

	.sliderContentBox {
		width: 270px;
		padding-top: 140px;
	}
	
	.sliderText {
		width: 230px;
	}
	
	.sliderTitle {
		font-size:30px;
	}
	
	.homepageMainText p {
		font-size: 16px;
	}
	
	.catalogTitle {
		font-size: 20px;
	}
	
	.homepageCatalogs {
		padding-top: 40px;
		padding-bottom: 40px;
		height: 267px;
	}
	
	.catalogButton {
		top: 147px;
		left: 89px
	}
	
	.catalogIcon {
		width: 60px;
		height: 60px;
	}
	
	.catalogMain {
		width: calc(100% - 64px);
		padding-left: 10px;
	}
	
	.secondSlider::after {
		position: absolute;
		content: "";
		width: 1px;
		background-color: #b2b2b2;
		right: 0;
		top: 0;
		height: 129px;
	}
	
	.secondSliderArrowText p {
		font-size: 16px;
	}
	
	.secondHomepageSlider {
		margin-bottom: 50px;
	}
    
    .secondSliderImage {
        height: 165px;
    }
    
    .imageWrapper_ul {
        display: block;
        margin-bottom: 40px;
    }
	
/************************************/
/* END HOMEPAGE */
/************************************/


/************************************/
/* FOOTER */
/************************************/

	.footerMenu_ul > li {
		width: 33.33%;
		margin-right: -4px;
	}
	
	.footerMenu_ul > li:nth-child(5n) > a {
		border-right: 1px solid #b2b2b2;
	}
	
	.footerMenu_ul > li:nth-child(3n) > a {
		border-right: none;
	}


/************************************/
/* END FOOTER */
/************************************/

/************************************/
/* SERVIÇOS */
/************************************/

	.serviceBorderLeft {
		border: 0;
		margin-right: 0;
	}
	
	.serviceBorderLeft .serviceBox {
		padding-bottom: 30px;
		margin-bottom: 20px;
		border-bottom: 1px solid #b2b2b2;
	}
	
	.serviceBorderLeft:first-of-type {
		margin-top: 0;
	}
	
	.serviceBorderRight .serviceBox {
		padding-bottom: 30px;
		margin-bottom: 30px;
		border-bottom: 1px solid #b2b2b2;
	}
	
	.serviceBorderRight:last-of-type .serviceBox {
		padding-bottom: 0px;
		margin-bottom: 0px;
		border-bottom: none;
	}

	.serviceBorderRight {
		border: 0;
	}
	
	.serviceBorderRight:last-of-type {
		margin-bottom: 0; 
	}

	.breadCrumbArea .pageTitle {
		font-size: 30px;
	}
	
	.serviceTitle {
		font-size: 22px;
	}

/************************************/
/* END SERVIÇOS */
/************************************/

/************************************/
/* CONTACTOS */
/************************************/	
	
	#contactos iframe {
		margin-top: 40px;
	}
	
	#contactos .row .col-lg-6:last-of-type .contactItem {
		margin-bottom: 0;
	}
	

/************************************/
/* END CONTACTOS */
/************************************/	

	
/************************************/
/* LISTAGEM */
/************************************/	
	
	.listagem_ul > li {
		width: calc(50% - 10px);
	}
	
	.listagem_ul > li:nth-child(3n) {
		margin-right: 10px;
	}

	.listagem_ul > li:nth-last-child(-n+3) {
		margin-bottom: 10px;
	}
	
	.listagem_ul > li:nth-child(even) {
		margin-right: 0;
	}

	.listagem_ul > li:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
	

/************************************/
/* END LISTAGEM */
/************************************/		

/************************************/
/* PRODUTO */
/************************************/	
	.productMainTitle {
		font-size: 30px;
	}
	
	
/************************************/
/* END PRODUTO */
/************************************/	
	
	
}






/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/



/************************************/
/************************************/
/*   Medium Devices, Desktops */
/************************************/
/************************************/

@media (min-width:992px) and (max-width:1200px) {
	
	.col-md-15 {
        width: 20%;
        float: left;
    }
	
	
	
}




/************************************/
/************************************/
/*  Medium Devices, Desktops END */
/************************************/
/************************************/











/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
















/************************************/
/************************************/
/* MOBILE */
/************************************/
/************************************/

@media (max-width:767px) {

	.hideMobile {
		display: none;
	}
	
	.col-xs-15 {
		width: 20%;
		float: left;
	}
	
	.pads {
		padding: 0;
	}
    
    .margin70 {
        margin-bottom: 30px;
    }
    
    .sectionM50 {
        margin-top: 40px;
        margin-bottom: 40px;
    }

/************************************/
/* HEADER */
/************************************/

	.logo {
		max-width: 150px;
	}
	
	.loginLinks {
		display: none;
	}
	
	#stickyHeader {
		height: 50px;
	}
	
	.burgerIconBox {
		margin-top: 10px;
	}
	
	.mobileMenuBox {
		padding: 0;
		top: 50px;
		position: relative;
		left: 0;
		transform: translateX(0);
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
	}
	
	.mobileMenu {
		max-width: 100%;
		float: left;
	}
	
	.mobileSubMenu_ul {
		width: 100%;
	}
	
	.mobileSubMenu_ul > li:first-child, .mobileSubMenu_ul > li:not(:first-child) {
		max-width: calc(100% - 40px);
		width: 100%;
	}
	
	.loginLinksMobile {
		display: block;
		width: 200px;
		margin: 0 auto;
		padding-top: 30px;
	}
	
	.loginLinksMobile a {
		display: inline-block;
	}
	
	.loginLinksMobile a:last-of-type {
		padding: 0 19px;
	}
	
	.loginLinksMobile a p {
		display: block;
	}
	
/************************************/
/* END HEADER */
/************************************/

/************************************/
/* HOMEPAGE */
/************************************/

	.sliderTitle {
		font-size:24px;
	}
	
	.slider {
		height: 322px;
	}
	
	.sliderContentBox {
		text-align: center;
		width: 100%;
		padding-top: 20px;
		position: relative;
		background-color: rgba(255,255,255,1);
		height: auto;
		right: 0;
	}
	
	.sliderText {
		width: 100%;
		margin: 0;
	}
	
	.sliderButton {
		margin: 20px auto 0;
	}
	
	.slickDots {
		bottom: -50px;
	}
	
	.homepageMainText {
		margin-bottom: 40px;
	}
	
	.homepageMainText p {
		font-size: 14px;
	}
	
	.homepageCatalogs {
		height: 457px;
	}
	
	.catalogIcon {
		display: none;
	}
	
	.catalogMain {
		width: 100%;
		padding: 0;
	}
	
	.catalogButton {
		position: relative;
		top: 0;
		left: 0;
		margin-top: 20px;
	}

	.borderSeparation {
		margin-top: 20px;
    	margin-bottom: 20px;
		background-color: #b2b2b2;
		width: 100%;
		height: 1px;
	}
	
	.secondSliderText {
		margin-bottom: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #b2b2b2;
	}
	
	.secondHomepageSlider .secondSlider:last-of-type .secondSliderText {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	
	.secondSlider::after {
		display: none;
	}
	
	.secondHomepageSlider {
		margin-bottom: 30px;
	}
	
	.secondSliderArrowText {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
	}
	
	.secondSliderArrowText p {
		font-size: 14px;
	}
	
	.secondSliderArrows {
		margin-right: 0;
		position: absolute;
		bottom: 0;
		right: 0;
		left: 0;
	}
    
    .secondSliderImage {
        height: 215px;
    }
	
	.arrowsWrapper {
    	margin-bottom: 20px;
    	position: relative;
    	height: 100px;
	}
	
	.slidernextArrow {
		float: right;
	}
    
    .imageWrapper_ul li {
        width: 100%;
        float: left;
    }
    
    .imageWrapper_ul li:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid #FFF;
    }
	
/************************************/
/* END HOMEPAGE */
/************************************/  

	
/************************************/
/* FOOTER */
/************************************/

	.footerNewsletter p, .newsletterWrapper, .facebookLogo  {
		display: block;
		margin: 0 auto 10px;
	}
	
	.footerNewsletter {
		margin-bottom: 0;
	}
	
	.footerMenu_ul > li {
		width: 50%;
		margin-right: -4px;
	}
	
	.footerMenu_ul > li:nth-child(3n) > a {
		border-right: 1px solid #b2b2b2;
	}
	
	.footerMenu_ul > li:nth-child(even) > a {
		border-right: none;
	}
	
	.footerMenu_ul >li > a {
		font-size: 13px;
	}
	
	.newsletterWrapper {
		width: 100%;
	}

/************************************/
/* END FOOTER */
/************************************/


/************************************/
/* SERVIÇOS */
/************************************/

	.serviceBorderLeft .serviceBox {
		padding-bottom: 20px;
		margin-bottom: 10px;
	}

	.pageSubTitle {
		margin-bottom: 20px;
		font-size: 16px;
	}

	.breadCrumbArea .pageTitle {
		font-size: 24px;
	}
	
	.breadCrumbArea {
		padding: 20px 0;
		margin-bottom: 30px;
	}
	
	.serviceTitle {
		font-size: 20px;
	}
	
	#servicos, #contactos, #empresa, #informacoes, #catalogos, #listagem, #produto {
		margin-bottom: 40px;
	}

/************************************/
/* END SERVIÇOS */
/************************************/
	
	
/************************************/
/* CONTACTOS */
/************************************/	
	
	#contactos iframe {
		margin-top: 30px;
	}
	

/************************************/
/* END CONTACT0S */
/************************************/		
	
	
/************************************/
/* LISTAGEM */
/************************************/	
	
	.listagem_ul > li {
		width: 100%;
		margin-right: 0;
	}

	.listagem_ul > li:nth-last-child(-n+2) {
		margin-bottom: 10px;
	}
	
	.listagem_ul > li:last-child {
		margin-bottom: 0;
	}
	
	.selectBox {
		display: block;
		margin: 0 auto;
	}
	
	.selectBox:first-of-type {
		margin-bottom: 10px;
		margin-right: auto;
	}
	

/************************************/
/* END LISTAGEM */
/************************************/		
	
/************************************/
/* PRODUTO */
/************************************/	
	.productMainTitle {
		font-size: 24px;
	}
	
	.productMainType, .productMainCode, .otherDownloads {
		font-size: 16px;
	}
	
	.adobe {
		display: none;
	}
	
	.productMainInfo {
		padding-bottom: 0;
	}
	
	.productMainImage {
		padding: 30px 0;
        height: 300px;
	}
    
    
	
/************************************/
/* END PRODUTO */
/************************************/		
	
	

    
}


/*RICARDO*/
.site-btn{
	width: 220px;
    height: 40px;
    background-color: #c52b11;
    border-radius: 3px;
    margin: auto;
    color: white;
    border: none;
}

label.error{
	color: red;
}

label.success{
	color: green;
}

form#login-form fieldset, form#register-form fieldset{
	min-height: 70px;
}

.medium-text{
	font-size: 16px;
	font-weight: bold;
}

.small-text{
	font-size: 14px;
}

.categories-list{
	background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.categories-list li:not(:last-child){
	border-bottom: 1px solid #ddd;
}

.categories-list li > a{
	display: block;
	padding: 10px 15px;
}

.categories-list li > ul{
	border-top: 1px solid rgba(221, 221, 221, 0.5);
	padding-left: 20px; 
}

.categories-list li > ul li:not(:last-child){
	border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}

.products-list-price{
	margin-top: 10px; 
	font-size: 20px;
}

.quantity-wrapper{
	max-width: 200px;
	width: 100%;
	margin: 0 auto 30px auto;
}

.cart-prod-list-first-col-table{
	display: table;
}

.cart-prod-list-first-col-table > div{
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.cart-prices-resume{
	margin-bottom: 40px;
}

.cart-prices-resume-section{
	padding-bottom: 10px;
}

.cart-buttons{
	margin-bottom: 40px;
}

.cart-buttons a{
	line-height: 40px;
	text-align: center;
	color: white!important;
}

.lupaBox button{
	background: none;
	border: none;
}

.ui-selectmenu-button.ui-button{
	width: 100%;
}

.ui-selectmenu-menu{
	z-index: 9999;
}

.table>thead>tr>th{
	border-bottom: none;
}