/*Stylesheet*/
section#form-content {
	font-family: 'Roboto', arial, sans-serif;
	color: rgba(0,0,0, .6);
}


/*---------------------------------------------------
General Stylings
---------------------------------------------------*/
section#form-content .relative{ position: relative;}
section#form-content .absolute{ position: absolute;}
section#form-content .fixed{position: fixed;}



/* Text Colors */
section#form-content .txt-white{	color: #fff;}


/*Headings*/
section#form-content h1, 
section#form-content h2, 
section#form-content h3, 
section#form-content h4, 
section#form-content h5, 
section#form-content h6{
	font-weight: normal;
	color: #232323;
    font-family: 'Permanent Marker', cursive;
}

section#form-content h1 {
	font-size: 40px;
	color: #000;
}
section#form-content h2 {
	font-size: 30px;
	color: #000;
}
section#form-content h3 {
	font-size: 24px;
	color: #000;
}
section#form-content h4 {
	font-size: 20px;
	font-weight: bold;
	color: rgba(0,0,0, .6);
}
section#form-content h5 {
	font-size: 18px;
	color: rgba(0,0,0, .6);
}
section#form-content h6 {
	font-size: 14px;
	color: rgba(0,0,0, .6);
}

section#form-content h5.subtitle{
	font-size: 16px;
}

section#form-content p {
	color: #777777;
	font-family: 'Lato', arial, sans-serif;
	font-size: 14px;
	line-height: 19px;
}



section#form-content a.pdf-link{
	text-decoration: underline !important;
}
section#form-content a.pdf-link:hover{
	color: #212121;
}



/* Buttons */
section#form-content .btn,
section#form-content a.btn{
	margin-top: 0px;
}

section#form-content .btn-model,
section#form-content a.btn-model{
	/*padding: 10px 30px;*/
	min-height: 30px;
	border: none;
	text-transform: uppercase;
	font-size: 12px;
	text-decoration: none;
	background-color: #141414;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.2em;
	width: 100%;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

section#form-content .btn-model:hover,
section#form-content .btn-model:focus,
section#form-content a.btn-model:hover,
section#form-content a.btn-model:focus{
	font-weight: 700;
	color: #fff;
  	background: #333;
	text-decoration: none;
    outline: none;
}
section#form-content .btn-model:active{
	cursor: pointer !important;
}


section#form-content .btn-model.btn-small,
section#form-content a.btn-model.btn-small{
	padding: 8px 26px;
	font-size: 11px;
}


/*Colors for Buttons*/

section#form-content .btn-red,
section#form-content a.btn-red{
	background-color: #c20d19;
	color: #fff;
}
section#form-content .btn-red:hover,
section#form-content a.btn-red:hover,
section#form-content .btn-red:focus,
section#form-content a.btn-red:focus{
	background-color: #a81c1e;
	color: #fff;
}

section#form-content .btn-yellow,
section#form-content a.btn-yellow{
	background-color: #e09e1a;
	color: #fff;
}
section#form-content .btn-yellow:hover,
section#form-content a.btn-yellow:hover,
section#form-content .btn-yellow:focus,
section#form-content a.btn-yellow:focus{
	background-color: #c88f22;
	color: #fff;
}

section#form-content .btn-green,
section#form-content a.btn-green{
	background-color: #63a542;
	color: #fff;
}
section#form-content .btn-green:hover,
section#form-content a.btn-green:hover,
section#form-content .btn-green:focus,
section#form-content a.btn-green:focus{
	background-color: #59933d;
	color: #fff;
}

section#form-content .btn-blue,
section#form-content a.btn-blue{
	background-color: #67a7dd;
	color: #fff;
	overflow: hidden !important;
}
section#form-content .btn-blue:hover,
section#form-content a.btn-blue:hover,
section#form-content .btn-blue:focus,
section#form-content a.btn-blue:focus{
	background-color: #5c92bf;
	color: #fff;
}


section#form-content .btn-remove, 
section#form-content .btn-cancel, 
section#form-content .btn-upload{
	width: 120px !important;
	letter-spacing: 0.1em !important;
}


/* Upload Buttons */
section#form-content .file-upload{}
section#form-content .upload-btn{
	position: relative;
	width: 100%
}

section#form-content .upload-btn input[type="file"]{
    height: 30px;
    font-size: 11px;
    border-color: transparent;
    box-shadow: none;
}

section#form-content .upload-btn button,
section#form-content .upload-btn a.btn{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}


