@font-face {
    font-family: "MMC Regular";
    src: url("../fonts/MMCOFFICE-Regular.eot");
    src: url("../fonts/MMCOFFICE-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/MMCOFFICE-Regular.woff") format("woff"), url("../fonts/MMCOFFICE-Regular.ttf") format("truetype"), url("../fonts/MMCOFFICE-Regular.svg#aller") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MMC Medium";
    src: url("../fonts/MMCOFFICE-Medium.eot");
    src: url("../fonts/MMCOFFICE-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/MMCOFFICE-Medium.woff") format("woff"), url("../fonts/MMCOFFICE-Medium.ttf") format("truetype"), url("../fonts/MMCOFFICE-Medium.svg#aller") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MMC Bold";
    src: url("../fonts/MMCOFFICE-Bold.eot");
    src: url("../fonts/MMCOFFICE-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/MMCOFFICE-Bold.woff") format("woff"), url("../fonts/MMCOFFICE-Bold.ttf") format("truetype"), url("../fonts/MMCOFFICE-Bold.svg#aller") format("svg");
    font-weight: normal;
    font-style: normal;
}

  

body
{
    font-family: Arial;
    font-size: 12px;
}




.customprogress
{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 10;

    display: flex;
    justify-content: center;
    align-items: center;            
}

.customprogress #svgcircle circle 
{
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 300ms linear;
    stroke: #bdc3c7;
    stroke-width: 20px;
}
        
.customprogress #svgcircle #svgbar 
{
    stroke: #f00;
}
        
.customprogress #svgcont 
{
    display: block;
    height: 200px;
    width: 200px;
    border-radius: 100%;
    position: relative;
}
        
.customprogress #svgcont:after 
{
    position: absolute;
    display: block;
    height: 160px;
    width: 160px;
    left: 50%;
    top: 50%;
    content: attr(data-pct);
    margin-top: -80px;
    margin-left: -80px;
    border-radius: 100%;
    line-height: 160px;
    font-size: 29px;
    color: #6d7a7b;
    font-family: 'MMC Regular'; 
    text-align: center;
}   

.hotspot_indicator {
    transform:none !important;
    webkit-transform:none !important;
    webkit-animation: pulse 2s infinite !important;
    animation: pulse 2s infinite !important;
    border-radius: 100%;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
    box-shadow: 0 0 0 0 rgba(255,255,255, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(255,255,255, 0);
      box-shadow: 0 0 0 10px rgba(255,255,255, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(255,255,255, 0);
      box-shadow: 0 0 0 0 rgba(255,255,255, 0);
  }
}   

