.floating{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25D366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:40px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}
a.floating:hover {
    color: #fff;
}
.button_pulse_animate {
    position:fixed;
	width:60px;
	height:60px;
    bottom:40px;
	left:40px;
    border-radius: 50%;
    border: 1px solid #25D366;
    animation: widgetPulse infinite 1.5s;
}
@keyframes widgetPulse {
    50% {
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(2,2);
        transform: scale(2,2);
        opacity: 0;
    }
}

/* .float-button{
	margin-top:16px;
} */

#cookie_modal .modal-body {
    background-color: #23366F;
    color: #fff;
}
#accept_cookie {
    border-radius:unset;
    font-size: 12px;
    height: 30px;
}
#cookie_modal a {
    color: #fff;
}