/*!
Theme Name: soundstream4
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: soundstream4
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

soundstream4 is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/* ---------------------------------------------
abstracts
--------------------------------------------- */
:root {
  --main-h: 800px;
  --main-topbar-h: 40px;
  --sidebar-expanded: 240px;
  --sidebar-collapsed: 82px;
  --topbar-h: 64px;
  --transition-base: 250ms ease;
  --transition-slow: 380ms cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --ss-body-bg: #040407;
  --ss-body-rgb: rgb(4, 4, 7);
}

/* ---------------------------------------------
common
--------------------------------------------- */
/* step ------------------------------------ */
.step-register {
  margin-bottom: 1.5rem;
}
.step-register .step-1,
.step-register .step-2,
.step-register .step-3 {
  width: 100%;
  padding-bottom: 0.5rem;
  color: var(--bs-gray-600);
  border-bottom: 1px solid var(--bs-gray-700);
  display: flex;
  align-items: center;
}
.step-register .step-1 i,
.step-register .step-2 i,
.step-register .step-3 i {
  font-size: 1rem;
  margin-right: 0.25rem;
}
.step-register .step-1.active,
.step-register .step-2.active,
.step-register .step-3.active {
  color: var(--bs-light);
  border-bottom: 2px solid var(--bs-light) !important;
}
.step-register .step-1.step-success,
.step-register .step-2.step-success,
.step-register .step-3.step-success {
  color: var(--bs-success);
  border-bottom: 2px solid var(--bs-success) !important;
}
.step-register .step-1 span,
.step-register .step-2 span,
.step-register .step-3 span {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-right: 1rem;
  margin-left: 0.125rem;
}
@media (max-width: 768px) {
  .step-register .step-1 span,
  .step-register .step-2 span,
  .step-register .step-3 span {
    display: block;
  }
}

/* ---------------------------------------------
components
--------------------------------------------- */
/* ------------------------------------ */
/* btn ------------------------------------ */
.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5625rem 1.375rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform 120ms ease;
  white-space: nowrap;
  text-decoration: none;
}
.ss-btn:active {
  transform: scale(0.97);
}
.ss-btn--primary {
  background: var(--bs-primary);
  color: var(--bs-gray-900);
  border-color: var(--bs-primary);
}
.ss-btn--primary:hover {
  background: var(--bs-primary-light);
  border-color: var(--bs-primary-light);
}
.ss-btn--outline {
  background: transparent;
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.ss-btn--outline:hover {
  background: rgba(var(--bs-primary-rgb), 0.1);
}

.ss-nav-tabs {
  border: none;
  margin: 0;
  --bs-nav-tabs-link-active-border-color: var(--bs-gray-600) !important;
}
.ss-nav-tabs .nav-link {
  margin-bottom: 0 !important;
  border-radius: var(--bs-nav-tabs-border-radius);
}
.ss-nav-tabs .nav-tabs .nav-link.active,
.ss-nav-tabs .nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border: 1px solid var(--bs-nav-tabs-link-active-border-color) !important;
}

/* card ------------------------------------ */
.card {
  border-radius: 5px !important;
  background-color: rgba(11, 11, 15, 0.5);
  border-color: var(--bs-dark-border-subtle);
  background-color: transparent;
  border: none;
}

.card-footer:last-child {
  border-radius: 5px !important;
  border-width: 0px !important;
}

/* card-bands ------------------------------------ */
.ss-card-bands {
  border-radius: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.ss-card-bands__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--bs-dark-border-subtle);
}
.ss-card-bands__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  z-index: 2;
}
.ss-card-bands__media .lock {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.125rem 0.35rem;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-bands__img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: 0;
  aspect-ratio: 3/2;
}
.ss-card-bands__body {
  padding: 0.75rem 0 0.5rem 0;
}
.ss-card-bands__title {
  font-size: 1rem;
  margin: 0;
  color: var(--bs-white);
  transition: color 0.3s ease;
}
.ss-card-bands:hover .ss-card-bands__media::after {
  background: rgba(0, 0, 0, 0.5);
}
.ss-card-bands:hover .ss-card-bands__img {
  transform: scale(1.07);
}
.ss-card-bands:hover .ss-card-bands__title {
  color: var(--bs-link-color);
}

/* card-hero ------------------------------------ */
.ss-hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bs-gray-600);
  height: 320px;
  display: flex;
  align-items: flex-end;
  animation: fadeInUp 0.45s ease both;
  border: 1px solid var(--bs-dark-border-subtle);
}
@media (max-width: 768px) {
  .ss-hero-card {
    height: 240px;
  }
}
@media (max-width: 576px) {
  .ss-hero-card {
    height: 180px;
  }
}
.ss-hero-card__bg {
  position: absolute;
  inset: 0;
  background-color: #000;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.4s ease;
  background-size: 550px auto;
}
@media (max-width: 768px) {
  .ss-hero-card__bg {
    background-size: 400px auto;
  }
}
@media (max-width: 576px) {
  .ss-hero-card__bg {
    background-size: 300px auto;
  }
}
.ss-hero-card:hover .ss-hero-card__bg {
  filter: grayscale(1) brightness(0.72);
}
.ss-hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.93) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.08) 100%);
}
.ss-hero-card__body {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2.25rem;
  max-width: 720px;
}
@media (max-width: 768px) {
  .ss-hero-card__body {
    padding: 1.75rem 1.125rem;
  }
}
.ss-hero-card__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
}
.ss-hero-card__title {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 300;
  color: var(--bs-light);
  line-height: 1.1;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .ss-hero-card__title {
    font-size: 1.75rem;
  }
}
.ss-hero-card__desc {
  font-size: 1rem;
  color: var(--bs-gray-500);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .ss-hero-card__desc {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}
.ss-hero-card__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* card-profile ------------------------------------ */
.ss-card-profile {
  border-radius: 5px;
  padding: 0.5rem;
}
.ss-card-profile__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--bs-dark-border-subtle);
}
.ss-card-profile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  z-index: 2;
}
.ss-card-profile__img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: 0;
  aspect-ratio: 3/2;
}
.ss-card-profile__body {
  padding: 0.5rem 0;
}
.ss-card-profile__title {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-light);
  line-height: 1.1;
}
.ss-card-profile__description {
  font-size: 0.875rem;
  color: var(--bs-gray-500);
  line-height: 1.65;
}
.ss-card-profile:hover .ss-card-profile__media::after {
  background: rgba(0, 0, 0, 0.5);
}
.ss-card-profile:hover .ss-card-profile__img {
  transform: scale(1.07);
}
.ss-card-profile:hover .ss-card-profile__title {
  color: var(--bs-link-color);
}

