/* Variables CSS */
:root {
	--color-sitio1: #219f42;
	--color-sitio2: #fb4f45;
	--color-sitio3: #56514f;

	--color-deg-1: #0f7fb3;
	--color-deg-2: #007228;
	 
	--fuente-sitio: 'ITCAvantGardeStd', serif;
	--fuente-sitio2: 'Oswald', sans-serif;
  
	--degradado-1: linear-gradient(to bottom, var(--color-deg-2) 0%,var(--color-sitio1) 40%, var(--color-sitio1) 60%, var(--color-deg-2) 100%);

	--transicion: all 0.3s ease;
  }
  

/* CSS reset */
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,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, 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;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	outline: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input, textarea { 
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; 
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
/*ol, ul {
	list-style: none;
}*/
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
a{
	text-decoration:none;
}
img{
	max-width:100%;
}
/* Inicio Estilos Body */
body{
	background:#F4F4F4;
}
h1{
	font:normal 2em "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	color: var(--color-sitio1);
}
h3{
	font:normal 1.2em "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}
/* Fin Estilos Body */
header{
	padding:11px 11px 11px 270px;
	background: var(--degradado-1);
	width:100%;
	overflow:hidden;
	color:#FFF;
}
.logo{
	position:absolute;
	left:25px;
	top:11px;
	/*background:#FFF;*/
}
.logo img {
    height: 140px;
}
.perfil{
	float:right;
	overflow:hidden;
}
.datos{
	float:left;
	padding:0 11px;
	border-right: solid 1px #FFF;
	overflow:hidden;
}
.imagenPerfil{
	display:block;
	background:#FFF;
	border-radius:8px;
	height:92px;
	width:92px; 
	float:right;
	overflow:hidden;
}
.empresa{
	float:left;
	padding-left:11px;
}
.empresa a{
	color:#FFF;
	text-decoration:underline;
	font-weight:bold;
}
.empresa a:hover{
	text-decoration:none;
}
.menu{
	padding:11px 11px 11px 270px;
	background: var(--color-sitio1);
	width:100%;
	height: 50px;
}
.menu ul{
	border-left: solid 1px #000;
	text-align:center;
	position:relative;
}
.menu ul:before,

.menu ul:after {
  display: table;
  content: " ";
}
.menu ul:after {
  clear: both;
}
.menu li{
	float:left;
	list-style:none;
	position:relative;
	color:#000;
	padding:0 10px;
	border-right: solid 1px #000;
	cursor:default;
}
.menu li ul {
	display:none;
	position:absolute;
	top: inherit;
	background: var(--color-sitio1);
	text-align: left;
	border-radius:3px;
	box-shadow: 0 0 2px rgba(0,0,0,0.30);
	z-index:10;
	border:none;
	width:170px;
}
.menu li ul li{
	float:none;
	border:none;
	padding:3px 10px;
}
.menu li ul li:nth-child(odd) {background: var(--color-deg-2)}
.menu li:hover > ul {
	display:block;     

}
.menu li a{
	display:block;
	color:#000;
}
.menu li a:hover{
	text-decoration:underline;
}
.menu li ul li ul{
	top:0;
	left:150px;
	width:220px;
}
.opciones {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top:4%;
}


.opciones:before,

.opciones:after {
  display: table;
  content: " ";
}


.opciones:after {
  clear: both;
}


.opciones:before,

.opciones:after {
  display: table;
  content: " ";
}


.opciones:after {
  clear: both;
}


@media (min-width: 768px) {
  .opciones {
    width: 750px;
  }
}


@media (min-width: 992px) {
  .opciones {
    width: 970px;
  }
}


@media (min-width: 1200px) {
  .opciones {
    width: 1170px;
  }
}
.opciones li{
	float:left;
	list-style:none;
	width:50%;
	margin-bottom:50px;
}
.opciones li img{
	position:absolute;
	top:-30px;
	left:-25px;
	width:111px;
}
.opciones li a{
	display:block;
	background:#FFF;
	border-radius:20px;
	padding:2% 15% 10% 15%;
	width:90%;
	margin:auto;
	position:relative;
	color:#454545;
	font-size:1.4em;
}
.opciones li .link{
	position:absolute;
	bottom:-30px;
	right:10%;
	background:#62862E;
	color:#FFF;
	text-align:center;
	padding:11px 20px 11px 11px;
	width:63px;
	height:52px;
	font-size:3em;
	border-radius:10px;
	line-height:.25;
}
.margen {
    width: 50%;
    margin: 100px auto 100px auto;
    padding: 0px 20px 20px;
    background: #fff;
    box-shadow: 

        0px 0px 0px 5px rgba( 255,255,255,0.4 ), 

        0px 4px 20px rgba( 0,0,0,0.33 );
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: table;
    position: static;
	text-align:left;
	font: normal 1em "Ropa Sans",sans-serif;
}




.margen .header {
    margin-bottom: 20px;
}


.margen .header h3 {
    color: #333333;
    margin:20px 0 5px 0;
	font: bold 2em "Ropa Sans",sans-serif;
}


.margen .header p {
    color: #8f8f8f;
    font-size: 1.1em;
    font-weight: 300;
}


.margen .sep {
    height: 1px;
    background: #e8e8e8;
    width: 100%;
}


.margen .inputs {
    margin-top: 25px;
}


.margen .inputs label {
    color: #8f8f8f;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 7px;
    display: block;
	float:left;
	width:160px;
}
.margen table {
	width:100%;
}
input::-webkit-input-placeholder {
    color:    #b5b5b5;
}
input:-moz-placeholder {
    color:    #b5b5b5;
}
.margen .inputs input, .margen .inputs select, .margen .inputs textarea {
    background: #f5f5f5;
    font-size: 0.8rem;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: none;
    padding: 8px 10px;
    margin-bottom: 20px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.1 );
    clear: both;
	width:200px;
}
.margen .inputs input[type=email]:focus, input[type=password]:focus {
    background: #fff;
    box-shadow: 0px 0px 0px 3px #fff38e, inset 0px 2px 3px rgba( 0,0,0,0.2 ), 0px 5px 5px rgba( 0,0,0,0.15 );
    outline: none;   

}
.margen .inputs .checkboxy {
    display: block;
    position: static;
    height: 25px;
    margin-top: 10px;
    clear: both;
}
.margen .inputs input[type=checkbox] {
    float: left;
    margin-right: 10px;
    margin-top: 3px;
}
.margen .inputs label.terms {
    float: left;
    font-size: 14px;
    font-style: italic;
}
.margen .inputs #submit {
    width: 100%;
    margin-top: 20px;
    padding: 15px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
        background: -moz-linear-gradient(

        top,

        #b9c5dd 0%,

        #a4b0cb);
    background: -webkit-gradient(

        linear, left top, left bottom, 

        from(#b9c5dd),

        to(#a4b0cb));
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #737b8d;
    -moz-box-shadow:

        0px 5px 5px rgba(000,000,000,0.1),

        inset 0px 1px 0px rgba(255,255,255,0.5);
    -webkit-box-shadow:

        0px 5px 5px rgba(000,000,000,0.1),

        inset 0px 1px 0px rgba(255,255,255,0.5);
    box-shadow:

        0px 5px 5px rgba(000,000,000,0.1),

        inset 0px 1px 0px rgba(255,255,255,0.5);
    text-shadow:

        0px 1px 3px rgba(000,000,000,0.3),

        0px 0px 0px rgba(255,255,255,0);
    display: table;
    position: static;
    clear: both;
	cursor:pointer;
}


.margen .inputs #submit:hover {
    background: -moz-linear-gradient(

        top,

        #a4b0cb 0%,

        #b9c5dd);
    background: -webkit-gradient(

        linear, left top, left bottom, 

        from(#a4b0cb),

        to(#b9c5dd));
}
footer{
	background:var(--degradado-1);
	border-top:solid 18px var(--color-sitio1);
	color:#FFF;
	padding:11px;
	width:100%;
	overflow:hidden;
}
footer .creditos{
	float:left;
}
footer img{
	float:right;
	height: 60px;
}
.estadisticas{
	padding:11px;
	width:50%;
	float:left;
	margin-bottom:20px;
}
.estadisticasHistorial{
	padding:11px;
	width:90%;
	margin:0 auto 20px auto;
	height:600px;
}
#container-inside form{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	overflow:hidden;
	position:relative;
}
#container-inside label{
    display: block;
	margin-bottom:3px;
}
#container-inside input{
	margin-bottom:10px;
}
#container-inside input[type=text], #container-inside textarea, #container-inside select, #container-inside input[type=password], #container-inside input[type=number], #container-inside input[type=email], #container-inside input[type=file], #container-inside input[type=date]{
	width:50%;
	border-radius:5px;
	padding:10px; 

	background: #FFF;
    border: none;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
}

.margen .cancelar,
#container-inside .cancelar{
	color:#FFF;
	background: var(--degradado-1);
	width:150px;
	border-radius:3px;
    border: none;
	padding:9px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
	float:left;
	margin-bottom:10px;
	clear:both;
	text-align:center;
}

.margen .action-button,
#container-inside .action-button{
	color:#FFF;
	background: var(--degradado-1);
	display:block;
	width:150px;
	border-radius:3px;
	margin:auto;
    border: none;
	padding:10px;
    box-shadow: inset 0px 2px 3px rgba( 0,0,0,0.2 );
	cursor:pointer;
	float:right;
}
.control-label{
	background:#0f7fb3;
	color:#FFF;
	font-weight:bold;
	padding:5px 2px;
	font-size:1.1em;
}
.pregunta{
	padding:11px;
	border-radius:3px;
	background:#F9F9F9;
	margin-bottom:11px;
	border:solid 1px #e3e3e3;
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);
}
.mitad{
	width: 25% !important;
}
#dia{
	width: 60px !important;
	margin-right:5px;
}
#mes{    

	width: 135px !important;
	margin-right:5px;
}
#anio{
	width: 97px !important;
}
.gustos{
	overflow:hidden;
	padding:11px;
	border-radius:3px;
	background:#F9F9F9;
	margin-bottom:11px;
	border:solid 1px #e3e3e3;
	box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);
}
label.mitad{
	float:left;
}
.mensajeCorreo, .mensajeCedula{
	color:#dd4b39;
}
.mensaje{
	color:#f98c28;
	position:absolute;
	right:0;
	top:0;
}
.imagen{
	position:absolute;
	top:19px;
	right:19px;
	width:40%;
	text-align:center;
}
.campana {
    background: #fff;
    border: 1px solid #DCDCDC;
    margin: 10px 0;
    padding: 0;
	border-radius:2px;
}
.campana.staff {
    border: 1px solid #62862E;
}
.campana .usuario {
    background: #E5E5E5;
    padding: 5px 12px;
}
.campana.staff .usuario {
    background: #E4EBB5;
}
.mensajes{
	padding: 12px 15px;
}
.mensajes a{
	color:#1D4423;
	text-decoration:underline;
}
.mensajes a:hover{
	text-decoration:none;
}
.video{
	float:left;
	width:70%;
	padding:0 1%;
}
.videoWrapper {
	position: relative; 

	padding-bottom: 56.25%; 

	height: 0; 

	overflow: hidden; 

	max-width: 100%;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.descripcion{
	background:#FFF;
	box-shadow:0 1px 2px rgba(0, 0, 0, 0.1);
	padding:15px;
	margin-top:11px;
}
.relacionados{
	float:left;
	width:30%;
	background:#FFF;
	box-shadow:0 1px 2px rgba(0, 0, 0, 0.1);
	padding:15px;
	position:relative;
}
.miniatura{
	overflow:hidden;
	margin-bottom:11px;
}
.relacionados img{
	float:left;
	width:33%;
}
.relacionados span{
	float:left;
	width:67%;
	padding-left:8px;
}
.relacionados .tituloVideo{   

	color: #333;
    font-size: 13px;
    font-weight: 500;
	float:left;
}
.relacionados .fechaVideo{        

	color: #767676;
    font-size: 11px;
}
.admin{
	position:absolute;
	right:0;
	top:-23px;
	color:#1D4423;
}
#container-inside{
	margin:50px auto;
	padding:0 15px;
	position:relative;
}
.usuarios li{
	border: 1px solid #e9ebee;
    display: inline-block;
    margin: 0 0 13px 13px;
    position: relative;
    vertical-align: top;
    width: 50%;
	overflow:hidden;
	text-decoration:none;
}
.imagenUsuario{
	display:inline-block;
	vertical-align:middle;
	width:100px;
	height:100px;
	overflow:hidden;
}
.usuarios img{
	width:100%;
}
.usuarios .infoUsuario{
	display:inline-block;
	vertical-align:middle;
	padding:2px;
}
.usuarios .nombreUsuario{
	display:block;
	color:#1D4423;
}
.usuarios .nombreUsuario:hover{
	text-decoration:underline;
}
@media (min-width: 768px) {
  #container-inside {
    width: 750px;
  }
	.usuarios li{
		width: 344px;
	}
	.usuarios .infoUsuario{
		width: 236px;
	}
}


