.cupo-notifications {
  background: var(--smgCupoPrimaryColor, #ed6102);
  padding: 10px 0;
}
.cupo-notifications .cupo-notification_list {
  height: 124px;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) {
  .cupo-notifications .cupo-notification_list {
    height: 110px;
  }
}
.cupo-notifications .cupo-notification_list_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  position: absolute;
  left: 5000px;
  width: 100%;
  height: 100%;
}
.cupo-notifications .cupo-notification_list_item.active {
  left: 0;
}
.cupo-notifications .cupo-notification_list_item > strong {
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 600px) {
  .cupo-notifications .cupo-notification_list_item > strong {
    font-size: 22px;
    line-height: 32px;
  }
}
.cupo-notifications .cupo-notification_list_item > a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  appearance: none;
  outline: 0;
  cursor: pointer;
  border: none;
  line-height: 36px;
  height: 36px;
  background: var(--smgCupoSecondaryColor, #0068af);
  font-size: 16px;
  color: #fff;
  border-radius: 3px;
  padding: 0 20px;
  margin: 0;
}
.cupo-notifications .cupo-notification_list_item > a:hover, .cupo-notifications .cupo-notification_list_item > a:focus {
  font-weight: bold;
}
.cupo-notifications .cupo-notification_counter {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  margin-top: 20px;
}
.cupo-notifications .cupo-notification_counter .cupo-notification_counter_item {
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #fff;
}
.cupo-notifications .cupo-notification_counter .cupo-notification_counter_item.active {
  background: var(--smgCupoSecondaryColor, #0068af);
}
