@font-face {
  font-family: 'DosisExtralight';
  font-style: normal;
  font-weight: 200;
  src: url(fonts/Dosis/Dosis-VariableFont_wght.ttf) format('truetype');
}
@font-face {
  font-family: 'DosisRegular';
  font-style: normal;
  font-weight: 400;
  src: url(fonts/Dosis/Dosis-VariableFont_wght.ttf) format('truetype');
}
@font-face {
  font-family: 'DosisMedium';
  font-style: normal;
  font-weight: 500;
  src: url(fonts/Dosis/Dosis-VariableFont_wght.ttf) format('truetype');
}
@font-face {
  font-family: 'DosisSemibold';
  font-style: normal;
  font-weight: 600;
  src: url(fonts/Dosis/Dosis-VariableFont_wght.ttf) format('truetype');
}
.compass {
  display: block;
  width: 180px;
  height: 180px;
  border-radius: 100%;
  position: relative;
  font-family: 'DosisRegular';
  color: #555;
  text-shadow: 1px 1px 1px white;
}
.compass:before {
  font-weight: bold;
  position: absolute;
  text-align: center;
  width: 100%;
  color:#cc0000;
  content: "N";
  font-size: 20px;
  top: -2px;
}
.compass:after {
  font-weight: bold;
  position: absolute;
  text-align: center;
  width: 100%;
  color:#cc0000;
  content: "S";
  font-size: 20px;
  bottom: -2px;
}
.ew:before {
  font-weight: bold;
  position: absolute;
  text-align: left;
  width: 100%;
  color:#cc0000;
  content: "W";
  font-size: 20px;
  top:45%;
  left: -2px;
}
.ew:after {
  font-weight: bold;
  position: absolute;
  text-align: right;
  width: 100%;
  color:#cc0000;
  content: "E";
  font-size: 20px;
  top:45%;
  right: -2px;
  z-index: 100;
}
.compass .direction {
  height: 100%;
  width: 100%;
  display: block;
  background-image:url(images/feed_compass_bg_grey2.png);
  background-position:center;
  backgrond-repeat:no-repeat;
  border-radius: 100%;
}
.compass .direction p {
  text-align: center;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 28px;
  display: block;
  margin-top: -25px;
  font-size: 28px;
  font-weight: bold;
}
.compass .direction p span {
  display: block;
  line-height: normal;
  margin-top: 0px;
  font-size: 11px;
  text-transform: none;
  font-weight: normal;
}
.compass .arrow {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}
.compass .arrow:after {
  content: "";
  width: 180px;
  height: 180px;
  background-image: url(images/feed_compass180.png);
  background-repeat:no-repeat;
  /*border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid #cc0000;*/
  position: absolute;
  top: 0px;
  left: 0%;
  margin-left: 0px;
  z-index: 99;
}
.compass .arrow {
      -webkit-animation: rotation 1s linear 1; 
      animation: rotation 1s linear 1;
    }
    @-webkit-keyframes rotation {
      0% { -webkit-transform: rotate(0deg); }
    }
    @keyframes rotation {
      0% { transform: rotate(0deg); }
    }
