:root {
    --icon-color: #fff;
    --icon-hover: #4b4949;
    --background-color: #00c800;
    --background-hover: #00c809;
}

.icon {
    width: 48px;
    height: 48px;
    transform: scale(0.7) translate(20%, 20%);
    fill: var(--icon-color)
}

.float {
    position: fixed;
    cursor: pointer;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    transition: 1s;
    background-color: var(--background-color);
    border-radius: 50px;
    animation: pulse 3s infinite;
    -webkit-animation: pulse 3s infinite;
    -moz-animation: pulse 3s infinite;
    -o-animation: pulse 3s infinite;
    z-index: 99999
}

.float:hover {
    background-color: var(--background-hover)
}

.float:hover .icon {
    fill: var(--icon-hover)
}
#alertWapp{
    right:30px; 
    visibility: hidden; 
    position:fixed;	
    width:17px;	
    height:17px;
    bottom:90px; 
    background:red;
    z-index:101; 
    font-size:11px;
    color:#fff;
    text-align:center;
    border-radius: 50px; 
    font-weight:bold;
    line-height: normal;
}

#msg1{
    right: 105px; 
    visibility: visible; 
    background: #0d6efd;
    color: #fff; 
    position: fixed; 
    width: 200px; 
    bottom: 52px; 
    text-align: center; 
    font-size: 13px; 
    line-height: 31px; 
    height: 32px; 
    border-radius: 100px; 
    z-index: 100;
}

@-webkit-keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
    70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@-o-keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
    70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@-ms-keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
    70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@-moz-keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
    70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}

@keyframes pulse {
    0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 1) }
    70% { -webkit-box-shadow: 0 0 0 20px rgba(0, 200, 0, 0) }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(0, 200, 0, 0) }
}