/* 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;
	color: #333;
}

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

a:visited {
	outline: none;
    text-decoration: none;
	color: #333;
}

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

a:focus {
	outline: none;
    text-decoration: none;
	color: #333;
}

: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;
}

.hideMobile {
	display: block;
}

.hideDesktop {
	display: none;
}



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

html {
	height: 100%;
}

body {
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
	font-size: 15px;
	font-family: 'Roboto Condensed', sans-serif;
	color: #333;
	position: relative;
	font-weight: 400;
	height: 100%;
	background-image: url(/images/background.png);
	background-repeat: repeat;
	width: 100%;
}

.robotoCL{
	font-weight: 300;
	font-family: 'Roboto Condensed', sans-serif;
}

.robotoCR {
	font-weight: 400;
	font-family: 'Roboto Condensed', sans-serif;
}

.robotoCB {
	font-weight: 700;
	font-family: 'Roboto Condensed', sans-serif;
}

.pacificoR {
	font-weight: 400;
	font-family: 'Pacifico', cursive;
}

.size48 {
		font-size: 48px;
	}

.size36 {
	font-size: 36px;
}

.size30 {
	font-size: 30px;
}

.size20 {
	font-size: 20px;
}

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: #999999;
}

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

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

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

.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;
}

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

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

.allMiddle {
	-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%;
	top: 50%;
	position: relative;
}

.allMiddleAbsolute {
	-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%;
	top: 50%;
	position: absolute;
}

.h100 {
	height: 100%;
}

section {
	margin-top: 0;
}

.alignRight {
	text-align: right;
}

.alignLeft {
	text-align: left;
}

.alignCenter {
	text-align: center;
}

.margin70 {
	margin-bottom: 70px;
}

.sectionP70 {
	padding-top: 70px;
	padding-bottom: 70px;
}

.sectionM70 {
	margin-top: 70px;
	margin-bottom: 70px;
}

.selected {
	background-color: #ca9400 !important;
    color: #FFF !important;
}

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

header {
	position: absolute;
	top: 0;
	z-index: 10000;
	width: 100%;
	max-width: 1170px;
	z-index: 10001;
}

#logo {
	margin-top: 10px;
	width: 100%;
	max-width: 210px;
	float: left;
}

#logo > a {
	display: block;
}


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

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

.slickMeWrapper {
	display: block;
	width: 100%;
	position: relative;
}

.slickMe {
	width: 100%;
	display: block;
	height: 400px;
}

.slide {
	height: 400px;
	width: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.heroText {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 1170px;
	z-index: 10000;
}

.heroTextLeftSide {
	text-align: right;
	float: left;
	width: calc(100% - 350px);
}

.heroTextLeftSide .text {
	color: #FFF;
	display: inline-block;
	vertical-align: top;
    text-align: center;
}

.visiteFace {
	text-align: center;
}

.visiteFace > p {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

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

.heroTextLeftSide .ico {
	display: inline-block;
	vertical-align: middle;
	color: #FFF;
	font-size: 250px;
}

.heroTextRightSide {
	background-color: rgba(0,0,0,0.5);
	float: right;
	width: 350px;
	padding-top: 60px;
}

.heroTextRightSide_content {
	padding: 0 20px;
	text-align: center;
	color: #FFF;
}

.heroTextRightSide_content .ico {
	color: #FFF;
	margin-top: 35px;
	margin-bottom: 10px;
	font-size: 40px;
}

.heroTextRightSide_content .text {
	color: #FFF;
	margin-bottom: 20px;
}

.participateButton {
	/* fallback */
	background-color: rgb(195,70,28);

	/* Safari 4-5, Chrome 1-9 */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(195,70,28)), to(rgb(228,82,33)));

	/* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));

	/* Firefox 3.6+ */
	background: -moz-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));

	/* IE 10 */
	background: -ms-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));

	/* Opera 11.10+ */
	background: -o-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));
	width: 300px;
	height: 50px;
	margin: 0 auto;
	border-radius: 20px;
	margin-bottom: 50px;
}

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

.participateButton > a > p {
	color: #FFF;
}

.facebookIcon {
    background-color: #4267b2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 10px auto 0;
	display: inline-block;
}

.facebookIcon > div {
	font-size: 40px;
	line-height: 60px;
	color: #FFF;
}

.homepageText {
	text-align: center;
	margin-bottom: 25px;
}

.homepageText span {
	color: #e55320;
}

.homepageMiddleArea .participateButton {
	margin-bottom: 0;
	text-align: center;
}

.participantes_ul {
	
}

.participantes_ul > li {
	float: left;
	width: 33.33%;
	height: 250px;
}

.participantePhoto .participateButton {
	text-align: center;
	color: #333;
	height: 40px;
	width: 240px;
	background: #FFF;
	transition: all 0.3s ease-out;
}

