@import url('https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Source+Sans+Pro|Abel');

body, html {
	padding: 0;
	margin: 0;
}
img {
	max-width: 100%;
}

	.body {
		margin: 0;
		font-size: 1rem;
		line-height: 1.5;
		color: blue;
		overflow-x: hidden;
	}

	/*.header {
		height: 100vh;
		display: flex;
		align-items: center;
		color: red;*/

	}
	
	.header-video{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		overflow: hidden;

	}
	.header-video video{
		min-width: 100%;
		min-height: 100%;
	}

	.header-overlay{
		height: 100vh;
		width: 100vw;
		position: absolute;
		top: 0;
		left: 0;
		background: #303952;
		z-index: 1;
		opacity: .60;

	}
	



img {
	/*max-width: 100%;*/
}


.fondo {
	background: black;
	margin: 0;
	padding: 0;
	
}


a {
	cursor: pointer;
}

.padre{

	display: flex;
	flex-direction: row;
	text-align: center;
	justify-content: center;
	margin-right: 5px;
	margin-left: 5px;

}

.btn_1 {
	width: 100%;
	padding: 10px 2px;

	margin-right: 5px;
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	flex-direction: row;
	justify-content: center;
	text-align: center;

	border: 1px solid white;
	border-radius: 5px;
	background: #000140;
	max-width: 150px;
	flex-direction: row;

	color: #fff;
	font-family: 'Source Sans Pro';
	font-size: 1.5em;
}
.btn_1:hover {
	/*box-shadow: inset 0 0 5px #070bcd;*/
	text-decoration: none;
}

.btn_2 {
	cursor: pointer;
	color: #fff;
    background-color: #269abc;
    box-shadow: 0 0 1px #000;
    border-radius: 4px;

    padding: 6px 20px;
    border: 0;
    

    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-size: .9em;
}
.btn_2:hover {
    background-color: #1b6d85;
    box-shadow: inset 0 0 2px #000;
}

.btn_3 {
	cursor: pointer;
	color: #fff;
    box-shadow: 0 0 1px #000;
    border-radius: 4px;

    padding: 4px 10px;
    border: 0;
    

    font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
    font-size: .8em;
}

.foto_oficio {
		max-height: 300px;
		max-width: 90%;
		margin: 0px auto;
		box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	}

/*LISTA*/
.lista {
	display: block;
	width: 100%;
	margin-bottom: 30px;

	text-align: center;
}
.lista ul {
	padding: 0;
}
.lista ul li {
	display: inline-block;

	color: #013eac;
	font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;

	margin: auto;
	width: 10%;
	min-width: 100px;
}
.lista ul li img {
	max-width: 70%;
}


/*footer*/

.contenedor .contenedor-busca .footer{

	position: fixed;
	margin-bottom: 5px;
}

/***** MENU ********************************************************************************/
.menu {
	width: 100%;
	margin: 0px auto;
	padding: 30px 10px;
	height: 70px;
	z-index: 1;

	/*border-radius: 0px 0px 4px 4px;*/
	

	background: white;
	font-family: 'Open Sans Condensed';
	font-weight: bold;
	font-size: 1.2em;
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
}
.menu a {
	display: inline-flex;
	cursor: pointer;
	text-decoration: none;
	color: #000;

	padding: 3px 3px;
	
	justify-content: space-between;
}
.menu a.logout {
	float: right;
	margin-right: 20px;
	border: 0;
	
}
.menu a:hover {
	color: #009dbf;
	text-decoration: underline;
}

.menu a.regi{

	float: right;
	margin-right: 10px;
	background-color: #06CD06;
	border-radius: 5px;
	
	color: white;
	
	padding: 3px;


}
.menu a.ini{

	float: left;
	margin-right: 10px;
	background-color: #E87406;
	border-radius: 5px;
	
	padding: 3px;
	color: white;


}

.menu form{

display: inline;


}
.menu .formulario .boton{

	background: #FF4C33;
	border-radius: 5px ;
	border-color: : #FF4C33;
	color: white;
}




