.simple-keyboard.hg-layout-shift .hg-button-shift {
  background: rgba(17, 52, 207,0.7);
  color: white;
}

.stellar-full-card {
  width: 100%;
}

.stellar-main-title {
  font-size: 19px;
}

.fit-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.stellar-sell-vol {
  color: crimson;
}

.stellar-buy-vol {
  color: seagreen;
}

.stellar-active-orders {
  color: goldenrod;
}

.stellar-color {
  color: #D1B255 !important;
}

.stellar-fade {
  opacity: 0.4;
}

.stellar-fade-8 {
  opacity: 0.8;
}

.right-fit-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  test-align: right;
}

#back-to-dashboard {
  margin-bottom: 20px;
  margin-left: 15px;
}

#stellar-slide-container {
  width: 100%;
}

#stellar-slider {
  appearance: none;
  width: 100%;
  height: 25px;
  -webkit-appearance: none;
  -webkit-transition: .2s;
  outline: none;
  transition: opacity .2s;
  background: #d3d3d3;
  opacity: 0.7;
}

#slider:hover {
  opacity: 1;
}

#slider:-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

#slider:-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
}

#stellar-version-input {
  max-width: 100;
  border-color: #d7dde3;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-bottom: 10px;
  height: 30px;
}

.stellar-input {
  max-width: 100;
  border-color: #d7dde3;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-bottom: 10px;
  height: 30px;
}

.stellar-reconfig-field {
  border: none;
  height: 15px;
  margin-bottom: 10px;
  margin-left: -10px;
  width: 150px;
}

.stellar-reconfig-edit {
  height: 15px;
  margin-bottom: -10px;
  margin-left: -25px;
}

.stellar-reconfig-field:hover {
  border-bottom:  #CED4DB 1px solid;
  border-radius: 0px;
}

.stellar-reconfig-change {
  background-color: blue;
  color: white;
}

.stellar-select-fieldset {
  margin: -15px;
  margin-top: -10px;
  margin-bottom: -20px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.stellar-green-warn2 {
  animation-name: green-warn;
  animation-duration: 500ms;
}

.stellar-red-warn2 {
  animation-name: red-warn;
  animation-duration: 500ms;
}

.stellar-green-warn {
  animation-name: green-warn;
  animation-duration: 3000ms;
}

.stellar-red-warn {
  animation-name: red-warn;
  animation-duration: 3000ms;
}

.stellar-orange-warn {
  animation-name: orange-warn;
  animation-duration: 3000ms;
}

.stellar-yellow-warn {
  animation-name: yellow-warn;
  animation-duration: 3000ms;
}

.stellar-config-errors {
  color: red;
  margin-top: 10px;
  margin-bottom: -15px;
}

.stellar-small-input {
  width: 100px;
  border-color: #d7dde3;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  margin-bottom: 10px;
  height: 30px;
}

.stellar-table-reconfig-field {
  width: 60px;
  height: 15px;
  margin-right: 0px;
  border: none;
  padding: 2px;
  margin-bottom: -10px;
  font-weight: 800;
  background-color: inherit;
  padding-right: 0px;
}

.stellar-table-reconfig-field:focus {
  background-color: inherit;
}

.stellar-table-reconfig-edit {
  height: 15px;
  margin-bottom: -10px;
  float: left;
  color: red;
}

.stellar-table-reconfig-field:hover {
  border-bottom:  #CED4DB 1px solid;
  border-radius: 0px;
}

.stellar-table-reconfig-field:hover {
  border-bottom:  #CED4DB 1px solid;
  border-radius: 0px;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.stellar-green-status-pulse {
  background-color: transparent;
  width: 15px;
  height: 15px;
  float: right;
  border-radius: 50px;
  box-shadow: 0 0 8px #009933, inset 0 0 8px #009933;
  -webkit-animation: green-status-pulse 2s linear 1s infinite;
}

.stellar-red-status-pulse {
  background-color: transparent;
  width: 15px;
  height: 15px;
  float: right;
  border-radius: 50px;
  box-shadow: 0 0 8px red, inset 0 0 8px #009933;
  -webkit-animation: red-status-pulse 2s linear 1s infinite;
}

.stellar-tooltip {
  position: absolute;
  right: 30px;
  z-index: 999;
}

.stellar-tooltip .dumClass {
  line-height: 16px;
  width: 240px;
  top: 150%;
  padding: 14px 20px;
  position: absolute;
  z-index: 10;
  display: none;
  opacity: 0.7;
  left: -1450%;
}

.stellar-tooltip:hover .dumClass {
  display: inline;
  color: #ffffff;
  background: #444;
  -moz-border-radius: 11px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
}

.dumClass:after {
  width: 0;
  border-width: 7px;
  border-color: transparent transparent #444 transparent;
  height: 0;
  border-style: solid;
  position: absolute;
  content: ;
  display: block;
  bottom: 100%;
  left: 90%;
}

@keyframes green-warn {

0% {
  
  }
  
50% {
    background-color: rgba(0, 179, 60, 0.5);
    color: black;
  }
  
100% {
  
  }

}

@keyframes red-warn {

0% {
  
  }
  
50% {
    background-color: rgba(255, 77, 77, 0.5);
    color: black;
  }
  
100% {
  
  }

}

@keyframes orange-warn {

0% {
    background: white;
    color: black;
  }
  
50% {
    background-color: rgba(255, 153, 0, 0.5);
    color: black;
  }
  
100% {
    background: white;
    color: black;
  }

}

@keyframes yellow-warn {

0% {
    background: white;
    color: black;
  }
  
50% {
    background-color: rgba(255, 255, 0, 0.6);
    color: black;
  }
  
100% {
    background: white;
    color: black;
  }

}

@keyframes stellar-spin {

  to {
    transform: rotate(360deg);
  }

}

.stellar-flipX {
  animation-name: stellar-anim-flipx;
  animation-duration: 2000ms;
}

@keyframes stellar-anim-flipx {

0% {
    opacity: 0;
    transform: rotateX(90deg);
  }
  
50% {
    opacity: 1;
    transform: rotateX(720deg);
  }
  
100% {
    opacity: 1;
    transform: rotateX(720deg);
  }

}