.participantes_ul > li:hover .participateButton {
	background-color: rgb(195,70,28);
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(195,70,28)), to(rgb(228,82,33)));
    background: -webkit-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));
    background: -moz-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));
    background: -ms-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));
    background: -o-linear-gradient(top, rgb(228,82,33), rgb(195,70,28));
	color: #FFF;
	transition: all 0.3s ease-out;
}

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

.participantePhoto {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 250px;
	width: 100%;
	position: relative;
	border: 0px solid rgba(255,255,255,0);
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
	transition: all 0.3s ease-out;
}

.participantes_ul > li:hover .participantePhoto {
	border: 10px solid rgba(255,255,255,0.5);
	transition: all 0.3s ease-out;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.homepageBreaker {
	width: 100%;
	max-width: 300px;
	background-color: #cccccc;
	height: 5px;
	display: block;
	margin: 0 auto;
	margin-bottom: 20px;
}



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


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

.socialButtons {
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.socialButtons a {
	display: inline-block;
	margin: 0 5px;
	width: 40px;
	height: 40px;
	vertical-align: middle;
}

.socialButtons > a > div {
	font-size: 25px;
	color: rgba(255,255,255,1);
	line-height: 40px;
	background-color: #666666;
	border-radius: 50%;
} 

.inputWrapper {
	display: block;
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
	background-color: #FFF;
	border: 1px solid #cccccc;
	border-radius: 20px;
	overflow: hidden;
}

input[name="newsletter"] {
	display: inline-block;
	vertical-align: top;
	height: 40px;
	width: calc(100% - 34px);
	background-color: #FFF;
	padding-left: 10px;
	border: none;
}

button[name="newsletterSubmit"] {
	background-color: rgba(0,0,0,0);
	border: none;
	display: inline-block;
	vertical-align: top;
}

button[name="newsletterSubmit"] .icon-arrowRight {
	font-size: 30px;
	color: #999999;
	line-height: 40px;
}

.footerLinks_ul {
	margin: 20px 0 15px;
}

.footerLinks_ul > li {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}

.footerLinks_ul > li:not(:last-of-type) {
	margin-right: 10px;
}

.footerLinks_ul > li:not(:last-of-type):after {
	content: "";
	height: 18px;
	width: 1px;
	position: absolute;
	right: -7px;
	background-color: #333;
}

footer .icon-kriacao {
	color: #999999;
	font-size: 70px;
	line-height: 20px;
	margin-bottom: 30px;
	text-align: center;
}

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

/************************************/
/* PARTICIPANTES */
/************************************/

.mainText {
	padding-bottom: 45px;
	border-bottom: 1px solid #FFF;
}

.participantesArea {
	margin: 15px 0;
	text-align: center;
	display: block;
}

.productTypes {
	padding: 8px 20px;
	background-color: #FFF;
    margin-bottom: 20px;
}

.productTypes_ul {
	display: block;
}

.productTypes_ul > li {
	display: inline-block;
	vertical-align: middle;
	color: #e55320;
	cursor: pointer;
	position: relative;
}

.productTypes_ul > li > p, .productTypes_ul > li > p > a {
	color: #e55320;
}

.productTypes_ul > li:not(:last-child) {
	margin-right: 36px;
}

.productTypes_ul > li:not(:last-child):after {
	content: "";
	position: absolute;
	height: 20px;
	width: 1px;
	background-color: #CCC;
	top: 0;
	right: -20px;
}

.selected_slide > p, .selected_slide > p > a {
	color: #333 !important;
}

.productType_selected {
	display: none;
}

.participantesSlide {
    width: 33.33%;
    height: 250px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    float: left
}

.participantesSlide .participateButton {
    background: #FFF;
	height: 40px;
}

.participantesSlide .participateButton > a > p {
    color: #333;
}

.participantes_next_arrow {
    background-color: #e55320;
    color: #FFF;
    font-size: 25px;
    width: 40px;
    height: 40px;
    right: 5px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.participantes_back_arrow {
    background-color: #e55320;
    color: #FFF;
    font-size: 25px;
    width: 40px;
    height: 40px;
    left: 5px;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.participantes_next_arrow > div, .participantes_back_arrow > div {
    line-height: 40px;
}

.participantesSlider{
    /*height: 0px; overflow-y: hidden;*/
    display: none;
}

.participantes_back_arrow, .participantes_next_arrow {
	visibility: hidden;
}

/*#slide_1_1, #participantes_next_arrow_1_1, #participantes_back_arrow_1_1, #slide_2_1, #participantes_next_arrow_2_1, #participantes_back_arrow_2_1 {
    display: block;
    
}*/

.sliderRow {
    padding-bottom: 40px;
    border-bottom: 1px solid #FFF;
}

/************************************/
/* END PARTICIPANTES */
/************************************/


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

.pageMainText {
    padding-bottom: 40px;
}

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

.mainSubText a {
    color: #e55320;
}

#contactos iframe {
    height: 500px;
    width: 100%;
}

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


	
/************************************/
/* PARTICIPANTE */
/************************************/
	
#participante .participantesArea {
	border-bottom: 1px solid #FFF;
	margin: 0;
	padding: 15px 0;
} 	
	
#participante .mainText {
	padding-bottom: 20px;
}

.participanteName {
	margin-bottom: 25px;
}

.participanteSlide {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 500px;
	width: 100%;
}

.participanteSlider_backArrow {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	color: #FFF;
	font-size: 25px;
	line-height: 40px;
	text-align: center;
	left: -10px;
	background-color: #e55320;
}

.participanteSlider_nextArrow {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	color: #FFF;
	font-size: 25px;
	line-height: 40px;
	text-align: center;
	right: -10px;
	background-color: #e55320;
}

.participanteSliderWrapper {
	margin-bottom: 40px;
}

.partipanteLabel {
	background-color: #FFF;
	margin-bottom: 20px;
	padding: 12px 10px;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.participanteInfo {
	padding: 0 10px;
	margin-bottom: 40px;
}

.participanteInfo a {
	color: #e55320;
}

.participanteBack {
	display: block;
	position: absolute;
	left: 0;
	bottom: 23px;
}

.participanteBack .icon-arrowLeft {
	color: #e55320;
}
	
/************************************/
/* END PARTICIPANTE */
/************************************/


/************************************/
/* PARTICIPAR */
/************************************/

#participar .mainText {
	padding-bottom: 20px;
}

#participar .productTypes {
	margin-bottom: 40px;
}

