/*----------------------------------------------
*
* [Theme Light Blue Stylesheet]
*
* Theme    : Leverage
* Version  : 2.0
* Author   : Codings
* Support  : codings.dev
* 
----------------------------------------------*/

/*----------------------------------------------

[ALL CONTENTS]

1. Root

----------------------------------------------*/

/*----------------------------------------------
1. Root
----------------------------------------------*/

/* #region Root */

:root {
    
    --primary-color: #3cb678;
    --secondary-color: #49dce9;
}

/* #endregion Root */


@media (min-width: 726px) {
	.whatsApp {
		bottom: 50px;
		right: 3%;
		position: fixed;
		width: 55px;
		height: 55px;
		z-index: 99999;
	}
}

@media (max-width: 727px) {
	
	.whatsApp {
		bottom: 50px;
		right: 5%;
		position: fixed;
		width: 55px;
		height: 55px;
		z-index: 99999;
	}
	
}


.whatsApp .spn-counter {
    color: #ffffff;
    position: absolute;
    top: 62px;
    left: -20px;
    width: 92px;
    right: 0px;
    background-color: #5fbebf;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
    font-family: arial;
    line-height: 12px;
    border: solid 1px #5fbebf;
    animation: blink 1s linear infinite;
}

@keyframes blink{
	0%{opacity: 0;}
	100%{opacity: 1;}
}

