.mp-store-strip {
  display: block;
  background: #d53032;
  border-bottom: 0;
  padding: 0 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.mp-store-strip__inner {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px 44px;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  max-width: 1480px;
  margin: 0 auto;
}

.mp-store-strip__track {
  position: relative;
  min-width: 0;
  min-height: 26px;
  text-align: center;
}

.mp-store-strip__item {
  display: none;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-store-strip__item.is-active {
  display: block;
}

.mp-store-strip__control,
.mp-store-strip__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mp-store-strip__control {
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

.mp-store-strip__pause {
  border: 3px solid #fff;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.mp-store-strip__control:hover,
.mp-store-strip__control:focus,
.mp-store-strip__pause:hover,
.mp-store-strip__pause:focus {
  outline: none;
  background: rgba(255, 255, 255, .14);
}

.mp-store-strip__pause.is-paused {
  font-size: 17px;
}

.mp-store-strip span {
  min-width: 0;
}

@media (max-width: 767px) {
  .mp-store-strip {
    padding: 0 10px;
    font-size: 14px;
  }

  .mp-store-strip__inner {
    grid-template-columns: 34px minmax(0, 1fr) 34px 34px;
    gap: 6px;
    min-height: 46px;
  }

  .mp-store-strip__control,
  .mp-store-strip__pause {
    width: 32px;
    height: 32px;
  }

  .mp-store-strip__control {
    font-size: 34px;
  }

  .mp-store-strip__pause {
    border-width: 2px;
    font-size: 14px;
  }

  .mp-store-strip > span:nth-child(n+3),
  .mp-store-strip__item {
    display: block;
  }

  .mp-store-strip__item:not(.is-active) {
    display: none;
  }
}