/***** EMERGENTE ********************************************************************************/
#popup {
   visibility: hidden;
   opacity: 0;
   margin-top: -300px;

   font-family: 'Source Sans Pro';
}
#popup .popup-titulo {
	padding: 5px 10px;
	border-radius: 5px 5px 0px 0px;
	background-color: #bce8f1;

	font-size: .9em;
}
#popup .popup-cuerpo {
	padding: 20px 30px;
}
#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;
   transition:all 1s;
}
.popup-contenedor {
   position: relative;
   margin:7% auto;
   /*padding:30px 50px;*/
   background-color: #fafafa;
   color:#333;
   border-radius: 3px;
   width:50%;
}
a.popup-cerrar {
   position: absolute;
   background-color: #bce8f1;
   border-radius: 5px 5px 0px 0px;

   padding: 7px 10px;
   line-height: 1;
   top: 0px;
   right: 0px;

   color: #000;
   text-decoration: none;
   font-family: 'Source Sans Pro';
   font-weight: bold;
   font-size: 1em;
}

@media screen and (max-width: 700px) {
	.popup-contenedor {
	   width:90%;
	}
	.buscador {
	width: 90%;
	

	margin: 20px auto;
	border:1px solid #fff;
	background-color: #f2f2f2;
	border-radius: 10px;

}
	.contenedor-busca .info .nombre {
	font-size: 1.4em;
	margin:  auto;
	text-align: center;
	width: 100%;
}
.foto_oficio {
		max-height: 300px;
		max-width: 90%;
		margin: 0px auto;
		box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	}
	.logo a{

		width: 200%;
	}
}



/***** INICIO ********************************************************************************/
.mensaje {
	width: 95%;
	margin: 10px auto;
	margin-bottom: 0;
	padding: 5px;
	text-align: center;

	
	color: red;
	

	font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
	font-size: 1.6em;
	letter-spacing: 5px;

}
.logo {
	width: 100%;
	text-align: center;
	padding-top: 20px;
}
.logo img {
	margin: auto;
	display: block;
	width: 40%;
}
.logo label	{
	display: block;
	color: #fff;
	padding: 10px 0px;

	font-family: 'Open Sans Condensed';
	font-size: 1.5em;
	letter-spacing: 3px;
}

.acciones {
	text-align: center;
	margin: 30px 0px;
}
.acciones a {
	display: inline-block;
}


.rs {
	width: 100%;
	margin: auto;
}
.rs li {
	display: inline-block;
	width: 128px;
	margin: 10px 0px;
}









@media screen and (max-width: 700px) {
	.logo img {
	margin: auto;
	display: block;
	width: 70%;
}
	.buscador {
	width: 90%;
	

	margin: 20px auto;
	border:1px solid #fff;
	background-color: #f2f2f2;
	border-radius: 10px;

}
	.rs li {
		display: inline-block;
		width: 30%;
		margin: 10px 0px;
	}
}




/***** REGISTRO ********************************************************************************/

.mainbox .form-control{

	background: white;
}
.col-lg-12{

	width: 100%;
}

.panel-body{

	height: 400px;
}
.my-2{

	margin-bottom: 5px;
}


@media screen and (max-width: 414px) {
	.g-recaptcha {
		transform:scale(0.96);
	    transform-origin:0 0;
	}
	.panel-body{

	height: 560px;	

	}

}



@media screen and (max-width: 375px) {
	.g-recaptcha {
		transform:scale(0.835);
	    transform-origin:0 0;
	}
}
@media screen and (max-width: 360px) {
	.g-recaptcha {
		transform:scale(0.78);
	    transform-origin:0 0;
	}
}
@media screen and (max-width: 320px) {
	.g-recaptcha {
		transform:scale(0.65);
	    transform-origin:0 0;
	}
}

@media screen and (max-width: 280px) {
	.g-recaptcha {
		transform:scale(0.52);
	    transform-origin:0 0;
	}
}






/***** PERFIL ********************************************************************************/
.datos-perfil {
	width: 90%;
	top: 30px;
	margin: auto;
	padding: 5px ;
	border-radius: 4px;
	background: white;
	
}
.datos-perfil .bienvenida {
	font-family: 'Source Sans Pro';
	font-size: 1.2em;
	font-weight: bold;

	width: 90%;
	margin: 70px auto;
	padding: 5px 0px;
	border-bottom: 1px solid #ccc;
	

}
.datos-perfil .info-perfil {
	width: 90%;
	margin: 5px auto;

	font-family: 'Open Sans Condensed';
	font-size: .9em;

}
.datos-perfil .info-perfil a{
	text-decoration: none;
}
.datos-perfil .info-perfil a:hover{
	text-decoration: underline;
}
.datos-perfil .info-perfil .foto {
	box-shadow: 0px 2px 5px #000;
	cursor: pointer;

	height: 100px;
    width: 100px;
    margin: 20px 0px 3px 0px;

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
    background-size: 101% auto;
}

