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

	.modal {
			position: fixed; /* Stay in place */
			z-index: 9999; /* Sit on top */
			left: 0;
			top: 0;
			width: 100%; /* Full width */
			height: 100%;
			overflow: auto; /* Enable scroll if needed */
			background-color:	rgba(0, 0, 0, 0.7);
			text-align: center;
	}

	/* Modal Content */
	.modal-content {
		top: calc(50% - 150px);
		/*left: calc(50% - 300px);*/
		max-width: 100%;
		width: 600px;
		max-width: 100%;
		max-height: 300px;
		text-align: center;
		position: relative;
		background-color: #fefefe;
		margin: auto;
		border: 1px solid #888;
	}
	.modal-content img{
	width: 100%;
	max-height: 100%;
	}
	/* The Close Button */
	.close {
			/*color: white; ESTO NO ESTA PERMITIDO SIEMPRE RGB*/
			color: #000;
			font-size: 28px;
			font-weight: bold;
			position: absolute;
			top: 0;
			right: 0;
	}

	.close:hover,
	.close:focus {
			color: #000;
			text-decoration: none;
			cursor: pointer;
	}

/* MAIN CONTAINER */
.container	{ margin: 0 auto;  position: relative; }

.container {
    max-width: 1024px;
}

.row {
	position: relative;
}

/* SELF CLEARING FLOATS - CLEARFIX METHOD */
.row:after, .col:after, .clr:after, .group:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden; }


/* DEFAULT ROW STYLES */
.row, div.clear { padding-bottom: 24px; } /* set according to preference*/


/* DEFAULT COLUMN STYLES */
.col {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

@media (min-width: 690px) {
    .col {
      margin-right: 2%;
     }

     .wpb_column {
     	margin-right: 0px;
     }
}

/* RESET MARGINS */
.col.col_last { margin-right: 0; }
.col:last-child { margin-right: 0; }


/* COLUMN WIDTH ON DISPLAYS +690px */
@media (min-width: 690px) {
	.span_1 { width: 6.5%; }
	.span_2 { width: 15.0%; }
	.span_3 { width: 23.5%; margin-top:-10px;}
	.span_4 { width: 32.0%; }
	.span_5 { width: 40.5%; }
	.span_6 { width: 49.0%; }
	.span_7 { width: 57.5%; }
	.span_8 { width: 66.0%; }
	.span_9 { width: 74.5%; }
	.span_10 { width: 83.0%; }
	.span_11 { width: 91.5%; }
	.span_12 { width: 100%; }
}
/* CÓDIGO CSS POPUP */
#popup a.enlace-popup {
	width: 100%;
}
#popup img{
		width:100%;
		text-align:center;
		margin: 0 auto;

}
#popup {
   display:none !important;
   position: relative;
   position: fixed;
   top:0;
   left:0;
   right:0;
   bottom:0;
   margin:0;
   z-index: 99999;
   background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.6);
}

#popup:target {
   visibility:visible;
   opacity: 1;
   background-color: rgba(0,0,0,0.8);
   position: fixed;
   top:0;
   left:0;
   right:0;
   bottom:0;
   margin:0;
   z-index: 999;
   -webkit-transition:all 1s;
   -moz-transition:all 1s;
   transition:all 1s;
}
.popup-contenedor {
   position: relative;
   background-color: #fff;
   color:#333;
   border-radius: 3px;
   width:90%;
   text-align: center;
   min-width: 300px;
   max-width: 900px;
   margin: 0 auto;
   margin-top: 7%;
}
a.popup-cerrar {
   position: absolute;
   top:3px;
   right:3px;
   background-color: black;
   padding:3px 7px;
   font-size: 20px;
   text-decoration: none;
   line-height: 1;
   color:#fff;
	}
