.steamline .sl-no-line {
  border-bottom: transparent;
  margin: 0;
}

.steamline {
  position: relative;
  border-left: 1px solid #e9ecef;
  margin-left: 20px;
  height: 250px;
 }

 #form-setup{
   height: 498px !important;
 }

.bg-secondary i{
  color: #8080806e;
}

.no-click{
  pointer-events: none;
  cursor: not-allowed;
}

/**
*  TERMINAL STYLE
*/

.window {
  border-radius: 3px;
  background: #222;
  color: #fff;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 450px;
 
}
.window::before {
  content: ' ';
  display: block;
  height: 48px;
  background: #C6C6C6;
}

.window::after {
  content: '. . .';
  position: absolute;
  left: 12px;
  right: 0;
  top: -3px;
  font-family: "Times New Roman", Times, serif;
  font-size: 96px;
  color: #fff;
  line-height: 0;
  letter-spacing: -12px;
}

.terminal {
  margin: 0px 0px;
  margin-left: 10px;
  font-family: monospace;
  font-size: 16px;
  color: #22da26;
  overflow-y: scroll !important;
  max-height: 450px;
  min-height: 450px;
}

.command { 
  width: 0%;
  white-space: nowrap;
  overflow: hidden;
  animation: write-command 5s both;
}

.command::before {
  content: '$ ';
  color: #22da26;
}

.log {
 /* white-space: nowrap;*/
  overflow: hidden;
  /*animation: write-log 5s both;*/
}

#importlog p{
  margin: 0px;
  padding: 0px;
}

p:nth-child(2) {
  animation-delay: 2s;
}

p:nth-child(3) {
  animation-delay: 8s;
}


@keyframes write-command {
  0% {
    width: 0%;
  }
  
  
  100% {
    width: 100%;
  }
}

@keyframes write-log {
  0% {
    height: 0;
  }
  
  16% {
    height: 0;
  }
  
  17% {
    height: 20px;
  }
  
  33% {
    height: 30px;
  }
  
  34% {
    height: 40px;
  }
  
  51% {
    height: 50px;
  }
  
  52% {
    height: 60px;
  }
  
  69% {
    height: 60px;
  }
  
  70% {
    height: 70px;
  }
  
  87% {
    height: 75px;
  }
  
  88% {
    height: 90px;
  }
  
  88% {
    height: 93px;
  }
  
  99% {
    height: 97px;
  }
  
  100% {
    height: auto;
  }
}

.ring-container {
  position: relative;
}

.circle {
  width: 15px;
  height: 15px;
  background-color: #62bd19;
  border-radius: 50%;
  position: absolute;
  /* top: 23px; */
  /* left: 23px; */
}

.ringring {
  border: 1px solid #62bd19;
  -webkit-border-radius: 30px;
  height: 25px;
  width: 25px;
  position: absolute;
  left: 15px;
  top: 40px;
  -webkit-animation: pulsate 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0.0;
  background-color:#c0e4a4;
}
@-webkit-keyframes pulsate {
  0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
  50% {opacity: 0.4;}
  100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}

.status-text{
  margin-left: 25px;
}

.card-status{
  min-width: 245px;
  border-radius: 14px;
}

.version{
  text-align: center;
  font-weight: bold;
  font-size: 25px;
}

.failed{
  background-color: #ec2323 !important;
  border: #f86b6b;
}

.load-spinner{
  text-align: center;
  font-size: 20px;
  color: #abb0f5
}

.chart-container {
  position: relative;
  margin: auto;
  height: 40vh;
  width: 80vw;
}

.resetZoom{
  position: fixed;
  text-align: left;
  z-index: 2;
  background-color: #d8dadc;
  right: 0;
}
.resetZoom{
  cursor:pointer;
}

.resetZoom i{
  color: #9da3a8;
}

.resetZoom i:hover{
  color:#6c757d
}

