#ClickToCall {
	display: none;
    position: fixed;
    bottom: 0px;
    /*right: 50%;*/
    cursor: pointer;
    z-index: 999;
    margin-right: -35px;
	text-align: center;
	width: 100%;
background: rgba(205, 214, 219, 0.5);
}

#ClickToCall a {
	color: #000000;
	display: inline-block;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-top: 15px;
}

#ClickToCallPhone .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #64dd17;
	background-image: url("../images/mobile.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
    -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
	margin:0 auto;
}

#ClickToCallViber .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #7d519e;
	background-image: url("../images/viber.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
   -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
margin:0 auto;	
}

#ClickToCallWhatsApp .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #54c762;
	background-image: url("../images/watsap.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
   -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
margin:0 auto;	
}

#ClickToCallNavigator .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #ffdf63;
	background-image: url("../images/navigator.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
  -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
	margin:0 auto;
}



/*

#ClickToCallAllMobile {
	background: #0078c9;
	opacity: 0.4;
    filter: alpha(Opacity=70);
	position: fixed;
	bottom: 60px;
	width:100%;
}

#ClickToCallAllMobile a {
	color: #FFFFFF;
}

#ClickToCall {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 50%;
    cursor: pointer;
    z-index: 999;
    margin-right: -35px;
}

#ClickToCall .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(26, 255, 179, .5);
    width: 70px;
    height: 70px;
    -webkit-animation: uptocallmini 1.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 1.5s 0s ease-out infinite;
    animation: uptocallmini 1.5s 0s ease-out infinite;
}

#ClickToCall .click-to-call-phone:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../images/mobile.png");
    background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    -webkit-animation: uptocallphone 1.5s linear infinite;
    -moz-animation: uptocallphone 1.5s linear infinite;
    animation: uptocallphone 1.5s linear infinite;
}

@-webkit-keyframes uptocallphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes uptocallphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes uptocallphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }
    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
*/

/*  отключили мигание
@-webkit-keyframes uptocallmini {
    0% {
        box-shadow: 0 0 4px 2px rgba(23, 167, 167, 0), 0 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px 0px rgba(23, 167, 167, 0);
    }
    10% {
        box-shadow: 0 0 4px 2px #1affb3, 0 0 6px 4px rgba(0, 0, 0, 0), 0 0 8px 10px #1affb3;
    }
    100% {
        box-shadow: 0 0 4px 2px rgba(23, 167, 167, 0), 0 0 0px 12px rgba(0, 0, 0, 0), 0 0 0px 12px rgba(23, 167, 167, 0);
    }
}

@-moz-keyframes uptocallmini {
    0% {
        box-shadow: 0 0 4px 2px rgba(23, 167, 167, 0), 0 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px 0px rgba(23, 167, 167, 0);
    }
    10% {
        box-shadow: 0 0 4px 2px #1affb3, 0 0 6px 4px rgba(0, 0, 0, 0), 0 0 8px 10px #1affb3;
    }
    100% {
        box-shadow: 0 0 4px 2px rgba(23, 167, 167, 0), 0 0 0px 12px rgba(0, 0, 0, 0), 0 0 0px 12px rgba(23, 167, 167, 0);
    }
}

@keyframes uptocallmini {
    0% {
        box-shadow: 0 0 4px 2px rgba(23, 167, 167, 0), 0 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px 0px rgba(23, 167, 167, 0);
    }
    10% {
        box-shadow: 0 0 4px 2px #1affb3, 0 0 6px 4px rgba(0, 0, 0, 0), 0 0 8px 10px #1affb3;
    }
    100% {
        box-shadow: 0 0 4px 2px rgba(23, 167, 167, 0), 0 0 0px 12px rgba(0, 0, 0, 0), 0 0 0px 12px rgba(23, 167, 167, 0);
    }
}


*/

/*************/
#KlickToCall {
    cursor: pointer;
    z-index: 999;
	text-align: center;
	width: 100%;

}

#KlickToCall a {
	color: #000000;
	display: inline-block;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-top: 15px;
}

#KlickToCallPhone .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #64dd17;
	background-image: url("../images/mobile.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
    -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
	margin:0 auto;
}

#KlickToCallViber .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #7d519e;
	background-image: url("../images/viber.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
   -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
margin:0 auto;	
}

#KlickToCallWhatsApp .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #54c762;
	background-image: url("../images/watsap.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
   -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
margin:0 auto;	
}

#KlickToCallNavigator .click-to-call-phone {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #ffdf63;
	background-image: url("../images/navigator.png");
	background-repeat: no-repeat;
    background-position: center center;
	background-size: contain;
    width: 50px;
    height: 50px;
  -webkit-animation: uptocallmini 2.5s 0s ease-out infinite;
    -moz-animation: uptocallmini 2.5s 0s ease-out infinite;
    animation: uptocallmini 2.5s 0s ease-out infinite;
	margin:0 auto;
}