/* card-labels ------------------------------------ */
.ss-card-labels {
  border-radius: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.ss-card-labels__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--bs-dark-border-subtle);
}
.ss-card-labels__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  z-index: 2;
}
.ss-card-labels__media .lock {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.125rem 0.35rem;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-labels__img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: 0;
  aspect-ratio: 1/1;
}
.ss-card-labels__body {
  padding: 0.75rem 0 0.5rem 0;
}
.ss-card-labels__title {
  font-size: 14px;
  margin: 0;
  color: var(--bs-white);
  transition: color 0.3s ease;
}
.ss-card-labels__by {
  font-size: 12px;
  padding: 0 0.5rem;
  transition: color 0.3s ease;
}
.ss-card-labels:hover .ss-card-labels__media::after {
  background: rgba(0, 0, 0, 0.5);
}
.ss-card-labels:hover .ss-card-labels__img {
  transform: scale(1.07);
}
.ss-card-labels:hover .ss-card-labels__title {
  color: var(--bs-link-color);
}

/* card-albums ------------------------------------ */
.ss-card-albums {
  border-radius: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.ss-card-albums__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--bs-dark-border-subtle);
}
.ss-card-albums__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  z-index: 2;
}
.ss-card-albums__media .lock {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.125rem 0.35rem;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-albums__img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: 0;
  aspect-ratio: 1/1;
}
.ss-card-albums__body {
  padding: 0.75rem 0 0.5rem 0;
}
.ss-card-albums__title {
  font-size: 14px;
  margin: 0;
  color: var(--bs-white);
  transition: color 0.3s ease;
}
.ss-card-albums__by {
  font-size: 12px;
  padding: 0;
  transition: color 0.3s ease;
  color: var(--bs-secondary);
}
.ss-card-albums:hover .ss-card-albums__media::after {
  background: rgba(0, 0, 0, 0.5);
}
.ss-card-albums:hover .ss-card-albums__img {
  transform: scale(1.07);
}
.ss-card-albums:hover .ss-card-albums__title {
  color: var(--bs-link-color);
}

/* card-podcast ------------------------------------ */
.ss-card-podcasts {
  border-radius: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.ss-card-podcasts__media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--bs-dark-border-subtle);
}
.ss-card-podcasts__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.35s ease;
  z-index: 2;
}
.ss-card-podcasts__media .lock {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 1.25rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 0.125rem 0.35rem;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-podcasts__img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: 0;
  aspect-ratio: 1/1;
}
.ss-card-podcasts__body {
  padding: 0.75rem 0 0.5rem 0;
}
.ss-card-podcasts__title {
  font-size: 14px;
  margin: 0;
  color: var(--bs-white);
  transition: color 0.3s ease;
}
.ss-card-podcasts__season {
  font-size: 12px;
  padding: 0;
  transition: color 0.3s ease;
  color: var(--bs-secondary);
}
.ss-card-podcasts:hover .ss-card-podcasts__media::after {
  background: rgba(0, 0, 0, 0.5);
}
.ss-card-podcasts:hover .ss-card-podcasts__img {
  transform: scale(1.07);
}
.ss-card-podcasts:hover .ss-card-podcasts__title {
  color: var(--bs-link-color);
}