.datos-perfil .info-perfil .sombra {
	height: 100px;
    width: 100px;
    margin: 20px 0px 3px 0px;

    background: #000;
    opacity: 1;
    z-index: 999;
    border-radius: 50%;
}
.datos-perfil .info-perfil .sombra:hover {
    opacity: .6;
}

.datos-perfil .info-perfil .notaperfil {

		float: right ;
	}
	.datos-perfil .info-perfil .notaperfil img{

	width: 4em;
	/*text-shadow: 10px 2px #000;*/
	text-shadow: 12px 12px 8px #444;
	color: #ccc;
	
	margin: 5px;
	float: left;

}



	/*---- avisos*/
.p-avisos-titulo {
	width: 90%;
	margin: 10px auto;
	margin-bottom: 10px;
	margin-top: 10px ;
	padding: 6px;
	border-radius: 5px;
	background: #63c7f9;

	font-family: 'Open Sans Condensed';
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;

}
.p-contenedor-aviso {
	width: 90%;
	padding: 5px;
	margin: 0px auto;
	text-align: center;
	margin-bottom: 10px;
   border-radius: 5px;
	border: 1px solid #63c7f9;
}
.p-aviso {
	width: 30%;
	max-width: 350px;
	margin: 5px 1%;
	padding: 5px;
	border-radius: 4px;
	display: inline-block;

	background: #f2f2f2;

	text-align: center;
	font-family: 'Source Sans Pro';
}
.lugar_aviso {
	text-align: left;
	font-size: .7em;
	font-weight: bold;

	width: 90%;
	margin: 2px auto;
	border-bottom: 1px solid #ccc;
}
.desc_aviso {
	margin: 5px auto;
	width: 80%;
}
.desc_aviso p {
	margin: 0;
	min-height: 50px;
}
.datos_aviso {
	font-size: .7em;
	font-weight: bold;

	width: 90%;
	margin: 2px auto;
	border-top: 1px solid #ccc;
}

@media screen and (max-width: 800px) {
	.p-avisos-titulo {
		border-radius: 4px;
	}
	.p-contenedor-aviso {
		width: 100%;
		padding: 0;
		margin: 0px auto;

		border: 0;
	}
	.p-aviso {
		display: block;
		width: 90%;
		max-width: 100%;
		margin: 5px auto;
	}

	.datos-perfil .info-perfil .notaperfil {

		float: right ;
	}
	.datos-perfil .info-perfil .notaperfil img{

	width: 1.3em;
	/*text-shadow: 10px 2px #000;*/
	text-shadow: 12px 12px 8px #444;
	color: #ccc;
	
	margin: 5px;
	float: left;

}
.buscador {
	width: 90%;
	

	margin: 20px auto;
	border:1px solid #fff;
	background-color: #f2f2f2;
	border-radius: 10px;

}
.contenedor-busca .info .nombre {
	font-size: 1.2em;
	margin: 2px auto;
	text-align: center;
	width: 100%;
}
.foto_oficio {
		max-height: 300px;
		max-width: 90%;
		margin: 0px auto;
		box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
	}

.logo img {
	margin: auto;
	display: block;
	width: 80%;
}

}





/***** BUSCADOR ********************************************************************************/
.buscador {
	width: 90%;
	

	margin: 20px auto;
	border:1px solid #fff;
	background-color: #f2f2f2;
	border-radius: 10px;

}
.buscador .titulo_buscador {
	width: 100%;
	text-align: center;

	color: #dd6f00;
	padding-top: 10px;

	font-family: 'Open Sans Condensed';
	font-size: 3em;
	letter-spacing: 1.5px;
	
}
.buscador .subtitulo_buscador {
	width: 100%;
	text-align: center;

	color: #3a760c;
	padding-top: 3px;

	font-family: 'Open Sans Condensed';
	font-size: 1.3em;
}
.buscador select, 
.buscador button {
	

	width: 60%;
	max-width: 300px;
    display: block;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    color: #444;
    line-height: 1.3;
    padding: .4em 1.4em .3em .8em;
    width: 400px;
    max-width: 100%; 
    box-sizing: border-box;
    margin: 20px auto;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.03);
    border-radius: .3em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
      background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
   linear-gradient(to bottom, #ffffff 0%,#f7f7f7 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
}
 .buscador button::-ms-expand {
 display: none;
}
.buscador button:hover {
 	border-color: #888;
 	border: 0px;
}
.buscador button:focus {
	border-color: #aaa;
	border: 0px;
	box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: #222; 
	outline: none;
}
.buscador button option {
 font-weight:normal;
}
}
.buscador select {
	padding: 10px 10px;
} 
.buscador button {
	color: #fff;
	background: #2777b2;
	max-width: 100%;
	padding: 10px 0px;
}















