@charset "utf-8";
/* CSS Document */

.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 350px;
  background-color: #192B6C;
  color: white;
  text-align: justify;
  border-radius: 6px;
  padding: 15px 10px;
  position: absolute;
  z-index: 1;
  bottom: 35px;
  left: 50%;
  margin-left: -43px;
  direction: rtl;
  font-size: x-small;
  box-shadow: 5px 5px 5px 1px #c0c0c0;    
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 11%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

.statistic_text{
    text-align: center; width: 50px; border: dotted 0px; padding: 5px; color: #192b6c; font-size: x-small; font-weight: bold;
}
.statistic_circle {
    font-size: 9pt; font-weight: normal; color: grey; margin-left: 3px; margin-bottom: -2px; background-color: #f2f2f2; border: solid 1px lightgrey; border-radius: 50%; height: 30px; line-height: 30px; width: 30px; padding: 5px; vertical-align: middle; text-align: center; margin: 0px auto;
}