/* card-video ------------------------------------ */
.ss-card-videos {
  border-radius: 5px;
  overflow: hidden;
  padding: 0.5rem;
  cursor: pointer;
}
.ss-card-videos__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--bs-dark-border-subtle);
}
.ss-card-videos__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}
.ss-card-videos__media .bi-play-circlee {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-videos__media .bi-lock-fills {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: 2rem;
  color: rgb(255, 255, 255);
  text-shadow: 0 0 1rem rgb(0, 0, 0);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-videos__media .play {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.75);
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  font-size: 2rem;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-videos__media .lock {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1.25rem;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.ss-card-videos__img {
  display: block;
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
  border-radius: 0;
  aspect-ratio: 16/9;
}
.ss-card-videos__body {
  padding: 0.75rem 0 0.5rem 0;
}
.ss-card-videos__title {
  font-size: 0.75rem;
  margin: 0;
  color: var(--bs-white);
  transition: color 0.3s ease;
}
.ss-card-videos:hover .ss-card-videos__media::after {
  background: rgba(0, 0, 0, 0.35);
}
.ss-card-videos:hover .ss-card-videos__media .bi-play-circlee {
  transform: translate(-50%, -50%) scale(1.2);
  color: #fff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 2px 8px rgba(0, 0, 0, 0.5);
}
.ss-card-videos:hover .ss-card-videos__media .play {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.75);
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  font-size: 2rem;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.ss-card-videos:hover .ss-card-videos__img {
  transform: scale(1.06);
}
.ss-card-videos:hover .ss-card-videos__title {
  color: var(--bs-link-color);
}

/* modal ------------------------------------ */
/*
.m_podcast.modal,
.m_music.modal {
    .modal-body {
        img.img-cover, img.img-podcast {
                border: 2px solid var(--bs-gray-700);
        }

        iframe {
            margin-top: 1.25rem;
        }

        .description-content {
            margin-top: 1rem;
        }
    }
}
*/
.m_video.modal-body figure {
  margin: 0 !important;
}
.m_video.modal-body figure .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  --bs-aspect-ratio: 56.25%;
}
.m_video.modal-body figure .wp-block-embed__wrapper::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.m_video.modal-body figure .wp-block-embed__wrapper iframe {
  margin: 0 !important;
}
.m_video.modal-body figure .wp-block-embed__wrapper > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
.video-content {
    figure {
        margin: 0 !important;

        .wp-block-embed__wrapper {
            position: relative;
            width: 100%;
            --bs-aspect-ratio: 56.25%;

            &::before {
                display: block;
                padding-top: var(--bs-aspect-ratio);
                content: "";
            }

            iframe {
                margin: 0 !important;
            }

        }

        .wp-block-embed__wrapper>* {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    }
}
*/
/* pagination ------------------------------------ */
.ss-pagination {
  margin-top: 1rem;
}

.ss-the_posts_pagination .page-numbers {
  display: block;
  margin-left: -1px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  color: var(--bs-link-color);
  text-decoration: none;
  background-color: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.ss-the_posts_pagination .page-numbers:hover {
  color: var(--bs-link-hover-color);
  background-color: var(--bs-body-bg-hover);
}
.ss-the_posts_pagination .prev.page-numbers {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.ss-the_posts_pagination .next.page-numbers {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.ss-the_posts_pagination .page-numbers.current {
  color: #fff;
  background-color: #daa442;
}

/* nav-pills ------------------------------------ */
.ss-nav-pills button .nav-link.active {
  color: var(--bs-dark);
}

.ss-nav-pills-content {
  margin-top: 1rem;
}

.nav-pills .nav-link.active {
  color: var(--bs-dark) !important;
}

/* dropdown ------------------------------------ */
.ss-topbar__dropdown-item i.bi {
  color: var(--bs-primary);
}

/* ---------------------------------------------
layout
--------------------------------------------- */
/* body ------------------------------------ */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.2;
}

/*
::-webkit-scrollbar {
  width: 18px;

  @media (max-width: 768px) {
    width: 12px;
  }
}

::-webkit-scrollbar-track {
  background: var(--bs-gray-800);
}

::-webkit-scrollbar-thumb {
  background: rgb(174.4, 131.2, 52.8);
  border: 3px solid var(--bs-gray-800);
  border-radius: 8px;
  @media (max-width: 768px) {
    border: 1px solid var(--bs-gray-800);
    border-radius: 5px;
  }
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary);
}
  */
/* main ------------------------------------ */
.ss-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: var(--main-h);
  min-width: 0;
  border-right: 1px solid var(--bs-dark-border-subtle);
  border-left: 1px solid var(--bs-dark-border-subtle);
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  background: var(--bs-dark-bg-subtle);
}
@media (max-width: 768px) {
  .ss-main {
    height: auto;
  }
}

.ss-content {
  flex: 1;
  padding: 1.75rem;
}
.ss-content__row {
  padding-top: 0.5rem;
  border-top: 1px solid var(--bs-dark-border-subtle);
  margin-bottom: 1rem;
  --bs-gutter-y: 0.5rem;
  --bs-gutter-x: 0.5rem;
}
.ss-content__title {
  font-size: 1.75rem;
  font-weight: 600;
}
.ss-content__description {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ss-content {
    padding: 1rem;
  }
}

/* sidebar ------------------------------------ */
.ss-sidebar {
  width: var(--sidebar-expanded);
  min-width: var(--sidebar-expanded);
  height: auto;
  min-height: var(--main-h);
  background: var(--bs-gray-980);
  border-left: 1px solid var(--bs-dark-border-subtle);
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  z-index: 100;
  overflow: hidden;
}
@media (max-width: 768px) {
  .ss-sidebar {
    display: none;
  }
}
.ss-sidebar__header {
  height: var(--topbar-h);
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  padding: 0 1.75rem;
  gap: 0.625rem;
  flex-shrink: 0;
  overflow: hidden;
}
.ss-sidebar__logo {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1rem;
  transition: box-shadow var(--transition-base);
  flex-shrink: 0;
}
.ss-sidebar__logo:hover {
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
}
.ss-sidebar__brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bs-light);
  white-space: nowrap;
  overflow: hidden;
  opacity: 1;
  transition: opacity var(--transition-base);
  flex: 1;
}
.ss-sidebar.is-collapsed .ss-sidebar__header {
  justify-content: center;
  padding: 0;
}
.ss-sidebar.is-collapsed .ss-sidebar__brand-name {
  display: none;
}
.ss-sidebar__content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.125rem 1rem;
}
.ss-sidebar__footer {
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--bs-gray-700);
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
}
.ss-sidebar__footer-text {
  opacity: 1;
  transition: opacity var(--transition-base);
  overflow: hidden;
}
.ss-sidebar.is-collapsed {
  width: var(--sidebar-collapsed);
  min-width: var(--sidebar-collapsed);
}
.ss-sidebar.is-collapsed .ss-sidebar__brand-name,
.ss-sidebar.is-collapsed .ss-sidebar__footer-text,
.ss-sidebar.is-collapsed .ss-menu-item__label,
.ss-sidebar.is-collapsed .ss-menu-item__caret,
.ss-sidebar.is-collapsed .ss-menu-section__label {
  opacity: 0;
  pointer-events: none;
  width: 0;
  overflow: hidden;
}
.ss-sidebar.is-collapsed .ss-menu-item[data-tooltip]::after {
  opacity: 0;
  pointer-events: none;
}
.ss-sidebar.is-collapsed .ss-menu-item[data-tooltip]:hover::after {
  opacity: 1;
}
.ss-sidebar.is-collapsed .ss-submenu {
  max-height: 0 !important;
}

.ss-menu-section {
  margin-bottom: 1.25rem;
}
.ss-menu-section__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-gray-700);
  padding: 0 1rem;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity var(--transition-base);
  display: block;
}

.ss-menu-item {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  color: var(--bs-gray-500);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base);
  white-space: nowrap;
  position: relative;
}
.ss-menu-item:hover {
  color: var(--bs-light);
}
.ss-menu-item.is-active {
  background: var(--bs-dark);
  border: 1px solid var(--bs-dark-border-subtle);
  color: var(--bs-primary);
  font-weight: 600;
}
.ss-menu-item.is-active .bi {
  color: var(--bs-primary);
}
.ss-menu-item__icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
}
.ss-menu-item__label {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  flex: 1;
  overflow: hidden;
  transition: opacity var(--transition-base), width var(--transition-base);
}
.ss-menu-item__caret {
  font-size: 0.6rem;
  color: var(--bs-gray-500);
  transition: transform var(--transition-base), opacity var(--transition-base);
  flex-shrink: 0;
}
.ss-menu-item.is-open .ss-menu-item__caret {
  transform: rotate(180deg);
}

