@charset "UTF-8";

#stat-info {
    width: 750px;
    font-size: 16px;
    font-weight: bold;
}

#stat-info svg {
    transform: rotate(-90deg);
}

#stat-info h2 {
    text-align: center;
    color: black;
    font-weight: bold;
}

.grid-circle {
  background: url(/images/circle4.png) no-repeat;
  background-size: contain;
  width: 9em;
  height: 9em;
  margin: auto;
}
.grid-circle span {
    line-height: 9em;
    position: absolute;
    width: 9em;
}
.invisible {
    display: none;
}

.circle_animation {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  display: inline;
}

.grid-circle .circle_animation {
    -webkit-animation: grc 1.5s ease-out forwards;
    animation: grc 1.5s ease-out forwards;
}

@-webkit-keyframes grc {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes grc {
  to {
    stroke-dashoffset: 0;
  }
}

.grid-1-4 {
  min-height: 222px;
  padding: 0.9em;
  position: relative;
  text-align: center;
  transition: all .2s ease-in-out;
  width: 20%;
  float: left; 
}
.grid-1-4:hover {
  background-color: rgba(49, 119, 206, 0.24);
  box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 1);
  z-index: 2;

  &:before, &:after {
    content: ""; 
    position: absolute; 
    background-color: rgb(246,125,53);
    top: -2px; 
    bottom: -2px; 
    width: 2px;    
  }

  &:before { 
    left: -2px; 
  }
  &:after { 
    right: -2px; 
  }
}
.grid-1-4 p {
    margin-top: 1em;
    margin-bottom: 0;
}