@media (min-width: 992px) {
  #container-inside {
    width: 970px;
  }
	.usuarios li{
		width: 297px;
	}
	.usuarios .infoUsuario{
		width: 190px;
	}
}
@media (min-width: 1200px) {
  #container-inside {
    width: 1170px;
  }
	.usuarios li{
		width: 364px;
	}
	.usuarios .infoUsuario{
		width: 257px;
	}
}
@media (min-width: 1550px) {
  #container-inside {
    width: 1500px;
  }
	.usuarios li{
		width: 351px;
	}
	.usuarios .infoUsuario{
		width: 243px;
	}
}
@media (min-width: 1880px) {
  #container-inside {
    width: 1820px;
  }
	.usuarios li{
		width: 341px;
	}
	.usuarios .infoUsuario{
		width: 233px;
	}
}
#container-inside:before,

#container-inside:after {
  display: table;
  content: " ";
}


#container-inside:after {
  clear: both;
}
.col1{
	float:left;
	width:20%;
	padding:11px;
}
.col1 img{
	margin:0 auto 11px auto;
	display:block;
}
.col2{
	float:left;
	width:80%;
	padding:11px;
	

}
textarea{
	margin-bottom:11px;
}
.col2 textarea{
	height:50px;
}
.imagenMensaje{
	width:50px;
	height:50px;
	float:left;
	margin-right:11px;
	overflow:hidden;
	display:block;
}
#mensajes{
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
	overflow:hidden;
	position:relative;
}
#mensajes form{
    border: none;
    box-shadow:none;
	margin:0;
	padding:0;
}
.mensajes{
	background:#FFF;
	border-radius:2px;
	padding:11px 11px 11px 72px;
	margin-top:15px;
	position:relative;
	min-height: 72px;
}
.mensajes .imagenMensaje{
	position:absolute;
	left:11px;
}
.historial{
	text-align:left;
	padding:11px;
	border-radius:2px;
	background:#FFF;
	margin-bottom:11px;
}
.contenidosMembresia{
	float:left;
	width:40%;
	padding:1%;
}
.contenidosMembresia .categorias{
	width: 100%;
	overflow: hidden;
	margin-bottom: 11px;
}
.videosMembresia{
	float:left;
	width:20%;
	padding:1%;
}
.contenidosMembresia h2, .videosMembresia h2{
	color: var(--color-sitio1);
	border-bottom:solid 1px var(--color-sitio1);
	font:normal 2em "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	margin-bottom:5px;
}
.contenidosMembresia a{
	color:#1D4423;
}
.boton{
	border:solid 1px #000;
	padding:5px;
	color:#000;
	font-weight:bold;
	margin:11px; 
	display:inline-block;
    font-size: .8em;
}
.filtro{
	position: absolute;
    top: 0;
    right: 0;
    width: 300px !important;
}
.adjunto{
	width:100%;
	overflow:hidden;
}
.adjunto a, .adjunto span{
	float:left;
	width:50%;
}
.containerDiag{
	overflow:hidden;    
	display: flex;
    flex-flow: wrap;
}
.diagnosticos{
	padding:11px;
	width:25%;
	float:left;
}
.diagnosticos .gustos{
	height:95%;
	margin-bottom:0;
}
.diagnosticos .checkbox{
	padding-right:11px;
}

#laboral{
	width: 51%;
	overflow: hidden;
	border-radius: 3px;
	border: 1px solid #e3e3e3;
	padding: 11px;
}

#laboral .float{
	float: left;
	width: 50%;
	padding-right: .6%;
}
#laboral input[type=text], #laboral input[type=date]{
	width: 100%;
}
.cedula{
	width: 200px !important;
}
#laboral .checkbox{
	float: left;
	width: 33.3%;
}