.ss-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-slow);
}
.ss-submenu.is-open {
  max-height: 1200px;
}
.ss-submenu__item {
  display: block;
  padding: 0.375rem 0.625rem 0.375rem 2.75rem;
  color: var(--bs-gray-500);
  text-decoration: none;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}
.ss-submenu__item:hover {
  color: var(--bs-light);
  text-decoration: underline;
}

.divider {
  border-top: 1px dotted var(--bs-dark-border-subtle);
  margin: 1rem 0.5rem 1.5rem 0.5rem;
}

.offcanvas-header {
  padding: 0 1rem 0 0;
}

.offcanvas-body {
  padding: 0;
}

.offcanvas {
  background: var(--bs-gray-980);
  border-color: var(--bs-dark-border-subtle);
  --bs-offcanvas-width: 300px;
}

#ss-tooltip {
  position: fixed;
  z-index: 9999;
  background: var(--bs-dark);
  color: var(--bs-primary);
  font-size: 0.75rem;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--bs-border-color);
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
#ss-tooltip.is-visible {
  opacity: 1;
}
#ss-tooltip::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 5px 5px 0;
  border-style: solid;
  border-color: transparent var(--bs-border-color) transparent transparent;
}

/* app ------------------------------------ */
.ss-app {
  display: flex;
}
@media (max-width: 768px) {
  .ss-app {
    display: block;
    height: auto;
    overflow: visible;
  }
}

.container-xxl {
  --bs-gutter-x: 0
  --bs-gutter-y: 0;
}

/* plans ------------------------------------ */
:root {
  --cp-card-radius: .5rem;
  --cp-card-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  --cp-card-shadow-hover: 0 8px 36px rgba(0, 0, 0, .55);
  --cp-price-size: 2.6rem;
  --cp-price-size-sm: 1.4rem;
}

.plans-save-note {
  font-size: 1rem;
  color: var(--bs-gray-500);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.75rem;
}

.ss-card-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--bs-dark);
  border: 1px solid var(--bs-gray-800);
  border-radius: var(--cp-card-radius);
  box-shadow: var(--cp-card-shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.ss-card-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--cp-card-shadow-hover);
  border-color: var(--bs-warning-border-subtle);
}
.ss-card-plan--featured {
  background-color: var(--bs-gray-950);
  border-color: rgb(20, 108, 67.2);
  transform: translateY(-6px);
}
.ss-card-plan--featured:hover {
  transform: translateY(-10px);
  box-shadow: var(--cp-card-shadow-hover);
  border-color: #198754;
}
.ss-card-plan__header {
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid var(--bs-border-color-translucent);
}
.ss-card-plan__header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bs-ligth);
  margin: 0;
}
.ss-card-plan__body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ss-card-plan__price {
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--bs-ligth);
  line-height: 1;
  margin-bottom: 0.15rem;
}
@media (max-width: 768px) {
  .ss-card-plan__price {
    font-size: 1.75rem;
  }
}
.ss-card-plan__price--through {
  font-size: var(--cp-price-size-sm);
  color: var(--bs-secondary-color);
  text-decoration: line-through;
  margin-bottom: 0;
}
.ss-card-plan__frequency {
  display: block;
  font-size: 0.78rem;
  color: var(--bs-secondary-color);
  margin-bottom: 1rem;
}
.ss-card-plan__cta-not-featured {
  margin-bottom: 1rem;
  font-weight: 500;
}
.ss-card-plan__cta-featured {
  margin-bottom: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.ss-card-plan__cta-featured:hover {
  color: #fff;
  background-color: rgb(21.25, 114.75, 71.4);
  border-color: rgb(20, 108, 67.2);
}
.ss-card-plan__desc {
  font-size: 0.83rem;
  color: var(--bs-secondary-color);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.ss-card-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex: 1;
}
.ss-card-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.83rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--bs-border-color-translucent);
  color: var(--bs-body-color);
}
.ss-card-plan__features li:last-child {
  border-bottom: none;
}
.ss-card-plan__features li::before {
  content: "\f26e";
  font-family: "bootstrap-icons";
  font-size: 0.9rem;
  color: var(--bs-primary);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.ss-card-plan__notice {
  font-size: 0.75rem;
  color: var(--bs-secondary-color);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--bs-border-color-translucent);
  border-radius: 0.4rem;
  padding: 0.6rem 0.85rem;
  text-align: center;
  margin-top: auto;
}
.ss-card-plan__badge {
  position: absolute;
  top: 1.1rem;
  right: -2.4rem;
  width: 9rem;
  padding: 0.35rem 0;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  color: #fff;
  transform: rotate(45deg);
  z-index: 10;
}

.plans-legal {
  font-size: 0.85rem;
  color: var(--bs-secondary-color);
  text-align: center;
  padding-top: 1.5rem;
}
.plans-legal a {
  color: var(--bs-link-color);
  text-decoration: underline;
}
.plans-legal a:hover {
  color: var(--bs-link-hover-color);
}

.plans-panel {
  transition: opacity 0.25s ease;
}

.plans-panel.is-hidden {
  display: none;
}

.plans-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.plans-toggle__label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-gray-300);
  transition: color 0.25s ease;
  cursor: pointer;
  user-select: none;
}
.plans-toggle__label.is-active {
  color: var(--bs-primary-text-emphasis);
}
.plans-toggle .form-check-input {
  width: 3.5em;
  height: 1.75em;
  cursor: pointer;
  background-color: var(--cp-accent);
  border-color: var(--cp-accent);
}
.plans-toggle .form-check-input:checked {
  background-color: var(--cp-accent);
  border-color: var(--cp-accent);
}
.plans-toggle .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(240, 165, 0, 0.35);
}

/* keyframes ------------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* topbar-eco ------------------------------------ */
.ss-header-start {
  background-color: var(--bs-gray-950);
}

