.swiper .slide-content,
.swiper .slide-content * {
  text-align: var(--sw-align, left) !important;
}
.slide-btn-wrapper {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-top-left {
  top: 10px;
  left: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}
.btn-top-center {
  top: 10px;
  justify-content: center;
  align-items: flex-start;
}
.btn-top-right {
  top: 10px;
  right: 10px;
  justify-content: flex-end;
  align-items: flex-start;
}
.btn-center-left {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  justify-content: flex-start;
}
.btn-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-center-right {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  justify-content: flex-end;
}
.btn-bottom-left {
  bottom: 10px;
  left: 10px;
  justify-content: flex-start;
  align-items: flex-end;
}
.btn-bottom-center {
  bottom: 10px;
  justify-content: center;
  align-items: flex-end;
}
.btn-bottom-right {
  bottom: 10px;
  right: 10px;
  justify-content: flex-end;
  align-items: flex-end;
}

/* Slide container */
.slide-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Slide content alignment */
.slide-content {
  width: 100%;
  text-align: var(--sw-align, left);
}

/* Buttons alignment */
.slide-btn-wrapper {
  position: absolute;
  display: flex;
  width: 100%;
  top: auto;
  bottom: auto;
  left: 0;
  right: 0;
  padding: 0 10px;
}

.slide-btn-wrapper.btn-left {
  justify-content: flex-start;
}

.slide-btn-wrapper.btn-center {
  justify-content: center;
}

.slide-btn-wrapper.btn-right {
  justify-content: flex-end;
}