/***** RESULTADOS ********************************************************************************/

.contenedor {
	width: 25%;
	padding-top: 5px;
	padding-right: 10px;
	padding-left: 10px;
	float: left;
	margin:auto; 
	margin-top: 30px;
	/*background: green;*/
	position: relative;
}
/*.contenedor .mensaje {

 	margin:auto;
 	background: white;
}*/



.contenedor-busca {
	width: 100%;
	height: 570px;
	
	margin: 10px auto;
	/*padding: 20px 40px;*/
	text-align: center;

	border-radius: 10px;
	border-style: solid;
	border-width:   0px;
	border-color:  none;
	/*background: #201052;*/
	position: relative;
	opacity: 0.9;
	list-style: none;
	-webkit-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	-moz-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
}
.contenedor-busca:hover {
	-webkit-box-shadow: 0px 0px 79px -20px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 79px -20px rgba(0,0,0,1);
	box-shadow: 0px 0px 79px -20px rgba(0,0,0,1);
}
.contenedor-busca-vacio {
	width: 100%;
	height: 570px;
	
	margin: 10px auto;
	/*padding: 20px 40px;*/
	text-align: center;

	border-radius: 10px;
	border-style: solid;
	border-width:   1px;
	border-color:  787e4b;
	background: #d6dca5;
	position: relative;
	opacity: 0.9;
	list-style: none;

	-webkit-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	-moz-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	
}
.contenedor-busca-vacio .fondo{
/*box-shadow: 0px 2px 5px #000;*/

    width: 295px;
    max-width: 96%;
    height: 230px;
    /*color: black;*/

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 5%;
    background-size: 100% auto;
    margin: auto;
    position: relative;
    top: 10px;
    
    -webkit-box-shadow: inset 0px 0px 38px -4px rgba(0,0,0,1);
	-moz-box-shadow: inset 0px 0px 38px -4px rgba(0,0,0,1);
	box-shadow: inset 0px 0px 38px -4px rgba(0,0,0,1);

}

.contenedor-busca a {
	text-decoration: none;
	color: #000;
}

.contenedor-busca .titulo {
	font-weight: bold;
	font-size: 1.4em;
	font-family: Abel;

	min-height: 30px;
}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

    width: 295px;
    max-width: 96%;
    height: 230px;
    /*color: black;*/

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 5%;
    background-size: 100% auto;
    margin: auto;
    position: relative;
    top: 10px;
    
    -webkit-box-shadow: inset 0px 0px 38px -4px rgba(0,0,0,1);
	-moz-box-shadow: inset 0px 0px 38px -4px rgba(0,0,0,1);
	box-shadow: inset 0px 0px 38px -4px rgba(0,0,0,1);

}

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	height: 120px;
   width: 120px;

	background-repeat: no-repeat;
	background-position: 50%;
	border-radius: 50%;
	border-style: solid;
	border-width: 3px;
	
	border-color: white;
	background-size: 100% auto;
	position: absolute;
	top:160px;
/*	left: 100px;*/
	left: 28%;


	-webkit-box-shadow: 0px 0px 38px -4px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 38px -4px rgba(0,0,0,1);
	box-shadow: 0px 0px 38px -4px rgba(0,0,0,1);
}
/*.contenedor-busca .info {
	width: 50%;
	text-align: center;
	vertical-align: bottom;
	color: white;
}*/
/*.contenedor-busca .info .oficio {
	font-size: 1.5em;
	


}*/






/*COLUMNAS VER TARJETA*/

.columna {
	/*margin: 0px 5% 0px 10%;*/
}
.columna li{
	width: 28%;
	display: inline-block;
	position: absolute;
	/*border: 1px solid #000;*/
	/*background: #fff;*/
	/*border-radius: 10px;*/
	/*margin: 0px 1.3% 0px 0%;*/
/*
	-webkit-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	-moz-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);*/
}
.columna .col1 {
	left: 6%
}
.columna .col2 {
	left: 36%
}
.columna .col3 {
	left: 66%
}
.columna img, .columna video {
	max-width: 100%;
}