.ss-header-start-topbar {
  font-weight: 500;
  height: var(--main-topbar-h);
  border-top: 1px solid #000;
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  overflow: hidden;
  transition: height 0.1s ease, opacity 0.1s ease;
}
.ss-header-start-topbar--hidden {
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.ss-header-start-topbar__link {
  font-weight: 500 !important;
  font-size: 0.75rem;
  color: var(--bs-secondary);
  text-transform: uppercase;
  font-weight: 300;
}
.ss-header-start-topbar__link:hover {
  color: var(--bs-primary);
}
.ss-header-start-topbar__link.active {
  color: var(--bs-light);
}
.ss-header-start-topbar__link-sm {
  font-size: 1rem !important;
  color: var(--bs-light);
  padding: 0.5rem;
}

.navbar.fixed-top {
  top: var(--main-topbar-h);
  transition: top 0.1s ease;
}
.navbar.fixed-top.ss-navbar--no-topbar {
  top: 0;
}

/* topbar ------------------------------------ */
.ss-topbar {
  height: var(--topbar-h);
  min-height: var(--topbar-h);
  background: var(--bs-gray-900);
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ss-topbar {
    border-right: none;
  }
}
.ss-topbar__logo {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1rem;
}
@media (min-width: 768px) {
  .ss-topbar__logo {
    display: none;
  }
}
.ss-topbar__toggle {
  display: block;
  width: 36px;
  min-width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--bs-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.375rem;
  flex-shrink: 0;
  transition: color var(--transition-base), background var(--transition-base);
}
@media (max-width: 768px) {
  .ss-topbar__toggle {
    display: none;
  }
}
.ss-topbar__toggle:hover {
  color: var(--bs-light);
  background: var(--bs-gray-800);
}
.ss-topbar__search {
  flex: 1;
  max-width: 460px;
}
@media (max-width: 768px) {
  .ss-topbar__search {
    max-width: 100%;
  }
}
.ss-topbar__search input {
  width: 100%;
  background: var(--bs-gray-900);
  border: 1px solid var(--bs-gray-700);
  padding: 0.5rem 1rem 0.5rem 1rem;
  color: var(--bs-light);
  font-size: 0.875rem;
  transition: border-color var(--transition-base), background var(--transition-base);
}
@media (max-width: 768px) {
  .ss-topbar__search input {
    margin-left: 0.5rem;
  }
}
.ss-topbar__search input::placeholder {
  color: var(--bs-gray-600);
}
.ss-topbar__search input:focus {
  outline: none;
  border-color: var(--bs-primary-border-subtle);
  background: var(--bs-gray-800);
}
.ss-topbar__nav {
  display: flex;
  margin-left: auto;
}
@media (max-width: 992px) {
  .ss-topbar__nav {
    display: none;
  }
}
.ss-topbar__nav-link {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--bs-gray-500);
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
}
.ss-topbar__nav-link.is-active {
  color: var(--bs-link-color);
}
.ss-topbar__nav-link:hover {
  color: var(--bs-light);
  background: var(--bs-gray-700);
}
.ss-topbar__nav-link i {
  font-size: 0.9375rem;
}
.ss-topbar__hamburger {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--bs-gray-500);
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
@media (min-width: 768px) {
  .ss-topbar__hamburger {
    display: none;
  }
}
.ss-topbar__hamburger:hover {
  color: var(--bs-light);
}

/* footer ------------------------------------ */
.ss-footer-start {
  background-color: var(--bs-gray-980);
  border-top: 1px solid var(--bs-dark-border-subtle);
}
.ss-footer-start__copyright {
  font-size: 0.85rem;
  text-align: left;
  margin-bottom: 0;
  color: var(--bs-secondary);
}
@media (max-width: 768px) {
  .ss-footer-start__copyright {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.ss-footer-start__nav {
  text-align: right;
  margin-bottom: 0;
  color: var(--bs-secondary);
}
.ss-footer-start__nav a {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .ss-footer-start__nav {
    text-align: center;
  }
}

/* header ------------------------------------ */
.ss-header-start__navbar {
  background-color: #000;
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  padding: 1rem 0;
}
@media (max-width: 1200px) {
  .ss-header-start__navbar {
    padding: 0.75rem 0;
  }
}
.ss-header-start__navbar-nav .nav-link {
  font-weight: 500;
}

.ss-header-page__row {
  padding-top: 0.5rem;
  margin-bottom: 1rem !important;
  --bs-gutter-y: 0.5rem;
  --bs-gutter-x: 0.5rem;
}
.ss-header-page__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-primary);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .ss-header-page__title {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .ss-header-page__title {
    font-size: 1rem;
  }
}
.ss-header-page__description p {
  font-size: 1rem;
}

.ss-header-section {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.ss-header-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin: 0;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .ss-header-section__title {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .ss-header-section__title {
    font-size: 1rem;
  }
}
.ss-header-section__button {
  border-radius: 5px;
}
.ss-header-section__description p {
  font-size: 1rem;
}

.ss-header-stream__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-primary);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .ss-header-stream__title {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .ss-header-stream__title {
    font-size: 1rem;
  }
}
.ss-header-stream__description p {
  font-size: 1rem;
}

/* login------------------------------------ */
.login-page {
  margin: 0;
  background-color: var(--bs-body-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-wrapper {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 900px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--bs-dark-border-subtle);
}
@media (max-width: 768px) {
  .login-box {
    grid-template-columns: 1fr;
  }
}

.login-brand {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.login-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(56, 69, 84), rgb(125, 141, 158));
  z-index: 0;
}
.login-brand__top, .login-brand__visual, .login-brand__footer-note {
  position: relative;
  z-index: 1;
}
.login-brand__tagline {
  padding-left: 43px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
.login-brand__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0;
}
.login-brand__img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}
.login-brand__footer-note {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
@media (max-width: 768px) {
  .login-brand {
    display: none;
  }
}

.login-panel {
  background: var(--bs-gray-950);
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.login-tabs {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--bs-dark-border-subtle);
  padding-bottom: 0.75rem;
  margin-bottom: 1.75rem;
}
.login-tabs__item {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--lp-tab-inactive-color);
  text-decoration: none;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.login-tabs__item:hover {
  color: #fff;
}
.login-tabs__item.is-active {
  color: var(--bs-primary);
  font-weight: 600;
  border-bottom-color: var(--bs-primary);
}

.login-panel__header {
  margin-bottom: 1.5rem;
}

.login-panel__title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-emphasis-color);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
}

