.desktop-account-nav-container {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 10;
}

.desktop-account-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav-item {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  margin: 0;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.desktop-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.desktop-nav-item.active {
  color: #fff;
  border-bottom-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.desktop-nav-item i {
  font-size: 1.1rem;
  transition: transform 0.15s ease;
}
.desktop-nav-item.active i {
  transform: translateY(-2px);
}

.nav-separator {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

.mobile-page-header {
  position: sticky;
  top: 75px;
  background: white;
  padding: 1rem 1.5rem;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.mobile-page-header .mobile-header-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mobile-page-header .mobile-header-main i {
  font-size: 1.4rem;
  color: #1a89bc;
}
.mobile-page-header .mobile-header-main i.gradient-icon {
  background: linear-gradient(135deg, #16bd9c, #1a89bc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mobile-page-header .mobile-header-main h1 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-page-header .mobile-header-subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  padding-left: 2.15rem;
}

@keyframes navHeaderSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.sticky-tabs-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: white;
  border-top: 1px solid #e2e8f0;
  z-index: 1025;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.mobile-tab, .mobile-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #64748b;
  border-top: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}
.mobile-tab i, .mobile-nav-link i {
  font-size: 1.35rem;
  margin-bottom: 2px;
}
.mobile-tab span, .mobile-nav-link span {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}
.mobile-tab:hover, .mobile-nav-link:hover {
  color: #475569;
}
.mobile-tab.active, .active.mobile-nav-link {
  color: #1a89bc;
  background: #f0f9ff;
  border-top-color: #1a89bc;
}

.mobile-nav-link:hover {
  color: #1a89bc;
}

.center-tabs-container {
  width: 100%;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.center-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .center-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .center-tabs::-webkit-scrollbar {
    display: none;
  }
}

.center-tabs__item,
.items-tab {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.center-tabs__item i,
.items-tab i {
  font-size: 1.1em;
  transition: transform 0.15s ease;
}
.center-tabs__item:hover,
.items-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.center-tabs__item.active,
.items-tab.active {
  color: #fff;
  border-bottom-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.center-tabs__item.active i,
.items-tab.active i {
  transform: translateY(-2px);
}
@media (max-width: 991px) {
  .center-tabs__item,
  .items-tab {
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }
}

.tab-content {
  animation: navFadeIn 0.3s ease-out;
  display: none;
}
.tab-content.active {
  display: block;
}

@keyframes navFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.spa-loading {
  position: relative;
  pointer-events: none;
}

.spa-fade-out {
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.spa-fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (min-width: 992px) {
  .mobile-page-header,
  .sticky-tabs-nav {
    display: none !important;
  }
}
body.device-desktop .mobile-page-header,
body.device-desktop .sticky-tabs-nav {
  display: none !important;
}
body.device-desktop [data-mobile-swiper-container] {
  overflow: visible !important;
  height: auto !important;
}
body.device-desktop [data-mobile-swiper-container] .swiper-wrapper {
  display: block !important;
  transform: none !important;
  height: auto !important;
}
body.device-desktop [data-mobile-swiper-container] .swiper-slide {
  width: 100% !important;
  height: auto !important;
  flex-shrink: 0;
}
body.device-desktop .tab-content {
  display: none;
}
body.device-desktop .tab-content.active {
  display: block;
}

@media (max-width: 991px) {
  body.device-touch-mobile .mobile-page-header,
  body.device-touch-mobile .sticky-tabs-nav {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  body.device-touch-mobile .mobile-page-header,
  body.device-touch-mobile .sticky-tabs-nav {
    display: none !important;
  }
}

#spa-content-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}
#spa-content-loader.visible {
  opacity: 1;
  visibility: visible;
}

.music-wave-loader {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}
.music-wave-loader .bar {
  width: 6px;
  height: 10px;
  background: linear-gradient(135deg, #16bd9c, #1a89bc);
  border-radius: 3px;
  animation: musicWave 1.2s ease-in-out infinite;
}
.music-wave-loader .bar:nth-child(1) {
  height: 15px;
  animation-delay: 0s;
  animation-duration: 0.8s;
}
.music-wave-loader .bar:nth-child(2) {
  height: 25px;
  animation-delay: 0.1s;
  animation-duration: 0.9s;
}
.music-wave-loader .bar:nth-child(3) {
  height: 35px;
  animation-delay: 0.2s;
  animation-duration: 1s;
}
.music-wave-loader .bar:nth-child(4) {
  height: 20px;
  animation-delay: 0.3s;
  animation-duration: 0.9s;
}
.music-wave-loader .bar:nth-child(5) {
  height: 12px;
  animation-delay: 0.4s;
  animation-duration: 0.8s;
}

@keyframes musicWave {
  0%, 100% {
    height: 10px;
  }
  50% {
    height: 35px;
  }
}
.center-detail-hero {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: var(--accent-gradient);
  color: #fff;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  body.device-touch-mobile .center-detail-hero {
    border-radius: 0 0 20px 20px;
  }
  body.device-desktop .center-detail-hero {
    border-radius: 0 !important;
  }
}
@media (max-width: 991px) {
  .center-detail-hero {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 0;
  }
}
.center-detail-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}
.center-detail-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 0;
  filter: blur(1px);
  transform: scale(1.02);
  animation: hero-zoom 30s ease-in-out infinite alternate;
}
.center-detail-hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
@keyframes hero-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.center-detail-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1rem;
  margin: 0 auto 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.center-detail-hero__title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  text-align: center;
  width: 100%;
}
.center-detail-hero__title strong {
  color: #161f22;
}
.center-detail-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
@media (max-width: 991px) {
  .center-detail-hero__subtitle {
    font-size: 0.95rem;
    flex-direction: column;
    gap: 0.2rem;
  }
}
.center-detail-hero__subtitle i {
  color: rgba(255, 255, 255, 0.8);
}

.center-detail-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: #f8fafc;
  min-height: 50vh;
}

.center-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 991px) {
  .center-card {
    padding: 1.25rem;
  }
}
.center-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.center-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f1f5f9;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.center-card__title i {
  color: #1a89bc;
}
.center-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.info-item__value {
  font-size: 1rem;
  color: #475569;
  font-weight: 500;
  word-break: break-word;
}
.info-item__value a {
  color: #1a89bc;
  text-decoration: none;
}
.info-item__value a:hover {
  text-decoration: underline;
}

.center-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.center-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #475569;
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.center-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 0.95rem;
}
.center-table tr:last-child td {
  border-bottom: none;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s ease;
  text-decoration: none !important;
}
.btn-premium--outline {
  border: 1px solid #1a89bc;
  color: #1a89bc;
  background: transparent;
}
.btn-premium--outline:hover {
  background: rgba(26, 137, 188, 0.05);
  transform: translateY(-1px);
}
.btn-premium--solid {
  background: linear-gradient(135deg, #16bd9c, #1a89bc);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(26, 137, 188, 0.25);
  transition: 0.2s ease;
  padding: 0.75rem 1.5rem;
}
.btn-premium--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 137, 188, 0.35);
}