.tabTopText {
	margin-bottom: 40px;
}

.tabTopText a {
	color: #e55320;
}

.participaTab {
	display: none;
}

#participaTab_1 {
	display: block;
}

.participaTab input {
	width: 100%;
	max-width: 300px;
	display: block;
	margin: 7px auto 20px;
	height: 40px;
	border: 1px solid #cccccc;
	border-radius: 20px;
	padding-left: 10px;
}

.participaTab button {
	display: block;
	background-color: #e55320;
	border: none;
	color: #FFF;
	border-radius: 25px;
	height: 50px;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
}

.faq {
	padding: 12px 0;
	border-top: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	margin-bottom: 30px;
}

.faqArrow {
	display: inline-block;
	vertical-align: top;
	font-size: 20px;
	color: #e55320;
	cursor: pointer;
	line-height: 24px;
}

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

.faqTitle {
	cursor: pointer;
}

.faqText {
	padding: 30px 0 10px;
	display: none;
}

#participaTab_4 > .col-xs-12 > div.faq:first-of-type .faqText {
	display: block;
}

.tabTopText_second {
	margin-bottom: 20px;
}

.price {
	display: inline-block;
	vertical-align: top;
	width: 300px;
	background-color: #666666;
	color: #FFF;
	text-align: center;
	padding: 12px 0;
	margin: 0 10px 20px;
}

.tabTopText_first {
    margin-bottom: 40px;
}

.formArea {
	margin-bottom: 40px;
}

.formAreaLabel {
	text-align: center;
	display: block;
	color: #e55320;
	border-top: 1px solid #e5e5e5;
	background-color: #FFF;
	padding: 7px 0;
}

.formAreaInputs {
	padding-top: 30px;
}

.inputLabel {
	padding-left: 20px;
}

.participaTab .formAreaInputs input {
	width: 100%;
	max-width: 100%;
	display: block;
	margin: 0;
	margin-bottom: 10px;
}

.formAreaInputs_label {
	padding-bottom: 10px;
}

.checkboxWrapper {
	display: inline-block;
	vertical-align: middle;
	width: calc(20% - 4px);
	margin-bottom: 7px;
}

.checkboxWrapper input[type="radio"] {
	display: inline-block;
	vertical-align: middle;
	width: inherit;
	height: inherit;
	margin: 0;
}

.checkboxWrapper p {
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
}

.ramoArea {
	cursor: pointer;
}

.ramoArea .inputLabel {
	margin-bottom: 10px;
    padding: 0;
}

.checkBoxBigWrapper {
	margin-bottom: 10px;
}

.participaTab .formAreaInputs input[name="refer_extra"] {
	margin-top: 10px;
	height: 40px;
}

.checkBoxBigWrapper {
	display: none;
}

textarea[name="descritivo"], textarea[name="entidade_produtos"], textarea[name="entidade_precos"], textarea[name="entidade_encomendar"] {
	width: 100%;
	height: 80px;
    padding: 5px;
}