.login-panel__subtitle {
  font-size: 0.82rem;
  color: var(--bs-secondary-color);
  margin: 0;
}

/* form------------------------------------ */
.wp-form-start {
  flex: 1;
}

.form__field {
  margin-bottom: 0.85rem;
}

.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bs-secondary-color);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.form__icon {
  position: absolute;
  left: 0.75rem;
  font-size: 1rem;
  color: var(--bs-secondary-color);
  pointer-events: none;
  z-index: 1;
}

.form-control {
  width: 100%;
  height: 2.65rem !important;
  padding: 0 0.85rem 0 2.35rem;
}
.form-control::placeholder {
  color: var(--bs-secondary);
}
.form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.2);
}
.form-control--pw {
  padding-right: 2.5rem;
}

.btn-submit {
  text-transform: uppercase;
  display: block;
  width: 100%;
}

.login-form__pw-toggle, .reg-form__pw1-toggle, .reg-form__pw2-toggle {
  position: absolute;
  right: 0.65rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bs-secondary-color);
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.login-form__pw-toggle:hover, .reg-form__pw1-toggle:hover, .reg-form__pw2-toggle:hover {
  color: var(--bs-emphasis-color);
}

.form__remember {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form__checkbox {
  width: 14px;
  height: 14px;
  accent-color: var(--bs-primary);
  cursor: pointer;
}

.form__remember-label {
  font-size: 0.8rem;
  color: var(--bs-secondary-color);
  cursor: pointer;
  user-select: none;
}

.form__forgot {
  display: block;
  font-size: 0.78rem;
  color: var(--bs-secondary-color);
  text-decoration: underline;
  margin-top: 0.85rem;
  transition: color 0.2s ease;
}
.form__forgot:hover {
  color: var(--bs-emphasis-color);
}

.form-legal {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.form-legal__sep {
  color: var(--bs-border-color);
  font-size: 0.72rem;
}
.form-legal__link {
  font-size: 0.72rem;
  color: var(--bs-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.form-legal__link:hover {
  color: var(--bs-link-hover-color);
}

/* search ------------------------------------ */
.search-results__header {
  margin: 0;
}
.search-results__title {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--bs-primary);
}
@media (max-width: 768px) {
  .search-results__title {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .search-results__title {
    font-size: 1rem;
  }
}
.search-results__query {
  font-size: 1.5rem;
  color: var(--bs-light);
}
.search-results__count {
  font-size: 1rem;
}
.search-results__grid {
  margin: 0;
}
.search-results__empty {
  font-size: 1rem;
}

/* user ------------------------------------ */
.ss-topbar__dropdown {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 0.875rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .ss-topbar__dropdown {
    display: none;
  }
}
.ss-topbar__user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-md);
  background-color: transparent;
  border-color: transparent;
  cursor: pointer;
  transition: background var(--transition-base);
}
.ss-topbar__user:hover {
  background: var(--bs-gray-700);
}
.ss-topbar__user-avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--bs-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.ss-topbar__user-name {
  font-size: 0.875rem;
  color: var(--bs-light);
  white-space: nowrap;
}
.ss-topbar__user-caret {
  font-size: 0.6rem;
  color: var(--bs-gray-500);
}

.ss-user-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.625rem 0.375rem 0.725rem;
}
.ss-user-profile__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--bs-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.ss-user-profile__name {
  font-size: 1rem;
  color: var(--bs-gray-200);
  font-weight: 600;
}

/* ---------------------------------------------
pages
--------------------------------------------- */
/* front-page ------------------------------------ */
.ss-front-page-hero {
  margin-top: var(--main-topbar-h);
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .ss-front-page-hero {
    padding: 5rem 0 2rem 0;
  }
}
@media (max-width: 768px) {
  .ss-front-page-hero {
    text-align: center;
  }
}
.ss-front-page-hero__eyebrow {
  font-size: 1rem;
  text-transform: uppercase;
  display: block;
  color: var(--bs-primary);
}
.ss-front-page-hero__heading {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--bs-light);
}
@media (max-width: 1400px) {
  .ss-front-page-hero__heading {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .ss-front-page-hero__heading {
    font-size: 1.25rem;
  }
}
.ss-front-page-hero__list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}
@media (max-width: 1400px) {
  .ss-front-page-hero__list {
    font-size: 0.85rem;
  }
}
@media (max-width: 992px) {
  .ss-front-page-hero__list {
    display: none;
  }
}
.ss-front-page-hero__list li::before {
  content: "\f633";
  font-family: "Bootstrap-icons";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  color: var(--bs-white);
  vertical-align: -0.125em;
  margin-left: -1.5rem;
  color: var(--bs-primary);
  padding-left: 0.25rem;
  padding-right: 0.35rem;
}
.ss-front-page-hero footer p {
  font-size: 1.5rem;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ss-front-page-hero footer p {
    font-size: 1rem;
  }
}

.ss-front-page-service,
.ss-front-page-plans,
.ss-front-page-about,
.ss-front-page-contact {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .ss-front-page-service,
  .ss-front-page-plans,
  .ss-front-page-about,
  .ss-front-page-contact {
    padding: 2rem 0;
  }
}
.ss-front-page-service__eyebrow,
.ss-front-page-plans__eyebrow,
.ss-front-page-about__eyebrow,
.ss-front-page-contact__eyebrow {
  font-size: 1rem;
  display: block;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--bs-primary);
}
.ss-front-page-service__heading,
.ss-front-page-plans__heading,
.ss-front-page-about__heading,
.ss-front-page-contact__heading {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--bs-light);
}
.ss-front-page-service__description,
.ss-front-page-plans__description,
.ss-front-page-about__description,
.ss-front-page-contact__description {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--bs-gray-600);
}

.ss-front-page-service {
  background-color: var(--bs-dark);
  border-top: 1px solid var(--bs-dark-border-subtle);
}
.ss-front-page-service__services p {
  color: var(--bs-gray-500);
}

.ss-front-page-plans {
  background-color: var(--bs-dark-bg-subtle);
  border-top: 1px solid var(--bs-dark-border-subtle);
}

