@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 2px 2px #3851bc, 0 0 0 2px rgba(255,255,255,0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 2px 2px #3851bc, 0 0 0 2px rgba(255,255,255,0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}
@-moz-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 2px 2px #3851bc, 0 0 0 2px rgba(255,255,255,0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 2px 2px #3851bc, 0 0 0 2px rgba(255,255,255,0.5);
        -moz-transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 2px 2px #3851bc, 0 0 0 2px rgba(255,255,255,0.5);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255,255,255,0.1), 0 0 2px 2px #3851bc, 0 0 0 2px rgba(255,255,255,0.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

.box-boton-notificaciones{
	background-color: transparent;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
}

.box-sonar{
	border-radius: 50%;
	border: 1px solid #16b936;
	width: 50px;
	height: 50px;
	color: #fff!important;
	background-color: #25d147;
	background: -moz-linear-gradient(45deg,#126db4 0,#2c99d4 100%);
	background: -webkit-linear-gradient(45deg,#25d147 0,#5cff7e 100%);
	background: linear-gradient(45deg,#25d147 0,#5cff7e 100%);
	text-align: center;
    vertical-align: middle;
    /*line-height: 50px;*/
    cursor: pointer;
    box-shadow: 0 0 3px #000;
    transition: .35s cubic-bezier(.785,.135,.15,.86);
    transition-property: all;
    font-size: 20px;
    text-shadow: 0 0 2px rgba(0,0,0,.5);

    
}
.box-sonar .box-circulos-sonar{
	border-radius: 50%;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;

	animation-name: sonarEffect;
    animation-duration: 2s;
    animation-delay: -2s;
    animation-iteration-count: infinite;
}

.box-sonar:hover{
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
    -moz-transition: -moz-transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
}
.box-tooltip{
	width: 150px;
    color: white;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
    position: absolute;
    top: -60px;
	right:0;
	background-color: #25d147;
	background: -moz-linear-gradient(45deg,#25d147 0,#2c99d4 100%);
	background: -webkit-linear-gradient(45deg,#25d147 0,#5cff7e 100%);
	background: linear-gradient(45deg,#25d147 0,#5cff7e 100%);
}

.box-tooltip:after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 15px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #4cf16e transparent;
    display: block;
    width: 0;
}