/* Inputs */
section#form-content .form h1,
section#form-content .form h2,
section#form-content .form h3,
section#form-content .form h4,
section#form-content .form h5,
section#form-content .form h6{
	font-family: 'Roboto', arial, sans-serif;
	font-weight: 700;
}

section#form-content .form input[type="text"],
section#form-content .form input[type="email"],
section#form-content .form input[type="number"],
section#form-content .form input[type="url"],
section#form-content .form input[type="search"],
section#form-content .form input[type="tel"],
section#form-content .form input[type="password"],
section#form-content .form input[type="date"],
section#form-content .form input[type="color"],
section#form-content .form select{
	height: 30px;
	background: rgba(0,0,0, .1);
	border-color: transparent; 
	width: 100%;
	padding-right: 20px;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

section#form-content .form input[type="text"]:focus,
section#form-content .form input[type="email"]:focus,
section#form-content .form input[type="number"]:focus,
section#form-content .form input[type="url"]:focus,
section#form-content .form input[type="search"]:focus,
section#form-content .form input[type="tel"]:focus,
section#form-content .form input[type="password"]:focus,
section#form-content .form input[type="date"]:focus,
section#form-content .form input[type="color"]:focus,
section#form-content .form select:focus{
	background: rgba(0,0,0, .15);
	outline: transparent;
	border-color: transparent !important;
}


section#form-content .form textarea{
	width: 100%;
	height: 200px;
	background: rgba(0,0,0, .1);
	border-color: transparent; 
	resize: none;
	padding-right: 20px;

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-o-border-radius: 0;
	border-radius: 0;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;

	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

section#form-content .form textarea:focus{
	background: rgba(0,0,0, .15);
	border-color: transparent !important;	

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

section#form-content *::-webkit-input-placeholder{
	font-style: italic;
	color: rgba(0,0,0, .6);
}
section#form-content *::-moz-input-placeholder{
	font-style: italic;
	color: rgba(0,0,0, .6);
}
section#form-content *:-ms-input-placeholder{
	font-style: italic;
	color: rgba(0,0,0, .6);
}

section#form-content .form-group label{
	color: #777777;
	font-family: 'Lato', arial, sans-serif;
	font-size: 14px;
	line-height: 19px;
	font-weight: 400;
	display: block;
}

section#form-content hr{
	border-color: #222;
	height: 0;
	width: 100%;
}


/*-----------------------------*/
/* CHECKBOX/RADIO BUTTON */
/*-----------------------------*/
section#form-content .checkbox input[type=checkbox], 
section#form-content .checkbox-inline input[type=checkbox], 
section#form-content .radio input[type=radio], 
section#form-content .radio-inline input[type=radio]{
	margin-top: 4px;
}


section#form-content .checkbox{
	padding-left: 0px;
}

section#form-content .checkbox label::before{
	display: none;
}

section#form-content .radio label, 
section#form-content .checkbox label{
	padding-left: 0px;
	font-family: 'Lato', arial, sans-serif;
}



/*-----------------------------*/
/* USER DATA */
/*-----------------------------*/
section#form-content .user-data{
	position: relative;
	display: block;
	width: 100%;
	/*text-align: right; */
	text-align: left; 
}

section#form-content .user-data ul{
	width: 100%;
	/*position: absolute;
	top: -65px;*/
	right: 0;

	list-style: none;
}

section#form-content .user-data ul li{
	display: inline-block;
	margin-left: 15px;
	color: rgba(0,0,0, .6);
	background-color:#808184;
	padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 10px;

}
section#form-content .user-data ul li:first-child{
	margin-left: 0px;
}

section#form-content .user-data ul li a{
	/*color: rgba(0,0,0, .6);*/
	color: #fff;
	text-decoration: underline;
}


/*-----------------------------*/
/* LOGIN */
/*-----------------------------*/
section#form-content .info{
	line-height: 19px;
	font-size: 11px;
}

section#form-content .recuperar-pw{
	font-size: 12px;
	text-align: center;
	position: relative;
}

section#form-content .recuperar-pw:before{
	content: "";
	position: absolute;
	display: block;
	top: 8px;
	left: 0;
	height: 1px;
	width: 100%;
	background: #63a542;
	z-index: 0;
}

section#form-content .recuperar-pw a{
	background-color: #f7f8f9;
	padding-left: 15px;
	padding-right: 15px;
	color: #63a542;
	position: relative;
    display: inline-block;
    width: 100%;
    max-width: 150px;
}


