.akordi-mini-tuner {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 14px;
  background: #141414;
  border: 1px solid #2a2a2a;
  box-shadow: 0 10px 28px rgba(0,0,0,.32);
  text-align: center;
  user-select: none;
}

.mini-tuner-title {
  color: #bdbdbd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mini-note {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.akordi-mini-tuner.in-tune .mini-note {
  color: #39ff5a;
  text-shadow: 0 0 12px rgba(57,255,90,.55);
}

.mini-frequency {
  margin-top: 7px;
  color: #cfcfcf;
  font-size: 14px;
}

.mini-cents {
  margin-top: 7px;
  font-size: 22px;
  font-weight: 800;
  color: #39ff5a;
  min-height: 28px;
}

.akordi-mini-tuner.too-low .mini-cents,
.akordi-mini-tuner.too-high .mini-cents {
  color: #ffd84a;
}

.mini-meter {
  margin: 18px 0 14px;
}

.mini-scale {
  position: relative;
  height: 10px;
  border-radius: 20px;
  background: linear-gradient(
  to right,
  #d82626 0%,
  #f08a1f 25%,
  #d8d62f 44%,
  #34ff52 49%,
  #34ff52 51%,
  #d8d62f 56%,
  #f08a1f 75%,
  #d82626 100%
);
  box-shadow: inset 0 0 4px rgba(0,0,0,.45);
}

.mini-center-line {
  position: absolute;
  left: 50%;
  top: -7px;
  width: 2px;
  height: 24px;
  background: #fff;
  transform: translateX(-50%);
  opacity: .9;
}

.mini-ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: #39ff5a;
  box-shadow:
    0 0 8px rgba(57,255,90,.85),
    0 0 16px rgba(57,255,90,.35);
  transition: left .08s linear;
}

.akordi-mini-tuner.in-tune .mini-ball {
  animation: miniBallPulse .8s ease-in-out infinite;
}

@keyframes miniBallPulse {
  0%, 100% {
    transform: translate(-50%,-50%) scale(1);
  }
  50% {
    transform: translate(-50%,-50%) scale(1.22);
  }
}

.mini-strings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 0 4px;
}

.mini-strings span {
  color: #d7d7d7;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}

.mini-strings span.active {
  color: #39ff5a;
  text-shadow:
    0 0 8px rgba(57,255,90,.8),
    0 0 15px rgba(57,255,90,.35);
  transform: scale(1.15);
}

.mini-start {
  margin-top: 18px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #d82727;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: .2s;
  box-shadow: 0 0 14px rgba(216,39,39,.35);
}

.mini-start:hover {
  background: #ef3333;
  transform: scale(1.05);
}

.mini-start:active {
  transform: scale(.95);
}

.akordi-mini-tuner.in-tune {
  border-color: rgba(57,255,90,.28);
}
/* =======================================
   Oznake skale
======================================= */

.mini-scale-labels {

    display:flex;
    justify-content:space-between;

    margin-top:8px;

    padding:0 2px;

    color:#9b9b9b;

    font-size:11px;

    font-weight:600;

    letter-spacing:.3px;

    user-select:none;

}

.mini-scale-labels span {

    width:40px;
    text-align:center;

}

.mini-scale-labels span:nth-child(3){

    color:#39ff5a;

    font-weight:700;

}
.mini-start.active {
  background: #39ff5a;
  color: #111;
  box-shadow:
    0 0 10px rgba(57,255,90,.9),
    0 0 22px rgba(57,255,90,.45);
  cursor: default;
}
/* -------------------------------- */
/* Dinamična boja kuglice */
/* -------------------------------- */

.mini-ball{

    transition:
        left .08s linear,
        background .15s,
        box-shadow .15s;

}

.mini-ball.ball-green{

    background:#39ff5a;

    box-shadow:
        0 0 10px rgba(57,255,90,.9),
        0 0 18px rgba(57,255,90,.45);

}

.mini-ball.ball-yellow{

    background:#ffe54b;

    box-shadow:
        0 0 10px rgba(255,229,75,.9);

}

.mini-ball.ball-orange{

    background:#ff9b33;

    box-shadow:
        0 0 10px rgba(255,155,51,.9);

}

.mini-ball.ball-red{

    background:#ff4545;

    box-shadow:
        0 0 10px rgba(255,69,69,.9);

}