* {
  margin: 0;
  padding: 0;
}
html,body,table {
  font-family:Arial,Helvetica,sans-serif;
  line-height: 1.71428571;
  font-size: 14px;
}
body {
  color: #707676;
  margin: 0px;
  padding: 0px;
  -webkit-font-smoothing: antialiased;
  background-color: #edf1f5;
  /* background-color: #ebebeb; */
}
a:link {
    color: #0074ba;
    text-decoration: none;
}
a:visited,a:active {
    color: #0074ba;
}
a:link:hover,a:link:focus,a:visited:hover,a:visited:focus {
    color: #00547e;
}
a img {
  border: none;
}
.nowrap {
  white-space: nowrap;
}
.btn.btn-success {
  margin-top:20px;
}
table p {
  margin-bottom:0.25rem;
  line-height: 22px;
}
.btn:hover {
  cursor: pointer;
}
.btn-check {
  white-space: nowrap;
}
/* Dot Pulse */
.stage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 8px 0;
  margin-left: -20px;
  overflow: hidden;
}
 .dot-pulse {
  position: relative;
  left: -9999px;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #80adff;
  color: #80adff;
  box-shadow: 9999px 0 0 -5px #80adff;
  animation: dotPulse 1.5s infinite linear;
  animation-delay: .25s;
}

.dot-pulse::before, .dot-pulse::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #80adff;
  color: #80adff;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px #80adff;
  animation: dotPulseBefore 1.5s infinite linear;
  animation-delay: 0s;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px #80adff;
  animation: dotPulseAfter 1.5s infinite linear;
  animation-delay: .5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #80adff;
  }
  30% {
    box-shadow: 9984px 0 0 2px #80adff;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #80adff;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #80adff;
  }
  30% {
    box-shadow: 9999px 0 0 2px #80adff;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #80adff;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #80adff;
  }
  30% {
    box-shadow: 10014px 0 0 2px #80adff;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #80adff;
  }
}
/* End Dot Pulse */
#wrapper {
  margin-top:30px;
  background-color:#fff;
  box-shadow: 6px 6px 12px -7px rgba(0,0,0,.39);
}
#sidebar {
  background-color:#5481a9;
}
#sidebar h3 {
  color:#fff;
  font-size:22px;
  margin-top:20px;
  margin-bottom:20px;
}
#sidebar a {
  display: block;
  padding:15px 15px;
  color:#e4f2ff;
  position: relative;
  border-bottom:1px solid #8ba8c1;
}
#sidebar a:hover {
  color: #c0e2ff;
  text-shadow: 0 1px #091621;
}
#sidebar a.active {
  color:#fff;
  font-weight:600;
}
#sidebar a:before {
  position: absolute;
  content: '-';
  left:3px;
}
#sidebar a.active:after {
  position: absolute;
  content: url('../images/arrow.png');
  top:0;
  right:-20px;
}
#content {
  padding:20px 10px;
  min-height:600px;
}
#content h2 {
  font-size:22px;
  border-bottom:1px solid #eee;
  padding-bottom:20px;
  margin-bottom:30px;
}
#footer {
  font-size: 13px;
  color: #b4c0cc;
  text-shadow: 0 1px #fff;
  padding:10px 0;
}