@charset "UTF-8";
@keyframes lightning-jolt {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2px, -1px);
  }
  20% {
    transform: translate(2px, 1px);
  }
  30% {
    transform: translate(-1px, 2px);
  }
  40% {
    transform: translate(1px, -2px);
  }
  50% {
    transform: translate(-2px, 1px);
  }
  60% {
    transform: translate(2px, -1px);
  }
  70% {
    transform: translate(-1px, -2px);
  }
  80% {
    transform: translate(1px, 2px);
  }
  90% {
    transform: translate(-1px, 1px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
:root {
  --header-height: 0;
  --black: #111315;
  --white: #fff;
  --orange: #ff8036;
  --blue: #246bd1;
  --gray-100: #383d42;
  --gray-90: #4d5359;
  --gray-80: #626970;
  --gray-70: #798086;
  --gray-60: #90969d;
  --gray-50: #a8aeb4;
  --gray-40: #c1c5ca;
  --gray-30: #dadee1;
  --gray-20: #f5f6f8;
  --gray-10: #f8f8f8;
  --label-color-dark-primary: #fff;
  --system-background-dark-base-primary: #000;
  --xxl: 36px;
  --xl: 26px;
  --lg: 22px;
  --md: 18px;
  --md2: 16px;
  --body: 14px;
  --sm: 12px;
  --xs: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

img.lazy {
  background-image: url("../img/loading.gif");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 50px auto;
  height: auto;
}

strong {
  font-weight: 700;
}

u {
  border-bottom: 1px solid #fff;
  line-height: 1;
  text-decoration: unset;
}

button {
  background-color: transparent;
  border: 0;
}

button:active,
button:focus {
  outline: 0;
}

*:active,
*:focus {
  outline: none;
  border: 0;
}

:focus {
  outline: none !important;
}

h1 {
  font-size: var(--xxl);
  font-weight: 700;
}

h2 {
  font-size: var(--xl);
  font-weight: 700;
}

h3 {
  font-size: var(--lg);
  font-weight: 700;
}

h4 {
  font-size: var(--md);
  font-weight: 700;
}

h5 {
  font-size: var(--md2);
  font-weight: 700;
}

h6 {
  font-size: var(--body);
  font-weight: 700;
}

p {
  font-size: var(--body);
  font-weight: 400;
}

a {
  font-size: var(--body);
}

li {
  font-size: var(--md);
}

.title-2 {
  font-size: var(--lg);
  font-weight: 700;
  color: #111315;
}

.white-text {
  color: #fff !important;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Kode Mono", monospace;
  font-size: var(--body);
  line-height: 1.7;
  font-weight: 400;
  color: #111315;
  letter-spacing: normal;
  background-color: #111315;
  margin-left: auto;
  margin-right: auto;
  background: #f5f5f5;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
  transition: all 0.3s ease;
}

a:hover {
  text-decoration: none !important;
}

a {
  color: currentColor;
  text-decoration: none;
}

.maincontent a {
  border-bottom: 1px solid currentColor;
}

#main {
  padding-top: 0;
}

#npreOverlay {
  background: var(--preloaderBg);
}

.cboth {
  overflow: hidden;
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.maincontent .vc_row:not(.vc_inner):not(.vc_grid):not(.vc_gitem_row) {
  padding-top: 35px;
  padding-bottom: 50px;
}

.maincontent > .wpb-content-wrapper > .vc_row:first-of-type {
  padding-top: 50px !important;
}

.maincontent h1,
.maincontent h2,
.maincontent h3,
.maincontent h4,
.maincontent h5,
.maincontent h6,
.maincontent p,
.maincontent ul,
.maincontent ul li:not(:last-child),
.maincontent ol,
.maincontent ol li:not(:last-child) {
  margin-bottom: 15px;
}

.maincontent ul ul,
.maincontent ul ol,
.maincontent ol ul,
.maincontent ol ol {
  margin-top: 15px;
}

.maincontent .wpb_text_column + .wpb_text_column,
.maincontent .wpb_text_column + .vc_row {
  margin-top: 20px;
}

.menu ul li:hover > a,
.menu ul li.current-page-ancestor > a,
.menu ul li.current-menu-ancestor > a,
.menu ul li.current-menu-parent > a,
.menu ul li.current_page_parent > a,
.menu ul li.current_page_ancestor > a,
.menu ul li.current-menu-item > a,
body.tribe_events-template-default .menu ul li.veranstaltungen > a,
body.single-post .menu ul li.nachrichten > a {
  color: #5680bc;
}

@media (max-width: 991px) {
  .maincontent .vc_row:not(.vc_inner):not(.vc_grid):not(.vc_gitem_row) {
    padding: 20px 0;
  }
}
@media (min-width: 992px) {
  :root {
    --md: 18px;
    --md2: 16px;
    --body: 16px;
    --sm: 14px;
    --xs: 14px;
  }
}
.row {
  --gutter-x: 24px;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gutter-x) * -0.5);
  margin-left: calc(var(--gutter-x) * -0.5);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.container {
  width: 100%;
  padding-right: calc(var(--gutter-x) * 0.5);
  padding-left: calc(var(--gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  max-width: 550px;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 950px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.panel-header {
  position: absolute;
  z-index: 99;
  background: transparent !important;
  border: 0;
  width: 100%;
  top: 0;
  box-shadow: unset !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.panel-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-header .btn-dashboard {
  color: #e8f380;
  transition: color 0.3s ease;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}
.panel-header .btn-dashboard:hover {
  animation: lightning-jolt 0.4s ease;
}
.panel-header .btn-hamburger {
  color: #e8f380;
  transition: color 0.3s ease;
}
.panel-header .btn-hamburger:hover {
  animation: lightning-jolt 0.4s ease;
}
.panel-header.is-sticky {
  position: fixed;
  top: 0;
  background: #fff !important;
  box-shadow: 0px 1px 3px #eee !important;
  animation: slideDown 0.3s ease forwards;
}
.panel-header.is-sticky .btn-dashboard,
.panel-header.is-sticky .btn-hamburger {
  color: #111315;
}
body.admin-bar .panel-header.is-sticky {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .panel-header.is-sticky {
    top: 46px;
  }
}
.panel-header.is-hidden {
  transform: translateY(-100%);
}

.slideout-open .panel-header:not(.is-sticky) .btn-dashboard,
.slideout-open .panel-header:not(.is-sticky) .btn-hamburger {
  color: #fff;
}

body.admin-bar .panel-header:not(.is-sticky) {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .panel-header:not(.is-sticky) {
    top: 46px;
  }
}

.mobile-logo {
  width: auto !important;
}
.mobile-logo a {
  display: flex;
  border: 0;
}
.mobile-logo img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.mobile-logo img:hover {
  filter: grayscale(0%);
  animation: lightning-jolt 0.4s ease;
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-bottom: 25px;
}
.menu-top h3 {
  margin-bottom: 10px;
}
.menu-top .menu-bttn {
  margin-top: 12px;
}

.back {
  border-radius: 100px;
  display: inline-flex;
}
.back a {
  display: flex;
  padding: 10px;
  position: relative;
  z-index: 10;
}
.back a img {
  width: 15px;
}

.buddy-img {
  width: 80px;
  flex-shrink: 0;
}
.buddy-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.1);
}

.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 256px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .slideout-menu {
    width: 340px;
  }
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  background-color: #212427;
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
  background: #212427;
  padding: 20px;
}

.btn-hamburger {
  cursor: pointer;
}
.btn-hamburger img {
  width: 27px;
}

.hamburger:hover {
  cursor: pointer;
}
.hamburger:hover .line {
  opacity: 0.8;
}
.hamburger .line {
  width: var(--hamWidth);
  height: var(--hamHeight);
  background-color: var(--primary);
  display: block;
  margin: var(--hamMargin) auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slideout-open .line:nth-child(2) {
  opacity: 0;
}
.slideout-open .line:nth-child(1) {
  -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
  -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
  transform: translateY(var(--hamTranslate)) rotate(45deg);
}
.slideout-open .line:nth-child(3) {
  -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
  -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
  transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.wb-sidebar {
  display: flex;
  flex-direction: column;
  padding-top: 110px;
}
.wb-sidebar__divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 16px 0;
}
.wb-sidebar__user {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.wb-sidebar__user--guest {
  padding: 10px 0;
}
.wb-sidebar__avatar-wrap {
  position: relative;
  width: 60px;
  height: 60px;
}
.wb-sidebar__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.wb-sidebar__avatar-change {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e8f380;
  color: #111315;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.wb-sidebar__avatar-change:hover {
  transform: scale(1.15);
}
.wb-sidebar__avatar-msg {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
}
.wb-sidebar__avatar-msg--success {
  color: #e8f380;
}
.wb-sidebar__avatar-msg--error {
  color: #f87171;
}
.wb-sidebar__name {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.wb-sidebar__profile-link {
  color: #e8f380;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.wb-sidebar__profile-link i {
  font-size: 10px;
  margin-left: 4px;
}
.wb-sidebar__profile-link:hover {
  opacity: 0.8;
}
.wb-sidebar__quick-actions {
  display: flex;
  gap: 8px;
}
.wb-sidebar__quick-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: #383d42;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.wb-sidebar__quick-btn i {
  font-size: 12px;
}
.wb-sidebar__quick-btn:hover {
  background: #e8f380;
  color: #111315;
}
.wb-sidebar__section {
  display: flex;
  flex-direction: column;
}
.wb-sidebar__section-title {
  color: #c1c5ca;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.wb-sidebar__appointments {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 40px;
}
.wb-sidebar__appointment {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wb-sidebar__appointment-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.wb-sidebar__appointment-date--lime {
  color: #e8f380;
}
.wb-sidebar__appointment-date--purple {
  color: #b4a2ff;
}
.wb-sidebar__appointment-date--pink {
  color: #f0c6ff;
}
.wb-sidebar__appointment-date--blue {
  color: #c6e9ff;
}
.wb-sidebar__appointment-date--gray {
  color: #c1c5ca;
}
.wb-sidebar__appointment-day {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.wb-sidebar__appointment-month {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}
.wb-sidebar__appointment-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wb-sidebar__appointment-title {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wb-sidebar__appointment-time {
  color: #c1c5ca;
  font-size: 10px;
}
.wb-sidebar__empty {
  color: #c1c5ca;
  font-size: 12px;
  font-style: italic;
  margin: 0 0 8px;
}
.wb-sidebar__book-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: #e8f380;
  color: #111315;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.2s ease;
}
.wb-sidebar__book-btn:hover {
  opacity: 0.9;
  animation: lightning-jolt 0.4s ease;
}
.wb-sidebar__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #dadee1;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.wb-sidebar__contact-item i {
  color: #c1c5ca;
  width: 16px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}
.wb-sidebar__contact-item:hover {
  color: #fff;
}
.wb-sidebar a.wb-sidebar__contact-item:hover i {
  color: #e8f380;
}
.wb-sidebar__social {
  margin-top: 8px;
  display: flex;
  gap: 12px;
}
.wb-sidebar__social a {
  color: #c1c5ca;
  font-size: 18px;
  transition: color 0.2s ease;
}
.wb-sidebar__social a:hover {
  color: #e8f380;
}
.wb-sidebar__nav ul,
.wb-sidebar__nav ul li {
  margin: 0 !important;
  display: block;
}
.wb-sidebar__nav ul li {
  margin-bottom: 4px !important;
}
.wb-sidebar__nav ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  padding: 6px 0;
  display: inline-block;
  transition: color 0.2s ease;
}
.wb-sidebar__nav ul li a:hover {
  color: #e8f380;
}
.wb-sidebar__spinner {
  display: block;
  width: 20px;
  height: 20px;
  margin: 8px auto;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #e8f380;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.menu ul li .dropdown-menu li {
  display: block;
  position: relative;
}

.menu ul li .dropdown-menu li a {
  padding: 5px 15px;
  line-height: 1.2;
  display: block;
  padding-right: 10px;
  border-bottom: 0;
  text-decoration: none;
}

.menu ul li .dropdown-menu .dropdown > a {
  background-image: url(../img/angle-right.svg);
  background-repeat: no-repeat;
  margin-right: 15px;
}

.dropdown-menu {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.menu-item-has-children a {
  position: relative;
  padding-right: 12px;
}

.menu-toggle {
  background-image: url(../img/angle-down.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 12px;
  position: absolute;
  right: -5px;
  top: 5px;
  display: block;
  width: 12px;
  height: 12px;
}

.dropdown-menu .menu-toggle {
  top: 10px;
}

.menu-item-has-children > a:hover::after {
  color: #5680bc;
}

@media (min-width: 992px) {
  .menu-item-has-children:hover > a + .dropdown-menu {
    display: block;
  }
  .dropdown-menu .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
  }
  .menu-item-has-children .dropdown > a::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    margin-top: -4px;
  }
}
.banner-area {
  width: 100%;
  min-height: 90vh;
  position: relative;
}
.banner-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 180px;
  background: linear-gradient(187deg, #212427 57.45%, rgba(33, 36, 39, 0) 89.59%);
  top: 80px;
  z-index: 2;
}
.banner-area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 160px;
  background: linear-gradient(0deg, #212427 46.41%, rgba(33, 36, 39, 0) 90.5%);
  bottom: 0;
  z-index: 2;
}

.banner-bg {
  position: absolute;
  bottom: 0;
  top: 180px;
  left: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.banner-hours {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.banner-hours--open {
  background-color: rgba(34, 197, 94, 0.25);
}
.banner-hours--closed {
  background-color: rgba(239, 68, 68, 0.25);
}
.banner-hours__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.banner-hours--open .banner-hours__dot {
  background-color: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.banner-hours--closed .banner-hours__dot {
  background-color: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}
.banner-hours__text {
  white-space: nowrap;
}
.banner-hours__countdown {
  white-space: nowrap;
  opacity: 0.8;
  font-size: 10px;
}
.banner-hours__countdown::before {
  content: "·";
  margin-right: 4px;
}

.banner-text {
  position: relative;
  z-index: 10;
  padding-bottom: 160px;
}
.banner-text h1 {
  text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 1.4;
}
.banner-text h1 span {
  color: #e8f380;
}
.banner-text p {
  font-weight: 400;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 18px;
}
.banner-text p span {
  color: #e8f380;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slider .swiper-wrapper {
  height: 100%;
}
.hero-slider .swiper-slide {
  height: 100%;
  position: relative;
}
.hero-slider .swiper-slide .banner-bg {
  position: absolute;
  top: 180px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-slider .swiper-slide .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hero-slider .swiper-slide .row {
  flex: 1;
  display: flex;
}
.hero-slider .swiper-slide .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.2s ease;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}
.hero-arrow--prev {
  left: 12px;
}
.hero-arrow--next {
  right: 12px;
}

.user-menu {
  border-radius: 5px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  display: inline-flex;
  padding: 0 10px;
  justify-content: center;
  position: relative;
}
.user-menu ul {
  display: flex;
  align-items: center;
  margin: 0 !important;
  gap: 12px;
}
.user-menu ul li {
  letter-spacing: normal;
  margin: 0 !important;
  padding: 10px;
  list-style: none;
  cursor: pointer;
}
.user-menu ul li.active, .user-menu ul li:hover {
  border-radius: 10px;
  background-color: #e8f380;
}
.user-menu ul li a {
  display: flex;
  text-decoration: none;
  border: 0;
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 5px 5px;
  background-color: rgba(17, 19, 21, 0.08);
  overflow: hidden;
}
.hero-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111315;
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
}

.user-menu-area {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

@media (min-width: 992px) {
  .banner-area::before {
    top: 0;
    z-index: 2;
    opacity: 0.5;
    display: none;
  }
  .hero-slider .swiper-slide .banner-bg {
    top: 0;
  }
  .hero-slider .swiper-slide .banner-bg img {
    object-position: top center;
  }
  .banner-bg {
    top: 0;
  }
  .banner-bg img {
    object-position: top center;
  }
  .banner-bttn.text-right {
    text-align: left;
  }
}
.foter-inner {
  padding: 30px 0;
  display: flex;
}
.foter-inner h6 {
  color: #111315;
  margin-bottom: 10px;
  line-height: 1.1;
}

.foter-logo a {
  display: flex;
  margin-bottom: 20px;
}
.foter-logo a img {
  width: 50px;
}

.footer-left {
  width: calc(50% - 5px);
}

.footer-left-text ul {
  margin-top: 10px;
}
.footer-left-text ul li {
  list-style: none;
  line-height: 1;
}
.footer-left-text ul li a {
  font-size: var(--xs);
  font-weight: 500;
  color: #111315;
  line-height: 1.5;
  display: inline-block;
  text-decoration: underline;
}
.footer-left-text p {
  font-size: 8px;
  font-weight: 400;
  color: #111315;
}

.contact {
  text-align: right;
  width: calc(50% - 5px);
  padding-top: 70px;
}
.contact p {
  font-size: var(--xs);
  font-weight: 500;
  color: #111315;
}
.contact address {
  font-size: var(--xs);
  font-weight: 500;
  color: #111315;
  font-style: normal;
  margin-top: 15px;
}
.contact h6 {
  margin-bottom: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.social-icon a {
  color: #111315;
  font-size: 22px;
  transition: color 0.2s ease;
}
.social-icon a:hover {
  color: #ff8036;
}
.social-icon a i {
  display: block;
}

.contact .social-icon {
  justify-content: flex-end;
}

.copyright-text {
  padding-bottom: 10px;
}
.copyright-text p {
  margin: 0;
  font-size: 8px;
  font-weight: 400;
}

@media (min-width: 992px) {
  .footer-left-text p {
    font-size: var(--sm);
  }
}
.vc_btn3-inline {
  margin-right: 30px;
}

.vc_general.vc_btn3.vc_btn3-color-grey {
  display: inline-block !important;
  background-image: none !important;
  border-radius: 0 !important;
  font-size: var(--sm2) !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-decoration: none !important;
  text-align: center !important;
  text-transform: capitalize !important;
  background-color: var(--green) !important;
  border: 1px solid var(--green) !important;
  padding: 15px 20px !important;
  display: inline-flex !important;
  gap: 5px !important;
  align-items: center !important;
  transition: filter 0.2s ease, transform 0.1s ease;
}

.vc_general.vc_btn3.vc_btn3-icon-left {
  padding-left: 40px !important;
}

.vc_general.vc_btn3.vc_btn3-icon-right {
  padding-right: 40px !important;
}

.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-size-xs,
.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-size-sm {
  padding: 10px 20px !important;
}

.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-size-lg {
  padding: 20px 20px !important;
}

.vc_general.vc_btn3.vc_btn3-color-grey:hover {
  filter: brightness(1.1);
  animation: lightning-jolt 0.4s ease;
}

.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-size-xs,
.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-size-sm.black-bttn {
  background: #111315 !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-icon-right.vc_btn3-size-xs.yellow-bttn {
  background: #e8f380 !important;
  color: #111315 !important;
}

.vc_general.vc_btn3.vc_btn3-color-grey.vc_btn3-icon-right.vc_btn3-size-xs.pink-bttn {
  background-color: #f0c6ff !important;
  color: #111315 !important;
}

a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-icon-right.vc_btn3-color-grey {
  border-radius: 5px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  background: #e8f380 !important;
  color: #111315 !important;
  border: 1px solid var(--green) !important;
}

a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-icon-right.vc_btn3-color-pink {
  background: none;
  background-color: #f0c6ff;
  color: #111315;
  border-color: #f0c6ff;
}
a.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-icon-right.vc_btn3-color-pink:hover {
  border: none;
}

.vc_btn3-color-lime,
.vc_general.vc_btn3.vc_btn3-color-lime {
  background-color: #e8f380 !important;
  color: #111315 !important;
  border-color: #e8f380 !important;
}

.vc_btn3-color-purple,
.vc_general.vc_btn3.vc_btn3-color-purple {
  background-color: #b4a2ff !important;
  color: #111315 !important;
  border-color: #b4a2ff !important;
}

.vc_btn3-color-pink,
.vc_general.vc_btn3.vc_btn3-color-pink {
  background-color: #f0c6ff !important;
  color: #111315 !important;
  border-color: #f0c6ff !important;
}

.vc_btn3-color-blue,
.vc_general.vc_btn3.vc_btn3-color-blue {
  background-color: #c6e9ff !important;
  color: #111315 !important;
  border-color: #c6e9ff !important;
}

.vc_btn3-color-gray,
.vc_general.vc_btn3.vc_btn3-color-gray {
  background-color: #383d42 !important;
  color: #fff !important;
  border-color: #383d42 !important;
}

.vc_separator.vc_sep_color_lime .vc_sep_line {
  border-color: #e8f380 !important;
}

.vc_separator.vc_sep_color_purple .vc_sep_line {
  border-color: #b4a2ff !important;
}

.vc_separator.vc_sep_color_pink .vc_sep_line {
  border-color: #f0c6ff !important;
}

.vc_separator.vc_sep_color_blue .vc_sep_line {
  border-color: #c6e9ff !important;
}

.vc_separator.vc_sep_color_gray .vc_sep_line {
  border-color: #383d42 !important;
}

.vc_icon_element .vc_icon_element-icon.vc_icon_color-lime {
  color: #e8f380 !important;
}

.vc_icon_element .vc_icon_element-icon.vc_icon_color-purple {
  color: #b4a2ff !important;
}

.vc_icon_element .vc_icon_element-icon.vc_icon_color-pink {
  color: #f0c6ff !important;
}

.vc_icon_element .vc_icon_element-icon.vc_icon_color-blue {
  color: #c6e9ff !important;
}

.vc_icon_element .vc_icon_element-icon.vc_icon_color-gray {
  color: #383d42 !important;
}

.vc_progress_bar .vc_single_bar.lime .vc_bar {
  background-color: #e8f380 !important;
}

.vc_progress_bar .vc_single_bar.purple .vc_bar {
  background-color: #b4a2ff !important;
}

.vc_progress_bar .vc_single_bar.pink .vc_bar {
  background-color: #f0c6ff !important;
}

.vc_progress_bar .vc_single_bar.blue .vc_bar {
  background-color: #c6e9ff !important;
}

.vc_progress_bar .vc_single_bar.gray .vc_bar {
  background-color: #383d42 !important;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track::before, .slick-track::after {
  display: table;
  content: "";
}
.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
}
.slick-prev:hover::before, .slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before {
  opacity: 1;
}
.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before {
  opacity: 0.25;
}
.slick-prev::before,
.slick-next::before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
.slick-prev::before {
  content: "←";
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
[dir=rtl] .slick-prev::before {
  content: "→";
}

.slick-next {
  right: -25px;
}
.slick-next::before {
  content: "→";
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
[dir=rtl] .slick-next::before {
  content: "←";
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 !important;
  margin-bottom: 20px !important;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  margin: 0 !important;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  flex-grow: 0;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent;
  background-color: #c1c5ca !important;
  border-radius: 50%;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover::before, .slick-dots li button:focus::before {
  opacity: 1;
}
.slick-dots li button::before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "" !important;
  text-align: center;
  opacity: 0.25;
  color: #111315;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
  width: 24px !important;
  border-radius: 10px;
}
.slick-dots li.slick-active button::before {
  opacity: 0.75;
  color: #111315;
}

.slider-slide .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  top: 15px;
}
.slider-slide .slick-dots li {
  width: auto;
  height: auto;
}
.slider-slide .slick-dots li button::before {
  width: auto;
  height: auto;
}

.insight-area .slick-list,
.awaits-slider-area .slick-list {
  overflow: visible;
}

.preloader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 99999999;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 2px solid #f3f3f3;
  border-top: 3px solid #58b8cb;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
#loading-msg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 25px;
  text-align: center;
  color: #333;
  font-size: 0.8em;
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.progress-wrap:hover .angle-top path {
  fill: #fff;
}
.progress-wrap svg.progress-circle path {
  fill: none;
  stroke: var(--gray);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.angle-top {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.wb-ical-sync {
  position: relative;
  display: inline-block;
}
.wb-ical-sync__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid #dadee1;
  border-radius: 8px;
  background: #fff;
  color: #383d42;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.wb-ical-sync__trigger:hover {
  border-color: #a8aeb4;
  background: #f8f8f8;
}
.wb-ical-sync__trigger svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.wb-ical-sync__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 1000;
  width: 340px;
  background: #fff;
  border: 1px solid #dadee1;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 16px;
}
.wb-ical-sync__dropdown--open {
  display: block;
}
.wb-ical-sync__title {
  font-size: 14px;
  font-weight: 600;
  color: #383d42;
  margin: 0 0 12px;
}
.wb-ical-sync__url-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.wb-ical-sync__url-input {
  flex: 1;
  padding: 7px 10px;
  border: 1px solid #dadee1;
  border-radius: 6px;
  font-size: 12px;
  color: #626970;
  background: #f8f8f8;
  outline: none;
  min-width: 0;
}
.wb-ical-sync__url-input:focus {
  border-color: #a8aeb4;
}
.wb-ical-sync__copy-btn {
  flex-shrink: 0;
  padding: 7px 12px;
  border: 1px solid #dadee1;
  border-radius: 6px;
  background: #fff;
  color: #383d42;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.wb-ical-sync__copy-btn:hover {
  background: #f8f8f8;
}
.wb-ical-sync__copy-btn--copied {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}
.wb-ical-sync__apps {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.wb-ical-sync__app-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #dadee1;
  border-radius: 6px;
  background: #fff;
  color: #383d42;
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s;
}
.wb-ical-sync__app-link:hover {
  background: #f8f8f8;
  text-decoration: none;
  color: #383d42;
}
.wb-ical-sync__app-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.wb-ical-sync__regenerate {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: none;
  color: #90969d;
  font-size: 11px;
  cursor: pointer;
  transition: color 0.2s;
}
.wb-ical-sync__regenerate:hover {
  color: #383d42;
}
.wb-ical-sync__regenerate svg {
  width: 12px;
  height: 12px;
}
.wb-ical-sync__message {
  font-size: 11px;
  margin-top: 4px;
  display: none;
}
.wb-ical-sync__message--success {
  display: block;
  color: #155724;
}
.wb-ical-sync__message--error {
  display: block;
  color: #721c24;
}
.wb-ical-sync--lime .wb-ical-sync__trigger:hover {
  border-color: #e8f380;
}
.wb-ical-sync--purple .wb-ical-sync__trigger:hover {
  border-color: #b4a2ff;
}
.wb-ical-sync--pink .wb-ical-sync__trigger:hover {
  border-color: #f0c6ff;
}
.wb-ical-sync--blue .wb-ical-sync__trigger:hover {
  border-color: #c6e9ff;
}
.wb-ical-sync--gray .wb-ical-sync__trigger:hover {
  border-color: #383d42;
}

.wb-card {
  position: relative;
  border-radius: 10px;
  min-height: var(--card-height, 200px);
  margin-bottom: 10px;
}
.wb-card h3 {
  margin: 0;
  font-size: var(--md);
  font-weight: 700;
  color: #111315;
  margin-bottom: 10px;
}
.wb-card p {
  margin: 0;
  color: #111315;
}

.wb-card--lime {
  background-color: #e8f380;
  color: #111315;
}

.wb-card--purple {
  background-color: #b4a2ff;
  color: #111315;
}

.wb-card--pink {
  background-color: #f0c6ff;
  color: #111315;
}

.wb-card--blue {
  background-color: #c6e9ff;
  color: #111315;
}

.wb-card--gray {
  background-color: #383d42;
  color: #fff;
}
.wb-card--gray h3,
.wb-card--gray p {
  color: #fff;
}

.wb-card__content {
  position: relative;
  padding: 30px 20px;
  z-index: 1;
}

.wb-card--text-bg .wb-card__content p {
  background: #fff;
  padding: 10px 8px;
  border-radius: 10px;
  font-weight: 500;
  width: var(--text-bg-width, 365px);
  color: #111315;
  max-width: 100%;
}

.wb-card__duration {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
.wb-card__duration span {
  font-weight: 500;
  background: #fff;
  line-height: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111315;
}

.wb-card__icon {
  position: absolute;
}
.wb-card__icon img {
  border-radius: 10px;
}

.wb-card--icon-right .wb-card__icon {
  right: 0;
  top: 0;
  height: 100%;
}
.wb-card--icon-right .wb-card__icon img {
  height: 100%;
  width: auto;
}

.wb-card--icon-bottom-right .wb-card__icon {
  right: 0;
  bottom: 0;
}
.wb-card--icon-bottom-right .wb-card__icon img {
  max-height: 140px;
  width: auto;
}

.wb-card--icon-top-right .wb-card__icon {
  right: 10px;
  top: 10px;
}
.wb-card--icon-top-right .wb-card__icon img {
  max-width: 60px;
  max-height: 60px;
}

.wb-card__button {
  position: absolute;
  bottom: 20px;
  left: 8px;
  z-index: 2;
}

.cards {
  display: grid;
  gap: 5px;
}

.cards-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.training-inner h2 {
  color: #fff;
  line-height: 1;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .wb-card.mb-50 {
    margin-bottom: 0 !important;
    height: 100%;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
.wb-comparisoncard {
  position: relative;
  border-radius: 10px;
  min-height: 180px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  overflow: hidden;
}
.wb-comparisoncard h4 {
  margin: 0;
  color: #111315;
}
.wb-comparisoncard p {
  margin: 0;
  font-weight: 400;
  color: #111315;
}

.wb-comparisoncard--lime {
  background-color: #e8f380;
}

.wb-comparisoncard--purple {
  background-color: #b4a2ff;
}

.wb-comparisoncard--pink {
  background-color: #f0c6ff;
}

.wb-comparisoncard--blue {
  background-color: #c6e9ff;
}

.wb-comparisoncard--gray {
  background-color: #383d42;
}
.wb-comparisoncard--gray h4,
.wb-comparisoncard--gray p {
  color: #fff;
}

.wb-comparisoncard__content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.wb-comparisoncard__icon {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
}
.wb-comparisoncard__icon img {
  height: 100%;
  width: auto;
}

.wb-comparisoncard--icon-left .wb-comparisoncard__icon {
  left: 0;
}

.wb-comparisoncard--icon-left-center .wb-comparisoncard__icon {
  left: 25%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.wb-comparisoncard--icon-center .wb-comparisoncard__icon {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.wb-comparisoncard--icon-right-center .wb-comparisoncard__icon {
  right: 25%;
  left: auto;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}

.wb-comparisoncard--icon-right .wb-comparisoncard__icon {
  right: 0;
  left: auto;
}

.wb-comparisoncard__btn {
  margin-top: 15px;
}
.wb-comparisoncard__btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wb-comparisoncard__media {
  max-width: 175px;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}
.wb-comparisoncard__media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.wb-comparisoncard__media--video {
  position: relative;
  overflow: hidden;
}

.wb-comparisoncard__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.wb-comparisoncard--member {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.wb-comparisoncard--member .wb-comparisoncard__content {
  flex: 1;
}
.wb-comparisoncard--member .wb-comparisoncard__content h4 {
  color: #111315;
  margin: 0;
}
.wb-comparisoncard--member .wb-comparisoncard__content p {
  font-size: var(--md);
  font-weight: 400;
  color: #626970;
}

.wb-comparisoncard__button {
  flex-shrink: 0;
}
.wb-comparisoncard__button a {
  display: flex;
  text-decoration: none;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.wb-comparisoncard--linked .wb-comparisoncard__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

a.wb-comparisoncard--linked {
  display: flex;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
a.wb-comparisoncard--linked:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
a.wb-comparisoncard--linked:active {
  transform: translateY(0);
}

.comparison-card {
  border-radius: 10px;
  background-color: #e8f380;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  min-height: 180px;
  position: relative;
  margin-bottom: 10px;
}

.comparison-card-2 {
  background-color: #f0c6ff;
  margin: 5px 0;
}

.comparison-card-3 {
  background-color: #b4a2ff;
}

.comparison-icon {
  max-width: 175px;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
}
.comparison-icon img {
  object-fit: cover;
  border-radius: 10px;
}

.comparison-text {
  position: relative;
}
.comparison-text h4 {
  margin: 0;
  color: #111315;
}
.comparison-text p {
  margin: 0;
  font-weight: 400;
  color: #4d5359;
}

.retreat-1-icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.retreat-2-icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 100%;
}
.retreat-2-icon img {
  height: 100%;
}

.retreat-3-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.member-ara {
  padding: 15px;
  border-radius: 10px;
  background-color: #e8f380;
  display: flex;
  justify-content: space-between;
  min-height: 180px;
}

.member-right a {
  display: flex;
  text-decoration: none;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.member-text h4 {
  color: #111315;
  margin: 0;
}
.member-text p {
  font-size: var(--md);
  font-weight: 400;
  color: #626970;
}

.progress-comparison {
  display: grid;
  column-gap: 5px;
  row-gap: 5px;
  grid-template-columns: 1fr;
}

.progress-single {
  background: #f0c6ff;
}

@media (min-width: 768px) {
  .progress-comparison {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .comparison-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .member-ara.mt-40,
  .wb-comparisoncard--member.mt-40 {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .progress-comparison {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wb-slider {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}
.wb-slider--bg-lime {
  background-color: #e8f380;
}
.wb-slider--bg-lime .wb-slider__title,
.wb-slider--bg-lime .wb-slider__text,
.wb-slider--bg-lime .wb-slider__secondary {
  color: #111315;
}
.wb-slider--bg-purple {
  background-color: #b4a2ff;
}
.wb-slider--bg-purple .wb-slider__title,
.wb-slider--bg-purple .wb-slider__text,
.wb-slider--bg-purple .wb-slider__secondary {
  color: #111315;
}
.wb-slider--bg-pink {
  background-color: #f0c6ff;
}
.wb-slider--bg-pink .wb-slider__title,
.wb-slider--bg-pink .wb-slider__text,
.wb-slider--bg-pink .wb-slider__secondary {
  color: #111315;
}
.wb-slider--bg-blue {
  background-color: #c6e9ff;
}
.wb-slider--bg-blue .wb-slider__title,
.wb-slider--bg-blue .wb-slider__text,
.wb-slider--bg-blue .wb-slider__secondary {
  color: #111315;
}
.wb-slider--bg-gray {
  background-color: #383d42;
}
.wb-slider--bg-gray .wb-slider__title,
.wb-slider--bg-gray .wb-slider__text,
.wb-slider--bg-gray .wb-slider__secondary {
  color: #fff;
}

.wb-slider__swiper {
  overflow: visible;
  padding-bottom: 50px;
}

.wb-slider__slide {
  width: auto;
  height: auto;
  transition: all 0.6s ease;
}
.wb-slider__slide:not(.swiper-slide-active) {
  opacity: 0.7;
}
.wb-slider__slide.swiper-slide-active {
  opacity: 1;
}

.wb-slider__card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.6s ease;
}

.wb-slider--insights .wb-slider__slide {
  width: 280px;
}
@media (min-width: 768px) {
  .wb-slider--insights .wb-slider__slide {
    width: 350px;
  }
}
.wb-slider--insights .wb-slider__image {
  border-radius: 10px;
  overflow: hidden;
}
.wb-slider--insights .wb-slider__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.6s ease;
}
.wb-slider--insights .swiper-slide-active .wb-slider__image img {
  transform: scale(1.02);
}

.wb-slider--awaits .wb-slider__slide {
  width: 280px;
}
@media (min-width: 768px) {
  .wb-slider--awaits .wb-slider__slide {
    width: 300px;
  }
}
.wb-slider--awaits .wb-slider__card {
  background-color: #b4a2ff;
  padding: 30px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.wb-slider--awaits .wb-slider__content {
  color: #fff;
}
.wb-slider--awaits .wb-slider__text {
  font-size: var(--sm);
  line-height: 1.5;
  margin: 0 0 10px 0;
  color: rgba(255, 255, 255, 0.85);
}
.wb-slider--awaits .wb-slider__title {
  font-size: var(--md);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}
.wb-slider--awaits .swiper-slide-active .wb-slider__card {
  background-color: #e8f380;
}
.wb-slider--awaits .swiper-slide-active .wb-slider__card .wb-slider__text,
.wb-slider--awaits .swiper-slide-active .wb-slider__card .wb-slider__title {
  color: #111315;
}

.wb-slider--products .swiper-wrapper {
  align-items: flex-end;
}
.wb-slider--products .wb-slider__slide {
  width: 215px;
}
@media (min-width: 992px) {
  .wb-slider--products .wb-slider__slide {
    width: 230px;
  }
}
.wb-slider--products .wb-slider__card {
  border: 1px solid #90969d;
  background-color: #4d5359;
  transition: all 0.6s ease;
}
.wb-slider--products .wb-slider__image {
  background-color: #4d5359;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 150px;
}
@media (min-width: 992px) {
  .wb-slider--products .wb-slider__image {
    height: 180px;
  }
}
.wb-slider--products .wb-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  transition: all 0.6s ease;
  transform: scale(0.93);
  transform-origin: center center;
}
.wb-slider--products .wb-slider__content {
  padding: 16px 10px;
  background-color: #383d42;
  border-radius: 0 0 10px 10px;
  transition: all 0.6s ease;
}
.wb-slider--products .wb-slider__title {
  font-size: var(--body);
  font-weight: 700;
  line-height: 1.2;
  color: #f5f6f8;
  margin: 0 0 10px 0;
  transition: all 0.6s ease;
}
.wb-slider--products .wb-slider__text {
  font-size: var(--xs);
  font-weight: 600;
  line-height: 1.5;
  color: #f5f6f8;
  margin: 0;
}
.wb-slider--products .wb-slider__secondary {
  font-size: var(--xs);
  line-height: 1.5;
  color: #f5f6f8;
  margin: 5px 0 0 0;
}
.wb-slider--products .wb-slider__button {
  text-align: center;
  margin-top: 15px;
}
.wb-slider--products .swiper-slide-active .wb-slider__card {
  border-color: transparent;
}
.wb-slider--products .swiper-slide-active .wb-slider__image {
  background-color: #fff;
}
.wb-slider--products .swiper-slide-active .wb-slider__image img {
  transform: scale(1);
}
.wb-slider--products .swiper-slide-active .wb-slider__content {
  background-color: #e8f380;
}
.wb-slider--products .swiper-slide-active .wb-slider__title {
  font-size: var(--md);
  color: #111315;
}
.wb-slider--products .swiper-slide-active .wb-slider__text,
.wb-slider--products .swiper-slide-active .wb-slider__secondary {
  color: #111315;
}
.wb-slider--products .swiper-slide-active .vc_btn3 {
  background-color: #fff !important;
}

.wb-slider__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 10;
}
@media (min-width: 768px) {
  .wb-slider__nav {
    padding: 0 20px;
  }
}

.wb-slider__arrow {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(17, 19, 21, 0.7);
  border: none;
  color: #fff;
  font-size: var(--body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.wb-slider__arrow:hover {
  background-color: #e8f380;
  color: #111315;
}
.wb-slider__arrow:focus {
  outline: 2px solid #e8f380;
  outline-offset: 2px;
}
.wb-slider__arrow:disabled, .wb-slider__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wb-slider__arrow:disabled:hover, .wb-slider__arrow.swiper-button-disabled:hover {
  background-color: rgba(17, 19, 21, 0.7);
  color: #fff;
}

.wb-slider__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.wb-slider__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #90969d;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wb-slider__pagination .swiper-pagination-bullet:hover {
  background-color: #c1c5ca;
}
.wb-slider__pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background-color: #e8f380;
}

.wb-slider--bg-lime .swiper-pagination-bullet,
.wb-slider--bg-purple .swiper-pagination-bullet,
.wb-slider--bg-pink .swiper-pagination-bullet,
.wb-slider--bg-blue .swiper-pagination-bullet {
  background-color: rgba(17, 19, 21, 0.3);
}
.wb-slider--bg-lime .swiper-pagination-bullet-active,
.wb-slider--bg-purple .swiper-pagination-bullet-active,
.wb-slider--bg-pink .swiper-pagination-bullet-active,
.wb-slider--bg-blue .swiper-pagination-bullet-active {
  background-color: #111315;
}

.wb-slider--bg-gray .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.3);
}
.wb-slider--bg-gray .swiper-pagination-bullet-active {
  background-color: #fff;
}

.wb-slider--center .wb-slider__swiper .swiper-wrapper {
  align-items: center;
}
.wb-slider--center .swiper-slide {
  transition: all 0.6s ease;
}

@media (min-width: 768px) {
  .wb-slider {
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .wb-slider__arrow {
    width: 48px;
    height: 48px;
    font-size: var(--md);
  }
}
.awaits-card {
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: rgba(231, 244, 255, 0.3);
  padding: 0 20px;
}
.awaits-card h6 {
  margin: 0;
  font-weight: 700;
  color: #aa25b4;
}

@media (min-width: 992px) {
  .awaits-card {
    text-align: center;
    align-items: center;
  }
  .awaits-card br {
    display: none;
  }
}
@media (min-width: 1200px) {
  .awaits-card {
    max-width: 100%;
  }
}
.retreat-area {
  padding-top: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.retreat-wrap {
  border-radius: 10px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #c6e9ff;
  padding: 0 0 70px 0;
  position: relative;
}

.retreat-image {
  position: absolute;
  right: 0;
  top: 0;
}
.retreat-image img {
  border-radius: 10px;
}

.retreat-title {
  position: relative;
  margin-bottom: 10px;
}
.retreat-title h2 {
  font-weight: 700;
  color: #111315;
  max-width: 240px;
  margin: 0;
}
.retreat-title span {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #aa25b4;
  position: absolute;
  right: 0;
  bottom: 0;
}

.retreat {
  display: flex;
  align-items: flex-end;
}
.retreat h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding-bottom: 30px;
}

.retreat-text h4 {
  color: #000;
  max-width: 350px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.retreat-text h6 {
  text-align: center;
  color: #000;
  max-width: 277px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.retreat-text h6 span {
  color: #aa25b4;
}

.login {
  width: 100%;
  height: 129px;
  border-radius: 10px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c6e9ff;
  position: relative;
}

.member-icon {
  position: absolute;
  right: 0;
  top: 0;
}
.member-icon img {
  object-fit: cover;
}

.comming-soon {
  padding-bottom: 50px;
}

.comming-soon-inner {
  padding: 20px 30px;
  border-radius: 10px;
  background-color: #e8f380;
  padding-bottom: 25px;
  position: relative;
  overflow: hidden;
}
.comming-soon-inner h2 {
  max-width: 176px;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  color: #111315;
}

.retreat-icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 230px;
}
.retreat-icon img {
  height: 100%;
}

.comming-text {
  position: relative;
  z-index: 2;
}

.comming-soon-text {
  padding: 10px 10px;
  border-radius: 10px;
  background-color: #f8f8f8;
}
.comming-soon-text h3 {
  color: #111315;
  margin: 0;
}
.comming-soon-text h6 {
  font-size: var(--body);
  font-weight: 700;
  color: #111315;
  margin: 0;
}
.comming-soon-text p {
  font-size: 12px;
  font-weight: 500;
  color: #111315;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 0;
}

.comming-soon-bttn {
  margin-top: 12px;
}

.choose-area h2.title {
  line-height: 1;
}
.choose-area .comming-soon-text {
  max-width: 224px;
  width: 100%;
  margin-left: auto;
}

@media (min-width: 992px) {
  .retreat h2 {
    text-align: center;
  }
  .comming-soon-text,
  .comming-soon-inner h2,
  .choose-area .comming-soon-text {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .comming-soon-text p {
    font-size: var(--sm);
  }
}
.wb-cta {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.wb-cta--lime {
  background-color: #e8f380;
}

.wb-cta--purple {
  background-color: #b4a2ff;
}

.wb-cta--pink {
  background-color: #f0c6ff;
}

.wb-cta--blue {
  background-color: #c6e9ff;
}

.wb-cta--gray {
  background-color: #383d42;
}

.wb-cta__icon {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  height: 100%;
}
.wb-cta__icon img {
  display: block;
  height: 100%;
  width: auto;
}

.wb-cta--icon-left .wb-cta__icon {
  left: 0;
}

.wb-cta--icon-center .wb-cta__icon {
  left: 50%;
  transform: translate(-50%, -50%);
}

.wb-cta--icon-right .wb-cta__icon {
  right: 0;
}

.wb-cta__card {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 10px;
  color: #111315;
  padding: 24px;
  width: 100%;
}

.wb-cta--gray .wb-cta__card {
  background-color: #383d42;
  color: #fff;
}

.wb-cta__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-weight: 700;
  color: #111315;
}

.wb-cta--gray .wb-cta__title {
  color: #fff;
}

.wb-cta__text p {
  margin: 0;
}
.wb-cta__text p + p {
  margin-top: 8px;
}

.wb-cta--gray .wb-cta__text {
  color: #fff;
}
.wb-cta--gray .wb-cta__text p {
  color: #fff;
}

.wb-cta__button {
  position: relative;
  z-index: 2;
}

.wb-cta--align-center .wb-cta__card {
  margin-inline: auto;
}

@media (min-width: 992px) {
  .wb-cta__card {
    max-width: 60%;
  }
}
.wb-auth {
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 0;
}
.wb-auth__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: hidden;
}
.wb-auth__header {
  text-align: center;
  margin-bottom: 30px;
}
.wb-auth__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
  color: #111315;
}
.wb-auth__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 5px;
  color: #111315;
}
.wb-auth__subtitle {
  font-size: 12px;
  color: #90969d;
  margin: 0;
  line-height: 1.5;
}
.wb-auth__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wb-auth__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wb-auth__label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-auth__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wb-auth__input {
  width: 100%;
  padding: 12px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  color: #111315;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.wb-auth__input:focus {
  border-color: #626970;
}
.wb-auth__input::placeholder {
  color: #a8aeb4;
}
.wb-auth__field--error .wb-auth__input {
  border-color: #ff8036;
}
[type=password] .wb-auth__input, .wb-auth__toggle-pw + .wb-auth__input {
  padding-right: 44px;
}
.wb-auth__input-wrap:has(.wb-auth__toggle-pw) .wb-auth__input {
  padding-right: 44px;
}
.wb-auth__toggle-pw {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #90969d;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s ease;
}
.wb-auth__toggle-pw:hover {
  color: #111315;
}
.wb-auth__field-error {
  font-size: 10px;
  color: #ff8036;
  min-height: 0;
  line-height: 1.2;
  display: none;
}
.wb-auth__field--error .wb-auth__field-error {
  display: block;
}
.wb-auth__submit {
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.wb-auth__submit:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-auth__submit:active {
  transform: scale(0.98);
}
.wb-auth__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.wb-auth__submit:disabled:hover {
  filter: none;
  animation: none;
}
.wb-auth__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-auth-spin 0.6s linear infinite;
}
.wb-auth__message {
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.wb-auth__message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
  border: 1px solid rgba(232, 243, 128, 0.4);
}
.wb-auth__message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
  border: 1px solid rgba(255, 128, 54, 0.3);
}
.wb-auth__links {
  margin-top: 20px;
  text-align: center;
}
.wb-auth__link, .wb-auth__verify-link {
  font-size: 12px;
  color: #798086;
  text-decoration: none;
  transition: color 0.2s ease;
}
.wb-auth__link:hover, .wb-auth__verify-link:hover {
  color: #111315;
  text-decoration: underline;
}
.wb-auth__verify-link {
  font-style: italic;
}
.wb-auth__divider {
  width: 40px;
  height: 1px;
  background: #dadee1;
  margin: 10px auto;
}
.wb-auth--lime .wb-auth__submit {
  background: #e8f380;
  color: #111315;
}
.wb-auth--purple .wb-auth__submit {
  background: #b4a2ff;
  color: #111315;
}
.wb-auth--pink .wb-auth__submit {
  background: #f0c6ff;
  color: #111315;
}
.wb-auth--blue .wb-auth__submit {
  background: #c6e9ff;
  color: #111315;
}
.wb-auth--gray .wb-auth__submit {
  background: #383d42;
  color: #fff;
}
.wb-auth--gray .wb-auth__submit .wb-auth__spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}
.wb-auth--modal {
  max-width: none;
  padding: 0;
}

@keyframes wb-auth-spin {
  to {
    transform: rotate(360deg);
  }
}
.wb-profile__login-prompt {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: #90969d;
  font-size: 14px;
}
.wb-profile__login-prompt i {
  display: block;
  font-size: 36px;
  color: #c1c5ca;
  margin-bottom: 15px;
}
.wb-profile__login-prompt p {
  margin: 0 0 15px;
}
.wb-profile__login-link {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border-radius: 5px;
  text-decoration: none;
  transition: filter 0.2s ease;
}
.wb-profile__login-link:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-profile__content-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.wb-profile-nav {
  margin: 0 auto;
  padding: 15px 0;
}
.wb-profile-nav__tabs {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 5px;
}
.wb-profile-nav__tabs::-webkit-scrollbar {
  display: none;
}
.wb-profile-nav__tab {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-nav__tab:active, .wb-profile-nav__tab:focus {
  outline: none;
}
.wb-profile-nav__tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: #90969d;
  background: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.wb-profile-nav__tab i {
  font-size: 14px;
}
.wb-profile-nav__tab:hover {
  color: #111315;
  background: #f8f8f8;
}
.wb-profile-nav__tab--active {
  color: #111315;
  background: #e8f380;
}
.wb-profile-nav__tab--active:hover {
  background: #e8f380;
}
.wb-profile-nav--lime .wb-profile-nav__tab--active {
  background: #e8f380;
  color: #111315;
}
.wb-profile-nav--purple .wb-profile-nav__tab--active {
  background: #b4a2ff;
  color: #111315;
}
.wb-profile-nav--pink .wb-profile-nav__tab--active {
  background: #f0c6ff;
  color: #111315;
}
.wb-profile-nav--blue .wb-profile-nav__tab--active {
  background: #c6e9ff;
  color: #111315;
}
.wb-profile-nav--gray .wb-profile-nav__tab--active {
  background: #383d42;
  color: #fff;
}

.wb-profile-section {
  padding: 0;
}

.wb-profile-overview__avatar-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.wb-profile-overview__avatar-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: visible;
}
.wb-profile-overview__avatar-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8f380;
}
.wb-profile-overview__avatar-edit {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.wb-profile-overview__avatar-edit i {
  font-size: 12px;
  color: #626970;
}
.wb-profile-overview__avatar-edit:hover {
  background: #f8f8f8;
}
.wb-profile-overview__avatar-message {
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 5px;
  text-align: center;
  max-width: 300px;
}
.wb-profile-overview__avatar-message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
}
.wb-profile-overview__avatar-message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
}
.wb-profile-overview__info {
  text-align: center;
  margin-bottom: 30px;
}
.wb-profile-overview__name {
  font-size: 26px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 5px;
}
.wb-profile-overview__email {
  font-size: 14px;
  color: #90969d;
  margin: 0 0 5px;
}
.wb-profile-overview__member-since {
  font-size: 12px;
  color: #a8aeb4;
  margin: 0;
}
.wb-profile-overview__stats {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.wb-profile-overview__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 10px;
  min-width: 120px;
  flex: 1;
  max-width: 180px;
}
.wb-profile-overview__stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #111315;
  line-height: 1;
}
.wb-profile-overview__stat-label {
  font-size: 10px;
  color: #90969d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wb-profile-overview--lime .wb-profile-overview__avatar-img {
  border-color: #e8f380;
}
.wb-profile-overview--purple .wb-profile-overview__avatar-img {
  border-color: #b4a2ff;
}
.wb-profile-overview--pink .wb-profile-overview__avatar-img {
  border-color: #f0c6ff;
}
.wb-profile-overview--blue .wb-profile-overview__avatar-img {
  border-color: #c6e9ff;
}
.wb-profile-overview--gray .wb-profile-overview__avatar-img {
  border-color: #383d42;
}

.wb-profile-bookings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}
.wb-profile-bookings__toggle {
  display: flex;
  gap: 2px;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 2px;
}
.wb-profile-bookings__toggle-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-bookings__toggle-btn:active, .wb-profile-bookings__toggle-btn:focus {
  outline: none;
}
.wb-profile-bookings__toggle-btn {
  padding: 8px 16px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: #90969d;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.wb-profile-bookings__toggle-btn:hover {
  color: #111315;
}
.wb-profile-bookings__toggle-btn--active {
  background: #fff;
  color: #111315;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
}
.wb-profile-bookings__new-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: #111315;
  background: #e8f380;
  border-radius: 5px;
  text-decoration: none;
  transition: filter 0.2s ease;
}
.wb-profile-bookings__new-btn:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-profile-bookings__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wb-profile-bookings__loading {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
.wb-profile-bookings__spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #dadee1;
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-auth-spin 0.6s linear infinite;
}
.wb-profile-bookings__empty {
  text-align: center;
  color: #90969d;
  font-size: 14px;
  padding: 30px 0;
}
.wb-profile-bookings__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 10px;
  border-left: 4px solid #e8f380;
}
.wb-profile-bookings__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f8f8;
  flex-shrink: 0;
}
.wb-profile-bookings__item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.wb-profile-bookings__icon-fallback {
  font-size: 18px;
  color: #90969d;
}
.wb-profile-bookings__item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wb-profile-bookings__title {
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wb-profile-bookings__title:hover {
  text-decoration: underline;
}
.wb-profile-bookings__meta {
  font-size: 12px;
  color: #90969d;
}
.wb-profile-bookings__trainers {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.wb-profile-bookings__trainer {
  position: relative;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  background: #f8f8f8;
  color: #626970;
  text-decoration: none;
  cursor: pointer;
}
.wb-profile-bookings__trainer:hover {
  text-decoration: none;
  color: #626970;
}
.wb-profile-bookings__trainer--lime {
  background: rgba(232, 243, 128, 0.2);
}
.wb-profile-bookings__trainer--purple {
  background: rgba(180, 162, 255, 0.2);
}
.wb-profile-bookings__trainer--pink {
  background: rgba(240, 198, 255, 0.2);
}
.wb-profile-bookings__trainer--blue {
  background: rgba(198, 233, 255, 0.2);
}
.wb-profile-bookings__trainer--gray {
  background: rgba(56, 61, 66, 0.2);
  color: #fff;
}
.wb-profile-bookings__trainer--gray:hover {
  color: #fff;
}
.wb-profile-bookings__trainer-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(17, 19, 21, 0.18);
  overflow: hidden;
  z-index: 100;
  pointer-events: none;
}
.wb-profile-bookings__trainer-popup img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: cover;
}
.wb-profile-bookings__trainer-popup-name {
  display: block;
  padding: 3px 5px;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  color: #111315;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wb-profile-bookings__trainer:hover .wb-profile-bookings__trainer-popup {
  display: block;
}
.wb-profile-bookings__item-actions {
  flex-shrink: 0;
}
.wb-profile-bookings__cancel-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-bookings__cancel-btn:active, .wb-profile-bookings__cancel-btn:focus {
  outline: none;
}
.wb-profile-bookings__cancel-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #90969d;
  background: #f8f8f8;
  transition: background 0.2s ease, color 0.2s ease;
}
.wb-profile-bookings__cancel-btn:hover {
  background: rgba(255, 128, 54, 0.1);
  color: #ff8036;
}
.wb-profile-bookings__item--lime {
  border-left-color: #e8f380;
}
.wb-profile-bookings__item--purple {
  border-left-color: #b4a2ff;
}
.wb-profile-bookings__item--pink {
  border-left-color: #f0c6ff;
}
.wb-profile-bookings__item--blue {
  border-left-color: #c6e9ff;
}
.wb-profile-bookings__item--gray {
  border-left-color: #383d42;
}
.wb-profile-bookings__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.wb-profile-bookings__page-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-bookings__page-btn:active, .wb-profile-bookings__page-btn:focus {
  outline: none;
}
.wb-profile-bookings__page-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  color: #111315;
  transition: background 0.2s ease;
}
.wb-profile-bookings__page-btn:hover:not(:disabled) {
  background: #f5f6f8;
}
.wb-profile-bookings__page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wb-profile-bookings__page-info {
  font-size: 12px;
  color: #90969d;
}
.wb-profile-bookings--lime .wb-profile-bookings__new-btn {
  background: #e8f380;
}
.wb-profile-bookings--purple .wb-profile-bookings__new-btn {
  background: #b4a2ff;
}
.wb-profile-bookings--pink .wb-profile-bookings__new-btn {
  background: #f0c6ff;
}
.wb-profile-bookings--blue .wb-profile-bookings__new-btn {
  background: #c6e9ff;
}
.wb-profile-bookings--gray .wb-profile-bookings__new-btn {
  background: #383d42;
  color: #fff;
}

.wb-profile-progress__subtabs {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dadee1;
  padding-bottom: 10px;
}
.wb-profile-progress__subtab {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-progress__subtab:active, .wb-profile-progress__subtab:focus {
  outline: none;
}
.wb-profile-progress__subtab {
  padding: 8px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: #90969d;
  border-bottom: 2px solid transparent;
  margin-bottom: -11px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.wb-profile-progress__subtab:hover {
  color: #111315;
}
.wb-profile-progress__subtab--active {
  color: #111315;
  border-bottom-color: #e8f380;
}
.wb-profile-progress__photo-upload {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.wb-profile-progress__metrics {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.wb-profile-progress__metrics::-webkit-scrollbar {
  display: none;
}
.wb-profile-progress__metric-tablet {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-progress__metric-tablet:active, .wb-profile-progress__metric-tablet:focus {
  outline: none;
}
.wb-profile-progress__metric-tablet {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: #90969d;
  background: #f8f8f8;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.wb-profile-progress__metric-tablet i {
  font-size: 12px;
}
.wb-profile-progress__metric-tablet:hover {
  color: #111315;
  background: #f5f6f8;
}
.wb-profile-progress__metric-tablet--active {
  color: #111315;
  background: #e8f380;
  transform: scale(1.05);
}
.wb-profile-progress__metric-tablet--active:hover {
  background: #e8f380;
}
.wb-profile-progress__metric-tablet--custom {
  border: 1px dashed #c1c5ca;
  background: transparent;
}
.wb-profile-progress__metric-tablet--custom.wb-profile-progress__metric-tablet--active {
  border-color: transparent;
  background: #e8f380;
}
.wb-profile-progress__metric-card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.wb-profile-progress__metric-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.wb-profile-progress__metric-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f8f8;
  font-size: 18px;
  color: #626970;
  flex-shrink: 0;
}
.wb-profile-progress__metric-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #111315;
}
.wb-profile-progress__metric-card-unit {
  font-size: 12px;
  color: #90969d;
}
.wb-profile-progress__metric-card-custom {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wb-profile-progress__metric-card-custom {
    flex-direction: column;
  }
}
.wb-profile-progress__stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.wb-profile-progress__stepper-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-progress__stepper-btn:active, .wb-profile-progress__stepper-btn:focus {
  outline: none;
}
.wb-profile-progress__stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f8f8f8;
  color: #111315;
  font-size: 18px;
  transition: background 0.15s ease, transform 0.1s ease;
}
.wb-profile-progress__stepper-btn:hover {
  background: #f5f6f8;
}
.wb-profile-progress__stepper-btn:active {
  transform: scale(0.95);
}
.wb-profile-progress__stepper-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}
.wb-profile-progress__stepper-display {
  font-size: 36px;
  font-weight: 700;
  color: #111315;
  line-height: 1.1;
  cursor: pointer;
  transition: color 0.15s ease;
}
.wb-profile-progress__stepper-display:hover {
  color: #626970;
}
.wb-profile-progress__stepper-input {
  width: 120px;
  font-size: 36px;
  font-weight: 700;
  font-family: "Kode Mono", monospace;
  color: #111315;
  text-align: center;
  border: none;
  border-bottom: 2px solid #e8f380;
  background: transparent;
  outline: none;
  line-height: 1.1;
  -moz-appearance: textfield;
}
.wb-profile-progress__stepper-input::-webkit-inner-spin-button, .wb-profile-progress__stepper-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.wb-profile-progress__stepper-unit {
  font-size: 12px;
  color: #90969d;
  margin-top: 2px;
}
.wb-profile-progress__metric-card-row {
  margin-bottom: 15px;
  max-width: 200px;
}
.wb-profile-progress__metric-card-notes {
  margin-bottom: 20px;
}
.wb-profile-progress__notes-toggle {
  font-size: 12px;
  color: #90969d;
  text-decoration: none;
}
.wb-profile-progress__notes-toggle:hover {
  color: #111315;
}
.wb-profile-progress__notes-field {
  margin-top: 10px;
}
.wb-profile-progress__form-title {
  font-size: 18px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 15px;
}
.wb-profile-progress__form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .wb-profile-progress__form-row {
    flex-direction: column;
  }
}
.wb-profile-progress__field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wb-profile-progress__field label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-profile-progress__input, .wb-profile-progress__select, .wb-profile-progress__file-input {
  width: 100%;
  padding: 10px 12px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  color: #111315;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.wb-profile-progress__input:focus, .wb-profile-progress__select:focus, .wb-profile-progress__file-input:focus {
  border-color: #626970;
}
.wb-profile-progress__select {
  cursor: pointer;
}
.wb-profile-progress__form-actions {
  display: flex;
  gap: 10px;
}
.wb-profile-progress__submit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.wb-profile-progress__submit-btn:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-profile-progress__submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.wb-profile-progress__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-auth-spin 0.6s linear infinite;
}
.wb-profile-progress__form-message {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
}
.wb-profile-progress__form-message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
}
.wb-profile-progress__form-message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
}
.wb-profile-progress__chart-area {
  background: #212427;
  border-radius: 10px;
  padding: 20px;
}
.wb-profile-progress__chart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.wb-profile-progress__chart-metric {
  padding: 8px 12px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  color: #fff;
  background: #4d5359;
  border: 1px solid #626970;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}
.wb-profile-progress__chart-metric option {
  background: #4d5359;
}
.wb-profile-progress__chart-range {
  display: flex;
  gap: 2px;
  background: #4d5359;
  border-radius: 5px;
  padding: 2px;
}
.wb-profile-progress__range-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-progress__range-btn:active, .wb-profile-progress__range-btn:focus {
  outline: none;
}
.wb-profile-progress__range-btn {
  padding: 6px 12px;
  font-family: "Kode Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  color: #a8aeb4;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.wb-profile-progress__range-btn:hover {
  color: #fff;
}
.wb-profile-progress__range-btn--active {
  background: #626970;
  color: #fff;
}
.wb-profile-progress__chart-container {
  position: relative;
  height: 280px;
}
@media (min-width: 768px) {
  .wb-profile-progress__chart-container {
    height: 350px;
  }
}
.wb-profile-progress__chart {
  width: 100% !important;
  height: 100% !important;
}
.wb-profile-progress__chart-empty {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #a8aeb4;
  font-size: 14px;
}
.wb-profile-progress__entries-list {
  margin-top: 15px;
  max-height: 250px;
  overflow-y: auto;
}
.wb-profile-progress__entries-empty {
  text-align: center;
  color: #a8aeb4;
  font-size: 12px;
  padding: 15px 0;
}
.wb-profile-progress__entry {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #626970;
}
.wb-profile-progress__entry:last-child {
  border-bottom: none;
}
.wb-profile-progress__entry-date {
  font-size: 10px;
  color: #a8aeb4;
  min-width: 80px;
}
.wb-profile-progress__entry-value {
  font-size: 14px;
  font-weight: 700;
  color: #e8f380;
}
.wb-profile-progress__entry-note {
  font-size: 10px;
  color: #a8aeb4;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wb-profile-progress__entry-delete {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-progress__entry-delete:active, .wb-profile-progress__entry-delete:focus {
  outline: none;
}
.wb-profile-progress__entry-delete {
  color: #90969d;
  font-size: 12px;
  padding: 4px;
  transition: color 0.2s ease;
}
.wb-profile-progress__entry-delete:hover {
  color: #ff8036;
}
.wb-profile-progress__photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px) {
  .wb-profile-progress__photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .wb-profile-progress__photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wb-profile-progress__photo-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.wb-profile-progress__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wb-profile-progress__photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.wb-profile-progress__photo-item:hover .wb-profile-progress__photo-overlay {
  opacity: 1;
}
.wb-profile-progress__photo-date {
  font-size: 10px;
  color: #fff;
}
.wb-profile-progress__photo-caption {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wb-profile-progress__photo-delete {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-progress__photo-delete:active, .wb-profile-progress__photo-delete:focus {
  outline: none;
}
.wb-profile-progress__photo-delete {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 10px;
  transition: background 0.2s ease;
}
.wb-profile-progress__photo-delete:hover {
  background: #ff8036;
}
.wb-profile-progress__photo-pagination, .wb-profile-progress__timeline-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.wb-profile-progress__page-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-progress__page-btn:active, .wb-profile-progress__page-btn:focus {
  outline: none;
}
.wb-profile-progress__page-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  color: #111315;
  transition: background 0.2s ease;
}
.wb-profile-progress__page-btn:hover:not(:disabled) {
  background: #f5f6f8;
}
.wb-profile-progress__page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wb-profile-progress__page-info {
  font-size: 12px;
  color: #90969d;
}
.wb-profile-progress__timeline {
  position: relative;
  padding-left: 30px;
}
.wb-profile-progress__timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #dadee1;
}
.wb-profile-progress__timeline-item {
  position: relative;
  padding: 15px 0;
  display: flex;
  gap: 15px;
}
.wb-profile-progress__timeline-item:last-child {
  padding-bottom: 0;
}
.wb-profile-progress__timeline-dot {
  position: absolute;
  left: -30px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid #dadee1;
  z-index: 1;
}
.wb-profile-progress__timeline-dot i {
  font-size: 8px;
  color: #90969d;
}
.wb-profile-progress__timeline-item--booking .wb-profile-progress__timeline-dot {
  border-color: #e8f380;
}
.wb-profile-progress__timeline-item--booking .wb-profile-progress__timeline-dot i {
  color: rgb(181.928057554, 199.1798561151, 18.8201438849);
}
.wb-profile-progress__timeline-item--photo .wb-profile-progress__timeline-dot {
  border-color: #b4a2ff;
}
.wb-profile-progress__timeline-item--photo .wb-profile-progress__timeline-dot i {
  color: #b4a2ff;
}
.wb-profile-progress__timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.wb-profile-progress__timeline-date {
  font-size: 10px;
  color: #a8aeb4;
}
.wb-profile-progress__timeline-title {
  font-size: 14px;
  font-weight: 600;
  color: #111315;
}
.wb-profile-progress__timeline-thumb {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
  margin-top: 5px;
}
.wb-profile-progress__timeline-caption {
  font-size: 10px;
  color: #90969d;
}
.wb-profile-progress--lime .wb-profile-progress__subtab--active {
  border-bottom-color: #e8f380;
}
.wb-profile-progress--lime .wb-profile-progress__submit-btn {
  background: #e8f380;
}
.wb-profile-progress--lime .wb-profile-progress__metric-tablet--active {
  background: #e8f380;
  color: #111315;
}
.wb-profile-progress--lime .wb-profile-progress__stepper-input {
  border-bottom-color: #e8f380;
}
.wb-profile-progress--purple .wb-profile-progress__subtab--active {
  border-bottom-color: #b4a2ff;
}
.wb-profile-progress--purple .wb-profile-progress__submit-btn {
  background: #b4a2ff;
}
.wb-profile-progress--purple .wb-profile-progress__metric-tablet--active {
  background: #b4a2ff;
  color: #111315;
}
.wb-profile-progress--purple .wb-profile-progress__stepper-input {
  border-bottom-color: #b4a2ff;
}
.wb-profile-progress--pink .wb-profile-progress__subtab--active {
  border-bottom-color: #f0c6ff;
}
.wb-profile-progress--pink .wb-profile-progress__submit-btn {
  background: #f0c6ff;
}
.wb-profile-progress--pink .wb-profile-progress__metric-tablet--active {
  background: #f0c6ff;
  color: #111315;
}
.wb-profile-progress--pink .wb-profile-progress__stepper-input {
  border-bottom-color: #f0c6ff;
}
.wb-profile-progress--blue .wb-profile-progress__subtab--active {
  border-bottom-color: #c6e9ff;
}
.wb-profile-progress--blue .wb-profile-progress__submit-btn {
  background: #c6e9ff;
}
.wb-profile-progress--blue .wb-profile-progress__metric-tablet--active {
  background: #c6e9ff;
  color: #111315;
}
.wb-profile-progress--blue .wb-profile-progress__stepper-input {
  border-bottom-color: #c6e9ff;
}
.wb-profile-progress--gray .wb-profile-progress__subtab--active {
  border-bottom-color: #383d42;
}
.wb-profile-progress--gray .wb-profile-progress__submit-btn {
  background: #383d42;
  color: #fff;
}
.wb-profile-progress--gray .wb-profile-progress__metric-tablet--active {
  background: #383d42;
  color: #fff;
}
.wb-profile-progress--gray .wb-profile-progress__stepper-input {
  border-bottom-color: #383d42;
}

.wb-profile-settings {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}
.wb-profile-settings__card {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
}
.wb-profile-settings__card--logout {
  background: transparent;
  padding: 15px 0;
}
.wb-profile-settings__card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 15px;
}
.wb-profile-settings__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wb-profile-settings__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wb-profile-settings__field label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-profile-settings__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wb-profile-settings__input {
  width: 100%;
  padding: 12px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  color: #111315;
  background: #fff;
  border: 1px solid #dadee1;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.wb-profile-settings__input:focus {
  border-color: #626970;
}
.wb-profile-settings__input-wrap:has(.wb-profile-settings__toggle-pw) .wb-profile-settings__input {
  padding-right: 44px;
}
.wb-profile-settings__toggle-pw {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #90969d;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s ease;
}
.wb-profile-settings__toggle-pw:hover {
  color: #111315;
}
.wb-profile-settings__actions {
  display: flex;
}
.wb-profile-settings__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.wb-profile-settings__btn:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-profile-settings__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.wb-profile-settings__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-auth-spin 0.6s linear infinite;
}
.wb-profile-settings__message {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
}
.wb-profile-settings__message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
}
.wb-profile-settings__message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
}
.wb-profile-settings__logout-btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.wb-profile-settings__logout-btn:active, .wb-profile-settings__logout-btn:focus {
  outline: none;
}
.wb-profile-settings__logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #626970;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  transition: background 0.2s ease, color 0.2s ease;
}
.wb-profile-settings__logout-btn:hover {
  background: #f5f6f8;
  color: #111315;
}
.wb-profile-settings--lime .wb-profile-settings__btn {
  background: #e8f380;
}
.wb-profile-settings--purple .wb-profile-settings__btn {
  background: #b4a2ff;
}
.wb-profile-settings--pink .wb-profile-settings__btn {
  background: #f0c6ff;
}
.wb-profile-settings--blue .wb-profile-settings__btn {
  background: #c6e9ff;
}
.wb-profile-settings--gray .wb-profile-settings__btn {
  background: #383d42;
  color: #fff;
}