/*-----------------------------*/
/* CONTENT */
/*-----------------------------*/
section#form-content.content-section{
	padding: 80px 0;
}

section#form-content h6.premio-cotec,
section#form-content h6.premio-lipor,
section#form-content h6.premio-aeca{
	text-transform: uppercase;
	font-weight: 800;
	letter-spacing: 0.15em;
	font-family: 'Roboto', sans-serif;
	margin-top: 0;
}

section#form-content h6.premio-cotec{
	color: #c20d19;
}

section#form-content h6.premio-lipor{
	color: #00CE00;
}

section#form-content h6.premio-aeca{
	color: #0066CC;
}
section#form-content .checkbox label{
	margin-left: 30px;
}

section#form-content .checkbox label:first-child{
	margin-left: 0px;
}



/* Required Fields */
section#form-content .required-label{
	position: relative;
}

section#form-content .required-label .required{
	position: absolute;
    top: 0px;
    right: 0px;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: bold;
    display: block;
    width: 15px;
    height: 30px;
    text-align: left;
	/*color: #ff9000;*/
    cursor: default;
}

section#form-content .tooltip{
	font-family: 'Roboto', arial, sans-serif;
}

section#form-content .tooltip > .tooltip-inner {
	background-color: #ff9000;
	width: 245px;
	margin-left: 238px;
	padding: 10px;
	text-align: left;
	font-size: 11px;
	color: #000000;

	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

section#form-content .tooltip-inner{width: 100%; max-width: 220px;}

section#form-content .tooltip.top .tooltip-arrow {
  bottom: -14px;
  left: 236px !important;
  border-top-color: #ff9000;
  border-width: 50px 12px 0 12px;
  background: transparent;

  z-index: -1;

	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}



section#form-content .title-info{
	position: relative;
}

section#form-content .title-info .info{
	position: absolute;
    top: 0;
    right: -40px;
}

section#form-content .title-info .tooltip > .tooltip-inner {
	background-color: #ff9000;
}
section#form-content .title-info .tooltip.top .tooltip-arrow{
	border-top-color: #ff9000;
}

section#form-content .title-info .info.info-login{
	top: 15px;
}
section#form-content .title-info .info.info-premios{
	top: 110px;
}
section#form-content .title-info .info.info-button{
	top: 6px;
}

section#form-content .error, section#form-content .error2{color: #E30513;}
section#form-content p.error, section#form-content p.error2{text-align: right; margin-bottom: 0; font-size: 11px;}


/*Zip Code*/
section#form-content .zip-code{width: 45%; display: inline-block;}
section#form-content .zip-code-sep{width: 8%; text-align: center; display: inline-block;}



/*-----------------------------*/
/* Table Styles */
/*-----------------------------*/
section#form-content .table>thead>tr>td{ 
	padding-left: 0; 
	padding-right: 0; 
	vertical-align: bottom;
	font-size: 14px;
	color: rgba(0,0,0, .6);
}

section#form-content .table-responsive.table-hover tbody{
	font-family: 'Roboto', arial, sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

section#form-content .table-responsive.table-hover tbody tr{
	background-color: rgba(0,0,0, .3);

	-webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

section#form-content .table-responsive.table-hover tbody tr:hover{
	background-color: #000;
}

section#form-content .table-responsive.table-hover tbody tr.entregue{
	background-color: #63a542;
}
section#form-content .table-responsive.table-hover tbody tr.entregue:hover{
	background-color: #59933d;
}

section#form-content .table-responsive.table-hover tbody tr.oncourse{
	background-color: #e09e1a;
}
section#form-content .table-responsive.table-hover tbody tr.oncourse:hover{
	background-color: #c88f22;
}


section#form-content .table-responsive.table-hover tbody tr td{
	color: #fff;
	min-height: 30px;
	padding: 5px 10px;
}

section#form-content .table-responsive.table-hover tbody tr td a{
	color: #fff;
}

section#form-content .table-responsive.table-hover thead tr td.premio-status,
section#form-content .table-responsive.table-hover tbody tr td.premio-status{
	width: 150px;
}

