.ir-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6px;
  margin: 12px 0;
  padding: 0 16px;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
}

.ir-fixed-text {
  white-space: nowrap;
}
.ir-fixed-sub-text {
  white-space: nowrap;
  margin-right: auto;
  font-weight: 400;
}
.ir-slider {
  overflow: hidden;
  height: 60px;
  position: relative;
  transition: background-color 0.5s linear;
}

.ir-slider-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.ir-slide {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  white-space: nowrap;
}

.ir-slide img {
  max-height: 40px;
  width: auto;
  max-width: 50px !important;
  flex: 0 0 50px;
}
.ir-mobile-text {
  display: none;
  white-space: nowrap;
}

@keyframes irStepSlider {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}

@media (max-width: 576px) {
  .ir-wrapper {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    z-index: 100;
    margin: 0;
    border-radius: 0;
    font-size: 12px;
    justify-content: center;
  }
  .ir-fixed-sub-text,
  .ir-fixed-text {
    display: none;
  }
  .ir-mobile-text {
    display: block;
  }
  .ir-slider {
    height: 36px;
  }
  .ir-slide {
    height: 36px;
  }
  .ir-slide img {
    max-height: 24px;
  }
}
