//Estilos de la pagina de reportes delictivos (Url: /reporte-delitos)
.page-node-2 {
	#preface {
		#preface-third {
			#page-title {
				@include title-block($c-dimgray, 265%);
				font-weight: 300;
	    		margin: 0 auto 28px auto;
	    		max-width: 660px;
				text-align: center;

	    		&:after {
	    			background: tint($c-dimgray, 40);
	    			margin: 15px auto 0 auto;
	    			width: 60px;
	    		}
	    	}
		}
	}

	#main {
		.section {
			#content {
				.node-webform {
					max-width: 660px;
					margin: 0 auto;
					color: $c-dimgray;

					.webform-component--reporte {
						label{
							font-weight: bold;
							font-size: 1.3em;
						}

						.description {
							font-style: italic;
							font-weight: lighter;
							margin-bottom: 2%;
							font-size: 1em;
						}

						.form-textarea-wrapper{
							textarea{
								resize: none;
								border-radius: 6px;
							}
						}
					}

					#edit-submitted-evidencia-ajax-wrapper{
						margin-top: 3%;

						label{
							font-weight: bold;
							font-size: 1.3em;
						}

						.description{
							font-weight: lighter;
							font-style: italic;
							margin-bottom: 2%;
							font-size: 1em;
						}

						.form-managed-file{
							background-color: $c-brand-whitesmoke;
							padding: 1%;
							border-radius: 6px;

							input[type='file']{
								background-color: $c-white;
								font-weight: lighter;
							}

							input[type='submit']{
								font-weight: lighter;
							}
						}
					}

					.webform-component--quien-reporta{
						margin-top: 3%;

						label{
							font-weight: bold;
							font-size: 1.3em;
						}

						.description{
							font-style: italic;
							font-weight: lighter;
							margin-bottom: 2%;
							font-size: 1em;
						}
	
						.form-textarea-wrapper{
							textarea{
								resize: none;
								border-radius: 6px;
							}
						}
					}

					.form-actions{
						float: right;
						margin-top: 3%;

						input[type='submit']{
							font-weight: lighter;
							@include button();
						}
					}
				}
			}
		}
	}
}