.columna div {
	margin: 10px 0px;
	padding: 15px 20px;
	background: #fff;
	border-radius: 10px;

	-webkit-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	-moz-box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
	box-shadow: 3px 3px 35px -12px rgba(0,0,0,0.74);
}


@media (max-width:9999px){
	.columna li{
		width: 28%;
		display: inline-block;
		position: absolute;
	}
}

@media (max-width:768px){

.columna li{
	width: 94%;
	display: block;
	position: relative;
}
.columna .col1 {
	left: 3%
}
.columna .col2 {
	left: 3%
}
.columna .col3 {
	left: 3%
}


}






















/*FIN COLUMNAS VER TARJETA*/




.contenedor-busca .info .nombre{
	font-size: 1em;
	color: white;


}

.contenedor-busca .info .nombre{

	background: red;
	text-align: center;
	
	top: 290px;
	left: 60px;
	width: 200px;
	position: absolute;
}
.contenedor-busca .info .califica{

	background: blue;
	text-align: center;
	
	top: 320px;
	left: 60px;
	width: 200px;
	position: absolute;
	display: inline-block;
}

.contenedor-busca .contacto{
	display: inline-block;
	/*background: orange;*/
	text-align: center;
	margin: auto;
	position:absolute;
	top:210;
	left:0;
}

.contenedor-busca .info .califica img{
	width: 1.3em;
	/*text-shadow: 10px 2px #000;*/
	text-shadow: 12px 12px 8px #444;
	color: #ccc;
	margin: 0.2em auto;
	text-align: center;
	
	top: 100px;

}
.contenedor-busca .info .califica img:hover {
	width: 1.5em;
	margin: 0;
	text-align: center;
}

.contacto .wspicon{
	width: 40px;
	float: left;
	
	margin-bottom: 10px;
	margin-left: 50;

	
}
.contacto .wspmail{
	width: 40px;
	float: left;
	
	margin-bottom: 10px;
	margin-left: 50;
	
}
/*.contacto .wspmail img {
	width: 1.3em;
	text-shadow: 10px 2px #000;
	text-shadow: 12px 12px 8px #444;
	color: #ccc;
	margin: 0.2em auto;
	text-align: center;
	
	top: 100px;
	
}*/

/*.contacto .wspmail img:hover {
	width: 1.5em;
	text-align: center;
}*/

.contacto .wsptel{
	width: 40px;
	float: left;
	
	margin-bottom: 10px;
	margin-left: 50;

}

/*.contenedor .encabezado {
	background: white;
	margin:auto;
}*/

.tienda{

	width: 90%;
}











.contenedor-busca .foto, .contenedor-busca .info {	
	display: inline-block;
}

/*.contenedor .encabezado .compartir {
	margin: auto;
	text-align: center;
}*/

.contenedor-busca .contacto, 
.contenedor-busca .contacto label,
.contenedor-busca .info label {	
	display: block;
}
.contenedor-busca .contacto {
	text-align: center;
	color: white;
}
.contenedor-busca .contacto .nombre {
	font-size: 2em;
	text-align: center;
	color: red;
	background: red;

}
.contenedor-busca .contacto .email, .contenedor-busca .contacto .fono {
	font-size: 1.6em;
}


.tienda{

	width: 80%;
	padding-top: 10px;

}


@media screen and (max-width: 768px) {

	.contenedor {
	width: 90%;

	left: 40px;
	/*background: green;*/
	position: relative;

}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

	
    left:190px;
    margin-left: 0px;

}

	.register {

		img


	}
	

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	
    left: 275px;
}

.contenedor-busca .info .nombre{

	
	left: 235px;
	
}

.contenedor-busca .info .califica{

	
	left: 235px;
	
}
.contacto .wspicon{
	
	margin-left: 135;

	
}
.contacto .wspmail{
	
	margin-left: 135;
	
}


.contacto .wsptel{
	
	margin-left: 135;

}
.tienda{

	width: 42%;
	padding-top: 10px;

}


@media screen and (max-width: 425px) {

	

	.contenedor {
	width: 90%;

	left: 22px;
	/*background: green;*/
	position: relative;

}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

	
    left:30px;

}
	

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	
    left: 120px;
}

.contenedor-busca .info .nombre{

	
	left: 80px;
	
}

.contenedor-busca .info .califica{

	
	left: 80px;
	
}
.contacto .wspicon{
	
	margin-left: 60;

	
}
.contacto .wspmail{
	
	margin-left: 60;
	
}


