/*--------------------------------------------------------- Inicia configuracion de los estilos propios del Index.php ------------------------------------------------*/
section#team {
	background: #F7F7F7;
}

section#team ul li{
	margin:10px 0;
	font-size:15px;
	list-style: none;
	float:right;
	width:20%;
	min-height:80px;
	max-width:250px;
	min-width:160px;
	position:relative;
}

section#team ul li .avatar {
	width:150px;
	height:115px;
	display:inline-block;
	background-size: contain;
	background-repeat:no-repeat;
	margin-left: 23px;
	margin-top: 20px;
}

section#team ul li .title{
	font-size:10px;
	color:#9FA6A8;
	display:block;
}

.card {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 2px;
	display: inline-block;
	height: 200px;
	margin:1rem;
	position: center;
	width: 160px;
	box-shadow: 0 1px 3px rgba(0, 0, 0,0.15), 0 1px 2px rgba(0, 0, 0,0.24);
	transition: all 0.5s cubic-bezier(.25,.8,.25,1);
}

.card:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

section#team ul li .title{
	font-size:10px;
	color:#9FA6A8;
	display:block;
}

#maestros {
	background-image:url("../images/maestros.png");
}
#admin {
	background-image:url("../images/estrategia.png");
}
#solicitud {
	background-image:url("../images/idea.png");
}
#equipos {
	background-image:url("../images/equipos.png");
}


/*Estilos para decorar los radio y los checkbox al seleccionarlos*/
.formulario .radio label,.formulario .checkbox label {
	display: inline-block;
	cursor: pointer;
	color: #000;
	font-weight: bold;
	position: relative;
	padding: 5px 5px 5px 5px;
	font-size: 1em;
	border-radius: 5px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.formulario .radio label:before,.formulario .checkbox label:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 17px;
	position: absolute;
	left: 15px;
	border-radius: 50%;
	background: none;
	border: 3px solid #75B8E9;
	display: none;
}
.formulario input[type="radio"] {
	display: hidden;
}
.formulario input[type="radio"]:checked + label:before {
	display: none;
}
.formulario input[type="radio"]:checked + label {
	padding: 5px 15px;
	background: #75B8E9;
	border-radius: 2px;
	color: #000;
	font-weight: bold;
}
.formulario .checkbox label:before {
	border-radius: 3px;
}

.formulario .checkbox input[type="checkbox"] {
	display: hidden;
}
.formulario .checkbox input[type="checkbox"]:checked + label:before {
	display: none;
}
.formulario .checkbox input[type="checkbox"]:checked + label {
	background: #75B8E9;
	color: #000;
	font-weight: bold;
	padding: 5px 10px;
}

.btnTabla{
	margin-left:2%;
	width:15%;
	float:left;
}

.w100{
  width:100%;
}

.w95{
  width:95%;
}

.w90{
	width:90%;
}

.w85{
  width:85%;
}

.w80{
  width:80%;
}

.w75{
  width:75%;
}

.w70{
  width:70%;
}

.w65{
  width:65%;
}

.w60{
  width:60%;
}

.w55{
  width:55%;
}

.w50{
  width:50%;
}

.w33{
	width:33.33333%;
}

.w25{
	width:25%;
}

.w20{
	width:20%;
}

.w15{
	width:15%;
}

.w10{
	width:10%;
}

.w3{
	width:3%;
}

.p{
	text-align:justify;
	margin:5px;
}

.fondoAzul {
	background-color:#acd4f1;
	text-align: left;
}

/*SANTIAGO GIRALDO OSORIO - INGENIERO DE PROYECTOS - CLINICA SOMER 2018*/
/*ESTILOS PARA LOS INPUT TIPO CHECKBOX*/
label.switch {
  text-align: left;
  width: 35px;
  height: calc(35px / 2);
  border-radius:10px;
  background-color:#75B8E9;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

label.switch > span {
  display: block;
  width: 100%;
  height: 100%;
}

label.switch > input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

label.switch > span:before, label.switch > span:after {
  content: "";
  cursor: pointer;
  position: absolute;
}

label.switch > span {
  border-radius: 20px;
}

label.switch > span:before {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #c4bdbd;
  border-radius: 20px;
  transition: opacity .2s ease-out .1s, transform .2s ease-out .1s;
  transform: scale(1);
  opacity: 1;
}

label.switch > span:after{
  top: 50%;
  z-index: 3;
  transition: transform .4s cubic-bezier(0.44,-0.12, 0.07, 1.15);
  width: calc(35px / 2);
  height: calc(35px / 2);
  transform: translate3d(0, -50%, 0);
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

label.switch > input[type="checkbox"]:checked ~ span:before {
  transform: scale(0);
  opacity: .7;
}

label.switch > input[type="checkbox"]:checked ~ span:after {
  transform: translate3d(100%, -50%, 0);
}

.btnTablaLeft{
	margin-left:5%;
	width:15%;
	float:left;
}

.btnTablaRight{
	margin-right:5%;
	width:15%;
	float:right;
}

.tdHover:hover {
	background-color: #75B8E9;
	transition: background-color 1s;
	cursor: pointer;
}