.source-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 2rem;
}
.source-disclaimer a {
  color: #64748b;
  text-decoration: underline;
}
.source-disclaimer a:hover {
  color: #1a89bc;
}

@media (max-width: 991px) {
  .center-detail-wrapper.has-mobile-tabs .center-detail-container {
    padding-bottom: calc(65px + 2rem);
  }
}

@media (max-width: 991px) {
  .has-mobile-tabs ~ footer,
  body:has(.has-mobile-tabs) footer {
    display: none !important;
  }
}
body.device-desktop .center-detail-wrapper .center-detail-hero {
  display: flex !important;
}
body.device-desktop .center-detail-wrapper .mobile-page-header,
body.device-desktop .center-detail-wrapper .sticky-tabs-nav {
  display: none !important;
}
body.device-desktop .center-detail-wrapper .mobile-spa-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
  z-index: auto !important;
  background: transparent !important;
}
body.device-desktop .center-detail-wrapper .mobile-spa-container .swiper-wrapper {
  display: block !important;
  transform: none !important;
  height: auto !important;
}
body.device-desktop .center-detail-wrapper .mobile-spa-container .swiper-slide {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  overflow: visible !important;
  padding: 0 !important;
  background: transparent !important;
}
body.device-desktop .center-detail-wrapper .mobile-spa-container .swiper-slide .tab-content {
  display: none;
}
body.device-desktop .center-detail-wrapper .mobile-spa-container .swiper-slide .tab-content.active {
  display: block;
  animation: navFadeIn 0.3s ease-out;
}
@media (max-width: 991px) {
  body.device-desktop .center-detail-wrapper .center-detail-hero {
    min-height: 250px;
    padding-top: 4rem;
  }
  body.device-desktop .center-detail-wrapper .center-detail-hero__title {
    font-size: clamp(1.25rem, 4vw, 2rem);
  }
  body.device-desktop .center-detail-wrapper .center-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  body.device-desktop .center-detail-wrapper .center-tabs::-webkit-scrollbar {
    display: none;
  }
  body.device-desktop .center-detail-wrapper .center-tabs__item {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  body.device-touch-mobile .center-detail-wrapper .center-detail-hero {
    display: flex !important;
  }
  body.device-touch-mobile .center-detail-wrapper .mobile-page-header,
  body.device-touch-mobile .center-detail-wrapper .sticky-tabs-nav {
    display: none !important;
  }
}
@media (max-width: 991px) {
  body.device-touch-mobile .center-detail-wrapper .center-detail-hero {
    display: none !important;
  }
  body.device-touch-mobile .center-detail-wrapper .mobile-page-header {
    display: flex !important;
  }
  body.device-touch-mobile .center-detail-wrapper .sticky-tabs-nav {
    display: flex !important;
  }
  body.device-touch-mobile .center-detail-wrapper .center-detail-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
  }
  body.device-touch-mobile .center-detail-wrapper .center-detail-container > .container {
    display: contents;
  }
  body.device-touch-mobile .center-detail-wrapper .mobile-spa-container {
    position: fixed !important;
    top: calc(75px + 65px);
    left: 0 !important;
    right: 0 !important;
    bottom: calc(65px + env(safe-area-inset-bottom, 0)) !important;
    width: 100% !important;
    height: auto !important;
    z-index: 50 !important;
    overflow: hidden !important;
    background: #f8fafc !important;
  }
  body.device-touch-mobile .center-detail-wrapper .mobile-spa-container .swiper-wrapper {
    height: 100% !important;
  }
  body.device-touch-mobile .center-detail-wrapper .mobile-spa-container .swiper-slide {
    height: 100% !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding: 1rem !important;
    box-sizing: border-box !important;
  }
  body.device-touch-mobile .center-detail-wrapper .mobile-spa-container .swiper-slide .tab-content {
    display: block !important;
  }
}

