


.titulo {
  font-size: 30px;
  padding: 10px 0 20px 0;
  margin: 60px 0 0 0;
  border-top: 6px solid #260E0E;
}

.tooltip {
	position: absolute;
	top: 100px;
	left: 100px;
  	-moz-border-radius:5px;
	border-radius: 5px;
 	border: 2px solid #F20C36;
    background: #F24B6A;
	opacity: .9;
  	color: #260E0E;
	padding: 10px;
	width: 300px;
	font-size: 16px;
	z-index: 10;
}

.tooltip .text {
	font-size: 14px;
}

.tooltip .titulo {
  font-weight:bold;
}




/* -------------------------------------------------------------------------- */
/*                                   Botones                                  */
/* -------------------------------------------------------------------------- */

.btn {
	display: inline-block;
  
	/*    color: #212529;
  */
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 1rem .75rem;
	font-size: 1rem;
	line-height: 0.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  }
  
  @media (prefers-reduced-motion: reduce) {
	.btn {
	  transition: none
	}
  }
  
  .btn:hover {
	/*    color: #212529;
  */
	text-decoration: none
  }
  
  .btn.focus,
  .btn:focus {
	outline: 0;
	/*    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
  */
  }
  
  .btn.disabled,
  .btn:disabled {
	opacity: .65
  }
  
  a.btn.disabled,
  fieldset:disabled a.btn {
	pointer-events: none;
  }
  
  
  .btn-info {
	color: #fff;
	background-color: #A4A3D9;
	border-color: #A4A3D9;
	font-size: 24px;
	cursor: pointer;
  }
  
  
  
  .btn-info:hover {
	color: #fff;
	background-color: #5C51A6;
	border-color: #5C51A6;
  }
  

  .btn-info.focus,
  .btn-info:focus {
	color: #fff;
	background-color: #5C51A6;
	border-color: #5C51A6;
  }
  