.ss-front-page-about {
  background-color: var(--bs-dark);
  border-top: 1px solid var(--bs-dark-border-subtle);
}

.ss-front-page-contact {
  background-color: var(--bs-dark-bg-subtle);
  border-top: 1px solid var(--bs-dark-border-subtle);
}
.ss-front-page-contact__form textarea {
  min-height: 150px;
}

/* page ------------------------------------ */
.ss-page__hr {
  border-top: 1px dotted var(--bs-dark-border-subtle);
  opacity: 1;
}
.ss-page__row {
  padding-top: 0.5rem;
  margin-bottom: 1rem !important;
  --bs-gutter-y: 0.5rem;
  --bs-gutter-x: 0.5rem;
}
.ss-page__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--bs-primary);
}
@media (max-width: 768px) {
  .ss-page__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  .ss-page__title {
    font-size: 1.5rem;
  }
}
.ss-page__image-float {
  float: left;
  width: 270px;
  height: auto;
  border: 1px solid var(--bs-dark-border-subtle);
  margin-right: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .ss-page__image-float {
    float: none;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.ss-page__content {
  text-align: justify;
  text-justify: inter-word;
}
.ss-page__reset-password {
  margin-bottom: 1rem;
}
.ss-page__reset-password .form-control {
  margin-bottom: 1rem;
}
.ss-page__reset-password .btn-submit {
  width: auto;
}
.ss-page__form textarea {
  min-height: 200px;
}

/* 404 ------------------------------------ */
.ss-not-found__row {
  padding-top: 0.5rem;
  margin-bottom: 1rem !important;
  --bs-gutter-y: 0.5rem;
  --bs-gutter-x: 0.5rem;
}
.ss-not-found__title {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--bs-primary);
}
@media (max-width: 768px) {
  .ss-not-found__title {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .ss-not-found__title {
    font-size: 1rem;
  }
}

/* ---------------------------------------------
plugins
--------------------------------------------- */
/* wpforms ------------------------------------ */
.wpforms-form .wpforms-hidden {
  display: none;
}
.wpforms-form .wpforms-field-container .wpforms-field {
  margin-bottom: 0.5rem;
}
.wpforms-form .wpforms-field-container .wpforms-field .wpforms-field-label.wpforms-label-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.wpforms-form .wpforms-field-container .wpforms-field .wpforms-required-label {
  color: var(--bs-danger);
}
.wpforms-form .wpforms-field-container .wpforms-field label {
  margin-bottom: 0.25rem;
}
.wpforms-form .wpforms-field-container .wpforms-field input[type=email], .wpforms-form .wpforms-field-container .wpforms-field input[type=text], .wpforms-form .wpforms-field-container .wpforms-field input[type=number], .wpforms-form .wpforms-field-container .wpforms-field textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  background-clip: padding-box;
  border: 1px solid var(--bs-border-color);
  appearance: none;
  border-radius: 0.085rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.wpforms-form .wpforms-field-container .wpforms-field input[type=email]::placeholder, .wpforms-form .wpforms-field-container .wpforms-field input[type=text]::placeholder, .wpforms-form .wpforms-field-container .wpforms-field input[type=number]::placeholder, .wpforms-form .wpforms-field-container .wpforms-field textarea::placeholder {
  color: var(--bs-tertiary-color);
}
.wpforms-form .wpforms-field-container .wpforms-field input[type=email]:focus, .wpforms-form .wpforms-field-container .wpforms-field input[type=text]:focus, .wpforms-form .wpforms-field-container .wpforms-field input[type=number]:focus, .wpforms-form .wpforms-field-container .wpforms-field textarea:focus {
  background-color: var(--bs-tertiary-bg);
  border-color: var(--bs-primary);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.wpforms-form .wpforms-field-container .wpforms-field input[type=email].wpforms-error, .wpforms-form .wpforms-field-container .wpforms-field input[type=text].wpforms-error, .wpforms-form .wpforms-field-container .wpforms-field input[type=number].wpforms-error, .wpforms-form .wpforms-field-container .wpforms-field textarea.wpforms-error {
  border-color: var(--bs-form-invalid-border-color);
}
.wpforms-form .wpforms-field-container .wpforms-field input[type=email].wpforms-error:focus, .wpforms-form .wpforms-field-container .wpforms-field input[type=text].wpforms-error:focus, .wpforms-form .wpforms-field-container .wpforms-field input[type=number].wpforms-error:focus, .wpforms-form .wpforms-field-container .wpforms-field textarea.wpforms-error:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}
.wpforms-form .wpforms-field-container .wpforms-field input[type=email].wpforms-valid, .wpforms-form .wpforms-field-container .wpforms-field input[type=text].wpforms-valid, .wpforms-form .wpforms-field-container .wpforms-field input[type=number].wpforms-valid, .wpforms-form .wpforms-field-container .wpforms-field textarea.wpforms-valid {
  border-color: var(--bs-form-valid-border-color);
}
.wpforms-form .wpforms-field-container .wpforms-field input[type=email].wpforms-valid:focus, .wpforms-form .wpforms-field-container .wpforms-field input[type=text].wpforms-valid:focus, .wpforms-form .wpforms-field-container .wpforms-field input[type=number].wpforms-valid:focus, .wpforms-form .wpforms-field-container .wpforms-field textarea.wpforms-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}
.wpforms-form .wpforms-field-container .wpforms-field .wpforms-error {
  color: var(--bs-form-invalid-color);
  margin-top: 0.25rem;
  font-size: 0.875em;
}
.wpforms-form .wpforms-submit-container button[type=submit] {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-primary-text-emphasis);
  --bs-btn-hover-border-color: var(--bs-primary-text-emphasis);
  --bs-btn-color: var(--bs-white);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: #000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid var(--bs-btn-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.wpforms-form .wpforms-submit-container button[type=submit]:hover {
  background-color: var(--bs-btn-hover-bg, var(--bs-primary));
  border-color: var(--bs-btn-hover-border-color, var(--bs-primary));
  color: var(--bs-btn-color);
}

.wpforms-container .wpforms-confirmation-container {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  position: relative;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
  text-align: center;
}