.wb-hours-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background-color: #f5f6f8;
  color: #111315;
}
.wb-hours-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.wb-hours-status__label {
  white-space: nowrap;
}
.wb-hours-status__countdown {
  white-space: nowrap;
  opacity: 0.7;
  font-size: 10px;
}
.wb-hours-status__countdown::before {
  content: "·";
  margin-right: 4px;
}
.wb-hours-status--open .wb-hours-status__dot {
  background-color: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}
.wb-hours-status--closed .wb-hours-status__dot {
  background-color: #ef4444;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}
.wb-hours-status--lime {
  background-color: rgba(232, 243, 128, 0.3);
}
.wb-hours-status--purple {
  background-color: rgba(180, 162, 255, 0.3);
}
.wb-hours-status--pink {
  background-color: rgba(240, 198, 255, 0.3);
}
.wb-hours-status--blue {
  background-color: rgba(198, 233, 255, 0.3);
}
.wb-hours-status--gray {
  background-color: rgba(56, 61, 66, 0.8);
  color: #fff;
}

.wb-hours-table {
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 20px;
  overflow: hidden;
}
.wb-hours-table__title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 700;
}
.wb-hours-table__list {
  display: flex;
  flex-direction: column;
}
.wb-hours-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-bottom: 1px solid #f5f6f8;
  font-size: 14px;
}
.wb-hours-table__row:last-child {
  border-bottom: 0;
}
.wb-hours-table__row--today {
  border-radius: 5px;
  font-weight: 700;
}
.wb-hours-table__row--closed .wb-hours-table__times {
  font-style: italic;
  opacity: 0.5;
}
.wb-hours-table__day {
  flex-shrink: 0;
  margin-right: 15px;
}
.wb-hours-table__times {
  text-align: right;
  white-space: nowrap;
}
.wb-hours-table--lime .wb-hours-table__row--today {
  background-color: rgba(232, 243, 128, 0.3);
}
.wb-hours-table--purple .wb-hours-table__row--today {
  background-color: rgba(180, 162, 255, 0.3);
}
.wb-hours-table--pink .wb-hours-table__row--today {
  background-color: rgba(240, 198, 255, 0.3);
}
.wb-hours-table--blue .wb-hours-table__row--today {
  background-color: rgba(198, 233, 255, 0.3);
}
.wb-hours-table--gray .wb-hours-table__row--today {
  background-color: rgba(56, 61, 66, 0.15);
}
.wb-hours-table--gray {
  background-color: #383d42;
  color: #fff;
}
.wb-hours-table--gray .wb-hours-table__row {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.wb-appointment {
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 0;
}
.wb-appointment__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: hidden;
  position: relative;
}
.wb-appointment__header {
  text-align: center;
  margin-bottom: 30px;
}
.wb-appointment__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
  color: #111315;
}
.wb-appointment__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 5px;
  color: #111315;
}
.wb-appointment__subtitle {
  font-size: 12px;
  color: #90969d;
  margin: 0;
  line-height: 1.5;
}
.wb-appointment__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wb-appointment__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wb-appointment__label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-appointment__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wb-appointment__input {
  width: 100%;
  padding: 12px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  color: #111315;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.wb-appointment__input:focus {
  border-color: #626970;
}
.wb-appointment__input::placeholder {
  color: #a8aeb4;
}
.wb-appointment__field--error .wb-appointment__input {
  border-color: #ff8036;
}
.wb-appointment__input-wrap:has(.wb-appointment__toggle-pw) .wb-appointment__input {
  padding-right: 44px;
}
.wb-appointment__trainers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wb-appointment__trainer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 8px;
  border-radius: 20px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.wb-appointment__trainer:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.wb-appointment__trainer:active {
  transform: scale(0.97);
}
.wb-appointment__trainer--lime {
  background: #e8f380;
  color: #111315;
}
.wb-appointment__trainer--purple {
  background: #b4a2ff;
  color: #111315;
}
.wb-appointment__trainer--pink {
  background: #f0c6ff;
  color: #111315;
}
.wb-appointment__trainer--blue {
  background: #c6e9ff;
  color: #111315;
}
.wb-appointment__trainer--gray {
  background: #383d42;
  color: #fff;
}
.wb-appointment__trainer--active {
  border-color: #111315;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}
.wb-appointment__trainer--active.wb-appointment__trainer--gray {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.wb-appointment__trainer-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}
.wb-appointment__trainer-name {
  line-height: 1;
}
.wb-appointment__textarea {
  resize: vertical;
  min-height: 60px;
}
.wb-appointment__dates {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.wb-appointment__date-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border: 1px solid #dadee1;
  border-radius: 5px;
  background: #f8f8f8;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: "Kode Mono", monospace;
  min-width: 52px;
}
.wb-appointment__date-btn:hover {
  border-color: #90969d;
}
.wb-appointment__date-btn--active {
  border-color: #111315;
  background: #111315;
  color: #fff;
}
.wb-appointment__date-btn--active .wb-appointment__date-day,
.wb-appointment__date-btn--active .wb-appointment__date-num {
  color: #fff;
}
.wb-appointment__date-btn--today {
  border-color: #e8f380;
}
.wb-appointment__date-day {
  font-size: 10px;
  font-weight: 600;
  color: #90969d;
  text-transform: uppercase;
}
.wb-appointment__date-num {
  font-size: 12px;
  font-weight: 700;
  color: #111315;
}
.wb-appointment__field--checkbox {
  flex-direction: row;
  align-items: center;
}
.wb-appointment__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
  color: #111315;
}
.wb-appointment__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.wb-appointment__toggle-pw {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #90969d;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s ease;
}
.wb-appointment__toggle-pw:hover {
  color: #111315;
}
.wb-appointment__field-error {
  font-size: 10px;
  color: #ff8036;
  min-height: 0;
  line-height: 1.2;
  display: none;
}
.wb-appointment__field--error .wb-appointment__field-error {
  display: block;
}
.wb-appointment__submit {
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.wb-appointment__submit:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-appointment__submit:active {
  transform: scale(0.98);
}
.wb-appointment__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.wb-appointment__submit:disabled:hover {
  filter: none;
  animation: none;
}
.wb-appointment__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-appointment-spin 0.6s linear infinite;
}
.wb-appointment__message {
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.wb-appointment__message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
  border: 1px solid rgba(232, 243, 128, 0.4);
}
.wb-appointment__message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
  border: 1px solid rgba(255, 128, 54, 0.3);
}
.wb-appointment__trigger {
  padding: 14px 28px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wb-appointment__trigger:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-appointment__trigger:active {
  transform: scale(0.98);
}
.wb-appointment__trigger i {
  font-size: 1.1em;
  line-height: 1;
}
.wb-appointment--modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  max-width: none;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.wb-appointment--modal.wb-appointment--modal-open {
  display: flex;
}
.wb-appointment__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.wb-appointment--modal .wb-appointment__card {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  margin: 0;
}
.wb-appointment__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #90969d;
  cursor: pointer;
  padding: 4px;
  z-index: 2;
  transition: color 0.2s ease;
}
.wb-appointment__close:hover {
  color: #111315;
}
.wb-appointment--button {
  max-width: none;
  padding: 0;
}
.wb-appointment--align-left {
  text-align: left;
}
.wb-appointment--align-center {
  text-align: center;
}
.wb-appointment--align-right {
  text-align: right;
}
.wb-appointment--lime .wb-appointment__submit, .wb-appointment--lime .wb-appointment__trigger {
  background: #e8f380;
  color: #111315;
}
.wb-appointment--purple .wb-appointment__submit, .wb-appointment--purple .wb-appointment__trigger {
  background: #b4a2ff;
  color: #111315;
}
.wb-appointment--pink .wb-appointment__submit, .wb-appointment--pink .wb-appointment__trigger {
  background: #f0c6ff;
  color: #111315;
}
.wb-appointment--blue .wb-appointment__submit, .wb-appointment--blue .wb-appointment__trigger {
  background: #c6e9ff;
  color: #111315;
}
.wb-appointment--gray .wb-appointment__submit, .wb-appointment--gray .wb-appointment__trigger {
  background: #383d42;
  color: #fff;
}
.wb-appointment--gray .wb-appointment__submit .wb-appointment__spinner, .wb-appointment--gray .wb-appointment__trigger .wb-appointment__spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

