@import 'reset/reeeset.min.css';
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:600');*/

html, body {
  overflow: hidden;
}
body {
/*  position: relative
*/}

#wrapper {
  height: 100vh;
  padding: 10px;
  max-width: 960px;
  margin: 0 auto;
}

#tenantlogo { 
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

#footer {
  position: relative;
}

#svg {
  box-shadow: 0 0 10px 3px #00000029;
  height: calc(100% - 200px);
  overflow: hidden;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.1rem;
}

svg .line-path {
  stroke-width: 8px;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: hsla(39, 100%, 50%, 0.9);
}
svg .line-transfer {
  stroke-width: 8px;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke: hsla(200, 100%, 50%, 0.3);
}

svg .markershape {
  fill: hsla(52, 100%, 50%, 0.94);
}

.path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: dash 2000s linear infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 60000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

#notification{
  position: absolute;
  width: 100vw;
  height: 100vh;
  text-align: center;
  background-color: rgba(0,0,0,0.3);
  color: #FFF;
  font-size: 24px;
  padding-top: 40vh;
}

.message{
  position: fixed;
  bottom: 0;
  background: #333;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 20px 10px;
  font-size: 20px;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #FF1A23;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}