/* ppress ------------------------------------ */
#profilepress-myaccount-wrapper .ppmyac-dashboard-item.isactive {
  color: var(--bs-dark);
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
#profilepress-myaccount-wrapper .ppmyac-dashboard-item {
  background-color: var(--bs-dark);
  border: 1px solid var(--bs-dark-border-subtle);
}

.profilepress-myaccount-orders-subs .ppress-my-account-order-sub-wrap {
  border: 1px solid var(--bs-dark-border-subtle);
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header-wrap {
  border-color: var(--bs-dark-border-subtle);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-control:not([type=radio]):not([type=checkbox]),
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap input:not([type=radio]):not([type=checkbox]):not([type=submit]),
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap textarea,
#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap select {
  background-color: var(--bs-dark);
  background-clip: padding-box;
  border: 1px solid var(--bs-dark-border-subtle);
  border-radius: 0.25em;
  width: 100%;
  height: calc(2.25em + 2px);
  padding: 0.375em 0.75em;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  display: block;
  overflow: visible;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1254901961);
}

#profilepress-myaccount-wrapper input[type=submit] {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: var(--bs-btn-line-height);
  color: #000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-border-width) solid #daa442;
  border-radius: var(--bs-border-radius);
  background-color: #daa442;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-field input[type=submit]:hover {
  color: #000;
  background-color: rgb(223.55, 177.65, 94.35);
  border-color: rgb(221.7, 173.1, 84.9);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .profilepress-myaccount-form-field input[type=submit]:focus-visible {
  color: #000;
  background-color: rgb(223.55, 177.65, 94.35);
  border-color: rgb(221.7, 173.1, 84.9);
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(185, 139, 56, 0.5);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content input.profilepress-myaccount-form-control:focus,
#profilepress-myaccount-wrapper .profilepress-myaccount-content textarea.profilepress-myaccount-form-control:focus,
#profilepress-myaccount-wrapper .profilepress-myaccount-content select.profilepress-myaccount-form-control:focus {
  background-color: var(--bs-dark);
  border-color: var(--bs-dark-border-subtle);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-cover-image-wrap {
  background-color: var(--bs-dark);
  border: 1px solid var(--bs-dark-border-subtle);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-delete-avatar {
  background-color: var(--bs-dark);
  border: 1px solid var(--bs-dark-border-subtle);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-label {
  color: #fff;
  background-color: var(--bs-dark);
  border: 1px solid var(--bs-dark-border-subtle);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-form-wrap .ppmyac-custom-file-label:after {
  color: #000;
  background-color: var(--bs-primary);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .ppmyac-remove-avatar {
  color: #000;
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-dark-border-subtle);
}

#pp-pass-strength-result {
  color: #fff;
  background-color: var(--bs-dark);
  border: 1px solid var(--bs-dark-border-subtle);
}

#profilepress-myaccount-wrapper .profilepress-myaccount-content .profilepress-myaccount-cover-image-empty {
  background-color: var(--bs-gray-800);
}

.profilepress-myaccount-orders-subs .profilepress-myaccount-orders-subs-wrap .ppress-my-account-order-sub-header--actions a,
.profilepress-myaccount-orders-subs a.ppress-myac-action {
  border: 1px solid var(--bs-primary);
}

.pp-form-wrapper.ppress-default-profile .ppress-default-profile-cover {
  background-color: var(--bs-gray-800);
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-header {
  border-bottom: 2px solid var(--bs-dark-border-subtle);
}

div#pp-user-profile-1.ppress-default-profile .ppress-dpf-profile-nav {
  background: var(--bs-gray-700);
}

.pp-form-wrapper.ppress-default-profile .ppress-dpf-item-label {
  border-bottom: 1px solid var(--bs-dark-border-subtle);
}

@media (min-width: 576px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-col-sm-3 {
    flex: none;
    max-width: none;
    width: 100%;
  }
}
@media (min-width: 576px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-content {
    flex: none;
    max-width: none;
    width: 100%;
  }
}
@media (min-width: 768px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-col-sm-3 {
    flex: none;
    max-width: none;
    width: 100%;
  }
}
@media (min-width: 768px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-content {
    flex: none;
    max-width: none;
    width: 100%;
  }
}
@media (min-width: 992px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 992px) {
  #profilepress-myaccount-wrapper .profilepress-myaccount-content {
    flex: 0 0 75%;
    max-width: 75%;
  }
}
/*
.ppress-checkout__form * {
    --ppress-btn-color: var(--bs-primary);
}

.ppress-checkout__form .ppress-main-checkout-form__block legend {
    color: #fff;
}

.ppress-checkout__form .ppress-main-checkout-form__block .ppress-main-checkout-form__logged_in_text_wrap .ppress-main-checkout-form__block__item {
    background-color: var(--bs-gray-800);
}

.ppress-checkout__form .ppress-checkout-section input:not([type=checkbox]):not([type=radio]),
.ppress-checkout__form .ppress-checkout-section select,
.ppress-checkout__form .ppress-checkout-section textarea,
.ppress-checkout__form .ppress-checkout-section #ppress-stripe-card-element {
    background-color: var(--bs-dark);
    border: 1px solid var(--bs-dark-border-subtle);
}
.ppress-checkout__form .ppress-checkout_order_summary__plan_name {
    border-bottom: 1px solid var(--bs-dark-border-subtle);
}
.ppress-checkout__form .ppress-checkout_order_summary {
    border: 1px solid var(--bs-dark-border-subtle);
}
.ppress-checkout__form .ppress-checkout-form__payment_methods_wrap {
    border: 1px solid var(--bs-dark-border-subtle);
}
.ppress-checkout__form .ppress-checkout-form__payment_method .ppress-checkout-form__payment_method__content_wrap {
    background: var(--bs-dark);
    border-top: 1px solid var(--bs-dark-border-subtle);
}
*/
/* sonaar ------------------------------------ */
.iron-audioplayer .sr_it-playlist-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin: 0.5rem;
}

.iron-audioplayer .srp_player_meta {
  margin-bottom: 1rem;
}

/* ---------------------------------------------
vendor
--------------------------------------------- */
/* swiper ------------------------------------ */
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
:root {
  --swiper-theme-color: #ffc107;
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #73737d;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}