@keyframes wb-appointment-spin {
  to {
    transform: rotate(360deg);
  }
}
.wb-trainer-calendar {
  padding: 20px 0;
}
.wb-trainer-calendar__message {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}
.wb-trainer-calendar__message--info {
  background: #f8f8f8;
  color: #626970;
}
.wb-trainer-calendar__message--info p {
  margin: 0 0 15px;
  font-size: 14px;
}
.wb-trainer-calendar__loading, .wb-trainer-calendar__error {
  padding: 30px;
  text-align: center;
  font-size: 12px;
  color: #c1c5ca;
}
.wb-trainer-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.wb-trainer-calendar__nav-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #90969d;
  border-radius: 5px;
  background: #626970;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  color: #fff;
}
.wb-trainer-calendar__nav-btn:hover {
  background: #798086;
  border-color: #a8aeb4;
}
.wb-trainer-calendar__month-label {
  font-size: 18px;
  font-weight: 700;
  min-width: 180px;
  text-align: center;
  color: #fff;
}
.wb-trainer-calendar__preset {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.wb-trainer-calendar__preset label {
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  color: #dadee1;
}
.wb-trainer-calendar__preset-select {
  flex: 1;
  max-width: 320px;
}
.wb-trainer-calendar .wb-tadmin__grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #dadee1;
  border: 1px solid #dadee1;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.wb-trainer-calendar .wb-tadmin__grid-header .wb-tadmin__day-header {
  background: #f8f8f8;
  padding: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  color: #626970;
}
.wb-trainer-calendar .wb-tadmin__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #dadee1;
  border: 1px solid #dadee1;
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  min-height: 120px;
}
.wb-trainer-calendar .wb-tadmin__cell {
  background: #fff;
  padding: 6px;
  min-height: 90px;
  font-size: 12px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}