.participaTab .formAreaInputs input[type="file"] {
	border: none;
    width: calc(33.33% - 4px);
    vertical-align: middle;
    display: inline-block;
	margin-top: 10px;
}

.aboutLx .checkboxWrapper {
	width: calc(17% - 4px);
    vertical-align: top;
}

.aboutLx .checkboxWrapper:nth-of-type(5) {
    width: calc(29% - 4px);
}

.aboutLx .checkboxWrapper input[type="radio"] {
	width: 20px;
}

.participaTab .formAreaInputs input[name="flag_termos"] {
	display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    max-width: 40px;
    margin-bottom: 0;
}

#registerForm .formArea:first-of-type .formAreaInputsWrapper {
	display: block;
}

/************************************/
/* END PARTICIPAR */
/************************************/


/************************************/
/* USER */
/************************************/


#user .tabTopText {
	margin-top: 40px;
}

#user .productTypes > p {
	color: #e55320;
}

.info_row {
	display: block;
	margin-bottom: 10px;
	
}

.info_label {
	width: 25%;
	display: inline-block;
	margin-right: -4px;
	text-align: right;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	padding-right: 10px;
	padding-top: 5px;
}

.info_info {
	width: 75%;
	display: inline-block;
	text-align: left;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	padding-left: 10px;
	padding-top: 5px;
}

.infoArea {
	margin-bottom: 40px;
}

.historico_label {
	width: 14.28%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	padding-top: 5px;
	padding-left: 10px;
}

.historico_label:last-of-type {
	border-right: none;
}

.data_label {
	width: 15%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	padding-top: 5px;
	padding-right: 10px;
}

.participacao_label {
	width: 25%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	border-right: 1px solid #CCC;
	padding-left: 10px;
	padding-top: 5px;
	padding-right: 10px;
}

.modulos_label {
	width: 60%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
}

.modulos_label > p {
	display: inline-block;
	width: 90%;
}

.modulos_label span {
	margin-left: 10px;
	margin-right: 10px;
	border-left: 1px solid #333;
}

#user .tabTopText {
	margin-left: auto;
	margin-right: auto;
	max-width: 945px;
	width: 100%;
}

.tabTopText_second {
	font-size: 15px;
}

#user select {
    display: block;
    margin: 7px auto 20px;
    height: 40px;
    border: 1px solid #cccccc;
    border-radius: 20px;
    padding-left: 10px;
	width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    margin-bottom: 10px;
	background-color: rgba(255,255,255,0);
	position: relative;
	z-index: 1000;
}

.waiting_approval {
	color: #ffa200;
}

.approved {
	color: #090;
}

.denied {
	color: #900;
}

.select_wrapper {
	background-color: #FFF;
	border-radius: 20px;
	position: relative;
}

.selectArrow {
	font-size: 16px;
	color: #808080;
	position: absolute;
	right: 15px;
	top: 13px;
	z-index: 999;
}

#user .participateButton {
	height: 40px;
	color: #FFF;
	margin-top: 20px;
	text-align: center;
	margin-bottom: 20px;
}

#user .participateButton a {
	color: #FFF;
	padding-top: 8px;
}

.carrinho_modulo_label {
	width: 60%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
}

.qtd_label {
	width: 5%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	text-align: right;
	border-right: 1px solid #CCC;
}

.preco_label {
	width: 15%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
	border-bottom: 1px solid #CCC;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	text-align: right;
}

.delete_label {
	width: 5%;
	display: inline-block;
	margin-right: -4px;
	vertical-align: bottom;
	padding-bottom: 10px;
}

.delete_label > a {
	background-color: #e55320;
	margin-left: 10px;
	position: relative;
	width: 30px;
	height: 30px;
	display: block;
	border-radius: 4px;
}

.delete_label > a > div {
	background-color: #e55320;
	width: 12px;
}

.priceArea .delete_label > a {
	display: none;
}

.priceArea .carrinho_modulo_label {
	width: 5%;
}

.priceArea .carrinho_modulo_label p, .priceArea .data_label p {
	display: none;
}

.priceArea .qtd_label {
	width: 60%;
}

.priceArea > div {
	border: none;
}

.termsArea input {
	display: inline-block;
	vertical-align: bottom;
	height: 18px;
	width: 18px;
	margin-right: 5px;
}

.termsArea p:last-of-type {
	display: inline-block;
	vertical-align: bottom;
}

.termsArea a {
	color: #e55320;
}

.buyArea button {
	border: none;
	float: right;
}

#passwordRepeat {
    position: relative;
}

#erroPass {
    display: none;
    position: absolute;
    bottom: -10px;
    left: 30px;
    color: red;
}

/************************************/
/* END USER */
/************************************/


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















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

