
.titulo {
  font-size: 21px;
  padding: 10px 0 20px 0;
  margin: 60px 0 0 0;
  border-top: 6px solid #4a4a4a;
}

.tooltip {
	position: absolute;
	top: 100px;
	left: 100px;
  	-moz-border-radius:5px;
	border-radius: 5px;
 	border: 3px solid #ca0079;
    background: #fff;
	opacity: .5;
  	color: black;
	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;
    font-weight: 400;
    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: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.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: #ca0079;
    border-color: #ca0079
}
.btn-info:hover {
    color: #ca0079;
    background-color: #fff;
    border-color: #fff
}
.btn-info.focus,
.btn-info:focus {
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}
.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #ca0079;
    border-color: #ca0079
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #ca0079;
    border-color: #10707f
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}