section#form-content .table>tbody>tr>td, 
section#form-content .table>tbody>tr>th, 
section#form-content .table>tfoot>tr>td, 
section#form-content .table>tfoot>tr>th, 
section#form-content .table>thead>tr>td, 
section#form-content .table>thead>tr>th{
	border-top: 10px solid #f7f8f9;
}
section#form-content .table>tbody>tr>td:first-child, 
section#form-content .table>tbody>tr>th:first-child, 
section#form-content .table>tfoot>tr>td:first-child, 
section#form-content .table>tfoot>tr>th:first-child, 
section#form-content .table>thead>tr>td:first-child, 
section#form-content .table>thead>tr>th:first-child{
	border-right: 10px solid #f7f8f9;
}

/*-----------------------------*/
/* PAGES STYLES */
/*-----------------------------*/
section#form-content .inserted-data{
	opacity: 0.7;
}

section#form-content .inserted-data h5,
section#form-content .inserted-data .form-group label{
	color: #63a542;
}

section#form-content .form input, 
section#form-content .form textarea{
	margin-top: 10px;
	cursor: pointer;
}


/*-----------------------------*/
/* FILE UPLOAD SECTION */
/*-----------------------------*/
section#form-content .progress{
	height: 10px;
	margin-bottom: 10px;
	border-radius: 0;
	background-color: rgba(99,165,66, .2);

    -webkit-box-shadow: none;
    box-shadow: none;
}

section#form-content .file-upload ul{
	padding-left: 0;
}

section#form-content .file-upload ul li{
	list-style: none;
	border-bottom: 1px solid rgba(0,0,0, .3);
	padding: 10px 0;

	text-align: left;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
	vertical-align: middle;
}

section#form-content .file-upload ul li a.btn-upload,
section#form-content .btn-upload{
	margin-right: 10px;
}

section#form-content .file-upload ul li a img{
	margin-top: -2px;
	width: auto;
}



.presentation-img{width: 100%; max-width: 533px;}


section#form-content .fileinput-button{
	overflow: inherit;
}


/*-----------------------------*/
/* FILE UPLOAD SECTION */
/*-----------------------------*/
footer{background-size: cover; -webkit-background-size: cover; -moz-background-size: cover;}




/*-----------------------------*/
/* RESPONSIVE STYLES */
/*-----------------------------*/
@media only screen and (max-width: 1024px){

	section#form-content .tooltip > .tooltip-inner {
		background-color: #e09e1a;
		width: 245px;
		margin-left: -232px !important;
		padding: 10px;
		text-align: left;
		font-size: 11px;
		color: #000000;
	}

	section#form-content .tooltip.top .tooltip-arrow {
	  bottom: -14px;
	  left: -27px !important;
	  border-top-color: #e09e1a;
	  border-width: 50px 12px 0 12px;
	  background: transparent;

	  z-index: -1;

		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

}



@media only screen and (max-width : 1200px) {
	section#form-content .zip-code-sep{width: 7%;}

	section#form-content .tooltip > .tooltip-inner {
		background-color: #e09e1a;
		width: 245px;
		margin-left: -232px !important;
		padding: 10px;
		text-align: left;
		font-size: 11px;
		color: #000000;
	}

	section#form-content .tooltip.top .tooltip-arrow {
	  bottom: -14px;
	  left: -27px !important;
	  border-top-color: #e09e1a;
	  border-width: 50px 12px 0 12px;
	  background: transparent;

	  z-index: -1;

		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/* Buttons */
	section#form-content .btn-model,
	section#form-content a.btn-model{
		font-size: 10px;
	}
}


@media only screen and (max-width : 992px) {
	section#form-content .zip-code-sep{width: 6.8%;}
}

@media only screen and (max-width: 767px){
	section#form-content hr{
		margin-bottom: 30px;
	}

	section#form-content .title-info .info {
	    top: -22px;
	    right: 0px;
	}

	/*Zip Code*/
	section#form-content .zip-code-sep{width: 8.9%;}
}

@media only screen and (max-width: 707px){
	/*Zip Code*/
	section#form-content .zip-code-sep{width: 8%;}
}

@media only screen and (max-width: 422px){
	/*Zip Code*/
	section#form-content .zip-code-sep{width: 6.5%;}
}

.sub-banner h3{
	font-weight: normal;
	/*color: #232323;*/
    font-family: 'Permanent Marker', cursive;
}



section#form-content .fileinput-button input[type="file"]{
    max-height: 20px;
}



.placeholderitalic::-webkit-input-placeholder, .placeholderitalic::-moz-input-placeholder, .placeholderitalic:-ms-input-placeholder { font-style:italic !important;}