@media (max-width:1200px) {
	
	.hideDesktop {
		display: block;
	}
	
	.hideMobile {
		display: none;
	}

    .col-sm-15 {
        width: 20%;
        float: left;
    }
	
	.size48 {
		font-size: 40px;
	}
	
	.size36 {
		font-size: 30px;
	}

	.size30 {
		font-size: 26px;
	}

	.size20 {
		font-size: 18px;
	}
	
	.margin70 {
		margin-bottom: 60px;
	}
	
	.sectionP70 {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.sectionM70 {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	
	section {
		margin-top: 165px;
	}


/************************************/
/* HEADER */
/************************************/
	
	#logo {
		max-width: 170px;
	}
	
/************************************/
/* END HEADER */
/************************************/

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

	.slickMe, .slide {
		height: 320px;
	}
	
	.heroTextLeftSide {
		text-align: right;
		float: none;
		width: 100%;
		display: block;
		max-width: 720px;
		margin: 0 auto;
		position: relative;
	}
	.heroTextRightSide {
		background-color: rgba(0,0,0,0.8);
		float: none;
		width: 100%;
		display: block;
		padding: 15px 25px;
		height: inherit;
	}
	
	.heroTextLeftSide .text {
		vertical-align: top;
		text-align: center;
		width: 100%
	}
	
	.heroTextLeftSide .ico {
		position: absolute;
		right: 0;
	}
	
	.heroTextRightSide_content .ico {
		margin-top: 0;
	}
	
	.heroText {
		max-width: 100%;
	}
	
	.participateButton {
		margin-bottom: 30px;
	}
	
	.heroTextRightSide_content .text {
		display: inline-block;
		vertical-align: middle;
		margin-bottom: 15px;
	}
	
	.heroTextRightSide_content .ico {
		display: inline-block;
		vertical-align: middle;
		margin-bottom: 15px;
		margin-right: 10px;
	}
	
	.heroTextRightSide_content > p {
		display: inline-block;
		vertical-align: middle;
		margin-right: 5px;
	}
	
	.facebookIcon {
		margin-top: 0;
		width: 40px;
		height: 40px;
		vertical-align: middle;
	}
	
	.facebookIcon > div {
		font-size: 27px;
		line-height: 40px;
	}
	
	.participantes_ul > li {
		width: 50%;
		height: 240px;
	}
	
	.participantePhoto {
		height: 240px;
	}

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

	
	
	
	

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

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

	
/************************************/
/* PARTICIPANTES */
/************************************/

	.mainText {
		padding-bottom: 40px;
	}
	
	.participantesSlide .participateButton {
    	width: 240px;
	}

/************************************/
/* END PARTICIPANTES */
/************************************/	
	
/************************************/
/* CONTACTOS */
/************************************/
	
	#contactos iframe {
        height: 400px;
        width: 100%;
    }
	
/************************************/
/* END CONTACTOS */
/************************************/
	
	
	
	
/************************************/
/* PARTICIPANTE */
/************************************/
	
	.participanteSliderWrapper {
		margin-bottom: 20px;
	}
	
	
	
/************************************/
/* END PARTICIPANTE */
/************************************/	
	

/************************************/
/* PARTICIPA */
/************************************/

	.checkboxWrapper, .aboutLx .checkboxWrapper, .aboutLx .formAreaInputs_label .checkboxWrapper:nth-of-type(5) {
		width: calc(33.33% - 4px);
	}
	
	.participaTab .formAreaInputs input[type="file"] {
		width: 100%;
	}

/************************************/
/* END PARTICIPA */
/************************************/	

/************************************/
/* USER */
/************************************/
	
	
	.delete_label > a {
		margin-left: 5px;
	}
	
/************************************/
/* END USER */
/************************************/
	
}






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



/************************************/
/************************************/
/*   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;
	}
	
	.size48 {
		font-size: 30px;
	}
	
	.size36 {
		font-size: 24px;
	}

	.size30 {
		font-size: 22px;
	}

	.size20 {
		font-size: 16px;
	}
	
	.margin70 {
		margin-bottom: 40px;
	}
	
	.sectionP70 {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.sectionM70 {
		margin-top: 40px;
		margin-bottom: 40px;
	}
	
	section {
		margin-top: 0;
	}


/************************************/
/* HEADER */
/************************************/
	
	#logo {
		max-width: 105px;
	}
	
	
