:root {
    --whatsapp-icon-color: #ffffff;
    --whatsapp-icon-hover: #ffffff;
    --whatsapp-background-color: #00c800;
    --whatsapp-background-hover: #009600;
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    transform:scale( 0.6 ) translate( 20%, 20% );
    fill:var( --whatsapp-icon-color );
}

.whatsapp-float {
    position: fixed;
    cursor: pointer;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    transition: 1s;
    background-color: var( --whatsapp-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: 9000;
}

.whatsapp-float:hover {
    background-color: var( --whatsapp-background-hover );
}

.whatsapp-float:hover .icon {
    fill: var( --whatsapp-icon-hover );
}

@-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 ); }
}

.modal .modal-content {
    color: #fff;
    background-color: #000;
    border: 1px solid #dedede;
}

.modal .modal-content a, .modal .modal-content a:link {
    color: #dedede;
    text-decoration: none;
}

.modal .modal-content a:hover {
    color: #ffffff;
    font-weight: bold;
}

.modal .modal-content .modal-body h1 {
    color: #015D8C;
    font-weight: bold;
}
