

#app {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.demo-nav {
  height: 48px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: stretch;
  color: #fff;
  gap: 0px;
  box-sizing: border-box;
  padding: 8px 16px;
  z-index: 10;
}
.demo-nav button {
  font-size: 12px;
  font-family: monospace;
  appearance: none;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  width: 96px;
  border: 0;
  outline: 0;
  box-shadow: none;
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition-duration: 100ms;
}
.demo-nav button:first-child {
  border-radius: 32px 0 0 32px;
  border-right: none;
}
.demo-nav button:last-child {
  border-radius: 0 32px 32px 0;
}
.demo-nav button.active {
  background: #114df1;
  border-color: rgba(255, 255, 255, 0.2);
}
.demo-nav button:not(.active):hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
}

.demo-slider-container {
  align-self: center;
  width: 100%;
  max-width: 380px;
  position: relative;
  padding: 0 16px;
  box-sizing: border-box;

}

.demo-slider-wrap {
  position: relative;
  padding-bottom: 63.1578947368%;
}

.demo-slider {
  flex-shrink: 0;
  position: absolute;
  inset: 0;
}

.swiper-slide {
  border-radius: 16px;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