/************************************/
/* END HEADER */
/************************************/

	
	
	
/************************************/
/* HOMEPAGE */
/************************************/
	
	.heroTextLeftSide .ico {
		display: none;
	}
	
	.heroTextRightSide_content .ico {
		display: none;
	}
	
	.heroTextRightSide_content .text {
		margin-bottom: 10px;
	}
	
	.heroTextRightSide {
		padding: 12px 15px;
	}
	
	.participateButton {
		margin-bottom: 25px;
		width: 100%;
	}
	
	.heroText {
		display: block;
		position: relative;
		top: inherit;
		bottom: inherit;
	}
	
	.heroTextLeftSide .text {
		padding: 15px 15px 20px;
		position: absolute;
		left: 0;
		bottom: 0;
		top: inherit;
		transform: inherit;
	}
	
	.heroTextLeftSide .text > p:last-of-type {
		letter-spacing: -1px;
	}
	
	.heroTextLeftSide .text > p:first-of-type {
		line-height: 40px;
	}
	
	.slickMe, .slide {
		height: 240px;
	}
	
	.heroTextRightSide_content {
		padding: 0;
	}
	
	.homepageMiddleArea {
		margin-top: 0;
	}
	
	.participantes_ul > li {
		width: 100%;
		height: 190px;
	}
	
	.participantePhoto {
		height: 190px;
	}
	
	
	
	

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

	
	
	
	

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

	

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


/************************************/
/* PARTICIPANTES */
/************************************/

	.mainText {
		padding-bottom: 30px;
	}
	
	.productTypes_ul {
		display: none;
	}
	
	.productTypes_ul > li {
		display: block;
	}
	
	.productTypes_ul > li > p {
		padding: 8px 20px;
	}
	
	.productTypes_ul > li:not(:last-child) {
		margin-right: 0;
		border-bottom: 1px solid #CCC;
	}
	
	.productTypes_ul > li:first-of-type {
		border-top: 1px solid #CCC;
	}
	
	.productTypes_ul > li:after {
		display: none;
	}
	
	.productTypes {
		/*padding: 0;*/
	}
	
	.productType_selected {
		display: block;
		cursor: pointer;
	}
	
	.productType_selected > p {
		display: inline-block;
		vertical-align: middle;
		/*padding: 8px 15px;*/
	}
	
	.productType_selected .icon-arrowDown {
		display: inline-block;
		vertical-align: middle;
		float: right;
		color: #e55320;
		/*padding-top: 8px;
		padding-right: 20px;*/
		font-size: 20px;
	}

	.price {
		display: block;
		margin: 0 auto 40px;
		max-width: 290px;
		width: 100%;
	}
	
	

/************************************/
/* END PARTICIPANTES */
/************************************/	

/************************************/
/* CONTACTOS */
/************************************/	
	
	#contactos iframe {
        height: 280px;
        width: 100%;
    }
	
/************************************/
/* END CONTACTOS */
/************************************/
	
	
/************************************/
/* PARTICIPANTE */
/************************************/
	
	.participanteSlide {
		height: 210px;
	}
	
	.participanteSlider_backArrow, .participanteSlider_nextArrow {
		display: none;
	}
	
	.partipanteLabel {
		margin-bottom: 10px;
	}
	
	.participanteInfo {
		margin-bottom: 20px;
	}
	
	.participanteBack {
		position: relative;
		bottom: 10px;
	}
	
/************************************/
/* END PARTICIPANTE */
/************************************/
	
/************************************/
/* PARTICIPAR */
/************************************/

	.faqArrow {
		line-height: 20px;
	}
	
	.checkboxWrapper, .aboutLx .checkboxWrapper, .checkboxWrapper, .aboutLx .checkboxWrapper, .aboutLx .checkboxWrapper:nth-of-type(5) {
		width: 100%;
        text-align: left;
	}
	
	.checkboxWrapper input[type="radio"] {
		width: 20px;
	}

/************************************/
/* END PARTICIPAR */
/************************************/	

/************************************/
/* USER */
/************************************/		
	
	
	.info_label {
		width: 100%;
		display: block;
		margin-right: 0px;
		text-align: left;
		vertical-align: bottom;
		padding-bottom: 5px;
		border-bottom: 1px solid #CCC;
		border-right: none;
		padding-right: 0;
		padding-top: 5px;
	}

	.info_info {
		width: 100%;
		display: block;
		text-align: left;
		vertical-align: bottom;
		padding-bottom: 5px;
		border-bottom: 1px solid #CCC;
		padding-left: 10px;
		padding-top: 5px;
	}

	.data_label {
		width: 20%;
	}
	
	.participacao_label, .modulos_label {
		width: 40%;	
	}
	
	#user .participateButton a {
		padding-top: 11px;
	}
	
	.carrinho_modulo_label {
		width: 35%;
		padding-left: 5px;
    	padding-right: 5px;
	}
	
	.qtd_label {
		width: 17%;
		padding-left: 5px;
    	padding-right: 5px;
	}
	
	.preco_label {
		width: 20%;
		padding-left: 5px;
    	padding-right: 5px;
	}
	
	.delete_label {
		/*width: 10%;*/
	}
	
	.delete_label > a {
		width: 20px;
		height: 20px;
	}
	
	.priceArea .qtd_label {
		width: 47%;
	}

	