.wb-trainer-calendar .wb-tadmin__cell:not(.wb-tadmin__cell--empty):hover {
  background: rgba(198, 233, 255, 0.08);
}
.wb-trainer-calendar .wb-tadmin__cell:not(.wb-tadmin__cell--empty):not(.wb-tadmin__cell--past)::after {
  content: "+";
  position: absolute;
  top: 5px;
  right: 7px;
  font-size: 16px;
  font-weight: 600;
  color: #c1c5ca;
  opacity: 0;
  transition: opacity 0.15s;
  line-height: 1;
}
.wb-trainer-calendar .wb-tadmin__cell:not(.wb-tadmin__cell--empty):not(.wb-tadmin__cell--past):hover::after {
  opacity: 1;
  color: #246bd1;
}
.wb-trainer-calendar .wb-tadmin__cell--empty {
  background: #f8f8f8;
  cursor: default;
}
.wb-trainer-calendar .wb-tadmin__cell--empty:hover {
  background: #f8f8f8;
}
.wb-trainer-calendar .wb-tadmin__cell--past {
  background: #f5f6f8;
  cursor: default;
}
.wb-trainer-calendar .wb-tadmin__cell--past .wb-tadmin__cell-num {
  color: #c1c5ca;
}
.wb-trainer-calendar .wb-tadmin__cell--past:hover {
  background: #f5f6f8;
}
.wb-trainer-calendar .wb-tadmin__cell--past::after {
  display: none !important;
}
.wb-trainer-calendar .wb-tadmin__cell-num {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: #111315;
}
.wb-trainer-calendar__hours {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 2px 5px;
  margin-bottom: 3px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1.3;
  background: #f0f6ff;
  color: #2271b1;
}
.wb-trainer-calendar__hours--override {
  background: #fff3cd;
  color: #856404;
}
.wb-tadmin__cell--past .wb-trainer-calendar__hours {
  opacity: 0.4;
}
.wb-trainer-calendar__hours-icon {
  font-size: 10px;
  line-height: 1;
  flex-shrink: 0;
}
.wb-trainer-calendar__hours-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wb-trainer-calendar__schedule {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 2px 5px;
  margin-bottom: 3px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1.3;
  background: #e8f5e9;
  color: #2e7d32;
}
.wb-trainer-calendar__schedule--override {
  background: #fff3cd;
  color: #856404;
}
.wb-tadmin__cell--past .wb-trainer-calendar__schedule {
  opacity: 0.4;
}
.wb-trainer-calendar__schedule-icon {
  font-size: 10px;
  line-height: 1;
  flex-shrink: 0;
}
.wb-trainer-calendar__schedule-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wb-trainer-calendar__chips {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.wb-trainer-calendar__chip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.3;
  background: #111315;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.wb-trainer-calendar__chip:hover {
  opacity: 0.85;
}
.wb-trainer-calendar__chip--cancelled {
  background: #c1c5ca;
  text-decoration: line-through;
  opacity: 0.5;
}
.wb-trainer-calendar__chip--pending {
  background: #ff8036;
  color: #fff;
}
.wb-trainer-calendar__chip--full {
  background: #626970;
}
.wb-trainer-calendar__chip--individual {
  background: #111315;
  border-left: 2px solid #e8f380;
}
.wb-tadmin__cell--past .wb-trainer-calendar__chip {
  opacity: 0.45;
}
.wb-trainer-calendar__chip-time {
  font-weight: 700;
  flex-shrink: 0;
}
.wb-trainer-calendar__chip-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.wb-trainer-calendar__chip-slots {
  flex-shrink: 0;
  opacity: 0.7;
  font-size: 9px;
}
.wb-trainer-calendar__chip-trainers {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: 4px;
}
.wb-trainer-calendar__chip-trainer {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}
.wb-trainer-calendar__add-bar {
  margin-top: 20px;
  text-align: center;
}
.wb-trainer-calendar__btn {
  padding: 12px 24px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wb-trainer-calendar__btn:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-trainer-calendar__btn:active {
  transform: scale(0.98);
}
.wb-trainer-calendar__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.wb-trainer-calendar__btn:disabled:hover {
  filter: none;
  animation: none;
}
.wb-trainer-calendar__btn--primary {
  background: #e8f380;
  color: #111315;
}
.wb-trainer-calendar__btn--secondary {
  background: #f5f6f8;
  color: #111315;
  border: 1px solid #dadee1;
}
.wb-trainer-calendar__btn--secondary:hover {
  background: #dadee1;
}
.wb-trainer-calendar__btn--danger {
  background: #ff8036;
  color: #fff;
}
.wb-trainer-calendar__btn--danger .wb-trainer-calendar__spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}
.wb-trainer-calendar__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-tcal-spin 0.6s linear infinite;
}
.wb-trainer-calendar__modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.wb-trainer-calendar__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.wb-trainer-calendar__modal-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
}
.wb-trainer-calendar__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #90969d;
  cursor: pointer;
  padding: 4px;
  z-index: 2;
  transition: color 0.2s ease;
}
.wb-trainer-calendar__modal-close:hover {
  color: #111315;
}
.wb-trainer-calendar__modal-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #111315;
}
.wb-trainer-calendar__modal-message, .wb-trainer-calendar__edit-message {
  padding: 10px 14px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.wb-trainer-calendar__modal-message--success, .wb-trainer-calendar__edit-message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
  border: 1px solid rgba(232, 243, 128, 0.4);
}
.wb-trainer-calendar__modal-message--error, .wb-trainer-calendar__edit-message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
  border: 1px solid rgba(255, 128, 54, 0.3);
}
.wb-trainer-calendar__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.wb-trainer-calendar__label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-trainer-calendar__input, .wb-trainer-calendar__select {
  width: 100%;
  padding: 10px 12px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  color: #111315;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.wb-trainer-calendar__input:focus, .wb-trainer-calendar__select:focus {
  border-color: #626970;
}
.wb-trainer-calendar__input::placeholder, .wb-trainer-calendar__select::placeholder {
  color: #a8aeb4;
}
.wb-trainer-calendar__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23626970' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.wb-trainer-calendar__textarea {
  resize: vertical;
  min-height: 50px;
}
.wb-trainer-calendar__user-selected {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  margin-top: 4px;
}
.wb-trainer-calendar__user-label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-trainer-calendar__user-clear {
  background: none;
  border: none;
  font-size: 18px;
  line-height: 1;
  color: #90969d;
  cursor: pointer;
  padding: 0 2px;
}
.wb-trainer-calendar__user-clear:hover {
  color: #ff8036;
}
.wb-trainer-calendar__detail-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111315;
  padding-right: 32px;
}
.wb-trainer-calendar__detail-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 15px;
}
.wb-trainer-calendar__detail-badge--cancelled {
  background: rgba(255, 128, 54, 0.15);
  color: #ff8036;
}
.wb-trainer-calendar__detail-badge--pending {
  background: rgba(255, 128, 54, 0.15);
  color: #ff8036;
}
.wb-trainer-calendar__detail-info {
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f8f8;
  border-radius: 5px;
}
.wb-trainer-calendar__detail-row {
  font-size: 14px;
  color: #111315;
  margin-bottom: 4px;
}
.wb-trainer-calendar__detail-row:last-child {
  margin-bottom: 0;
}
.wb-trainer-calendar__detail-notes {
  margin-top: 10px;
  font-size: 12px;
  color: #798086;
  white-space: pre-wrap;
}
.wb-trainer-calendar__detail-trainers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.wb-trainer-calendar__detail-trainer {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
}
.wb-trainer-calendar__detail-bookings {
  margin-bottom: 20px;
}
.wb-trainer-calendar__detail-bookings-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111315;
}
.wb-trainer-calendar__detail-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wb-trainer-calendar__booking {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f8f8f8;
  border-radius: 5px;
  font-size: 12px;
}
.wb-trainer-calendar__booking--cancelled {
  opacity: 0.5;
  text-decoration: line-through;
}
.wb-trainer-calendar__booking-name {
  font-weight: 600;
  color: #111315;
}
.wb-trainer-calendar__booking-email {
  color: #798086;
}
.wb-trainer-calendar__booking-phone {
  color: #798086;
}
.wb-trainer-calendar__booking-status {
  font-size: 10px;
  color: #ff8036;
  font-weight: 600;
}
.wb-trainer-calendar__detail-bookings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.wb-trainer-calendar__booking-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.wb-trainer-calendar__booking-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.wb-trainer-calendar__booking-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  accent-color: #e8f380;
}
.wb-trainer-calendar__booking-cancel-btn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 5px;
  background: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c1c5ca;
  transition: color 0.15s, background 0.15s;
}
.wb-trainer-calendar__booking-cancel-btn:hover {
  color: #ff8036;
  background: rgba(255, 128, 54, 0.1);
}
.wb-trainer-calendar__booking-cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wb-trainer-calendar__booking-metric-btn, .wb-trainer-calendar__booking-photo-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #dadee1;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.wb-trainer-calendar__booking-metric-btn:hover, .wb-trainer-calendar__booking-photo-btn:hover {
  background: #f8f8f8;
  border-color: #a8aeb4;
}
.wb-trainer-calendar__metric-form, .wb-trainer-calendar__mass-metric-form, .wb-trainer-calendar__photo-form {
  padding: 15px;
  margin-bottom: 6px;
  background: #f8f8f8;
  border-radius: 5px;
  border: 1px solid #f5f6f8;
}
.wb-trainer-calendar__mass-metric-form {
  margin-bottom: 15px;
}
.wb-trainer-calendar__mass-metric-toggle {
  font-size: 12px;
  padding: 6px 12px;
  white-space: nowrap;
}
.wb-trainer-calendar__metric-value-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}
.wb-trainer-calendar__metric-step-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #dadee1;
  border-radius: 5px;
  background: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  color: #111315;
}
.wb-trainer-calendar__metric-step-btn:hover {
  background: #f8f8f8;
  border-color: #a8aeb4;
}
.wb-trainer-calendar__metric-step-btn:active {
  background: #f5f6f8;
}
.wb-trainer-calendar__metric-value-row .wb-trainer-calendar__input {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-weight: 700;
}
.wb-trainer-calendar__metric-unit, .wb-trainer-calendar__mass-metric-unit {
  font-size: 12px;
  font-weight: 600;
  color: #90969d;
  min-width: 30px;
  flex-shrink: 0;
}
.wb-trainer-calendar__metric-msg, .wb-trainer-calendar__mass-metric-msg, .wb-trainer-calendar__photo-msg {
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}
.wb-trainer-calendar__metric-msg--success, .wb-trainer-calendar__mass-metric-msg--success, .wb-trainer-calendar__photo-msg--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
  border: 1px solid rgba(232, 243, 128, 0.4);
}
.wb-trainer-calendar__metric-msg--error, .wb-trainer-calendar__mass-metric-msg--error, .wb-trainer-calendar__photo-msg--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
  border: 1px solid rgba(255, 128, 54, 0.3);
}
.wb-trainer-calendar__add-participant {
  padding-top: 15px;
  border-top: 1px solid #f5f6f8;
  margin-bottom: 15px;
}
.wb-trainer-calendar__add-participant-toggle {
  width: 100%;
  text-align: left;
  font-weight: 700;
}
.wb-trainer-calendar__add-participant-form {
  margin-top: 15px;
}
.wb-trainer-calendar__ap-guest-fields {
  margin-top: 5px;
}
.wb-trainer-calendar__detail-edit {
  padding-top: 15px;
  border-top: 1px solid #f5f6f8;
  margin-bottom: 15px;
}
.wb-trainer-calendar__detail-edit-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #111315;
}
.wb-trainer-calendar__detail-actions {
  display: flex;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #f5f6f8;
}
.wb-trainer-calendar--lime .wb-trainer-calendar__btn--primary {
  background: #e8f380;
  color: #111315;
}
.wb-trainer-calendar--purple .wb-trainer-calendar__btn--primary {
  background: #b4a2ff;
  color: #111315;
}
.wb-trainer-calendar--pink .wb-trainer-calendar__btn--primary {
  background: #f0c6ff;
  color: #111315;
}
.wb-trainer-calendar--blue .wb-trainer-calendar__btn--primary {
  background: #c6e9ff;
  color: #111315;
}
.wb-trainer-calendar--gray .wb-trainer-calendar__btn--primary {
  background: #383d42;
  color: #fff;
}
.wb-trainer-calendar--gray .wb-trainer-calendar__btn--primary .wb-trainer-calendar__spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}
@media (max-width: 767px) {
  .wb-trainer-calendar .wb-tadmin__cell {
    min-height: 60px;
    padding: 4px;
  }
  .wb-trainer-calendar .wb-tadmin__cell-num {
    font-size: 10px;
  }
  .wb-trainer-calendar__hours, .wb-trainer-calendar__schedule {
    font-size: 8px;
    padding: 1px 3px;
  }
  .wb-trainer-calendar__chip {
    font-size: 9px;
    padding: 2px 4px;
    gap: 2px;
  }
  .wb-trainer-calendar__chip-slots, .wb-trainer-calendar__chip-trainers {
    display: none;
  }
  .wb-trainer-calendar__preset {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  .wb-trainer-calendar__preset label {
    font-size: 10px;
  }
  .wb-trainer-calendar__preset-select {
    max-width: none;
  }
  .wb-trainer-calendar__nav-btn {
    width: 32px;
    height: 32px;
  }
  .wb-trainer-calendar__month-label {
    font-size: 14px;
    min-width: 140px;
  }
  .wb-trainer-calendar__modal-card {
    padding: 20px;
    max-height: 85vh;
  }
}

@keyframes wb-tcal-spin {
  to {
    transform: rotate(360deg);
  }
}
.wb-trainer-calendar .ui-autocomplete {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border: 1px solid #dadee1;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100001;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}
.wb-trainer-calendar .ui-autocomplete .ui-menu-item-wrapper {
  padding: 8px 12px;
  font-size: 12px;
  font-family: "Kode Mono", monospace;
  color: #111315;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wb-trainer-calendar .ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
  background: #f8f8f8;
  color: #111315;
  border: none;
  font-weight: 600;
}

.wb-rsvp {
  max-width: 440px;
  margin: 0 auto;
  padding: 20px 0;
}
.wb-rsvp__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  overflow: hidden;
  position: relative;
}
.wb-rsvp__header {
  text-align: center;
  margin-bottom: 30px;
}
.wb-rsvp__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 26px;
  color: #111315;
}
.wb-rsvp__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 5px;
  color: #111315;
}
.wb-rsvp__subtitle {
  font-size: 12px;
  color: #90969d;
  margin: 0;
  line-height: 1.5;
}
.wb-rsvp__spots {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #626970;
  background: #f8f8f8;
  border-radius: 5px;
  padding: 8px 16px;
  margin-bottom: 15px;
}
.wb-rsvp__closed {
  text-align: center;
  padding: 20px 0;
  color: #90969d;
  font-size: 12px;
}
.wb-rsvp__closed p {
  margin: 0;
}
.wb-rsvp__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wb-rsvp__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wb-rsvp__label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-rsvp__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.wb-rsvp__input {
  width: 100%;
  padding: 12px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  color: #111315;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.wb-rsvp__input:focus {
  border-color: #626970;
}
.wb-rsvp__input::placeholder {
  color: #a8aeb4;
}
.wb-rsvp__field--error .wb-rsvp__input {
  border-color: #ff8036;
}
.wb-rsvp__input-wrap:has(.wb-rsvp__toggle-pw) .wb-rsvp__input {
  padding-right: 44px;
}
.wb-rsvp__textarea {
  resize: vertical;
  min-height: 60px;
}
.wb-rsvp__field--checkbox {
  flex-direction: row;
  align-items: center;
}
.wb-rsvp__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
  color: #111315;
}
.wb-rsvp__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.wb-rsvp__toggle-pw {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #90969d;
  font-size: 14px;
  line-height: 1;
  transition: color 0.2s ease;
}
.wb-rsvp__toggle-pw:hover {
  color: #111315;
}
.wb-rsvp__field-error {
  font-size: 10px;
  color: #ff8036;
  min-height: 0;
  line-height: 1.2;
  display: none;
}
.wb-rsvp__field--error .wb-rsvp__field-error {
  display: block;
}
.wb-rsvp__submit {
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.wb-rsvp__submit:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-rsvp__submit:active {
  transform: scale(0.98);
}
.wb-rsvp__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.wb-rsvp__submit:disabled:hover {
  filter: none;
  animation: none;
}
.wb-rsvp__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-rsvp-spin 0.6s linear infinite;
}
.wb-rsvp__message {
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.wb-rsvp__message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
  border: 1px solid rgba(232, 243, 128, 0.4);
}
.wb-rsvp__message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
  border: 1px solid rgba(255, 128, 54, 0.3);
}
.wb-rsvp__trigger {
  padding: 14px 28px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wb-rsvp__trigger:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-rsvp__trigger:active {
  transform: scale(0.98);
}
.wb-rsvp__trigger i {
  font-size: 1.1em;
  line-height: 1;
}
.wb-rsvp--modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  max-width: none;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.wb-rsvp--modal.wb-rsvp--modal-open {
  display: flex;
}
.wb-rsvp__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.wb-rsvp--modal .wb-rsvp__card {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  margin: 0;
}
.wb-rsvp__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #90969d;
  cursor: pointer;
  padding: 4px;
  z-index: 2;
  transition: color 0.2s ease;
}
.wb-rsvp__close:hover {
  color: #111315;
}
.wb-rsvp--button {
  max-width: none;
  padding: 0;
}
.wb-rsvp--align-left {
  text-align: left;
}
.wb-rsvp--align-center {
  text-align: center;
}
.wb-rsvp--align-right {
  text-align: right;
}
.wb-rsvp--lime .wb-rsvp__submit, .wb-rsvp--lime .wb-rsvp__trigger {
  background: #e8f380;
  color: #111315;
}
.wb-rsvp--purple .wb-rsvp__submit, .wb-rsvp--purple .wb-rsvp__trigger {
  background: #b4a2ff;
  color: #111315;
}
.wb-rsvp--pink .wb-rsvp__submit, .wb-rsvp--pink .wb-rsvp__trigger {
  background: #f0c6ff;
  color: #111315;
}
.wb-rsvp--blue .wb-rsvp__submit, .wb-rsvp--blue .wb-rsvp__trigger {
  background: #c6e9ff;
  color: #111315;
}
.wb-rsvp--gray .wb-rsvp__submit, .wb-rsvp--gray .wb-rsvp__trigger {
  background: #383d42;
  color: #fff;
}
.wb-rsvp--gray .wb-rsvp__submit .wb-rsvp__spinner, .wb-rsvp--gray .wb-rsvp__trigger .wb-rsvp__spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

