.progress-tooltip {
  position: absolute !important;
  z-index: -1 !important;
  width: 100px !important;
}

.progress-tooltip-1 {
  left: calc(60% - 20px) !important;
}

.progress-tooltip-2 {
  left: calc(80% - 25px) !important;
}

.progress-tooltip-3 {
  left: calc(100% - 30px) !important;
}

.progress-tooltip>.tooltip-inner {
  background-color: #b6b6b6;
  color: #ffffff;
  font-weight: bold;
  font-size: 10px;
}

.progress-tooltip>.tooltip-arrow::before {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #b6b6b6 !important;
}


.progress-tooltip-ok>.tooltip-inner {
  background-color: #28a745 !important;
}

.progress-tooltip-ok>.tooltip-arrow::before {
  border-top: 5px solid #28a745 !important;
}

a {
  color: #000!important;
  text-decoration: none!important;
  transition: all .2s cubic-bezier(0,0,.2,1)!important;
}

a:hover {
  color: var(--dark-red)!important;
}


.btn-chroma {
  border: none;
  padding: 1em;
  outline: none;
  color: white !important;
  text-transform: uppercase;
  font-weight: 900;
  font-style: 1.2em;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: none;
  text-shadow: 3px 3px 10px rgba(0,0,0,.45);
  &:before, &:after {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10em;
    transform: translateX(-50%) translateY(-50%);
    width: 105%;
    height: 105%;
    content: '';
    z-index: -2;
    background-size: 400% 400%;
    background: linear-gradient(170deg, #d4132a, #f9a071)
  }
  &:before {
    filter: blur(7px);
    transition: all .25s ease;
    animation: pulse 10s infinite ease;
  }
  &:after {
    filter: blur(0.3px);
  }
  &:hover {
    &:before {
      width: 115%;
      height: 115%;
    }
  }
}