/************************************/
/* END USER */
/************************************/		
	
}


.banca {
    position: absolute;
    width: 14px;
    height: 14px;
    color: white;
    font-weight: 400;
    font-size: 9px;
    line-height: 11px;
    cursor: pointer;
    text-align: center;
}



#mapa_bancas > img {width: 1504px!important;}

.banca_selected {background-color: rgba(0,100,0,0.5) !important;}
.banca_not_selected {background-color: rgba(255,0,0,0.5);}
.banca_available {background-color: rgba(255,255,255,0) !important;}
.banca_alugada {background-color: rgba(255,0,0,0.5)!important;}

    #banca_1 {top:140px;left:122px;}
	#banca_3 {top:140px;left:139px;}
	#banca_5 {top:140px;left:155px;}
	#banca_7 {top:140px;left:172px;}
	#banca_9 {top:140px;left:189px;}
	#banca_11 {top:140px;left:205px;}
	#banca_13 {top:140px;left:222px;}
	#banca_15 {top:140px;left:247px;}
	#banca_17 {top:140px;left:263px;}
	#banca_19 {top:140px;left:279px;}
	#banca_21 {top:140px;left:303px;}
	#banca_23 {top:140px;left:320px;}
	#banca_25 {top:140px;left:360px;}
	#banca_27 {top:140px;left:390px;}
	#banca_29 {top:140px;left:408px;}
	#banca_31 {top:140px;left:424px;}
	#banca_33 {top:140px;left:441px;}
	#banca_35 {top:140px;left:457px;}
	#banca_37 {top:140px;left:474px;}
	#banca_39 {top:140px;left:491px;}
	#banca_41 {top:140px;left:507px;}
	#banca_43 {top:140px;left:524px;}
	#banca_45 {top:140px;left:559px;}
	#banca_47 {top:140px;left:576px;}
	#banca_49 {top:140px;left:592px;}
	#banca_51 {top:140px;left:621px;}
	#banca_53 {top:140px;left:637px;}
	#banca_55 {top:140px;left:654px;}
	#banca_57 {top:140px;left:778px;}
	#banca_59 {top:140px;left:794px;}
	#banca_61 {top:140px;left:821px;}
	#banca_63 {top:140px;left:839px;}
	#banca_65 {top:140px;left:855px;}
	#banca_67 {top:140px;left:882px;}
	#banca_69 {top:140px;left:899px;}
	#banca_71 {top:140px;left:948px;}
	#banca_73 {top:140px;left:965px;}
	#banca_75 {top:140px;left:982px;}
	#banca_77 {top:140px;left:998px;}
	#banca_79 {top:140px;left:1015px;}
	#banca_81 {top:140px;left:1059px;}
	#banca_83 {top:140px;left:1075px;}
	#banca_85 {top:140px;left:1092px;}
	#banca_87 {top:140px;left:1136px;}
	#banca_89 {top:140px;left:1167px;}
	#banca_91 {top:140px;left:1184px;}
	#banca_93 {top:140px;left:1220px;}
	#banca_95 {top:140px;left:1237px;}
	#banca_97 {top:140px;left:1254px;}
	#banca_99 {top:140px;left:1271px;}
	#banca_101 {top:140px;left:1288px;}
	#banca_103 {top:140px;left:1304px;}
	#banca_105 {top:140px;left:1321px;}
	#banca_107 {top:140px;left:1337px;}
	#banca_109 {top:140px;left:1353px;}
	#banca_111 {top:140px;left:1370px;}
	#banca_113 {top:140px;left:1387px;}
	#banca_115 {top:140px;left:1403px;}
	#banca_117 {display: none;}
	#banca_119 {display: none;}
	#banca_121 {display: none;}

	#banca_2 {top:165px;left:77px;}
	#banca_4 {top:165px;left:94px;}
	#banca_6 {top:165px;left:112px;}
	#banca_8 {top:165px;left:129px;}
	#banca_10 {top:165px;left:145px;}
	#banca_12 {top:165px;left:161px;}
	#banca_14 {top:165px;left:178px;}
	#banca_16 {top:165px;left:194px;}
	#banca_18 {top:165px;left:211px;}
	#banca_20 {top:165px;left:227px;}
	#banca_22 {top:165px;left:244px;}
	#banca_24 {top:165px;left:261px;}
	#banca_26 {top:165px;left:284px;}
	#banca_28 {top:165px;left:301px;}
	#banca_30 {top:165px;left:318px;}
	#banca_32 {top:165px;left:344px;}
	#banca_34 {top:165px;left:383px;}
	#banca_36 {top:165px;left:400px;}
	#banca_38 {top:165px;left:416px;}
	#banca_40 {top:165px;left:433px;}
	#banca_42 {top:165px;left:450px;}
	#banca_44 {top:165px;left:467px;}
	#banca_46 {top:165px;left:482px;}
	#banca_48 {top:165px;left:508px;}
	#banca_50 {top:165px;left:553px;}
	#banca_52 {top:165px;left:571px;}
	#banca_54 {top:165px;left:594px;}
	#banca_56 {top:165px;left:611px;}
	#banca_58 {top:165px;left:627px;}
	#banca_60 {top:165px;left:644px;}
	#banca_62 {top:165px;left:661px;}
	#banca_64 {top:165px;left:677px;}
	#banca_66 {top:165px;left:693px;}
	#banca_68 {top:165px;left:709px;}
	#banca_70 {top:165px;left:727px;}
	#banca_72 {top:165px;left:751px;}
	#banca_74 {top:165px;left:767px;}
	#banca_76 {top:165px;left:799px;}
	#banca_78 {top:165px;left:820px;}
	#banca_80 {top:165px;left:870px;}
	#banca_82 {top:165px;left:887px;}
	#banca_84 {top:165px;left:925px;}
	#banca_86 {top:165px;left:942px;}
	#banca_88 {top:165px;left:959px;}
	#banca_90 {top:165px;left:976px;}
	#banca_92 {top:165px;left:1006px;}
    #banca_94 {top:165px;left:1023px;}
	#banca_96 {top:165px;left:1040px;}
    #banca_98 {top:165px;left:1057px;}
	#banca_100 {top:165px;left:1091px;}
    #banca_102 {top:165px;left:1121px;}
	#banca_104 {top:165px;left:1150px;}
	#banca_106 {top:165px;left:1167px;}
	#banca_108 {top:165px;left:1184px;}
	#banca_110 {top:165px;left:1201px;}
	#banca_112 {top:165px;left:1218px;}
	#banca_114 {top:165px;left:1235px;}
	#banca_116 {top:165px;left:1252px;}
	#banca_118 {top:170px;left:1369px;}
	#banca_120 {top:170px;left:1386px;}
	#banca_122 {top:170px;left:1403px;}