@keyframes wb-rsvp-spin {
  to {
    transform: rotate(360deg);
  }
}
.wb-landing-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 12px;
}

.wb-landing-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #383d42;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.wb-landing-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(17, 19, 21, 0.6) 0%, rgba(17, 19, 21, 0.85) 100%);
  z-index: 1;
}

.wb-landing-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.wb-landing-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
}

.wb-landing-hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wb-landing-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.wb-landing-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  text-align: center;
  min-width: 200px;
  justify-content: center;
}
.wb-landing-hero__btn:hover {
  filter: brightness(1.1);
  animation: lightning-jolt 0.4s ease;
  text-decoration: none;
}

.wb-landing-hero__btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.wb-landing-hero__btn--outline:hover {
  border-color: #fff;
  color: #fff;
}

.wb-landing-hero--lime .wb-landing-hero__highlight {
  color: #e8f380;
}

.wb-landing-hero--purple .wb-landing-hero__highlight {
  color: #b4a2ff;
}

.wb-landing-hero--pink .wb-landing-hero__highlight {
  color: #f0c6ff;
}

.wb-landing-hero--blue .wb-landing-hero__highlight {
  color: #c6e9ff;
}

.wb-landing-hero--gray .wb-landing-hero__highlight {
  color: #a8aeb4;
}

