.royalvisitorstatswidget{
	text-align: center;
}
.royalvisitorstatswidget .counter{
    font-size: 36px;
    font-weight: bold;
}
.royalvisitorstatswidget .text{
    font-size: 16px;	
}


.royalvisitorstatswidget .style3 table {
	border-collapse: collapse;
	margin: 0;
    padding: 0;
}

.royalvisitorstatswidget .style3 td{
	border: 0px;
	padding: 0;
	vertical-align: middle;
}


.royal_pulsing_overlap {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 10px;
}
.royal_pulsating_circle {
  position: absolute;
  left: calc(50% - 13px);
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 13px;
  height: 13px;
}
.royal_pulsating_circle:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: #fd8686;
  -webkit-animation: royal-pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: royal-pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.royal_pulsating_circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #FF0000;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: royal-pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  animation: royal-pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes royal-pulse-ring {
  0% {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}

@keyframes royal-pulse-ring {
  0% {
    -webkit-transform: scale(0.33);
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes royal-pulse-dot {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes royal-pulse-dot {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}