#mapaLx  {
    display: none;
    margin: 30px 0;
}

#bancaQuestion {
    text-align: center;
    margin: 20px 0;
    display: none;
}

#bancaQuestionEspecial {
    display: block;
}

#bancaQuestion p {
    vertical-align: middle;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
}

#bancaQuestion input {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 21px;
    margin: 0;
    margin-left: 10px;
}

input[name="querReservar"] {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 21px;
    margin: 0;
    margin-left: 10px;
}

#explicacao {
    margin-top: 20px;
    text-align: left;
    display: none;
}

.participateEvento {
    display: none;
}

#explicacao .spanL {
    color: #e55320;
}

#explicacao .spanV {
    color:rgb(255,0,0);
}

#explicacao .spanVV {
    color: rgb(0,100,0);
}

.explicaMobile {
    display: none;
}

#bancasMobile {
    margin: 0 auto 20px;
    display: block;
    text-align: center;
    display: none;
}

#bancasMobile div {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#bancasMobile div:last-of-type {
    display: none;
}

#bancasMobile input {
    display: inline-block;
    height: 40px;
    padding-left: 10px;
    background-color: #FFF;
    border: 1px solid #cccccc;
    border-radius: 20px;
    margin-left: 10px;
}

.confirmBancas {
    display: none;
}

#simReserva {
    display: inline-block;
    vertical-align: middle;
}

#naoReserva {
    display: inline-block;
    vertical-align: middle;
    margin-left: 50px;
}

#montaToldo {
    display: none;
    vertical-align: top;
    margin-top: 30px;
    width: 33%;
}

#elementosVerticais {
    display: none;
    vertical-align: top;
    margin-top: 30px;
    margin-left: 50px;
    width: 60%;
}

.caixa_dimensao {
    background-color: #FFF;
    color: #2296f9;
    display: block;
    width: 240px;
    position: absolute;
    z-index: 90;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    padding: 5px;
    top: -60px;
    border-radius: 4px;
    display: none;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

.caixa_dimensao span {
    font-weight: 700;
}



@media (min-width:1200px) {
    .banca:hover .caixa_dimensao {
        display: block;
    }
}

@media (max-width:1200px) {
    .explicaDesktop {
        display: none;
    }
    
    .explicaMobile {
        display: inline-block;
    }
    
    #bancasMobile {
        display: none;
    }
    
    #simReserva {
        display: block;
        margin-bottom: 15px;
    }
    
    #naoReserva {
        display: block;
        margin-left: 0;
    }
    
    #montaToldo, #elementosVerticais {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;   
    }
    
    .confirmBancas {
        text-align: center;
        margin-top: 10px;
    }
}


@media (max-width:767px) {
    #bancasMobile div {
        display: block;
        margin: 20px auto;
    }
}