.contacto .wsptel{
	
	margin-left: 60;

}
.tienda{

	width: 72%;
	padding-top: 10px;

}
@media screen and (max-width: 384px) {

	.contenedor {
	width: 90%;

	left: 20px;
	/*background: green;*/
	position: relative;

}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

	
    left:15px;

}
	

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	
    left: 100px;
}

.contenedor-busca .info .nombre{

	
	left: 55px;
	
}

.contenedor-busca .info .califica{

	
	left: 55px;
	
}
.contacto .wspicon{
	
	margin-left: 48;

	
}
.contacto .wspmail{
	
	margin-left: 48;
	
}


.contacto .wsptel{
	
	margin-left: 48;

}
.tienda{

	width: 75%;
	padding-top: 10px;

}

@media screen and (max-width: 375px) {

	.contenedor {
	width: 90%;

	left: 20px;
	/*background: green;*/
	position: relative;

}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

	
    left:10px;

}
	

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	
    left: 100px;
}

.contenedor-busca .info .nombre{

	
	left: 55px;
	
}

.contenedor-busca .info .califica{

	
	left: 55px;
	
}
.contacto .wspicon{
	
	margin-left: 48;

	
}
.contacto .wspmail{
	
	margin-left: 48;
	
}


.contacto .wsptel{
	
	margin-left: 48;

}
.tienda{

	width: 75%;
	padding-top: 10px;

}
@media screen and (max-width: 360px) {

	.menu .formulario .barra{

	width: 120px;
}

	.contenedor {
	width: 100%;
	left: 0px;

	
	/*background: green;*/
	position: relative;

}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

	
    left:5px;
    width: 320px;

}
	

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	
    left: 110px;
}

.contenedor-busca .info .nombre{

	
	left: 70px;
	
}

.contenedor-busca .info .califica{

	
	left: 70px;
	
}
.contacto .wspicon{
	
	margin-left: 55;

	
}
.contacto .wspmail{
	
	margin-left: 55;
	
}


.contacto .wsptel{
	
	margin-left: 55;

}
.tienda{

	width: 75%;
	padding-top: 10px;

}

@media screen and (max-width: 320px) {

	.menu .formulario .barra{

	width: 100px;
}

	.contenedor {
	width: 100%;
	left: 0px;

	
	/*background: green;*/
	position: relative;

}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

	
    left:8px;
    width: 280;

}
	

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	
    left: 90px;
}

.contenedor-busca .info .nombre{

	
	left: 50px;
	
}

.contenedor-busca .info .califica{

	
	left: 50px;
	
}
.contacto .wspicon{
	
	margin-left: 45;

	
}
.contacto .wspmail{
	
	margin-left: 45;
	
}


.contacto .wsptel{
	
	margin-left: 45;

}

.tienda{

	width: 80%;
	padding-top: 10px;
}
@media screen and (max-width: 280px) {

	.menu .formulario .barra{

	width: 70px;
}

	.contenedor {
	width: 100%;
	left: 0px;

	
	/*background: green;*/
	position: relative;

}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;*/

	
    left:0px;
    width: 255px;

}
	

.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	
    left: 70px;
}

.contenedor-busca .info .nombre{

	
	left: 28px;
	
}

.contenedor-busca .info .califica{

	
	left: 28px;
	
}
.contacto .wspicon{
	
	margin-left: 34;

	
}
.contacto .wspmail{
	
	margin-left: 34;
	
}


.contacto .wsptel{
	
	margin-left: 34;

}
.tienda{

	width: 80%;
	padding-top: 10px;

}