.wb-landing-hero--lime .wb-landing-hero__btn--primary {
  background-color: #e8f380;
  color: #111315;
  border-color: #e8f380;
}

.wb-landing-hero--purple .wb-landing-hero__btn--primary {
  background-color: #b4a2ff;
  color: #111315;
  border-color: #b4a2ff;
}

.wb-landing-hero--pink .wb-landing-hero__btn--primary {
  background-color: #f0c6ff;
  color: #111315;
  border-color: #f0c6ff;
}

.wb-landing-hero--blue .wb-landing-hero__btn--primary {
  background-color: #c6e9ff;
  color: #111315;
  border-color: #c6e9ff;
}

.wb-landing-hero--gray .wb-landing-hero__btn--primary {
  background-color: #383d42;
  color: #fff;
  border-color: #383d42;
}

@media (min-width: 768px) {
  .wb-landing-hero__actions {
    flex-direction: row;
    justify-content: center;
  }
  .wb-landing-hero__title {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .wb-landing-hero__content {
    text-align: left;
    max-width: 950px;
    margin: 0 auto;
  }
  .wb-landing-hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }
  .wb-landing-hero__actions {
    justify-content: flex-start;
  }
  .wb-landing-hero__title {
    font-size: 56px;
  }
}
.wb-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.wb-feature-grid__item {
  text-align: center;
}