@media (min-width: 992px) {
  body:not(.device-desktop):not(.device-touch-mobile) .center-detail-wrapper .center-detail-hero {
    display: flex;
  }
  body:not(.device-desktop):not(.device-touch-mobile) .center-detail-wrapper .mobile-page-header,
  body:not(.device-desktop):not(.device-touch-mobile) .center-detail-wrapper .sticky-tabs-nav {
    display: none;
  }
}
@media (max-width: 991px) {
  body:not(.device-desktop):not(.device-touch-mobile) .center-detail-wrapper .center-detail-hero {
    display: none;
  }
  body:not(.device-desktop):not(.device-touch-mobile) .center-detail-wrapper .mobile-page-header {
    display: flex;
  }
  body:not(.device-desktop):not(.device-touch-mobile) .center-detail-wrapper .sticky-tabs-nav {
    display: flex;
  }
}

@media (max-width: 991px) {
  .mobile-spa-container {
    --spa-navbar-height: 75px;
    --spa-header-height: 65px;
    --spa-tabs-height: 65px;
    --spa-container-top: calc(75px + 65px);
    position: fixed;
    top: var(--spa-container-top, calc(75px + 65px));
    left: 0;
    right: 0;
    bottom: calc(var(--spa-tabs-height, 65px) + env(safe-area-inset-bottom, 0));
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    z-index: 50;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: #f8fafc;
  }
  .mobile-spa-container.swiper {
    width: 100%;
  }
  .mobile-spa-container .swiper-wrapper {
    align-items: stretch;
    height: 100%;
  }
  .mobile-spa-container .swiper-slide {
    height: 100% !important;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding-top: 1rem;
    padding-bottom: 2rem;
    box-sizing: border-box;
    display: block;
    background: #f8fafc;
  }
  .mobile-spa-container .swiper-slide .tab-content {
    display: block !important;
  }
  .mobile-spa-container.no-header {
    top: 75px !important;
  }
  .mobile-spa-container.no-header .swiper-slide {
    padding-top: 1rem;
  }
  .mobile-spa-container.extra-padding .swiper-slide {
    padding-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .mobile-spa-container.swiper-transition-disabled .swiper-slide {
    transition: none !important;
  }
  .mobile-spa-container .swiper-slide {
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
}
@media (max-width: 991px) {
  .slide-content {
    padding: 0 1.25rem;
  }
  .mobile-spa-container .swiper-slide .control-card,
  .mobile-spa-container .swiper-slide .content-card {
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    transform: none !important;
  }
  .mobile-spa-container .swiper-slide .control-card:hover,
  .mobile-spa-container .swiper-slide .content-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  .mobile-spa-container .swiper-slide .control-card-header,
  .mobile-spa-container .swiper-slide .content-card-header {
    display: none !important;
  }
  .mobile-spa-container .swiper-slide .control-card-body,
  .mobile-spa-container .swiper-slide .content-card-body {
    padding: 0 !important;
  }
}
@media (max-width: 991px) {
  .mobile-spa-container.loading {
    pointer-events: none;
    opacity: 0.6;
  }
  .mobile-spa-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
  }
  @keyframes skeleton-loading {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
}
@media (min-width: 992px) {
  .mobile-spa-container {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
  }
  .mobile-spa-container .swiper-slide {
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    display: block !important;
  }
  .mobile-spa-container .swiper-slide .tab-content {
    display: none;
  }
  .mobile-spa-container .swiper-slide .tab-content.active {
    display: block;
  }
  .mobile-spa-container .swiper-wrapper {
    display: block;
    height: auto;
  }
}
body.device-desktop .mobile-spa-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  z-index: auto !important;
  background: transparent !important;
}
body.device-desktop .mobile-spa-container.swiper {
  width: 100% !important;
  height: auto !important;
}
body.device-desktop .mobile-spa-container .swiper-wrapper {
  display: block !important;
  transform: none !important;
  height: auto !important;
  align-items: initial !important;
}
body.device-desktop .mobile-spa-container .swiper-slide {
  height: auto !important;
  overflow: visible !important;
  padding: 0 !important;
  display: block !important;
  transform: none !important;
  will-change: auto !important;
  overscroll-behavior-y: auto !important;
  -webkit-overflow-scrolling: auto !important;
  background: transparent !important;
}
body.device-desktop .mobile-spa-container .swiper-slide .tab-content {
  display: none;
}
body.device-desktop .mobile-spa-container .swiper-slide .tab-content.active {
  display: block;
}

@media (max-width: 991px) {
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-spa-container {
      bottom: calc(65px + env(safe-area-inset-bottom));
    }
  }
}
@media (max-width: 991px) {
  .hide-in-mobile-swiper {
    display: none !important;
  }
  .show-in-mobile-swiper {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .hide-in-mobile-swiper {
    display: block !important;
  }
  .show-in-mobile-swiper {
    display: none !important;
  }
}