/*codigoanterior@media screen and (max-width: 425px) {
	
.contenedor-busca .info .nombre{

	background: red;
	text-align: center;
	
	top: 290px;
	left: 30px;
	width: 200px;
	position: absolute;
	border-radius: 7px; 


}
.contenedor-busca .info .califica{

	background: blue;
	text-align: center;
	border-radius: 7px;

	
	top: 320px;
	left: 30px;
	width: 200px;
	position: absolute;
	display: inline-block;
}




.contenedor-busca .contacto{
	display: inline-block;
	
	text-align: center;
	margin: auto;
	position:absolute;
	top:340;
	left:30;
}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;

	height: 190px;
    width: 244px;
    color: black;

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 5%;
    background-size: 100% auto;
    margin: auto;
    position: absolute;
    top: 10px;
    left:10px;

}


.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	height: 120px;
    width: 120px;

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;

    border-color: white;
    background-size: 100% auto;
    position: absolute;
    top:160px;
    left: 70px;
}
.contenedor-busca .foto, .contenedor-busca .info {	
	display: inline-block;
}
.contenedor-busca .info {
	width: 50%;
	text-align: center;
	vertical-align: bottom;
}
.contenedor-busca .info .oficio {
	font-size: 1.5em;
	color: white;


}
.contenedor-busca .info .nombre{
	font-size: 1em;
	color: white;


}
.contenedor .encabezado .compartir {
	margin: auto;
	text-align: center;
}
.contenedor-busca .info .califica img{
	width: 1.3em;
	/*text-shadow: 10px 2px #000;
	text-shadow: 12px 12px 8px #444;
	color: #ccc;
	margin: 0.2em auto;
	text-align: center;
	
	top: 100px;

}
.contenedor-busca .info .califica img:hover {
	width: 1.5em;
	margin: 0;
	text-align: center;
}
.contenedor-busca .contacto, 
.contenedor-busca .contacto label,
.contenedor-busca .info label {	
	display: block;
}
.contenedor-busca .contacto {
	text-align: center;
	color: white;
}
.contenedor-busca .contacto .nombre {
	font-size: 2em;
	text-align: center;
	color: red;
	background: red;

}
.contenedor-busca .contacto .email, .contenedor-busca .contacto .fono {
	font-size: 1.6em;
}


.menu{

		height: 10%;

	}

	.menu .formulario .barra{

		width: 100px;
		background: white;
		border-radius: 6%;
		border-style: solid;
		border-width: 0.7px;
		
		color: black;
		border-color: #706F6F;

		
	}
	.menu .formulario .boton{

		width: 60px;
		background: #BA06F4;
		border-radius: 6%;
		border-style: solid;
		border-width: 0.7px;
		
		color: white;
		border-color: #706F6F;
		
	}



@media screen and (max-width: 320px) {

.contenedor{

		width: 90%;
		margin-top: 70px;
		margin-left: 5%;
		margin-right: 5%;
		
		
		border-radius: 10px;
		padding-top: 0px;
		position: relative;


	}
	
.contenedor-busca .info .nombre{

	background: red;
	text-align: center;
	
	top: 290px;
	left: 30px;
	width: 200px;
	position: absolute;
	border-radius: 7px; 


}
.contenedor-busca .info .califica{

	background: blue;
	text-align: center;
	border-radius: 7px;

	
	top: 320px;
	left: 30px;
	width: 200px;
	position: absolute;
	display: inline-block;
}




.contenedor-busca .contacto{
	display: inline-block;
	
	text-align: center;
	margin: auto;
	position:absolute;
	top:340;
	left:30;
}

.contenedor-busca .fondo{
/*box-shadow: 0px 2px 5px #000;

	height: 190px;
    width: 244px;
    color: black;

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 5%;
    background-size: 100% auto;
    margin: auto;
    position: absolute;
    top: 10px;
    left:10px;

}


.contenedor-busca .foto {
	box-shadow: 0px 0px 0px white;

	height: 120px;
    width: 120px;

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;

    border-color: white;
    background-size: 100% auto;
    position: absolute;
    top:160px;
    left: 70px;
}
.contenedor-busca .foto, .contenedor-busca .info {	
	display: inline-block;
}
.contenedor-busca .info {
	width: 50%;
	text-align: center;
	vertical-align: bottom;
}
.contenedor-busca .info .oficio {
	font-size: 1.5em;
	color: white;


}
.contenedor-busca .info .nombre{
	font-size: 1em;
	color: white;


}
.contenedor .encabezado .compartir {
	margin: auto;
	text-align: center;
}
.contenedor-busca .info .califica img{
	width: 1.3em;
	/*text-shadow: 10px 2px #000;
	text-shadow: 12px 12px 8px #444;
	color: #ccc;
	margin: 0.2em auto;
	text-align: center;
	
	top: 100px;

}
.contenedor-busca .info .califica img:hover {
	width: 1.5em;
	margin: 0;
	text-align: center;
}
.contenedor-busca .contacto, 
.contenedor-busca .contacto label,
.contenedor-busca .info label {	
	display: block;
}
.contenedor-busca .contacto {
	text-align: center;
	color: white;
}
.contenedor-busca .contacto .nombre {
	font-size: 2em;
	text-align: center;
	color: red;
	background: red;

}
.contenedor-busca .contacto .email, .contenedor-busca .contacto .fono {
	font-size: 1.6em;
}


.menu{

		height: 10%;

	}

	.menu .formulario .barra{

		width: 100px;
		background: white;
		border-radius: 6%;
		border-style: solid;
		border-width: 0.7px;
		
		color: black;
		border-color: #706F6F;

		
	}
	.menu .formulario .boton{

		width: 60px;
		background: #BA06F4;
		border-radius: 6%;
		border-style: solid;
		border-width: 0.7px;
		
		color: white;
		border-color: #706F6F;
		
	}





@media screen and (max-width: 425px) {
	.buscador {
	width: 90%;
	

	margin: 20px auto;
	border:1px solid #fff;
	background-color: red;
	border-radius: 10px;

	}

	.menu{

		height: 70px;

	}

	.menu .formulario .barra{

		width: 160px;
		background: white;
		border-radius: 6%;
		border-style: solid;
		border-width: 0.7px;
		
		color: black;
		border-color: #706F6F;

		
	}
	.menu .formulario .boton{

		width: 60px;
		background: yellow;
		border-radius: 6%;
		border-style: solid;
		border-width: 0.7px;
		
		color: white;
		border-color: #706F6F;
		
	}

	.contenedor{

		width: 90%;
		margin-top: 70px;
		margin-left: 5%;
		margin-right: 5%;
		
		
		border-radius: 10px;
		padding-top: 0px;
		position: relative;


	}

	

	.contenedor-busca {
		width: 100%;
		background: #201052;;
		opacity: 0.9;
		position: relative;
	}
	.contenedor-busca .info .califica{
	font-size: 1,3em;
	

	background: blue;
	text-align: center;
	border-radius: 7px;

	
	top: 320px;
	left: 80px;
	width: 200px;
	position: absolute;
	display: inline-block;

}
	.contenedor-busca .contacto .nombre {
	font-size: 2em;
	text-align: center;
	color: red;
	background: red;

	}

	.contenedor-busca .contacto{

	font-size: 1em;
	margin: 2px auto;
	top:360px;
	text-align: center;
	width: 200px;
	position: absolute;
	left: 80px;
	
	background: white;

	}
	.contacto .wspicon{
	width: 40px;
	float: left;
	
	margin-bottom: 10px;
	margin-left: 20;

	
}
.contacto .wspmail{
	width: 40px;
	float: left;
	
	margin-bottom: 10px;
	margin-left: 20;
	
}


.contacto .wsptel{
	width: 40px;
	float: left;
	
	margin-bottom: 10px;
	margin-left: 20;

}

	.contenedor-busca  .oficio .email{
	font-size: 1em;
	margin: 2px auto;
	top:25px;
	text-align: center;
	width: 200px;
	position: absolute;
	left: -100px;
	
	background: white;
	

}
.contenedor-busca .fondo{
box-shadow: 0px 2px 5px #000;

	height: 200px;
    width: 92%;
    

	background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 5%;
    background-size: 100% auto;
    margin: auto;
    position: absolute;
    top: 10px;
    
}



	.contenedor-busca .foto,
	.contenedor-busca .info,
	.contenedor-busca .contacto{
		display: block;
		margin: 0px auto;
		
	}
	.buscador select, 
	.buscador button {
	

	width: 80%;
	
    display: block;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    color: #444;
    line-height: 1.3;
    padding: .4em 1.4em .3em .8em;
    max-width: 80%; 
    box-sizing: border-box;
    margin: 20px auto;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.03);
    border-radius: .3em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
     background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'),
   linear-gradient(to bottom, #ffffff 0%,#f7f7f7 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    transition: all 0.25s ease;

.buscador button::-ms-expand {
 display: none;
}
.buscador button:hover {
 border-color: #888;
}
.buscador button:focus {
 border-color: #aaa;
 box-shadow: 0 0 1px 3px rgba(59, 153, 252, .7);
 box-shadow: 0 0 0 3px -moz-mac-focusring;
 color: #222; 
 outline: none;
}
.buscador button option {
 font-weight:normal;
}
}
.buscador select {
	padding: 10px 10px;
} 
.buscador button {
	color: #fff;
	background: #058cf2;
	max-width: 100%;
	padding: 10px 0px;
}

 /*boton facebook*/ 








/*boton facebook*/ 




	.contenedor .contenedor-busca .compartir {
	width: 100%;
	margin: auto;
	text-shadow: red;

}
	}