.wb-feature-grid__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: #111315;
  display: inline-flex;
}

.wb-feature-grid__title {
  font-size: 16px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 8px;
}

.wb-feature-grid__text {
  font-size: 14px;
  line-height: 1.7;
  color: #626970;
  margin: 0;
}

.wb-feature-grid--lime .wb-feature-grid__icon {
  background-color: #e8f380;
}

.wb-feature-grid--purple .wb-feature-grid__icon {
  background-color: #b4a2ff;
}

.wb-feature-grid--pink .wb-feature-grid__icon {
  background-color: #f0c6ff;
}

.wb-feature-grid--blue .wb-feature-grid__icon {
  background-color: #c6e9ff;
}

.wb-feature-grid--gray .wb-feature-grid__icon {
  background-color: #383d42;
  color: #fff;
}

@media (min-width: 768px) {
  .wb-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .wb-feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wb-pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.wb-pricing__card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.wb-pricing__card--featured {
  border: 2px solid transparent;
}

.wb-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.wb-pricing__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 8px;
}

.wb-pricing__card-price {
  font-size: 26px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 4px;
}

.wb-pricing__card-period {
  font-size: 12px;
  color: #798086;
  margin: 0 0 16px;
}

.wb-pricing__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: #626970;
  margin: 0 0 24px;
  flex: 1;
}

.wb-pricing__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.wb-pricing__card-features li {
  font-size: 13px;
  color: #4d5359;
  padding: 6px 0;
  border-bottom: 1px solid #f5f6f8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wb-pricing__card-features li:last-child {
  border-bottom: none;
}
.wb-pricing__card-features li i {
  font-size: 11px;
}

.wb-pricing__card-btn {
  margin-top: auto;
}
.wb-pricing__card-btn .wb-landing-hero__btn {
  width: 100%;
  min-width: unset;
}

.wb-pricing--lime .wb-pricing__badge {
  background-color: #e8f380;
  color: #111315;
}

.wb-pricing--purple .wb-pricing__badge {
  background-color: #b4a2ff;
  color: #111315;
}

.wb-pricing--pink .wb-pricing__badge {
  background-color: #f0c6ff;
  color: #111315;
}

.wb-pricing--blue .wb-pricing__badge {
  background-color: #c6e9ff;
  color: #111315;
}

.wb-pricing--gray .wb-pricing__badge {
  background-color: #383d42;
  color: #fff;
}

.wb-pricing--lime .wb-pricing__card--featured {
  border-color: #e8f380;
}

.wb-pricing--purple .wb-pricing__card--featured {
  border-color: #b4a2ff;
}

.wb-pricing--pink .wb-pricing__card--featured {
  border-color: #f0c6ff;
}

.wb-pricing--blue .wb-pricing__card--featured {
  border-color: #c6e9ff;
}

.wb-pricing--gray .wb-pricing__card--featured {
  border-color: #383d42;
}

.wb-pricing--lime .wb-pricing__card-features li i {
  color: #7d8a20;
}

.wb-pricing--purple .wb-pricing__card-features li i {
  color: #6b5bbf;
}

.wb-pricing--pink .wb-pricing__card-features li i {
  color: #a855b4;
}

.wb-pricing--blue .wb-pricing__card-features li i {
  color: #3a8fc9;
}

.wb-pricing--gray .wb-pricing__card-features li i {
  color: #626970;
}

@media (min-width: 768px) {
  .wb-pricing__cards--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .wb-pricing__cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .wb-pricing__cards--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}
.wb-faq {
  max-width: 800px;
  margin: 0 auto;
}

.wb-faq__item {
  border-bottom: 1px solid #dadee1;
}
.wb-faq__item:first-child {
  border-top: 1px solid #dadee1;
}

.wb-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  text-align: left;
  line-height: 1.5;
}
.wb-faq__question:hover {
  color: #4d5359;
}

.wb-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: #798086;
  transition: transform 0.3s ease;
}
.wb-faq__item--open .wb-faq__icon {
  transform: rotate(45deg);
}

.wb-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.wb-faq__item--open .wb-faq__answer {
  max-height: 500px;
}

.wb-faq__answer-inner {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #626970;
}

@media (min-width: 768px) {
  .wb-faq__question {
    font-size: 16px;
  }
}
.wb-landing-hero-row {
  padding: 0 !important;
}
.wb-landing-hero-row .vc_column-inner {
  padding: 0 !important;
}

.wb-landing-section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .wb-landing-section {
    padding: 80px 0;
  }
}

.wb-landing-section--gray {
  background-color: #f5f5f5;
}

.wb-landing-section__title {
  font-size: 26px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 12px;
  text-align: center;
}
@media (min-width: 768px) {
  .wb-landing-section__title {
    font-size: 36px;
  }
}

.wb-landing-section__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #626970;
  margin: 0 0 40px;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.wb-landing-about__text {
  font-size: 14px;
  line-height: 1.7;
  color: #4d5359;
  max-width: 700px;
}

.wb-landing-about__text--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wb-training {
  padding-top: 50px;
  padding-bottom: 50px;
}
.wb-training__hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  border-radius: 10px;
  margin-bottom: 30px;
  background: #383d42;
}
@media (min-width: 992px) {
  .wb-training__hero {
    min-height: 360px;
  }
}
.wb-training__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: inherit;
}
.wb-training__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wb-training__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
}
.wb-training__hero-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  width: 100%;
}
.wb-training__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.wb-training__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wb-training__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
  line-height: 1.1;
}
.wb-training__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.wb-training__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.wb-training__badge i {
  font-size: 12px;
}
.wb-training__hero-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.wb-training__trainers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.wb-training__trainers-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wb-training__trainers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wb-training__trainer {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 4px 12px 4px 4px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}
.wb-training__trainer:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.wb-training__trainer:hover .wb-training__trainer-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wb-training__trainer-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.wb-training__trainer-avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
}
.wb-training__trainer-name {
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.wb-training__trainer-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 340px;
  max-width: 100vw;
  padding: 10px 14px;
  background: #383d42;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 10;
  white-space: normal;
}
.wb-training__description {
  margin-bottom: 30px;
}
.wb-training__description .wpb_wrapper > *:last-child {
  margin-bottom: 0;
}
.wb-training__video {
  margin-bottom: 30px;
}
.wb-training__video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
}
.wb-training__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wb-training__video-consent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  text-align: center;
}
.wb-training__video-consent p {
  font-size: 12px;
  color: #798086;
  max-width: 360px;
  margin: 0;
}
.wb-training__video-accept {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 24px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.wb-training__video-accept:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-training__booking {
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.wb-training__booking-title {
  font-size: 26px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 20px;
}
.wb-training__datepicker {
  margin-bottom: 20px;
}
.wb-training__dates {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.wb-training__dates::-webkit-scrollbar {
  height: 4px;
}
.wb-training__dates::-webkit-scrollbar-thumb {
  background: #dadee1;
  border-radius: 2px;
}
.wb-training__date-btn {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 72px;
  padding: 12px 10px;
  font-family: "Kode Mono", monospace;
  font-size: 10px;
  color: #111315;
  background: #f8f8f8;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.wb-training__date-btn:hover {
  border-color: #dadee1;
}
.wb-training__date-btn--active {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.1);
}
.wb-training__date-btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.wb-training__date-btn--booked {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.15);
}
.wb-training__date-btn--booked .wb-training__date-slots {
  color: rgb(160.6474820144, 175.881294964, 16.618705036);
  font-weight: 600;
}
.wb-training__date-day {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
.wb-training__date-num {
  font-size: 18px;
  font-weight: 700;
}
.wb-training__date-slots {
  font-size: 9px;
  color: #90969d;
  white-space: nowrap;
}
.wb-training__timeslots {
  margin-bottom: 20px;
}
.wb-training__timeslots-title {
  font-size: 14px;
  font-weight: 600;
  color: #111315;
  margin: 0 0 10px;
}
.wb-training__times {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.wb-training__time-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: "Kode Mono", monospace;
  font-size: 12px;
  color: #111315;
  background: #f8f8f8;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.wb-training__time-btn:hover {
  border-color: #dadee1;
}
.wb-training__time-btn--active {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.1);
}
.wb-training__time-btn--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.wb-training__time-btn--booked {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.2);
  cursor: default;
}
.wb-training__time-slots-info {
  font-size: 9px;
  color: #90969d;
}
.wb-training__action {
  margin-top: 15px;
}
.wb-training__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  color: #111315;
  background: #e8f380;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  text-align: center;
}
.wb-training__book-btn:hover {
  filter: brightness(1.05);
  animation: lightning-jolt 0.4s ease;
}
.wb-training__book-btn:active {
  transform: scale(0.98);
}
.wb-training__book-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  animation: none;
}
.wb-training__book-btn:disabled:hover {
  filter: none;
  animation: none;
}
.wb-training__guest-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wb-training__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wb-training__field--error .wb-training__input {
  border-color: #ff8036;
}
.wb-training__label {
  font-size: 12px;
  font-weight: 600;
  color: #111315;
}
.wb-training__input {
  width: 100%;
  padding: 12px 14px;
  font-family: "Kode Mono", monospace;
  font-size: 14px;
  color: #111315;
  background: #f8f8f8;
  border: 1px solid #dadee1;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.2s ease;
}
.wb-training__input:focus {
  border-color: #626970;
}
.wb-training__input::placeholder {
  color: #a8aeb4;
}
.wb-training__field-error {
  font-size: 10px;
  color: #ff8036;
  min-height: 0;
  line-height: 1.2;
  display: none;
}
.wb-training__field--error .wb-training__field-error {
  display: block;
}
.wb-training__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-training-spin 0.6s linear infinite;
}
.wb-training__message {
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.wb-training__message--success {
  background: rgba(232, 243, 128, 0.2);
  color: rgb(139.3669064748, 152.5827338129, 14.4172661871);
  border: 1px solid rgba(232, 243, 128, 0.4);
}
.wb-training__message--error {
  background: rgba(255, 128, 54, 0.1);
  color: rgb(255, 95.776119403, 3);
  border: 1px solid rgba(255, 128, 54, 0.3);
}
.wb-training__auth-prompt {
  text-align: center;
}
.wb-training__auth-prompt p {
  font-size: 12px;
  color: #798086;
  margin: 0 0 15px;
}
.wb-training__auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.wb-training__auth-login-link {
  font-size: 12px;
  color: #798086;
  text-decoration: none;
  transition: color 0.2s ease;
}
.wb-training__auth-login-link:hover {
  color: #111315;
  text-decoration: underline;
}
.wb-training__dates--loading, .wb-training__times--loading {
  position: relative;
  min-height: 60px;
}
.wb-training__dates--loading::after, .wb-training__times--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 2px solid #dadee1;
  border-top-color: #111315;
  border-radius: 50%;
  animation: wb-training-spin 0.6s linear infinite;
}
.wb-training--lime .wb-training__date-btn--active {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.1);
}
.wb-training--lime .wb-training__date-btn--booked {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.15);
}
.wb-training--lime .wb-training__date-btn--booked .wb-training__date-slots {
  color: rgb(160.6474820144, 175.881294964, 16.618705036);
}
.wb-training--lime .wb-training__time-btn--active {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.1);
}
.wb-training--lime .wb-training__time-btn--booked {
  border-color: #e8f380;
  background: rgba(232, 243, 128, 0.2);
}
.wb-training--lime .wb-training__book-btn {
  background: #e8f380;
  color: #111315;
}
.wb-training--lime .wb-training__video-accept {
  background: #e8f380;
  color: #111315;
}
.wb-training--purple .wb-training__date-btn--active {
  border-color: #b4a2ff;
  background: rgba(180, 162, 255, 0.1);
}
.wb-training--purple .wb-training__date-btn--booked {
  border-color: #b4a2ff;
  background: rgba(180, 162, 255, 0.15);
}
.wb-training--purple .wb-training__date-btn--booked .wb-training__date-slots {
  color: rgb(77.1774193548, 34.5, 255);
}
.wb-training--purple .wb-training__time-btn--active {
  border-color: #b4a2ff;
  background: rgba(180, 162, 255, 0.1);
}
.wb-training--purple .wb-training__time-btn--booked {
  border-color: #b4a2ff;
  background: rgba(180, 162, 255, 0.2);
}
.wb-training--purple .wb-training__book-btn {
  background: #b4a2ff;
  color: #111315;
}
.wb-training--purple .wb-training__video-accept {
  background: #b4a2ff;
  color: #111315;
}
.wb-training--pink .wb-training__date-btn--active {
  border-color: #f0c6ff;
  background: rgba(240, 198, 255, 0.1);
}
.wb-training--pink .wb-training__date-btn--booked {
  border-color: #f0c6ff;
  background: rgba(240, 198, 255, 0.15);
}
.wb-training--pink .wb-training__date-btn--booked .wb-training__date-slots {
  color: rgb(199.7368421053, 45, 255);
}
.wb-training--pink .wb-training__time-btn--active {
  border-color: #f0c6ff;
  background: rgba(240, 198, 255, 0.1);
}
.wb-training--pink .wb-training__time-btn--booked {
  border-color: #f0c6ff;
  background: rgba(240, 198, 255, 0.2);
}
.wb-training--pink .wb-training__book-btn {
  background: #f0c6ff;
  color: #111315;
}
.wb-training--pink .wb-training__video-accept {
  background: #f0c6ff;
  color: #111315;
}
.wb-training--blue .wb-training__date-btn--active {
  border-color: #c6e9ff;
  background: rgba(198, 233, 255, 0.1);
}
.wb-training--blue .wb-training__date-btn--booked {
  border-color: #c6e9ff;
  background: rgba(198, 233, 255, 0.15);
}
.wb-training--blue .wb-training__date-btn--booked .wb-training__date-slots {
  color: rgb(45, 173.9473684211, 255);
}
.wb-training--blue .wb-training__time-btn--active {
  border-color: #c6e9ff;
  background: rgba(198, 233, 255, 0.1);
}
.wb-training--blue .wb-training__time-btn--booked {
  border-color: #c6e9ff;
  background: rgba(198, 233, 255, 0.2);
}
.wb-training--blue .wb-training__book-btn {
  background: #c6e9ff;
  color: #111315;
}
.wb-training--blue .wb-training__video-accept {
  background: #c6e9ff;
  color: #111315;
}
.wb-training--gray .wb-training__date-btn--active {
  border-color: #383d42;
  background: rgba(56, 61, 66, 0.1);
}
.wb-training--gray .wb-training__date-btn--booked {
  border-color: #383d42;
  background: rgba(56, 61, 66, 0.15);
}
.wb-training--gray .wb-training__date-btn--booked .wb-training__date-slots {
  color: #fff;
}
.wb-training--gray .wb-training__time-btn--active {
  border-color: #383d42;
  background: rgba(56, 61, 66, 0.1);
}
.wb-training--gray .wb-training__time-btn--booked {
  border-color: #383d42;
  background: rgba(56, 61, 66, 0.2);
}
.wb-training--gray .wb-training__book-btn {
  background: #383d42;
  color: #fff;
}
.wb-training--gray .wb-training__video-accept {
  background: #383d42;
  color: #fff;
}
.wb-training--gray .wb-training__spinner {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
}

.wb-training-archive {
  padding-bottom: 50px;
}
.wb-training-archive__title {
  font-size: 36px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 30px;
}
.wb-training-archive__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 768px) {
  .wb-training-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .wb-training-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.wb-training-archive__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background: #383d42;
  min-height: 200px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wb-training-archive__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.wb-training-archive__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.wb-training-archive__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wb-training-archive__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 60%);
}
.wb-training-archive__content {
  position: relative;
  z-index: 2;
  padding: 20px;
  margin-top: auto;
}
.wb-training-archive__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.wb-training-archive__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wb-training-archive__name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.2;
}
.wb-training-archive__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.wb-training-archive__badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.wb-training-archive__card--lime .wb-training-archive__badge {
  background: rgba(232, 243, 128, 0.3);
}
.wb-training-archive__card--purple .wb-training-archive__badge {
  background: rgba(180, 162, 255, 0.3);
}
.wb-training-archive__card--pink .wb-training-archive__badge {
  background: rgba(240, 198, 255, 0.3);
}
.wb-training-archive__card--blue .wb-training-archive__badge {
  background: rgba(198, 233, 255, 0.3);
}
.wb-training-archive__card--gray .wb-training-archive__badge {
  background: rgba(255, 255, 255, 0.15);
}

@keyframes wb-training-spin {
  to {
    transform: rotate(360deg);
  }
}
.wb-trainer {
  padding-bottom: 50px;
}
.wb-trainer__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .wb-trainer__hero {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}
.wb-trainer__picture {
  flex-shrink: 0;
}
.wb-trainer__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8f380;
}
.wb-trainer__info {
  min-width: 0;
}
.wb-trainer__name {
  font-size: 36px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 10px;
  line-height: 1.1;
}
.wb-trainer__short {
  font-size: 14px;
  color: #798086;
  margin: 0 0 15px;
  line-height: 1.7;
}
.wb-trainer__description {
  font-size: 14px;
  color: #111315;
  line-height: 1.7;
}
.wb-trainer__description p:last-child {
  margin-bottom: 0;
}
.wb-trainer__section-title {
  font-size: 26px;
  font-weight: 700;
  color: #111315;
  margin: 0 0 20px;
}
.wb-trainer--lime .wb-trainer__img {
  border-color: #e8f380;
}
.wb-trainer--purple .wb-trainer__img {
  border-color: #b4a2ff;
}
.wb-trainer--pink .wb-trainer__img {
  border-color: #f0c6ff;
}
.wb-trainer--blue .wb-trainer__img {
  border-color: #c6e9ff;
}
.wb-trainer--gray .wb-trainer__img {
  border-color: #383d42;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-50 {
  margin-top: 50px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

/*# sourceMappingURL=app.css.map */
