/* 100 Thin */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('../css/fonts/overpass-thin.woff2') format('woff2');
}
/* 200 ExtraLight */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../css/fonts/overpass-extralight.woff2') format('woff2');
}
/* 300 Light */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../css/fonts/overpass-light.woff2') format('woff2');
}
/* 400 Regular */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../css/fonts/overpass-regular.woff2') format('woff2');
}
/* 500 – Medium fehlt! Entweder entfernen oder semiBold (600) nutzen. */
/* 600 SemiBold */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../css/fonts/overpass-semibold.woff2') format('woff2');
}
/* 700 Bold */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../css/fonts/overpass-bold.woff2') format('woff2');
}
/* 800 ExtraBold */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../css/fonts/overpass-extrabold.woff2') format('woff2');
}
/* 900 Heavy */
@font-face {
  font-family: 'Overpass';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../css/fonts/overpass-heavy.woff2') format('woff2');
}
html,
body {
  font-size: 100%;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
body {
  background: #fff;
  font-size: 15px;
  line-height: normal;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.modal-open {
  overflow: hidden;
  padding-right: 15px;
}
body.mobile-menu-open {
  overflow: hidden;
}
html {
  color-scheme: light dark;
}
html[data-theme="light"] {
  color-scheme: light;
}
html[data-theme="dark"] {
  color-scheme: dark;
}
* {
  font-family: "Overpass", sans-serif;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: normal;
  line-height: 1.35;
  text-rendering: optimizeLegibility;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
p {
  line-height: 1.4;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
strong,
.strong,
.bold {
  font-weight: 600;
}
.fixed-width {
  display: inline-block;
  width: 65px;
}
.fixed-width-small {
  display: inline-block;
  width: 30px;
}
.strong.italic,
.bold.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.thin {
  font-weight: 300;
}
h1 {
  font-family: "Overpass", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1;
  position: relative;
  padding-bottom: 10px;
}
h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 3px;
  background: #732C66;
  border-radius: 6px;
}
h2 {
  font-family: "Overpass", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1;
  position: relative;
  padding-bottom: 10px;
}
h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 25px;
  height: 3px;
  background: #732C66;
  border-radius: 6px;
}
h3 {
  font-family: "Overpass", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}
h3 a {
  color: #000;
}
h3 a:hover {
  color: #732c66;
}
h4 {
  font-family: "Overpass", sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}
a:not(.button):not(.custom-btn),
a:not(.button):not(.custom-btn):active,
a:not(.button):not(.custom-btn):visited {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
a:not(.button):not(.custom-btn):not(.ui.multiple.dropdown > .label):hover {
  color: #732c66 !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.lowercase {
  text-transform: lowercase !important;
}
.centered {
  text-align: center;
}
.left-aligned {
  text-align: left;
}
.right-aligned {
  text-align: right;
}
.text-tiny {
  font-size: 12px;
}
.text-large {
  font-size: 17px;
}
.text-small {
  font-size: 13px;
}
.text-faded {
  opacity: 0.25;
}
.element_hidden,
.element-hidden {
  display: none !important;
  visibility: hidden !important;
}
.section-top {
  margin-top: 10px !important;
}
.section-top-large {
  margin-top: 15px !important;
}
.section-top-small {
  margin-top: 5px !important;
}
.section-bottom {
  margin-bottom: 10px !important;
}
.section-bottom-small {
  margin-bottom: 5px !important;
}
.section-left {
  margin-left: 10px !important;
}
.section-left-small {
  margin-left: 5px !important;
}
.section-right {
  margin-right: 10px !important;
}
.section-right-small {
  margin-right: 5px !important;
}
.hyphen {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.truncate {
  white-space: nowrap !important;
  overflow: hidden !important;
  -o-text-overflow: ellipsis !important;
  -ms-text-overflow: ellipsis !important;
  text-overflow: ellipsis !important;
}
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hidden {
  visibility: hidden !important;
  display: none !important;
}
.hide {
  opacity: 0 !important;
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 9999;
}
.skip-link:focus {
  top: 0;
}
.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
  display: none;
}
.gmnoprint div {
  /*     background:none !important; */
}
@media (-webkit-min-device-pixel-ratio: 2) {
  a:not(.button):not(.custom-btn),
  a:not(.button):not(.custom-btn):active,
  a:not(.button):not(.custom-btn):visited {
    border-width: 0.5px;
  }
}
.button.neutral {
  background-color: #333;
  color: #fff;
}
.button.neutral:hover {
  background-color: #555;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
::placeholder {
  color: #666;
  opacity: 1;
}
input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 3px solid #4A90E2;
  outline-offset: 2px;
}
label {
  cursor: pointer;
  font-weight: 600;
}
table {
  border-collapse: collapse;
  width: 100%;
}
table caption {
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
table th {
  background-color: #f5f5f5;
  font-weight: bold;
  text-align: left;
  padding: 10px;
}
table td {
  padding: 10px;
  border: 1px solid #ddd;
}
@media (prefers-color-scheme: dark) {
  .skip-link {
    background: #fff;
    color: #000;
  }
  .error-message[role="alert"] {
    background-color: #331111;
    border-color: #ff5252;
    color: #ff8a80;
  }
  ::placeholder {
    color: #aaa;
  }
}
a {
  color: #0066cc;
  text-decoration: underline;
}
a:hover {
  color: #0052a3;
}
a:visited {
  color: #551a8b;
}
header {
  width: 100%;
  position: relative;
  z-index: 666;
}
.header-content-wrapper {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.025);
}
.header-content-container {
  height: 60px;
  padding: 10px 0px;
  background: rgba(252, 252, 252, 0.95);
  border-bottom: 1px solid #EBEBEB;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: relative;
  z-index: 700;
}
.header-content {
  height: 100%;
  width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.header-actions .header-action-btn:first-child {
  margin-left: 0;
}
.header-actions .header-action-btn:last-child {
  margin-right: 0;
}
.header-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin: 0 8px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #434343;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
}
.header-action-btn span {
  font-size: 15px;
  font-weight: 400;
}
.header-action-btn i {
  font-size: 16px;
}
.header-action-btn#customer-portal-btn i,
.header-action-btn#member-login-btn i {
  font-size: 13px;
}
.header-action-btn:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #222222;
  border-color: rgba(0, 0, 0, 0.05);
}
.header-action-btn:active {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.16);
}
.header-action-btn.desktop-only:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background: #E0E0E0;
}
@media screen and (max-width: 767px) {
  .header-action-btn {
    padding: 8px 12px;
    margin: 0 6px;
  }
  .header-action-btn span {
    display: none;
  }
  .header-action-btn:not(:last-child)::after {
    right: -6px;
  }
}
a.header-action-btn:link,
a.header-action-btn:visited {
  text-decoration: none !important;
  color: #434343 !important;
}
a.header-action-btn:hover {
  text-decoration: none !important;
  color: #222222 !important;
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.05);
}
a.header-action-btn:active {
  text-decoration: none !important;
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.16);
}
a.header-action-btn i {
  color: inherit;
}
#member-login-btn:link,
#mobile-member-login-btn:link,
#member-login-btn:visited,
#mobile-member-login-btn:visited,
#member-login-btn:hover,
#mobile-member-login-btn:hover,
#member-login-btn:active,
#mobile-member-login-btn:active {
  text-decoration: none !important;
}
.custom-btn:link,
.custom-btn:visited,
.custom-btn:hover,
.custom-btn:active {
  text-decoration: none !important;
}
.theme-toggle-btn {
  position: relative;
  padding: 10px 10px;
}
.theme-toggle-btn .theme-icon-light,
.theme-toggle-btn .theme-icon-dark {
  display: none;
}
.theme-toggle-btn .theme-icon-system {
  display: block;
}
.theme-toggle-btn[data-theme="light"] .theme-icon-light {
  display: block;
}
.theme-toggle-btn[data-theme="light"] .theme-icon-dark,
.theme-toggle-btn[data-theme="light"] .theme-icon-system {
  display: none;
}
.theme-toggle-btn[data-theme="dark"] .theme-icon-dark {
  display: block;
  opacity: 1;
  color: #4f4273;
}
.theme-toggle-btn[data-theme="dark"] .theme-icon-light,
.theme-toggle-btn[data-theme="dark"] .theme-icon-system {
  display: none;
}
.theme-toggle-btn[data-theme="system"] .theme-icon-system {
  display: block;
}
.theme-toggle-btn[data-theme="system"] .theme-icon-light,
.theme-toggle-btn[data-theme="system"] .theme-icon-dark {
  display: none;
}
html.theme-light .theme-toggle-btn:not([data-theme]) .theme-icon-light {
  display: block;
}
html.theme-light .theme-toggle-btn:not([data-theme]) .theme-icon-dark,
html.theme-light .theme-toggle-btn:not([data-theme]) .theme-icon-system {
  display: none;
}
html.theme-dark .theme-toggle-btn:not([data-theme]) .theme-icon-dark {
  display: block;
}
html.theme-dark .theme-toggle-btn:not([data-theme]) .theme-icon-light,
html.theme-dark .theme-toggle-btn:not([data-theme]) .theme-icon-system {
  display: none;
}
#customer-portal-btn {
  background: #732C66;
  color: #FFFFFF;
  border-radius: 6px;
  border-color: #732C66;
}
#customer-portal-btn i {
  color: #FFFFFF;
}
#customer-portal-btn span {
  color: #FFFFFF;
}
#customer-portal-btn:hover {
  background: #8B3B7A;
  color: #FFFFFF;
  border-color: #8B3B7A;
}
#customer-portal-btn:active {
  background: #5A2353;
  border-color: #5A2353;
}
.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}
.mobile-menu-dropdown {
  position: fixed;
  top: 115px;
  right: 15px;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 250px;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}
.mobile-menu-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu-dropdown-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  padding-left: 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #434343;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
}
.mobile-menu-item span {
  font-size: 15px;
  font-weight: 400;
}
.mobile-menu-item i {
  font-size: 16px;
  font-weight: 300;
}
.mobile-menu-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}
.mobile-menu-item#mobile-customer-portal-btn {
  background: #732C66;
  color: #FFFFFF;
  border-color: #732C66;
}
.mobile-menu-item#mobile-customer-portal-btn i {
  color: #FFFFFF;
}
.mobile-menu-item#mobile-customer-portal-btn:hover {
  background: #8B3B7A;
  border-color: #8B3B7A;
}
a.mobile-menu-item:link,
a.mobile-menu-item:visited {
  text-decoration: none !important;
  color: #434343 !important;
}
a.mobile-menu-item:hover {
  text-decoration: none !important;
  color: #434343 !important;
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}
a.mobile-menu-item:active {
  text-decoration: none !important;
  color: #434343 !important;
}
a.mobile-menu-item#mobile-customer-portal-btn:link,
a.mobile-menu-item#mobile-customer-portal-btn:visited,
a.mobile-menu-item#mobile-customer-portal-btn:hover,
a.mobile-menu-item#mobile-customer-portal-btn:active {
  color: #FFFFFF !important;
}
.header-top-line {
  height: 5px;
  background: #4b1970;
  background: linear-gradient(90deg, #4b1970 0%, #1960ca 100%);
  position: relative;
  z-index: 701;
}
.header-bottom-line-container {
  display: flex;
  justify-content: center;
}
.header-bottom-line {
  width: calc(100% - 100px);
  max-width: 800px;
  height: 4px;
  background: #4b1970;
  background: linear-gradient(90deg, #4b1970 0%, #1960ca 100%);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.header-logo-container {
  height: 100%;
  width: 160px;
  height: inherit;
  flex: 0 0 auto;
  display: block;
  position: relative;
  background-image: url("../img/jeckdesk-logo-horizontal.svg");
  background-repeat: no-repeat;
  background-position: 0px center;
  background-size: contain;
  opacity: 0.95;
  transition: none !important;
}
.header-sub-wrapper {
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}
.header-sub {
  background: rgba(252, 252, 252, 0.9);
  border-bottom: 1px solid #EBEBEB;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}
.header-content-wrapper.header-sub-hidden .header-sub-wrapper {
  transform: translateY(var(--header-scroll-offset, -58px));
  opacity: 1;
}
.header-sub-content-container {
  width: 1100px;
  padding: 12px 0px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-sub-profile-image-container {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.header-sub-profile-image-container:hover {
  transform: translateY(-1px);
}
.header-sub-profile-image-container:hover .header-sub-profile-image-border {
  box-shadow: 0px 4px 20px rgba(115, 44, 102, 0.1);
}
.header-sub-profile-image-border {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.header-sub-profile-image {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
}
.header-sub-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-sub-content {
  flex: 1;
  color: #434343;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-sub-content .title {
  color: #434343;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.header-sub-content .subtitle {
  color: #393939;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-sub-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.header-sub-actions .button.tiny {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 1.2px;
  padding: 8px 16px;
  white-space: nowrap;
}
.header-sub-actions .button.tiny span {
  font-size: 11px;
}
.header-sub-actions .button.tiny i {
  font-size: 10px;
}
@media screen and (max-width: 1280px) {
  .header-content {
    width: 100%;
    padding: 0 30px;
  }
  .header-logo-container {
    margin-left: 0;
  }
  .header-actions {
    gap: 0;
  }
  .header-action-btn {
    padding: 7px 14px;
    font-size: 12px;
    margin: 0 6px;
  }
  .header-action-btn i {
    font-size: 14px;
  }
  .header-action-btn#customer-portal-btn i,
  .header-action-btn#member-login-btn i {
    font-size: 11px;
  }
  .header-action-btn.desktop-only:not(:last-child)::after {
    height: 16px;
    right: -6px;
  }
  .header-sub-content-container {
    width: calc(100% - 50px);
    gap: 12px;
  }
  .header-bottom-line {
    height: 4px;
    width: calc(100% - 150px);
    max-width: 850px;
  }
  .header-sub-profile-image-border {
    width: 45px;
    height: 45px;
  }
  .header-sub-actions .button.tiny {
    font-size: 10px;
    padding: 6px 12px;
    gap: 6px;
  }
  .header-sub-actions .button.tiny span {
    font-size: 10px;
  }
  .header-sub-actions .button.tiny i {
    font-size: 9px;
  }
}
@media screen and (max-width: 767px) {
  .header-content-container {
    height: 55px;
    padding: 10px 0px;
    margin-left: 0px;
  }
  .header-content {
    padding: 0 15px;
    padding-right: 10px;
  }
  .header-logo-container {
    width: 140px;
    margin-left: 0;
  }
  .mobile-menu-dropdown {
    top: 65px;
    right: 10px;
  }
  .header-actions {
    gap: 12px;
    justify-content: flex-end;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  #theme-toggle-btn {
    order: 1;
    margin-right: 0px;
  }
  #mobile-menu-btn {
    order: 2;
    margin-left: 0px;
    margin-right: 0;
  }
  #mobile-menu-btn i {
    font-size: 18px;
  }
  #theme-toggle-btn::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 1px;
    background: #E0E0E0;
    display: block !important;
  }
  .header-action-btn {
    padding: 8px 10px;
    margin: 0 4px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
  }
  .header-action-btn span {
    display: none;
  }
  .header-action-btn i {
    font-size: 18px;
  }
  .header-action-btn#customer-portal-btn i,
  .header-action-btn#member-login-btn i {
    font-size: 16px;
  }
  .header-action-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
  }
  .header-action-btn:not(:last-child)::after {
    display: none;
  }
  .theme-toggle-btn {
    padding: 8px 10px;
  }
  .header-sub-content-container {
    width: 100%;
    padding: 12px 20px;
    gap: 10px;
  }
  .header-content-wrapper.header-sub-hidden .header-sub-wrapper {
    transform: translateY(var(--header-scroll-offset, -56px));
  }
  .header-sub-profile-image-border {
    width: 40px;
    height: 40px;
  }
  .header-sub-content .title {
    font-size: 12px;
    letter-spacing: 1.7px;
    font-weight: 400;
  }
  .header-sub-content .subtitle {
    font-size: 10px;
  }
  .header-sub-actions .button.tiny {
    min-width: auto;
    font-size: 9px;
    padding: 6px 10px;
    gap: 4px;
  }
  .header-sub-actions .button.tiny span {
    display: none;
  }
  .header-sub-actions .button.tiny i {
    font-size: 11px;
  }
  .header-bottom-line {
    width: calc(100% - 50px);
  }
  .header-top-line {
    height: 0px;
  }
}
/* Auth Error Modal */
.auth-error-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.auth-error-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.auth-error-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.auth-error-modal.show {
  transform: translateY(0);
  opacity: 1;
}
.auth-error-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-bottom: 1px solid #EBEBEB;
}
.auth-error-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.auth-error-modal-close {
  background: #f7f7f7;
  border: 1px solid transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6269;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-error-modal-close:hover {
  background: #f7f7f7;
  border: 1px solid #E1E4E8;
  color: #24292E;
}
.auth-error-modal-close i {
  font-size: 16px;
}
.auth-error-modal-content {
  padding: 48px 32px 40px;
  text-align: center;
}
.auth-error-icon {
  width: 72px;
  height: 72px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.auth-error-icon i {
  font-size: 32px;
  color: #732C66;
}
.auth-error-message {
  margin-bottom: 36px;
}
.auth-error-message h3 {
  margin: 0 0 16px 0;
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
}
.auth-error-message p {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: #666;
}
.auth-error-message p:last-child {
  margin-bottom: 0;
}
.auth-error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.auth-error-actions .button {
  min-width: 140px;
}
@media (max-width: 480px) {
  .auth-error-modal {
    max-width: none;
  }
  .auth-error-modal-content {
    padding: 32px 24px;
  }
  .auth-error-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }
  .auth-error-icon i {
    font-size: 28px;
  }
  .auth-error-message {
    margin-bottom: 28px;
  }
  .auth-error-message h3 {
    font-size: 18px;
  }
  .auth-error-actions {
    flex-direction: column;
  }
  .auth-error-actions .button {
    width: 100%;
  }
}
/* Board User Menu */
.header-user-menu {
  position: relative;
}
.header-user-menu::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: #e0e0e0;
}
.header-user-menu.masquerading .user-menu-toggle {
  background: rgba(230, 81, 0, 0.08);
  border: 1px solid rgba(230, 81, 0, 0.2);
}
.header-user-menu.masquerading .user-menu-toggle:hover {
  background: rgba(230, 81, 0, 0.12);
  border-color: rgba(230, 81, 0, 0.3);
}
.header-user-menu.masquerading .user-menu-toggle .user-avatar,
.header-user-menu.masquerading .user-menu-toggle .user-avatar-placeholder {
  border-color: rgba(230, 81, 0, 0.4);
}
.header-user-menu .user-menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.header-user-menu .user-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}
.header-user-menu .user-menu-toggle .user-avatar,
.header-user-menu .user-menu-toggle .user-avatar-placeholder {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}
.header-user-menu .user-menu-toggle .user-avatar {
  object-fit: cover;
  border: 2px solid #e0e0e0;
}
.header-user-menu .user-menu-toggle .user-avatar-placeholder {
  background: #e8d7ee;
  background: linear-gradient(135deg, #e8d7ee 0%, #D8D8D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #ad9cb6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-user-select: none;
  user-select: none;
}
.header-user-menu .user-menu-toggle .user-info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 125px;
}
.header-user-menu .user-menu-toggle .user-info-text .user-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  line-height: 1.2;
  letter-spacing: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  max-width: 100%;
}
.header-user-menu .user-menu-toggle .user-info-text .user-company {
  font-size: 12px;
  color: #666;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.header-user-menu .user-menu-toggle i.fa-chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #666;
  margin-left: 4px;
}
.header-user-menu .user-menu-toggle.active i.fa-chevron-down {
  transform: rotate(180deg);
}
.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.user-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown-menu .user-dropdown-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fcfcfc;
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-avatar,
.user-dropdown-menu .user-dropdown-header .dropdown-user-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-avatar {
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-avatar-placeholder {
  background: #e8d7ee;
  background: linear-gradient(135deg, #e8d7ee 0%, #D8D8D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #ad9cb6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  user-select: none;
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-info {
  flex: 1;
  min-width: 0;
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-info strong {
  display: block;
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-info .dropdown-user-company {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-info .masquerade-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 4px 10px;
  background: #FFF3E0;
  color: #E65100;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.user-dropdown-menu .user-dropdown-header .dropdown-user-info .masquerade-indicator i {
  font-size: 12px;
}
.user-dropdown-menu .user-menu-divider {
  height: 1px;
  background: #EBEBEB;
  margin: 0;
}
.user-dropdown-menu .user-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
}
.user-dropdown-menu .user-menu-item:hover {
  background: #FAFAFA;
}
.user-dropdown-menu .user-menu-item:first-child {
  padding-top: 16px;
}
.user-dropdown-menu .user-menu-item:last-child {
  padding-bottom: 16px;
}
.user-dropdown-menu .user-menu-item:not(:last-child) {
  border-bottom: 1px solid #EBEBEB;
}
.user-dropdown-menu .user-menu-item i {
  width: 20px;
  text-align: center;
  color: #333;
  font-size: 16px;
}
.user-dropdown-menu .user-menu-item span {
  font-weight: 400;
  font-size: 15px;
}
/* Mobile adjustments */
@media (max-width: 768px) {
  .header-user-menu .user-menu-toggle {
    padding: 6px;
  }
  .header-user-menu .user-menu-toggle .user-info-text {
    display: none;
  }
  .header-user-menu .user-menu-toggle i.fa-chevron-down {
    display: none;
  }
  .header-user-menu::after {
    display: none;
  }
}
/* Desktop adjustments */
@media (min-width: 769px) {
  #theme-toggle-btn {
    margin-left: 20px;
  }
}
/* Mobile Menu User Info */
.mobile-menu-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 10px;
}
.mobile-menu-user-info .mobile-user-avatar,
.mobile-menu-user-info .mobile-user-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mobile-menu-user-info .mobile-user-avatar {
  object-fit: cover;
  border: 2px solid #e0e0e0;
}
.mobile-menu-user-info .mobile-user-avatar-placeholder {
  background: #e8d7ee;
  background: linear-gradient(135deg, #e8d7ee 0%, #D8D8D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #747474;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-user-select: none;
  user-select: none;
}
.mobile-menu-user-info .mobile-user-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.mobile-menu-user-info .mobile-user-details .mobile-user-name {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-menu-user-info .mobile-user-details .mobile-user-company {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-menu-user-info .mobile-user-details .mobile-masquerade-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 3px 8px;
  background: #FFF3E0;
  color: #E65100;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.mobile-menu-user-info .mobile-user-details .mobile-masquerade-indicator i {
  font-size: 10px;
}
.mobile-menu-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 0;
}
#theme-toggle-btn {
  margin-left: 16px;
}
#theme-toggle-btn.active .theme-icon-light,
#theme-toggle-btn.active .theme-icon-dark,
#theme-toggle-btn.active .theme-icon-system {
  display: none;
}
#theme-toggle-btn[data-theme="light"] .theme-icon-light,
#theme-toggle-btn[data-theme="dark"] .theme-icon-dark,
#theme-toggle-btn[data-theme="system"] .theme-icon-system {
  display: inline-block;
}
footer {
  width: 100%;
  position: relative;
  background: #FCFCFC;
  margin-top: auto;
}
.footer-content {
  background: #FCFCFC;
  border-top: 1px solid #f1f1f1;
  padding: 25px 0;
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}
.footer-left .footer-logo {
  width: 100px;
  height: 30px;
  background-image: url("/img/jeckdesk-logo-horizontal.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.9;
}
.footer-left .footer-copyright {
  color: #666;
  font-size: 12px;
  white-space: nowrap;
}
.footer-left .footer-copyright strong {
  color: #333;
  font-weight: 600;
}
.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.footer-center .footer-links {
  display: flex;
  gap: 25px;
  align-items: center;
}
.footer-center .footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
}
.footer-center .footer-links a:hover {
  color: #732C66;
}
.footer-center .footer-links a:not(:last-child):after {
  content: "·";
  position: absolute;
  right: -13px;
  color: #ddd;
  font-weight: 300;
}
.footer-right {
  flex: 0 0 auto;
}
.footer-right .footer-made-with {
  color: #666;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .footer-container {
    max-width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 992px) {
  .footer-container {
    padding: 0 25px;
  }
  .footer-left .footer-logo {
    width: 100px;
    height: 26px;
  }
  .footer-left .footer-copyright {
    font-size: 11px;
  }
  .footer-center .footer-links {
    gap: 20px;
  }
  .footer-center .footer-links a {
    font-size: 12px;
  }
  .footer-center .footer-links a:not(:last-child):after {
    right: -11px;
  }
  .footer-right .footer-made-with {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .footer-content {
    padding: 20px 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding: 0 20px;
  }
  .footer-left {
    flex-direction: column;
    gap: 10px;
  }
  .footer-left .footer-logo {
    margin-left: calc(50% - 50px - 8px);
    margin-right: auto;
  }
  .footer-left .footer-copyright {
    text-align: center;
  }
  .footer-center .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .footer-center .footer-links a:not(:last-child):after {
    display: none;
  }
}
.button {
  font-family: "Overpass", sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.5px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: normal;
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  transition: background-color 0.2s, color 0.2s, border 0.2s;
}
.button span {
  font-family: "Overpass", sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: normal;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border 0.2s;
}
.button.left-floated {
  float: left;
}
.button.right-floated {
  float: right;
}
.button.small {
  min-width: 150px;
  font-size: 12px;
  letter-spacing: 1.4px;
  padding: 10px 18px;
  padding-right: 14px;
  text-align: center;
}
.button.small span {
  font-size: 12px;
  letter-spacing: 1.4px;
}
.button.tiny {
  min-width: 120px;
  font-size: 11px;
  letter-spacing: 1.4px;
  padding: 8px 12px;
  padding-right: 12px;
  text-align: center;
}
.button.tiny span {
  font-size: 11px;
  letter-spacing: 1.4px;
}
.button.primary {
  background-color: none;
  color: #1a60ca;
  border: 1px solid #1a60ca;
}
.button.primary.filled {
  background-color: #1a60ca;
  color: #fff;
  border: 1px solid #1a60ca;
}
.button.primary:hover {
  background-color: #01c788;
  color: #fff;
  border: 1px solid #01c788;
}
.button.positive {
  background: none;
  background-color: none;
  color: #1a60ca;
  border: 1px solid #1a60ca;
}
.button.positive.filled {
  background-color: #39d57a;
  color: #fff;
  border: 1px solid #39d57a;
}
.button.positive:hover {
  background-color: #26c769;
  color: #fff;
  border: 1px solid #26c769;
}
.button.orange {
  background-color: none;
  color: #f98835;
  border: 1px solid #f98835;
}
.button.orange.filled {
  background-color: #f98835;
  color: #fff;
  border: 1px solid #f98835;
}
.button.orange:hover {
  background-color: #f98835;
  color: #fff;
  border: 1px solid #f98835;
}
.button.yellow {
  background-color: none;
  color: #fbbd08;
  border: 1px solid #fbbd08;
}
.button.yellow.filled {
  background-color: #fbbd08;
  color: #fff;
  border: 1px solid #fbbd08;
}
.button.yellow:hover {
  background-color: #fbbd08;
  color: #fff;
  border: 1px solid #fbbd08;
}
.button.green {
  background-color: none;
  color: #1be181;
  border: 1px solid #1be181;
}
.button.green.filled {
  background-color: #1be181;
  color: #fff;
  border: 1px solid #1be181;
}
.button.green:hover {
  background-color: #1dcf78;
  color: #fff;
  border: 1px solid #1dcf78;
}
.button.red {
  background-color: none;
  color: #e11b3c;
  border: 1px solid #e11b3c;
}
.button.red.filled {
  background-color: #e11b3c;
  color: #fff;
  border: 1px solid #e11b3c;
}
.button.red:hover {
  background-color: #e11b3c;
  color: #fff;
  border: 1px solid #e11b3c;
}
.button.white {
  background-color: none;
  color: #2A2E2C;
  border: 1px solid #D6EADC;
}
.button.white.filled {
  background-color: #D6EADC;
  color: #2A2E2C;
  border: 1px solid #D6EADC;
}
.button.white:hover {
  background-color: #D6EADC;
  color: #2A2E2C;
  border: 1px solid #D6EADC;
}
.button.violet {
  background-color: none;
  color: #732c66;
  border: 1px solid #732c66;
}
.button.violet.filled {
  background-color: #732c66;
  color: #fff;
  border: 1px solid #732c66;
}
.button.violet:hover {
  background-color: #6a255d;
  color: #fff;
  border: 1px solid #6a255d;
}
.button.negative {
  background: none;
  background-color: none;
  color: #ff4a4a;
  border: 1px solid #ff4a4a;
}
.button.negative.filled {
  background-color: #ff4a4a;
  color: #fff;
  border: 1px solid #ff4a4a;
}
.button.negative:hover {
  background-color: #ff4a4a;
  color: #fff;
  border: 1px solid #ff4a4a;
}
.button.neutral {
  background: none;
  background-color: none;
  color: #000;
  border: 1px solid #000;
}
.button.neutral.filled {
  background-color: #2e2c2c;
  color: #fff;
  border: 1px solid #2e2c2c;
}
.button.neutral:hover {
  background-color: #1f1e1e;
  color: #fff;
  border: 1px solid #1f1e1e;
}
.button.disabled {
  background: none;
  color: #aaaaaa;
  border: 1px solid #ebebeb;
}
.button.filled.disabled {
  background: none;
  background-color: #f5f5f5;
  color: #aaaaaa;
  border: 1px solid #ebebeb;
}
.button.textual {
  border: none;
  background: none;
  font-weight: 500;
  padding: 0;
  margin: 0;
  color: #000;
  transition: background-image 0s, background-position 0.2s, color 0.2s;
}
.button.textual i {
  margin-right: 5px;
}
.button.icon {
  padding: 12px 20px;
}
.button.icon.small {
  min-width: auto;
  font-size: 12px;
  padding: 10px 18px;
  letter-spacing: 1.4px;
}
.button.textual:hover {
  color: #92939a;
  background-position: 2px center;
}
.button.text {
  text-decoration: none;
  padding: 5px 30px;
  padding-left: 0px;
  margin-left: 0px;
  font-size: 13px;
}
.button.fluid {
  display: block;
  text-align: center;
  width: 100%;
}
.button.section-top {
  margin-top: 15px;
}
.button.section-left {
  margin-left: 15px;
}
@media (-webkit-min-device-pixel-ratio: 2) {
  .button {
    border-width: 0.5px;
  }
}
label {
  font-family: "Overpass", sans-serif;
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-left: 0px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.label_info {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 12px;
  margin-bottom: 15px;
}
.label_info.no-margin-bottom {
  margin-bottom: 0px;
}
.label_info i {
  margin-right: 5px;
}
label.error {
  margin-bottom: 10px;
  margin-top: -5px;
  display: block;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  background: #ff4a4a;
  border: 1px solid #ff4a4a;
  display: inline-block;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  padding: 5px 10px;
  margin-left: 0;
  position: relative;
  text-transform: none;
}
label.error.section {
  margin-top: 15px;
}
.input-error-msg.visible {
  margin-top: -25px;
  margin-bottom: 30px;
  padding: 5px 10px;
  display: inline-block;
  color: #fff;
  background: #ff4a4a;
  font-size: 14px;
  border-radius: 5px;
}
.checkbox_container {
  display: block;
  padding-bottom: 2px;
  padding-top: 2px;
  margin-top: 5px;
  margin-bottom: 10px;
  position: relative;
}
input[type="checkbox"] {
  width: auto;
  display: block;
  box-sizing: border-box;
  line-height: normal;
  position: absolute;
  margin: 3px 0 0 3px;
  margin-top: 8px;
  margin-bottom: 0px;
  margin-right: 6px;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
}
.checkbox_label {
  font-family: "Overpass", sans-serif;
  font-weight: 200;
  line-height: normal;
  text-transform: none;
  font-size: 15px;
  color: #000;
  cursor: pointer;
  position: relative;
  padding-top: 5px;
  padding-bottom: 9px;
  padding-left: 60px;
  margin-left: 0px;
  margin-bottom: 0;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
  user-select: none;
  appearance: none;
}
.checkbox_label.white {
  color: #fff;
}
.checkbox_label span {
  margin-top: 0px;
  display: none;
  font-size: 13px;
  font-weight: 300;
  display: inline-block;
}
.checkbox_label.large span {
  font-size: 15px;
}
.checkbox_label:before {
  content: "";
  height: 24px;
  width: 46px;
  background-color: #F6F6F6;
  border-radius: 12px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 3px;
  transition: background-color 0.3s ease;
  border: 1px solid #D8D8D8;
}
.checkbox_label:after {
  content: "";
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
input[type="checkbox"]:checked + .checkbox_label:before {
  background: #732C66;
  border-color: #EBEBEB;
}
input[type="checkbox"]:checked + .checkbox_label:after {
  transform: translateX(22px);
}
input[type="checkbox"].error + .checkbox_label:before {
  border-color: #FF4B4B;
}
input[type="checkbox"].disabled + .checkbox_label:before,
input[type="checkbox"]:disabled + .checkbox_label:before {
  background-color: #f0f0f0;
  opacity: 0.4;
}
input[type="checkbox"].disabled + .checkbox_label:after,
input[type="checkbox"]:disabled + .checkbox_label:after {
  background-color: #b1b1b1;
  border-color: #b1b1b1;
  opacity: 0.4;
}
.checkbox_label .label_info {
  margin-top: 5px;
}
input[type="text"]:not(.custom-form),
input[type="email"]:not(.custom-form),
input[type="number"]:not(.custom-form),
input[type="password"]:not(.custom-form),
textarea:not(.custom-form),
select:not(.custom-form) {
  width: 100%;
  font-family: "Overpass", sans-serif;
  line-height: 1.4;
  font-size: 15px;
  color: #000;
  background-color: #FCFCFC;
  border: 1px solid #d8d8d8;
  font-weight: 400;
  padding: 16px;
  margin-top: 0px;
  margin-bottom: 20px;
  margin-left: -2px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  -moz-appearance: none;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  -webkit-transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  -moz-transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  -o-transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  position: relative;
}
input[type="text"]:not(.custom-form).disabled,
input[type="email"]:not(.custom-form).disabled,
input[type="number"]:not(.custom-form).disabled,
input[type="password"]:not(.custom-form).disabled,
textarea:not(.custom-form).disabled,
select:not(.custom-form).disabled {
  opacity: 0.5;
}
input[type="text"].error:not(.custom-form),
input[type="email"].error:not(.custom-form),
input[type="number"].error:not(.custom-form),
input[type="password"].error:not(.custom-form),
textarea.error:not(.custom-form),
select.error:not(.custom-form) {
  border: 1px solid #ff4a4a;
}
input[type="text"]:not(.error):not(.custom-form):focus,
input[type="number"]:not(.error):not(.custom-form):focus,
input[type="email"]:not(.error):not(.custom-form):focus,
input[type="password"]:not(.error):not(.custom-form):focus,
textarea:not(.error):not(.custom-form):focus,
select:not(.error):not(.custom-form):focus {
  background-color: #ffffff;
  border: 1px solid #494949;
}
.input-slim {
  padding: 10px 12px !important;
}
.input-table-list {
  margin: 0px !important;
  border: none !important;
  border-left: 1px solid #d8d8d8 !important;
  background: none !important;
  border-radius: 0px !important;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}
.custom-file-input {
  width: 100%;
  font-family: "Overpass", sans-serif;
  line-height: 1.4;
  font-size: 15px;
  color: #000;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  font-weight: 300;
  padding: 16px;
  margin-top: 0px;
  margin-bottom: 20px;
  margin-left: -2px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  -moz-appearance: none;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  -webkit-transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  -moz-transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  -o-transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  transition: background 0.4s, background-image 0.4s, color 0.4s, border 0.2s;
  position: relative;
}
.custom-file-input.error {
  border: 1px solid #ff4a4a;
  color: #ff4a4a;
}
.custom-file-input.dialog_input {
  background: #fff;
  border: 1px solid #d6d6d7;
  color: #565656;
}
.input_wrapper {
  width: 100%;
  position: relative;
}
.input_wrapper.margin_top {
  margin-top: 20px;
}
.input_wrapper .footnote {
  position: absolute;
  right: 12px;
  font-size: 10px;
  margin-top: -25px;
  font-weight: 500;
  color: #9c9c9c;
  z-index: 5;
}
textarea {
  min-height: 145px;
  max-height: 145px;
  max-width: 100%;
  resize: none;
}
textarea.large-input {
  min-height: 200px;
  max-height: 200px;
}
textarea.very-large-input {
  min-height: 300px;
  max-height: 300px;
}
select {
  background-image: url("../img/chevron-black-down.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}
select.error {
  background-image: url("../img/chevron-black-down.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  border: 1px solid #ff4a4a;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-placeholder {
  color: #8e8e8e;
  text-transform: none !important;
}
input::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #8e8e8e;
  text-transform: none !important;
}
.error::-webkit-input-placeholder {
  color: #ff4a4a;
  text-transform: none !important;
}
.error::-moz-placeholder {
  color: #ff4a4a;
  text-transform: none !important;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  cursor: pointer;
}
input:hover,
select:hover,
textarea:hover,
button:hover {
  cursor: pointer;
}
.status-container {
  visibility: none;
  display: none;
  position: relative;
  background: #fff;
  border: 1px solid #e3e3e5;
  color: #000;
  padding: 15px;
  padding-left: 30px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
}
.status-container.section-top {
  margin-top: 25px !important;
}
.status-container.visible {
  visibility: visible;
  display: block;
}
.status-container .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: normal;
}
.status-container:before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fcfcfc;
}
.status-container.success:before {
  background: #39d67b;
}
.status-container.error:before {
  background: #ff4a4a;
}
.status-container.warning:before {
  background: #fbbd09;
}
.status-container.info:before {
  background: #732d67;
}
@media screen and (max-width: 991px) {
  textarea.large_input {
    min-height: 151px;
    max-height: 151px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  label.error {
    border-width: 0.5px;
  }
  .status-container {
    border-width: 0.5px;
  }
}
/* Webkit Autofill Styles - Verhindert die automatische Färbung */
input[type="text"]:not(.custom-form):-webkit-autofill,
input[type="email"]:not(.custom-form):-webkit-autofill,
input[type="number"]:not(.custom-form):-webkit-autofill,
input[type="password"]:not(.custom-form):-webkit-autofill,
textarea:not(.custom-form):-webkit-autofill,
input[type="text"]:not(.custom-form):-webkit-autofill:hover,
input[type="email"]:not(.custom-form):-webkit-autofill:hover,
input[type="number"]:not(.custom-form):-webkit-autofill:hover,
input[type="password"]:not(.custom-form):-webkit-autofill:hover,
textarea:not(.custom-form):-webkit-autofill:hover,
input[type="text"]:not(.custom-form):-webkit-autofill:focus,
input[type="email"]:not(.custom-form):-webkit-autofill:focus,
input[type="number"]:not(.custom-form):-webkit-autofill:focus,
input[type="password"]:not(.custom-form):-webkit-autofill:focus,
textarea:not(.custom-form):-webkit-autofill:focus,
input[type="text"]:not(.custom-form):-webkit-autofill:active,
input[type="email"]:not(.custom-form):-webkit-autofill:active,
input[type="number"]:not(.custom-form):-webkit-autofill:active,
input[type="password"]:not(.custom-form):-webkit-autofill:active,
textarea:not(.custom-form):-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #FCFCFC inset !important;
  -webkit-text-fill-color: #000 !important;
  background-color: #FCFCFC !important;
  transition: background-color 5000s ease-in-out 0s;
  border: 1px solid #d8d8d8 !important;
}
input[type="text"]:not(.custom-form):-webkit-autofill:focus,
input[type="email"]:not(.custom-form):-webkit-autofill:focus,
input[type="number"]:not(.custom-form):-webkit-autofill:focus,
input[type="password"]:not(.custom-form):-webkit-autofill:focus,
textarea:not(.custom-form):-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  border: 1px solid #494949 !important;
}
/* Select Felder Autofill */
select:not(.custom-form):-webkit-autofill,
select:not(.custom-form):-webkit-autofill:hover,
select:not(.custom-form):-webkit-autofill:focus,
select:not(.custom-form):-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #FCFCFC inset !important;
  -webkit-text-fill-color: #000 !important;
  background-color: #FCFCFC !important;
  transition: background-color 5000s ease-in-out 0s;
  border: 1px solid #d8d8d8 !important;
}
main {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 150px;
}
main .content-container {
  width: 1100px;
  padding: 50px 0px;
}
.grid-nav-container {
  position: relative;
  display: flex;
  justify-content: end;
  margin-top: -48px;
  z-index: 444;
}
.griv-nav-content {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.griv-nav-item {
  padding: 10px 15px;
}
.griv-nav-item:first-child {
  border-right: 1px solid #EBEBEB;
}
.griv-nav-item.active {
  background: #F6F6F6;
  color: #666666;
}
.griv-nav-item:hover {
  background: #FCFCFC;
  cursor: pointer;
}
.articles-container {
  width: calc(100% + 30px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-left: -15px;
  margin-top: 0px;
}
.articles-grid-item-container {
  flex: calc(33.3%);
  max-width: calc(33.3%);
  min-width: 350px;
  height: 280px;
  box-sizing: border-box;
  padding: 15px;
  position: relative;
  margin-bottom: 130px;
  color: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.articles-grid-item-container:hover {
  transform: translateY(-5px) translateZ(0);
}
.articles-grid-item-container:hover .articles-grid-item {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 3px 6px rgba(0, 0, 0, 0.01);
}
.articles-grid-item-container:hover .article-grid-image img {
  transform: scale(1.05) translateZ(0);
}
.articles-grid-item-container:hover .articles-grid-info-item {
  border-color: #d2d5d8;
}
.articles-grid-item-container.promo-card:hover .articles-grid-item {
  box-shadow: 0 10px 25px rgba(115, 44, 102, 0.25), 0 3px 10px rgba(115, 44, 102, 0.15);
}
.articles-grid-item-container.promo-card:hover .promo-icon i {
  animation-duration: 1.5s;
}
.articles-grid-item-container.details {
  flex: 100%;
  max-width: 450px;
  min-width: 450px;
  height: 330px;
  padding: 0px;
  margin-bottom: 0px;
}
.articles-grid-item {
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: box-shadow;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.articles-grid-item:hover {
  cursor: pointer;
}
.article-grid-image {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #FAFBFB;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.article-grid-image.disabled {
  filter: grayscale(100%);
}
.article-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.articles-grid-info-item-container {
  width: 100%;
  border-radius: 6px;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -45px;
}
.articles-grid-info-item {
  width: calc(100% - 25px);
  background: #FCFCFC;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 13px 13px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: box-shadow, border-color;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.articles-grid-info-item-date {
  width: 55px;
  min-width: 55px;
  height: 80px;
  background: rgba(115, 44, 102, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 500;
  left: 10px;
  top: 10px;
}
.articles-grid-info-item-date.disabled {
  background: rgba(37, 43, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
}
.articles-grid-info-item-date .day {
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
}
.articles-grid-info-item-date .month {
  font-weight: 300;
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
}
.articles-grid-info-item-date .divider {
  width: 70%;
  height: 1px;
  margin-top: 5px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.articles-grid-info-item-date .time {
  font-weight: 300;
  font-size: 10px;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
}
.articles-grid-info-item-title {
  flex: 0 0 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.articles-grid-info-item-title .title {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
}
.articles-grid-info-item-title .subtitle {
  font-size: 13px;
  color: #3b3b3b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.articles-grid-info-item-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 13px;
  margin-top: 10px;
}
.articles-grid-info-item-location .location-icon {
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  margin-top: 1px;
}
.articles-grid-info-item-location {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #3b3b3b;
}
.articles-grid-divider {
  width: 100%;
  height: 1px;
  background: #E0E4E8;
  margin-top: 10px;
  margin-bottom: 10px;
}
.articles-grid-info-item-event-host {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.articles-grid-info-item-event-host .event-host-image {
  background: #FAFBFB;
  border: 1px solid #E5E5E5;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 15px;
}
.articles-grid-info-item-event-host .event-host-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles-grid-info-item-event-host .event-host-text {
  font-size: 13px;
  color: #000000;
}
.articles-grid-action-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
.articles-grid-action-layer.visible {
  opacity: 1;
}
.articles-grid-action-layer-content {
  width: 100%;
  height: 100%;
  padding: 20px 50px;
  position: absolute;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 555;
}
.articles-grid-action-layer-content .button {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  z-index: 555;
}
.article-grid-image-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  filter: grayscale(0.8);
}
.article-status-labels-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.article-status-label {
  position: relative;
  top: auto;
  right: auto;
  border-radius: 4px;
  color: #fff;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.8;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.articles-grid-item > .article-status-label {
  position: absolute;
  top: 10px;
  right: 10px;
}
.article-status-label.green {
  background: rgba(58, 213, 123, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.article-status-label.yellow {
  background: rgba(244, 167, 2, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.article-status-label.red {
  background: rgba(255, 74, 74, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.article-status-label.violet {
  background: rgba(115, 44, 102, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.article-price-label {
  position: absolute;
  bottom: 55px;
  left: 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(115, 44, 102, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.8;
  z-index: 500;
}
.article-distance-label {
  position: absolute;
  bottom: 55px;
  right: 10px;
  font-size: 11px;
  border-radius: 6px;
  padding: 5px 10px;
  color: #000000;
  background: #FCFCFC;
  border: 1px solid #E5E5E5;
}
.article-distance-label i {
  font-size: 10px;
  margin-right: 5px;
}
.article-details-container {
  margin-top: 55px;
}
.article-details-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.article-details-image {
  width: 250px;
  height: 200px;
  flex: 0 0 1;
  border-radius: 6px;
  overflow: hidden;
}
.article-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-details-description {
  flex: 1 1 0;
}
.article-details-description .description-content.expandable {
  position: relative;
}
.article-details-description .description-content.expandable .description-wrapper {
  position: relative;
  max-height: 289px;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.article-details-description .description-content.expandable .description-wrapper.expanded {
  max-height: none;
}
.article-details-description .description-content.expandable .description-text {
  padding-bottom: 20px;
}
.article-details-description .description-content.expandable .description-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.dark .article-details-description .description-content.expandable .description-fade {
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 50%, #000000 100%);
}
.article-details-description .description-content.expandable.expanded .description-fade {
  opacity: 0;
}
.article-details-description .description-content.expandable .description-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.article-details-description .description-content.expandable .description-divider:hover {
  opacity: 0.8;
}
.article-details-description .description-content.expandable .description-divider:hover .divider-text {
  color: #732C66;
}
.article-details-description .description-content.expandable .description-divider .divider-line {
  flex: 1;
  height: 1px;
  background: #E0E4E8;
}
.article-details-description .description-content.expandable .description-divider .divider-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666666;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.article-details-description .description-content.expandable .description-divider .divider-text i {
  font-size: 12px;
  transition: transform 0.2s ease;
  margin-top: -3px;
}
.article-details-description .description-content.expandable .description-divider .divider-text .divider-text-content {
  letter-spacing: 1.2px;
}
.article-details-description .description-content.expandable.expanded .description-divider .divider-text i {
  transform: rotate(180deg);
}
.article-details-info-container {
  border-radius: 8px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 60px;
}
.article-details-info-item .title {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7;
}
.article-details-info-item .value {
  font-size: 15px;
}
.event-info-modern {
  margin-top: 50px;
}
.event-info-timeline {
  position: relative;
  padding: 0 0 20px 0px;
}
.timeline-line {
  position: absolute;
  left: -43px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #732C66 0%, rgba(115, 44, 102, 0.2) 100%);
  border-radius: 10px;
}
@media screen and (max-width: 1280px) {
  .event-info-timeline {
    padding: 0 0 20px 45px;
  }
  .timeline-line {
    left: 2px;
  }
}
.timeline-block {
  position: relative;
  margin-bottom: 35px;
}
.timeline-block:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -60px;
  top: 0;
  width: 36px;
  height: 36px;
  background: #FCFCFC;
  border: 2px solid #732C66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.timeline-dot i {
  font-size: 14px;
  color: #732C66;
}
.timeline-content {
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  padding: 25px;
  position: relative;
  overflow: visible;
}
.timeline-content::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #FCFCFC transparent transparent;
  z-index: 2;
}
.timeline-content::after {
  content: '';
  position: absolute;
  left: -9px;
  top: 16px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #EBEBEB transparent transparent;
  z-index: 1;
}
.timeline-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.timeline-header h3 {
  display: inline-block;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #2E2C2C;
  border-radius: 4px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.7;
}
.timeline-header h3 i {
  display: none;
}
.timeline-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 50px;
}
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #666666;
  line-height: 1.4;
  min-width: 180px;
  flex: 0 1 auto;
}
.detail-item strong {
  color: #1e1e1e;
  font-weight: 500;
}
.detail-icon {
  width: 24px;
  height: 24px;
  background: rgba(115, 44, 102, 0.08);
  border: 1px solid rgba(115, 44, 102, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-icon i {
  font-size: 12px;
  color: #732C66;
}
.detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail-text strong {
  display: inline;
  margin-right: 6px;
}
.detail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7;
  color: #666666;
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline-action {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #EBEBEB;
  position: relative;
}
.timeline-action .add-to-calendar-btn i {
  margin-right: 8px;
}
.calendar-dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 300px;
  z-index: 9999;
  display: none;
}
.calendar-dropdown .calendar-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #2E2C2C;
  display: flex;
  align-items: center;
  gap: 10px;
}
.calendar-dropdown .calendar-option i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}
.calendar-dropdown .calendar-option:hover {
  background: #F5F5F5;
}
.calendar-dropdown .calendar-option:first-child {
  border-radius: 6px 6px 0 0;
}
.calendar-dropdown .calendar-option:last-child {
  border-radius: 0 0 6px 6px;
}
.calendar-dropdown .calendar-option + .calendar-dropdown .calendar-option {
  border-top: 1px solid #EBEBEB;
}
.location-full-width {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.location-name-large {
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.2;
}
.location-address {
  font-size: 14px;
  color: #666666;
  display: flex;
  align-items: center;
  gap: 8px;
}
.location-address i {
  font-size: 14px;
  color: #732C66;
  flex-shrink: 0;
}
.location-address span {
  line-height: 1.4;
}
.location-map-container {
  width: 100%;
  height: 200px;
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #EBEBEB;
  background: #F5F5F5;
}
.location-map {
  width: 100%;
  height: 100%;
}
.custom-marker {
  cursor: pointer;
  transform: translate(-50%, -100%);
  transition: transform 0.3s ease;
}
.custom-marker:hover {
  transform: translate(-50%, -100%) scale(1.1);
}
.location-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F9FA;
  position: relative;
}
.map-privacy-notice {
  text-align: center;
  padding: 30px 20px;
}
.map-privacy-notice i {
  font-size: 36px;
  color: #732C66;
  margin-bottom: 15px;
  opacity: 0.8;
}
.map-privacy-notice h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #2E2C2C;
}
.map-privacy-notice p {
  font-size: 13px;
  color: #666666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}
.map-privacy-notice .button {
  margin: 0 auto;
}
.map-privacy-notice .privacy-link {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: #732C66;
  text-decoration: none;
}
.map-privacy-notice .privacy-link:hover {
  text-decoration: underline;
}
.open-in-maps-btn i {
  margin-right: 8px;
}
.maps-button {
  align-self: flex-start;
  margin-top: 15px;
}
.client-info-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.client-info-image {
  flex: 0 0 1;
  width: 75px;
  height: 75px;
  border-radius: 6px;
  background: #FAFBFB;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.client-info-details {
  flex: 1 0 0;
  display: flex;
  gap: 40px;
}
.client-info-address {
  flex: 1 1 0;
}
.client-info-privacy {
  min-width: 110px;
}
.tickets-container {
  display: flex;
  flex-direction: row;
  gap: 60px;
  margin-top: 70px;
}
.tickets-grid-divider {
  width: 1px;
  flex: 0 0 1;
  background: #EBEBEB;
}
.tickets-content {
  flex: 1 1 0;
  min-height: 100px;
}
.tickets-content * {
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.tickets-cart {
  flex: 1 1 0;
  min-height: 100px;
}
.tickets-filter-container {
  margin-bottom: 20px;
}
.tickets-filter-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  padding: 12px 15px;
}
.filter-btn {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  outline: none;
  white-space: nowrap;
}
.filter-btn:hover {
  background: #F8F9FA;
  border-color: #732C66;
  color: #732C66;
}
.filter-btn.active {
  background: #732C66;
  border-color: #732C66;
  color: #FFFFFF;
}
.filter-btn i {
  font-size: 13px;
}
.filter-divider {
  width: 1px;
  height: 25px;
  background: #E5E5E5;
  margin: 0 5px;
}
.filter-category {
  position: relative;
}
.category-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.filter-btn.filter-category:hover {
  border-color: var(--category-color);
  background: #F8F9FA;
}
.filter-btn.filter-category.active {
  background: var(--category-color);
  border-color: var(--category-color);
  color: #FFFFFF;
}
.no-tickets-message {
  padding: 40px 20px;
  text-align: center;
  color: #999999;
  font-size: 16px;
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  margin-top: 20px;
}
.tickets-show-more-container {
  text-align: center;
  margin-top: 20px;
}
.tickets-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  outline: none;
}
.tickets-show-more-btn i {
  font-size: 12px;
  margin-left: 5px;
  transition: transform 0.2s ease;
}
.tickets-show-more-btn.expanded i {
  transform: rotate(180deg);
}
.tickets-list-item-container.hidden-by-limit {
  display: none !important;
}
.tickets-list {
  margin-top: 0px;
}
.tickets-list-item-container {
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
}
.tickets-list-item-container:last-child {
  margin-bottom: 0;
}
.tickets-list-item-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 4px;
  background: #EBEBEB;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.tickets-list-item {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.tickets-list-item-details {
  display: flex;
  align-items: center;
  gap: 50px;
}
.tickets-list-item .title {
  flex: 1 0 0;
}
.tickets-list-item .title .title-name {
  font-weight: 600;
}
.tickets-list-item .title .title-name .article-number {
  display: inline-block;
}
.tickets-list-item .title .title-type {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5;
  background: #323232;
  border: 1px solid #3f3f3f;
  color: #fff;
  border-radius: 5px;
  margin-top: 5px;
  padding: 5px 10px;
  min-height: 26px;
}
.tickets-list-item .title .title-status {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5;
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  color: #666666;
  border-radius: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.tickets-list-item .title .title-status.yellow {
  background: #F4A702;
  border: 1px solid #F4A702;
  color: #fff;
}
.tickets-list-item .title .title-status.red {
  background: #FF4A4A;
  border: 1px solid #FF4A4A;
  color: #fff;
}
.ticket-item-description-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #EBEBEB;
}
.ticket-item-description-btn {
  font-size: 11px;
  font-weight: 600;
  transition: color 0.2s;
}
.ticket-item-description-btn i {
  display: inline-block;
  width: 18px;
}
.ticket-item-description-btn:hover {
  cursor: pointer;
  color: #732c66;
}
.ticket-item-description-btn span {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.7;
}
.ticket-item-description {
  margin-top: 10px;
  display: none;
}
.ticket-item-description .title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2;
}
.ticket-item-description .description {
  line-height: normal;
  font-size: 14px;
}
.tickets-list-item .price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.tickets-list-item .price-single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
.tickets-list-item .price-total {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
.tickets-list-item .amount {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.tickets-list-item .amount .amount-value {
  display: block;
  line-height: 0.5 !important;
  padding-top: 2px;
  height: 30px;
  min-width: 50px;
  font-weight: 600;
  background: #F8F9FA;
  color: #666666;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tickets-list-item .amount .amount-value.disabled {
  border-radius: 8px;
  border: 1px solid #EBEBEB;
}
.tickets-list-item .amount .amount-btn {
  height: 30px;
  width: 32px;
  background: #EBEBEB;
  color: #696969;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tickets-list-item .amount .amount-btn.left-btn {
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.tickets-list-item .amount .amount-btn.right-btn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.tickets-list-item .amount .amount-add {
  height: 30px;
  width: 32px;
  font-size: 11px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  background: #EBEBEB;
  color: #696969;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s, color 0.2s;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.tickets-list-item .amount .amount-remove {
  height: 30px;
  width: 32px;
  font-size: 11px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  background: #EBEBEB;
  color: #696969;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s, color 0.2s;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.tickets-list-item .amount .amount-add:not(.disabled):hover {
  background: #442B85;
  color: #fff;
}
.tickets-list-item .amount .amount-remove:not(.disabled):hover {
  background: #FF4A4A;
  color: #fff;
}
.tickets-list-item .amount .amount-add:not(.disabled):hover {
  cursor: pointer;
}
.tickets-list-item .amount .amount-remove:not(.disabled):hover {
  cursor: pointer;
}
.tickets-list-item .amount .amount-btn.disabled,
.tickets-list-item .amount .amount-add.disabled .tickets-list-item .amount .amount-remove.disabled {
  opacity: 0;
}
.ticket-item-seating-hint {
  display: inline-block;
  background: #F8F9FA;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  padding: 8px 12px 7px 12px;
  color: #333333;
  margin-top: 20px;
}
.ticket-item-seating-hint .seating-hint-text {
  font-size: 11px;
  font-weight: 400;
}
.tickets-list-item .amount .amount-value.clickable {
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  padding: 0 8px;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.tickets-list-item .amount .amount-value.clickable i {
  color: #999999;
  font-size: 10px;
  margin-left: 5px;
  transition: color 0.2s;
}
.tickets-list-item .amount .amount-value.clickable span {
  line-height: normal;
}
.tickets-list-item .amount .amount-value.clickable:hover {
  background: #F6F6F6;
}
.tickets-list-item .amount .amount-value.clickable:hover i {
  color: #666666;
}
.amount-dropdown-container {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  z-index: 500;
  display: none;
  margin-bottom: 15px;
}
.amount-dropdown-container.show {
  display: block;
}
.amount-dropdown {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.03);
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}
.amount-dropdown::-webkit-scrollbar {
  display: none;
  /* WebKit */
}
.amount-dropdown-arrow {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #EBEBEB;
  z-index: 1001;
  pointer-events: none;
}
.amount-dropdown-arrow::before {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #EBEBEB;
  z-index: 1000;
}
.amount-dropdown.show {
  display: block;
}
.amount-dropdown-item {
  font-weight: 500;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 1px solid #F6F6F6;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.amount-dropdown-item:last-child {
  border-bottom: none;
}
.amount-dropdown-item:hover {
  background: #FCFCFC;
}
.amount-dropdown-item.selected {
  background: #732C66;
  color: #FFFFFF;
}
.tickets-list-item .amount {
  position: relative;
}
.checkout-timer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #442B85;
  color: #fff;
  letter-spacing: 0.8;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 15px;
  padding-bottom: 6px;
  border-radius: 6px;
  z-index: 888;
  display: none;
  transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkout-timer.mobile-cart-visible {
  bottom: 65px;
}
@media screen and (max-width: 767px) {
  .checkout-timer.mobile-cart-visible {
    bottom: 75px;
  }
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .checkout-timer.mobile-cart-visible {
    bottom: calc(65px + env(safe-area-inset-bottom));
  }
  @media screen and (max-width: 767px) {
    .checkout-timer.mobile-cart-visible {
      bottom: calc(75px + env(safe-area-inset-bottom));
    }
  }
}
.checkout-timer-info {
  display: none;
}
.checkout-timer-info.visible {
  display: block;
}
.checkout-timer.active {
  display: block;
}
.cart-total-price-container {
  display: flex;
}
.cart-total-price-container .container-border-left {
  background: #38D57A;
  position: relative;
  margin-right: 15px;
  border-radius: 2px;
  width: 4px;
}
.list-gapped {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.checkout-container {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-top: 40px;
}
.checkout-v-divider-gap {
  flex: 0 0 1;
  width: 1px;
  background: #EBEBEB;
}
.checkout-invoice-person-container {
  flex: 1 0 0;
}
.checkout-order-details-container {
  flex: 1 0 0;
}
.payment-method-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  background: #FCFCFC;
  border: 1px solid #efefef;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  align-items: center;
  color: #666666;
  transition: background 0.2s, border 0.2s, box-shadow 0.2s;
}
.payment-method-item:not(.active):hover {
  cursor: pointer;
  border: 1px solid rgba(88, 54, 172, 0.4);
  box-shadow: 0px 0px 5px 0px rgba(69, 43, 133, 0.1);
}
.payment-method-item.active {
  background: #442B85;
  border: 1px solid #5836ac;
  box-shadow: 0px 0px 5px 0px rgba(69, 43, 133, 0.1);
  color: #fff;
}
.payment-method-image {
  height: 40px;
  width: 60px;
  flex: 0 0 1;
  border-radius: 5px;
  overflow: hidden;
}
.payment-method-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 0%;
}
.payment-method-title {
  flex: 1 0 0;
}
.payment-method-title .title {
  font-weight: 400;
}
.payment-method-title .subtitle {
  font-weight: 200;
  opacity: 0.7;
  font-size: 13px;
}
.checkout-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.overlay-processing-container {
  background: rgba(252, 252, 252, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.overlay-processing-container.visible {
  display: flex;
}
.overlay-processing-container .image {
  width: 100px;
  height: 100px;
}
.overlay-processing-container .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.overlay-processing-container .text {
  font-size: 17px;
  color: #000;
}
.sandbox-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #efbf10;
  box-shadow: 0px 0px 30px 0px rgba(239, 191, 16, 0.4);
  color: #5b4802;
  letter-spacing: 0.8;
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  padding: 8px 15px;
  padding-bottom: 6px;
  border-radius: 6px;
  z-index: 888;
  display: block;
}
.sandbox-label {
  margin-top: 10px;
  background: #efbf10;
  box-shadow: 0px 0px 15px 0px rgba(239, 191, 16, 0.2);
  color: #5b4802;
  letter-spacing: 0.8;
  font-weight: 500;
  font-size: 9px;
  text-transform: uppercase;
  padding: 6px 8px;
  padding-bottom: 4px;
  border-radius: 6px;
  display: inline-block;
}
.placeholder-content-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.placeholder-info-title {
  font-family: "Overpass", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 2;
  position: relative;
  padding-bottom: 10px;
}
#spotlight {
  position: fixed;
  opacity: 1;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 666;
  opacity: 0.8;
}
.disabled:hover {
  cursor: default;
}
.chart-container {
  margin-bottom: 50px;
}
#seats-booking-chart {
  height: 700px;
}
.chart-content-frame {
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  box-sizing: border-box;
}
.chart-content-frame iframe {
  border-radius: 8px;
}
.tippy-box[data-theme~="custom"] {
  background: #4b1970;
  background: linear-gradient(90deg, #4b1970 0%, #471f78 100%);
  color: #ede5f5;
  border: 1px solid rgba(255, 255, 255, 0.01);
  border-radius: 5px;
  font-weight: 400;
}
.tippy-box[data-theme~="custom"] .tippy-arrow {
  color: #4b1970;
}
@media screen and (max-width: 1280px) {
  main .content-container {
    width: 100%;
    padding: 50px 30px;
  }
  .tickets-container {
    display: block;
    gap: 0;
  }
  .tickets-grid-divider {
    display: none;
  }
  .tickets-cart {
    flex: 1 1 0;
    min-height: 100px;
    margin-top: 70px;
  }
}
@media screen and (max-width: 1100px) {
  .articles-grid-item-container {
    flex: calc(50%);
    max-width: calc(50%);
    min-width: 350px;
    height: 320px;
    box-sizing: border-box;
    padding: 15px;
    position: relative;
    margin-bottom: 120px;
    color: #000;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 110px;
  }
  .event-info-modern {
    margin-top: 35px;
  }
  .event-info-timeline {
    padding-left: 45px;
  }
  .timeline-line {
    left: 14px;
  }
  .timeline-block {
    margin-bottom: 30px;
  }
  .timeline-dot {
    left: -45px;
    width: 32px;
    height: 32px;
  }
  .timeline-dot i {
    font-size: 14px;
  }
  .timeline-content {
    padding: 20px;
  }
  .timeline-header {
    margin-bottom: 15px;
  }
  .timeline-header h3 {
    font-size: 12px;
    padding: 6px 8px 4px 8px;
  }
  .timeline-details {
    flex-direction: column;
    gap: 14px;
  }
  .detail-item {
    font-size: 13px;
    gap: 10px;
    min-width: auto;
  }
  .location-full-width {
    gap: 5px;
  }
  .maps-button {
    width: 100%;
    margin-top: 20px;
  }
  .location-map-container {
    height: 180px;
    margin-top: 12px;
  }
  .map-privacy-notice {
    padding: 20px 15px;
  }
  .map-privacy-notice i {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .map-privacy-notice h4 {
    font-size: 15px;
  }
  .map-privacy-notice p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .map-privacy-notice .button {
    padding: 8px 16px;
  }
  .detail-icon {
    width: 24px;
    height: 24px;
  }
  .detail-icon i {
    font-size: 11px;
  }
  .location-address {
    font-size: 13px;
  }
  .location-address i {
    font-size: 14px;
  }
  .address-parts {
    font-size: 13px;
  }
  .articles-container {
    width: 100%;
    display: flex;
    margin-left: 0px;
    margin-top: 30px;
  }
  .articles-grid-item-container {
    flex: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 350px;
    padding: 15px 0px;
    margin-bottom: 130px;
  }
  .article-grid-image {
    height: auto;
  }
  .article-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .article-grid-image.details img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  main .content-container {
    padding: 50px 20px;
  }
  .article-details-content {
    display: block;
    gap: 0px;
  }
  .article-details-container {
    margin-top: 35px;
  }
  .article-details-image {
    width: calc(100% + 50px);
    margin-left: -25px;
    border-radius: 0px;
    height: 350px;
  }
  .article-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .article-details-description {
    margin-top: 35px;
  }
  .tickets-list-item {
    display: block;
    gap: 0;
  }
  .tickets-list-item-details {
    margin-top: 20px;
  }
  .tickets-list-item .price {
    flex: 1 0 0;
    display: block;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
  }
  .tickets-list-item .amount {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .tickets-list-item .amount .amount-value {
    height: 32px;
  }
  .tickets-list-item .amount .amount-btn {
    height: 32px;
    width: 32px;
  }
  .tickets-list-item .amount .amount-add {
    height: 32px;
    width: 32px;
  }
  .tickets-list-item .amount .amount-remove {
    height: 32px;
    width: 32px;
  }
  .articles-grid-item-container.details {
    flex: 100%;
    max-width: 100%;
    min-width: 100%;
    height: auto;
  }
  .checkout-container {
    display: block;
  }
  .checkout-v-divider-gap {
    display: none;
  }
  .checkout-payment-container {
    margin-top: 50px;
  }
  .checkout-order-container {
    margin-top: 50px;
  }
  .tickets-list-item-details {
    justify-content: end;
    align-items: center;
  }
  .tickets-list-item-container {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
  }
  .client-info-details {
    display: block;
  }
  .client-info-address {
    margin-bottom: 15px;
  }
  .tickets-filter-menu {
    padding: 10px 12px;
    gap: 8px;
  }
  .filter-btn {
    font-size: 13px;
  }
  .filter-btn i {
    font-size: 12px;
  }
  .filter-divider {
    height: 20px;
    margin: 0 3px;
  }
  .category-dot {
    width: 8px;
    height: 8px;
  }
}
.package-indicator {
  background: #732c66;
  border: 1px solid #732c66;
  color: #fff;
}
.package-indicator i {
  margin-right: 3px;
}
.package-info-container {
  margin-top: 20px;
  padding: 15px;
  background: #F8F9FA;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  font-size: 14px;
}
.package-info-container .package-info-text {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.package-info-container .package-sub-articles {
  color: #666;
  line-height: 1.6;
  padding-left: 20px;
}
.package-info-container .package-sub-articles .package-sub-price {
  color: #999;
  font-size: 0.9em;
  margin-left: 5px;
}
.package-info-container .package-total-info {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #E5E5E5;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}
/* Ticket Type Modal Styles */
.ticket-type-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ticket-type-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.ticket-type-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 450px;
  max-height: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.ticket-type-modal.show {
  transform: translateY(0);
  opacity: 1;
}
.ticket-type-package-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #EBEBEB;
}
.ticket-type-package-info .package-indicator {
  display: inline-block;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5;
  background: #732c66;
  border: 1px solid #732c66;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 8px;
}
.ticket-type-package-info .package-indicator i {
  margin-right: 3px;
}
.ticket-type-package-info .package-info-container {
  margin: 0;
  padding: 15px;
  background: #F8F9FA;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  font-size: 14px;
}
.ticket-type-package-info .package-info-container .package-info-text {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}
.ticket-type-package-info .package-info-container .package-info-text i {
  margin-right: 10px;
}
.ticket-type-package-info .package-info-container .package-sub-articles {
  color: #666;
  line-height: 1.6;
  padding-left: 20px;
}
.ticket-type-package-info .package-info-container .package-sub-articles .package-sub-price {
  color: #999;
  font-size: 0.9em;
  margin-left: 5px;
}
.ticket-type-package-info .package-info-container .package-total-info {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #E5E5E5;
  font-size: 0.9em;
  color: #666;
  font-style: italic;
}
.ticket-type-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-bottom: 1px solid #EBEBEB;
  flex-shrink: 0;
}
.ticket-type-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.ticket-type-modal-close {
  background: #f7f7f7;
  border: 1px solid transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6269;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ticket-type-modal-close:hover {
  background: #f7f7f7;
  border: 1px solid #E1E4E8;
  color: #24292E;
}
.ticket-type-modal-close i {
  font-size: 16px;
}
.ticket-type-modal-content {
  padding: 20px 24px 24px 24px;
  overflow-y: auto;
  flex: 1;
}
.ticket-seat-info {
  padding: 0 0 16px 0;
  border-bottom: 1px solid #E5E5E5;
}
.ticket-seat-info-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 8px;
}
.ticket-type-selection-hint {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  border-radius: 6px;
  line-height: 1.4;
}
.ticket-type-selection-hint i {
  margin-right: 6px;
}
.ticket-seat-info-details {
  display: flex;
  gap: 24px;
}
.ticket-seat-info-item {
  font-size: 14px;
  color: #333;
}
.ticket-seat-info-item .label {
  font-weight: 500;
  margin-right: 6px;
}
.ticket-type-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ticket-type-option {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ticket-type-option:hover:not(.disabled) {
  background: #FCFCFC;
  border-color: #432B85;
  box-shadow: 0px 0px 5px 0px rgba(69, 43, 133, 0.1);
}
.ticket-type-option.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background: #F8F9FA;
}
.ticket-type-option.disabled .ticket-type-price {
  background: #999;
}
.ticket-type-option-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.ticket-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.ticket-type-header .members-only-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #E8F5E9;
  color: #1B5E20;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: auto;
  margin-right: 10px;
}
.ticket-type-header .members-only-badge i {
  font-size: 11px;
}
.ticket-type-header .members-only-badge span {
  font-size: 11px;
}
.ticket-type-name {
  font-weight: 500;
  color: #333;
  font-size: 15px;
}
.ticket-type-price {
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: #38D57A;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
}
.ticket-type-description-container {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #EBEBEB;
}
.ticket-type-description-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  margin-bottom: 6px;
}
.ticket-type-description {
  font-size: 13px;
  color: #666;
  line-height: 1.2;
}
.ticket-type-disabled-reason {
  margin-top: 15px;
  padding: 6px 10px;
  background: #FFF1B8;
  border: 1px solid #FFE483;
  border-radius: 4px;
  color: #755802;
  font-size: 12px;
  line-height: 1.4;
}
.ticket-type-disabled-reason i {
  margin-right: 6px;
}
@media screen and (max-width: 480px) {
  .ticket-type-modal {
    max-width: none;
  }
  .ticket-type-modal-header h3 {
    font-size: 16px;
  }
  .ticket-type-modal-content {
    padding: 16px 20px 20px 20px;
  }
  .ticket-type-option {
    padding: 12px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .articles-grid-item-container:not(.details):hover {
    transform: none;
  }
  .skeleton-loader:hover {
    transform: none;
  }
  .skeleton-loader:hover .articles-grid-item {
    box-shadow: none;
  }
  .skeleton-loader:hover .articles-grid-info-item {
    box-shadow: none;
    border-color: #efefef;
  }
  .articles-grid-item-container.promo-card:hover .articles-grid-item {
    box-shadow: none;
  }
}
@supports (-webkit-appearance: none) {
  .articles-grid-item-container {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .articles-grid-item-container:hover {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  .articles-grid-item-container:hover .article-grid-image img {
    -webkit-transform: scale3d(1.05, 1.05, 1) translate3d(0, 0, 0);
    transform: scale3d(1.05, 1.05, 1) translate3d(0, 0, 0);
  }
  .article-grid-image img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .articles-grid-item-container,
  .articles-grid-item,
  .articles-grid-info-item,
  .article-grid-image img {
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  .articles-container {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .promo-card .promo-gradient {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .promo-card .promo-confetti-canvas {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimizeSpeed;
  }
}
.ticket-item-limits {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #EBEBEB;
}
.ticket-item-limit-info {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: #666;
  flex-wrap: wrap;
}
.limit-info,
.inventory-info,
.min-order-info {
  display: flex;
  align-items: center;
}
.limit-info i,
.inventory-info i,
.min-order-info i {
  margin-right: 6px;
  font-size: 13px;
}
.min-order-info {
  background: rgba(255, 159, 67, 0.06);
  border: 1px solid rgba(255, 159, 67, 0.15);
  color: #ff9f43;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.min-order-info i {
  color: #ff9f43;
}
.ticket-type-modal .ticket-item-limits {
  margin-top: 15px;
  padding-top: 15px;
}
.ticket-type-modal .min-order-info {
  margin-bottom: 8px;
}
.payment-notification-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}
.payment-notification-container {
  width: 1100px;
  padding: 0px;
}
@media screen and (max-width: 1280px) {
  .payment-notification-container {
    width: 100%;
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .payment-notification-container {
    padding: 0 25px;
  }
}
.mobile-fixed-cart {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(235, 235, 235, 0.8);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.mobile-fixed-cart.visible {
  transform: translateY(0);
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-fixed-cart {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
.mobile-cart-content {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.mobile-cart-total-container {
  flex: 1;
  display: flex;
  align-items: center;
}
.mobile-cart-total-container .container-border-left {
  background: #38D57A;
  position: relative;
  margin-right: 15px;
  border-radius: 2px;
  width: 4px;
  height: 35px;
  align-self: center;
}
.mobile-cart-total-container .text-large {
  font-size: 14px;
  margin-bottom: 2px;
  line-height: 1.2;
}
.mobile-cart-total-container .text-large strong {
  font-weight: 600;
}
.mobile-cart-total-container .text-tiny {
  font-size: 10px;
  color: #666666;
  line-height: 1.2;
}
.mobile-checkout-btn {
  flex-shrink: 0;
  min-width: auto !important;
}
@media screen and (max-width: 767px) {
  .mobile-fixed-cart {
    display: block;
  }
  .tickets-container {
    padding-bottom: 80px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 380px) {
  .mobile-cart-content {
    padding: 8px 12px;
    gap: 12px;
  }
  .mobile-cart-total-container .text-large {
    font-size: 14px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  .ticket-type-description-container {
    border-width: 0.5px;
  }
  .ticket-seat-info {
    border-width: 0.5px;
  }
  .articles-grid-info-item {
    border-width: 0.5px;
  }
  .articles-grid-divider {
    height: 0.5px;
  }
  .timeline-dot {
    border-width: 1px !important;
  }
}
.tickets-list-item-container {
  position: relative;
}
.tickets-list-item-container .members-only-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 6px 12px;
  background: #E8F5E9;
  color: #1B5E20;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  text-transform: uppercase;
  border-bottom-left-radius: 8px;
}
.tickets-list-item-container .members-only-badge i {
  font-size: 10px;
}
.tickets-list-item-container .members-only-badge span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.article-status-label.members-only-label i {
  font-size: 9px;
  margin-right: 3px;
}
.filter-divider {
  width: 1px;
  height: 25px;
  background: #E5E5E5;
  margin: 0 5px;
}
/* Min Order Styles */
.ticket-item-min-order {
  margin-top: 8px;
}
.ticket-item-min-order .min-order-info {
  display: inline-flex;
  align-items: center;
  background: rgba(230, 126, 34, 0.05);
  border: 1px solid rgba(230, 126, 34, 0.15);
  border-radius: 6px;
  padding: 4px 10px;
  color: #e67e22;
  font-weight: 500;
  font-size: 12px;
}
.ticket-item-min-order .min-order-info i {
  color: #e67e22;
  margin-right: 5px;
  font-size: 11px;
}
.ticket-item-min-order .min-order-info span {
  line-height: 1.3;
}
/* Highlight minimum order requirement */
.tickets-list-item-container[data-min-order="true"] .ticket-item-min-order .min-order-info {
  animation: none;
}
.events-search-container {
  margin-top: 0px;
  margin-bottom: 40px;
}
.events-search-bar {
  height: 60px;
  background-color: #fdfdfd;
  border: 1px solid #E1E4E8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-field-container {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  padding-right: 5px;
  gap: 12px;
}
.search-field-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.search-field-label {
  font-size: 10px;
  font-weight: 600;
  color: #732C66;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: -9px;
}
.search-field-input-container {
  display: flex;
  align-items: center;
  width: 100%;
}
.search-field-icon {
  color: #6A737D;
  font-size: 16px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.search-field-container:focus-within .search-field-icon {
  color: #24292E;
}
.event-search-input {
  width: 100%;
  font-family: "Overpass", sans-serif;
  line-height: 1.4;
  font-size: 15px;
  color: #24292E;
  background-color: transparent;
  border: none;
  font-weight: 400;
  padding: 0;
  padding-right: 30px;
  letter-spacing: 0.5px;
  -moz-appearance: none;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.4s, background-image 0.4s, color 0.4s;
  position: relative;
}
.event-search-input::placeholder {
  color: #6A737D;
}
.search-reset-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6A737D;
  cursor: pointer;
  padding: 4px;
  display: none;
  transition: color 0.2s;
}
.search-reset-btn:hover {
  color: #24292E;
}
.search-field-wrapper:has(input:not(:placeholder-shown)) .search-reset-btn {
  display: block;
}
.search-divider {
  width: 1px;
  height: 30px;
  background-color: #D1D5DA;
  margin: 0 10px;
}
.search-field-button-container {
  flex: 0 0 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 55px;
  min-width: 55px;
  padding: 10px 5px;
}
.search-field-button-container:last-child {
  margin-right: 5px;
}
.search-field-button {
  display: block;
  background: #f0f0f0;
  border: none;
  color: #24292E;
  height: 100%;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.search-field-button:hover {
  background: #e3e3e3;
}
.search-field-button.active {
  background: #732C66;
  color: #fff;
}
.search-field-button.active:hover {
  background: #8B3B7A;
}
.search-field-button.loading {
  color: #fff;
  pointer-events: none;
}
.search-field-button.loading i {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.filter-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.filter-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.filter-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.filter-modal.show {
  transform: translateY(0);
  opacity: 1;
}
.filter-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-bottom: 1px solid #E1E4E8;
  flex-shrink: 0;
}
.filter-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #24292E;
}
.filter-modal-close {
  background: #f7f7f7;
  border: 1px solid transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6269;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-modal-close:hover {
  background: #f7f7f7;
  border: 1px solid #E1E4E8;
  color: #24292E;
}
.filter-modal-close i {
  font-size: 16px;
}
.filter-modal-content {
  padding: 24px;
  padding-bottom: 24px;
  flex: 0 1 auto;
  overflow-y: visible;
  min-height: 0;
}
.filter-modal-content.scrollable {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(85vh - 140px);
}
.filter-section {
  margin-bottom: 24px;
  position: relative;
}
.filter-section:last-child {
  margin-bottom: 0;
}
.filter-section .ui.dropdown .menu {
  position: absolute !important;
  z-index: 11 !important;
}
.filter-section-title {
  font-size: 14px;
  font-weight: 600;
  color: #24292E;
  margin-bottom: 12px;
}
.filter-checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
.filter-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid #E1E4E8;
  background: #F6F8FA;
  flex-shrink: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.filter-modal-actions .button {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 480px) {
  .filter-modal {
    max-width: none;
    max-height: calc(100vh - 20px);
  }
  .filter-modal-content {
    padding: 20px;
    padding-bottom: 35px;
  }
  .filter-modal-content.scrollable {
    max-height: calc(100vh - 20px - 120px);
  }
  .filter-modal-header h3 {
    font-size: 16px;
  }
  .filter-section-title {
    font-size: 15px;
  }
  .filter-modal-actions {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
  }
  .filter-modal-actions .button {
    width: 100%;
  }
}
.payment-methods-section {
  margin: 60px 0;
}
.payment-methods-container {
  max-width: 800px;
  margin: 0 auto;
}
.payment-methods-wrapper {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 25px 30px;
  position: relative;
  overflow: hidden;
}
.payment-methods-wrapper::before {
  content: '';
  position: absolute;
  width: 80%;
  top: 0;
  left: calc(50% - 40%);
  right: 0;
  height: 3px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #732C66;
}
@keyframes payment-gradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
}
.payment-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  justify-content: center;
}
.payment-method-logo {
  flex: 0 0 auto;
  height: 28px;
  opacity: 0.85;
  transition: all 0.3s ease;
  filter: none;
}
.payment-method-logo:hover {
  opacity: 1;
  transform: translateY(0px) scale(1.1);
}
.payment-method-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}
.payment-notification-wrapper .payment-method-logo img {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.payment-notification-wrapper .payment-method-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.payment-methods-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  font-size: 13px;
}
.payment-security-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #586069;
}
.payment-security-badge i {
  font-size: 14px;
  color: #732C66;
}
.payment-divider {
  color: #D1D5DA;
}
@media screen and (max-width: 767px) {
  .payment-methods-wrapper {
    padding: 20px 15px;
  }
  .payment-methods-grid {
    gap: 15px;
  }
  .payment-method-logo {
    height: 28px;
  }
  .payment-method-logo:hover {
    transform: translateY(-2px) scale(1.05);
  }
  .payment-methods-section {
    margin: 20px 0;
  }
  .payment-methods-footer {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
  }
  .payment-divider {
    display: none;
  }
}
.events-loading-indicator {
  text-align: center;
  padding: 60px 20px;
}
.events-loading-indicator .loading-text {
  margin-top: 20px;
  font-size: 14px;
  color: #6A737D;
}
.events-loading-indicator {
  padding: 0;
}
.events-loading-indicator #skeletonContainer {
  width: calc(100% + 30px);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-top: 0px;
}
@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.skeleton-shimmer {
  background: linear-gradient(90deg, #f0f0f0 0%, #f8f8f8 50%, #f0f0f0 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
}
.skeleton-loader {
  pointer-events: none;
}
.skeleton-loader .article-grid-image.skeleton-shimmer {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}
.skeleton-loader .skeleton-title {
  width: 70%;
  height: 16px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.skeleton-loader .skeleton-subtitle {
  width: 50%;
  height: 14px;
  border-radius: 3px;
}
.skeleton-loader .skeleton-location {
  width: 60%;
  height: 14px;
  border-radius: 3px;
}
.skeleton-loader .skeleton-button {
  flex: 1;
  height: 38px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .events-loading-indicator #skeletonContainer {
    width: 100%;
    margin-left: 0px;
  }
}
.events-no-results {
  padding: 0;
}
.no-results-container {
  text-align: center;
  padding: 80px 20px 60px 20px;
  background: linear-gradient(to bottom right, #ffffff, #ffffff);
  border: 1px solid #f5eff6;
  border-radius: 12px;
  margin: 40px 0;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}
.no-results-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(204, 151, 218, 0.1), transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
}
.no-results-container .no-results-icon {
  font-size: 72px;
  color: #732C66;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.no-results-container .no-results-icon i {
  opacity: 0.8;
}
.no-results-container .no-results-title {
  font-size: 24px;
  font-weight: 300;
  color: #24292E;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.no-results-container .no-results-text {
  font-size: 16px;
  color: #586069;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.no-results-container .no-results-actions {
  position: relative;
  z-index: 1;
}
.no-results-container .no-results-actions .button {
  min-width: 200px;
}
.suggested-events-section {
  margin-top: 60px;
}
.suggested-events-section .suggested-events-divider {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.suggested-events-section .suggested-events-divider .divider-line {
  flex: 1;
  height: 1px;
  background: #E1E4E8;
}
.suggested-events-section .suggested-events-divider .divider-text {
  padding: 0 30px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #586069;
  white-space: nowrap;
}
.suggested-events-section .suggested-events-loading #suggestedSkeletonContainer {
  width: calc(100% + 30px);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -15px;
}
@media screen and (max-width: 767px) {
  .no-results-container {
    padding: 60px 20px 40px 20px;
    margin: 20px 0;
    margin-top: 0px;
  }
  .no-results-container .no-results-icon {
    font-size: 56px;
    margin-bottom: 20px;
  }
  .no-results-container .no-results-title {
    font-size: 18px;
  }
  .no-results-container .no-results-text {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .suggested-events-section {
    margin-top: 40px;
  }
  .suggested-events-section .suggested-events-divider {
    margin-bottom: 30px;
  }
  .suggested-events-section .suggested-events-divider .divider-text {
    padding: 0 15px;
    font-size: 11px;
  }
  .suggested-events-section .suggested-events-loading #suggestedSkeletonContainer {
    width: 100%;
    margin-left: 0;
  }
}
.articles-grid-info-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.articles-grid-info-actions-society {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  overflow: hidden;
  background: #FAFBFB;
  flex-shrink: 0;
}
.articles-grid-info-actions-society img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles-grid-info-actions-item {
  flex: 1;
}
.load-more-container {
  text-align: center;
  border-top: 1px solid #edf1f3;
  padding: 50px 20px 20px;
  margin-top: 40px;
}
.load-more-container .load-more-btn {
  min-width: 250px;
  position: relative;
}
.load-more-container .load-more-btn .btn-text {
  display: inline-block;
}
.load-more-container .load-more-btn .btn-text i {
  margin-right: 8px;
}
.load-more-container .load-more-btn .btn-text .fa-arrow-down {
  margin-right: 10px;
}
.load-more-container .load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.promo-confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
}
.promo-card .articles-grid-item {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.promo-card:hover .articles-grid-item {
  border-color: rgba(115, 44, 102, 0.4);
}
.promo-gradient {
  background: linear-gradient(135deg, #732C66 0%, #442B85 100%);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}
.promo-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none;
  will-change: transform;
  transform: rotate(45deg) translateZ(0);
  -webkit-transform: rotate(45deg) translateZ(0);
}
.promo-content {
  position: relative;
  padding: 40px 30px;
  color: #fff;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.promo-icon {
  font-size: 35px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.promo-icon i {
  display: block;
  animation: float 3s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(-10px) translateZ(0);
    -webkit-transform: translateY(-10px) translateZ(0);
  }
}
.promo-text h3 {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 10px 0;
  color: #fff;
}
.promo-text p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}
.promo-info .articles-grid-divider {
  margin: 20px 0;
  margin-top: 22px;
}
.promo-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
  padding-top: 5px;
  padding-right: 10px;
}
.promo-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #24292E;
}
.promo-feature i {
  font-size: 15px;
  margin-top: 2px;
  color: #38D57A;
}
@media screen and (max-width: 767px) {
  .promo-content {
    padding: 30px 20px;
  }
  .promo-icon {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .promo-text h3 {
    font-size: 18px;
  }
  .promo-text p {
    font-size: 13px;
  }
}
.search-mobile-divider {
  display: none;
}
.search-mobile-vertical-divider {
  display: none;
}
.search-row-wrapper {
  display: contents;
}
@media screen and (max-width: 767px) {
  .events-search-container {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .events-search-bar {
    height: auto;
    flex-direction: column;
    padding: 15px;
    gap: 0;
  }
  .search-mobile-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #D1D5DA;
    margin: 15px 0;
  }
  .search-mobile-vertical-divider {
    display: block;
    width: 1px;
    height: 25px;
    background-color: #D1D5DA;
    margin: 0 4px;
    flex-shrink: 0;
  }
  .search-field-container:first-of-type {
    width: 100%;
    padding: 0;
  }
  .events-search-bar > .search-divider {
    display: none;
  }
  .search-row-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 6px;
  }
  .search-row-wrapper .search-field-container {
    flex: 1;
    padding: 0;
  }
  .search-row-wrapper .search-divider {
    display: none;
  }
  .search-field-button-container {
    flex: 0 0 auto;
    width: 45px;
    min-width: 45px;
    padding: 0;
  }
  .search-field-button-container:last-child {
    margin-left: -5px;
    margin-right: -4px;
  }
  .search-field-button {
    height: 38px;
    width: 38px;
  }
  .event-search-input {
    padding-right: 25px;
  }
  .search-field-label {
    margin-bottom: -5px;
  }
  .search-field-wrapper {
    gap: 4px;
  }
  .search-reset-btn {
    padding: 2px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  .search-mobile-divider {
    height: 0.5px;
  }
  .search-mobile-vertical-divider {
    width: 0.5px;
  }
  .events-search-bar {
    border-width: 0.5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .promo-confetti-canvas {
    display: none !important;
  }
  .promo-icon i {
    animation: none !important;
  }
}
@supports (-webkit-appearance: none) {
  .promo-confetti-canvas {
    isolation: isolate;
    contain: layout style paint;
  }
}
.portal-order-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.portal-order-event-wrapper {
  width: 100%;
  display: flex;
}
.portal-order-event-container {
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 20px;
  flex: 1;
}
.portal-container-title {
  display: inline-block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.7;
  background: #2E2C2C;
  border-radius: 4px;
  color: #fff;
}
.event-info-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding: 0px 10px;
}
.event-info-item-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7;
}
.event-description-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.event-description-toggle span {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.7px;
}
.event-description-toggle i {
  transition: transform 0.3s ease;
}
.event-description-toggle:hover {
  cursor: pointer;
}
.event-description-toggle.active i {
  transform: rotate(180deg);
}
.event-description-content {
  margin-top: 15px;
  border-radius: 6px;
}
.info-toggle-btn {
  margin-top: 10px;
}
.info-section-container {
  margin-top: 20px;
  max-height: 0;
  overflow-y: hidden;
  overflow-x: visible;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(-10px);
}
.info-section-container.show {
  max-height: 1200px;
  opacity: 1;
  transform: translateY(0);
  overflow: visible;
}
.portal-tickets-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.portal-tickets-item {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  border-bottom: 1px solid #EBEBEB;
  position: relative;
  display: flex;
  flex-direction: column;
}
.portal-tickets-item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: calc(50% - 45%);
  width: 90%;
  height: 5px;
  background: #732C66;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.portal-tickets-item.ticket-type-sub::before {
  background: #dfdfdf;
}
.order-info-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.order-info-item-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7;
}
.order-info-item-value {
  max-width: 180px;
}
.ticket-header {
  border-bottom: 1px solid #EBEBEB;
  padding: 15px 20px;
  background: #FCFCFC;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.ticket-label {
  display: inline-block;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.7;
  background: #2E2C2C;
  border-radius: 4px;
  color: #fff;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticket-details {
  padding: 20px;
  flex: 1;
}
.ticket-info-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.ticket-info-item.single-line {
  flex-direction: column;
  align-items: flex-start;
}
.ticket-info-item-label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7;
}
.ticket-info-item-label.personalization-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #732C66;
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  margin-right: 5px;
}
.ticket-info-item-value {
  max-width: 180px;
}
.ticket-actions {
  border-top: 1px solid #EBEBEB;
  padding: 20px;
  margin-top: auto;
}
.ticket-actions-wallet {
  display: flex;
  gap: 12px;
  border-top: 1px solid #EBEBEB;
  padding: 20px;
  margin-top: auto;
  background: #FAFAFA;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.wallet-button-container {
  flex: 1;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.wallet-button-container:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.wallet-button-apple,
.wallet-button-google {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 40px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.wallet-button-apple:hover,
.wallet-button-google:hover {
  opacity: 0.9;
}
.wallet-button-apple {
  background-image: url('../img/apple-wallet-button.png');
}
.wallet-button-google {
  background-image: url('../img/google-wallet-button.png');
}
.tickets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tickets-view-toggle {
  display: flex;
  gap: 5px;
}
.segment-toggle {
  position: relative;
  display: flex;
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 8px;
  padding: 4px;
  overflow: hidden;
}
.segment-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 40px;
  height: 32px;
  background: #732C66;
  border-radius: 6px;
  transition: transform 0.3s ease;
  z-index: 1;
}
.segment-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 32px;
  border: none;
  background: transparent;
  color: #6C757D;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
}
.segment-button i {
  font-size: 14px;
}
.segment-button.active {
  color: #fff;
}
.segment-button:hover:not(.active) {
  color: #495057;
}
.portal-tickets-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.portal-tickets-list-item {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.portal-tickets-list-item:before {
  content: '';
  position: absolute;
  top: calc(50% - 40%);
  left: -4px;
  width: 4px;
  height: 80%;
  background: #732C66;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.portal-tickets-list-item.ticket-type-sub:before {
  background: #dfdfdf;
}
.list-item-content {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  gap: 20px;
}
.list-item-main {
  flex: 1;
  min-width: 0;
}
.list-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.list-item-title .ticket-category {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}
.ticket-type-badge-small {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #F5F5F5;
  color: #616161;
  border: 1px solid #E0E0E0;
}
.list-item-details {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
}
.list-item-details span {
  white-space: nowrap;
}
.list-item-details .ticket-number {
  font-weight: 600;
}
.list-item-details .ticket-personalized-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #732C66;
  color: #fff;
  padding: 4px 6px;
  border-radius: 4px;
  margin-right: 5px;
}
.list-item-details .ticket-seat {
  display: flex;
  gap: 12px;
  align-items: center;
}
.list-item-details .ticket-seat .seat-part {
  white-space: nowrap;
}
.list-item-status {
  flex-shrink: 0;
}
.list-item-price {
  flex-shrink: 0;
  font-weight: 600;
  color: #333;
  min-width: 80px;
  text-align: right;
}
.list-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.list-item-wallet-container {
  display: flex;
  padding: 12px 20px;
  background: #FAFAFA;
  border-top: 1px solid #EBEBEB;
  margin-top: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  justify-content: flex-start;
}
.list-item-wallet-buttons {
  display: flex;
  gap: 15px;
}
.list-item-wallet-buttons .wallet-button-container {
  width: 120px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  flex-shrink: 0;
}
.list-item-wallet-buttons .wallet-button-apple,
.list-item-wallet-buttons .wallet-button-google {
  height: 40px;
}
.notification-text {
  margin-top: 50px;
  font-size: 11px;
  text-align: justify;
  color: #aaaaaa;
}
.wallet-hint-container {
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.wallet-hint-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.wallet-hint-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #732C66;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.wallet-hint-text {
  flex: 1;
  min-width: 0;
}
.wallet-hint-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}
.wallet-hint-description {
  color: #475569;
}
.wallet-hint-description strong {
  color: #1e293b;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .portal-order-container {
    gap: 40px;
  }
  .portal-tickets-container {
    gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .event-info-container {
    gap: 8px;
    padding: 0px 5px;
  }
}
@media screen and (max-width: 767px) {
  .portal-order-container {
    gap: 20px;
  }
  .event-info-container {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    margin-top: 20px;
    padding: 0;
  }
  .event-info-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #EBEBEB;
  }
  .event-info-item:last-child {
    border-bottom: none;
  }
  .portal-tickets-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }
  .portal-tickets-item {
    margin-bottom: 15px;
  }
  .tickets-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .list-item-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px;
  }
  .list-item-details {
    gap: 10px;
  }
  .list-item-price {
    text-align: left;
    min-width: auto;
  }
  .list-item-actions {
    justify-content: flex-start;
  }
  .list-item-wallet-container {
    flex-direction: column;
    gap: 8px;
    padding: 12px 15px;
    justify-content: center;
    align-items: stretch;
  }
  .list-item-wallet-buttons .wallet-button-container {
    width: 100%;
    padding: 0;
  }
  .list-item-wallet-buttons .wallet-button-apple,
  .list-item-wallet-buttons .wallet-button-google {
    height: 40px;
  }
  .ticket-actions-wallet {
    gap: 12px;
    padding: 16px;
  }
  .wallet-button-container {
    padding: 10px;
  }
  .wallet-hint-container {
    padding: 16px;
    margin-bottom: 16px;
  }
  .wallet-hint-content {
    gap: 12px;
  }
  .wallet-hint-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .wallet-hint-title {
    font-size: 15px;
  }
}
.share-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.share-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.share-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.share-modal.show {
  transform: translateY(0);
  opacity: 1;
}
.share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-bottom: 1px solid #EBEBEB;
}
.share-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.share-modal-close {
  background: #f7f7f7;
  border: 1px transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6269;
  cursor: pointer;
  transition: all 0.2s ease;
}
.share-modal-close:hover {
  background: #f7f7f7;
  border: 1px solid #E1E4E8;
  color: #24292E;
}
.share-modal-close i {
  font-size: 16px;
}
.share-modal-content {
  padding: 20px 24px 24px 24px;
}
.share-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.share-option-item {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.share-option-item:hover {
  background: #FAFAFA;
}
.share-option-item span {
  font-size: 12px;
  font-weight: 500;
  color: #2E2C2C;
  text-align: center;
}
.share-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #FFFFFF;
  background: #2E2C2C;
  border: 1px solid #EBEBEB;
}
.share-option-icon.native {
  background: #732C66;
}
.share-link-section label {
  display: block;
  font-size: 11px;
  color: #374151;
  margin-bottom: 8px;
}
.share-link-input {
  display: flex;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  overflow: hidden;
  background: #FCFCFC;
}
.share-link-input input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #6c6c6c;
  outline: none;
}
.share-copy-btn {
  background: #FCFCFC;
  border: none;
  border-left: 1px solid #EBEBEB;
  padding: 12px 16px;
  color: #2E2C2C;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}
.share-copy-btn:hover {
  background: #EBEBEB;
  color: #475569;
}
.share-copy-btn.positive {
  background: #19E181;
  color: #fff;
}
.share-copy-btn.positive:hover {
  background: #19E181;
}
.share-copy-btn i {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .share-modal {
    max-width: none;
  }
  .share-options-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .share-modal-header h3 {
    font-size: 16px;
  }
  .share-modal-content {
    padding: 16px 20px 20px 20px;
  }
  .share-option-item {
    padding: 12px 8px;
  }
  .share-option-item span {
    font-size: 11px;
  }
  .share-option-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
.personalize-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.personalize-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.personalize-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 450px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.personalize-modal.show {
  transform: translateY(0);
  opacity: 1;
}
.personalize-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-bottom: 1px solid #EBEBEB;
}
.personalize-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.personalize-modal-close {
  background: #f7f7f7;
  border: 1px transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6269;
  cursor: pointer;
  transition: all 0.2s ease;
}
.personalize-modal-close:hover {
  background: #f7f7f7;
  border: 1px solid #E1E4E8;
  color: #24292E;
}
.personalize-modal-close i {
  font-size: 16px;
}
.personalize-modal-content {
  padding: 20px 24px 24px 24px;
}
.personalize-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .personalize-modal {
    max-width: none;
  }
  .personalize-modal-header h3 {
    font-size: 16px;
  }
  .personalize-modal-content {
    padding: 16px 20px 20px 20px;
  }
  .personalize-form-actions {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .personalize-form-actions .button {
    width: 100%;
  }
}
.ticket-actions-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.ticket-actions-container .all-tickets-pdf-button {
  flex: 0 0 auto;
}
.ticket-actions-container .show-seating-plan-button {
  flex: 0 0 auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .ticket-actions-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .ticket-actions-container .all-tickets-pdf-button,
  .ticket-actions-container .show-seating-plan-button {
    width: 100%;
    margin-left: 0;
  }
}
.seating-plan-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
.seating-plan-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}
.seating-plan-modal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 900px;
  height: 80vh;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
.seating-plan-modal.show {
  transform: translateY(0);
  opacity: 1;
}
.seating-plan-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-bottom: 1px solid #EBEBEB;
  flex-shrink: 0;
}
.seating-plan-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.seating-plan-modal-close {
  background: #f7f7f7;
  border: 1px transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6269;
  cursor: pointer;
  transition: all 0.2s ease;
}
.seating-plan-modal-close:hover {
  background: #f7f7f7;
  border: 1px solid #E1E4E8;
  color: #24292E;
}
.seating-plan-modal-close i {
  font-size: 16px;
}
.seating-plan-modal-content {
  flex: 1;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.seating-plan-info {
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #64748b;
  flex-shrink: 0;
}
#seating-plan-container {
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 8px;
  padding: 10px;
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#seating-plan-chart {
  width: 100%;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .seating-plan-modal {
    max-width: 100%;
    height: 70vh;
    max-height: 500px;
  }
  .seating-plan-modal-header h3 {
    font-size: 16px;
  }
  .seating-plan-modal-content {
    padding: 16px;
  }
  .seating-plan-info {
    margin-bottom: 12px;
    font-size: 13px;
  }
  #seating-plan-container {
    padding: 8px;
  }
}
.orders-dashboard {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #EDF1F3;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.dashboard-item {
  background: #FCFCFC;
  border: 1px solid #FCFCFC;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.dashboard-icon {
  width: 48px;
  height: 48px;
  background: #f7f7f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dashboard-icon i {
  font-size: 22px;
  color: #6A737D;
}
.dashboard-content {
  flex: 1;
}
.dashboard-value {
  font-size: 28px;
  font-weight: 700;
  color: #24292E;
  line-height: 1;
  margin-bottom: 4px;
}
.dashboard-label {
  font-size: 12px;
  color: #6A737D;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.orders-search-container {
  margin-top: 0px;
  margin-bottom: 40px;
}
.orders-container {
  margin-bottom: 50px;
}
.orders-search-bar {
  height: 60px;
  background-color: #fdfdfd;
  border: 1px solid #E1E4E8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-search-input {
  width: 100%;
  font-family: "Overpass", sans-serif;
  line-height: 1.4;
  font-size: 15px;
  color: #24292E;
  background-color: transparent;
  border: none;
  font-weight: 400;
  padding: 0;
  padding-right: 30px;
  letter-spacing: 0.5px;
  -moz-appearance: none;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.4s, background-image 0.4s, color 0.4s;
  position: relative;
}
.order-search-input::placeholder {
  color: #6A737D;
}
.orders-skeleton-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.skeleton-order-item {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 20px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}
.skeleton-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.skeleton-title {
  height: 20px;
  width: 200px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.skeleton-details {
  height: 16px;
  width: 300px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.skeleton-price {
  height: 24px;
  width: 80px;
  border-radius: 4px;
}
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.orders-list-item {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.order-item-content {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  gap: 20px;
}
.order-item-main {
  flex: 1;
  min-width: 0;
}
.order-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.order-item-title .order-creditor-name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}
.order-item-details {
  display: flex;
  gap: 10px 15px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
  align-items: center;
}
.order-item-details span {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.order-item-details span i {
  color: #999;
}
.order-item-details .order-date,
.order-item-details .order-invoice-number {
  font-weight: 500;
}
.order-item-price {
  flex-shrink: 0;
  text-align: right;
  min-width: 100px;
}
.order-item-price .mobile-status-label {
  display: none;
  margin-bottom: 12px;
  margin-top: 4px;
}
.order-item-price .price-gross {
  font-weight: 700;
  font-size: 18px;
  color: #333;
}
.order-item-price .price-net {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}
.order-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.order-item-extra-container {
  display: flex;
  padding: 12px 20px;
  background: #FAFAFA;
  border-top: 1px solid #EBEBEB;
  margin-top: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.order-item-extra-content {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.order-extra-left {
  display: flex;
  gap: 15px;
  align-items: center;
  flex: 1;
}
.order-extra-image {
  flex-shrink: 0;
}
.order-extra-image img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #EBEBEB;
}
.order-extra-info {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  overflow: hidden;
}
.order-extra-status {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.extra-info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 80px;
  flex: 0 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .extra-info-item {
    flex: 0 0 auto;
  }
}
.extra-info-item .extra-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
}
.extra-info-item .extra-value {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 350px;
}
@media screen and (max-width: 991px) {
  .extra-info-item .extra-value {
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .extra-info-item .extra-value {
    max-width: 180px;
  }
}
@media screen and (max-width: 480px) {
  .extra-info-item .extra-value {
    max-width: 150px;
  }
}
.extra-info-item .extra-value .payment-method-icon {
  width: 20px;
  height: 14px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .orders-dashboard {
    margin-bottom: 30px;
    padding-bottom: 30px;
    overflow: hidden;
    position: relative;
  }
  .dashboard-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin: 0 -15px;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .dashboard-grid::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent 0%, rgba(253, 253, 253, 0.7) 50%, #fdfdfd 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 1;
  }
  .dashboard-grid.scrolled-end::after {
    opacity: 0;
  }
  .dashboard-grid::-webkit-scrollbar {
    display: none;
  }
  .dashboard-item {
    padding: 14px;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 145px;
    width: 145px;
    scroll-snap-align: start;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .dashboard-item:first-child {
    margin-left: 0;
  }
  .dashboard-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .dashboard-icon i {
    font-size: 16px;
  }
  .dashboard-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .dashboard-value {
    font-size: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dashboard-label {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .orders-search-bar {
    height: auto;
    padding: 10px 15px;
    gap: 10px;
  }
  .order-search-input {
    font-size: 15px;
    padding-right: 25px;
  }
  .order-item-content {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 15px;
  }
  .order-item-details {
    gap: 10px 15px;
  }
  .order-item-price {
    text-align: left;
    min-width: auto;
    padding-top: 5px;
  }
  .order-item-price .mobile-status-label {
    display: block;
    text-align: left;
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .order-item-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .order-item-actions .button {
    flex: 0 0 auto;
    min-width: 44px;
  }
  .order-item-extra-container {
    padding: 12px 15px;
  }
  .order-item-extra-content {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .order-extra-left {
    width: 100%;
  }
  .order-extra-image {
    display: none;
  }
  .order-extra-info {
    gap: 10px 15px;
    flex-wrap: wrap;
  }
  .order-extra-info .extra-info-item {
    flex: 0 0 auto;
    min-width: 0;
  }
  .order-extra-info .extra-value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
  }
  .order-extra-status {
    display: none;
  }
}
@media screen and (max-width: 767px) and screen and (max-width: 360px) {
  .order-extra-info .extra-info-item {
    min-width: calc(50% - 6px);
  }
}
@media screen and (min-width: 768px) {
  .order-item-price .mobile-status-label {
    display: none !important;
  }
  .order-extra-status {
    display: flex !important;
  }
}
@media screen and (max-width: 480px) {
  .order-item-details {
    gap: 10px 15px;
  }
  .order-item-details span {
    flex: 0 0 auto;
  }
  .order-item-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .order-item-actions .button {
    flex: 0 0 auto;
    width: auto;
    min-width: 44px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  .orders-search-bar {
    border-width: 0.5px;
  }
}
.events-tickets-container {
  margin-bottom: 0px;
}
.tickets-load-more-container {
  text-align: center;
  border-top: 1px solid #edf1f3;
  padding: 50px 20px 20px;
  margin-top: 10px;
}
.tickets-load-more-container .load-more-btn {
  min-width: 250px;
  position: relative;
}
.tickets-load-more-container .load-more-btn .btn-text {
  display: inline-block;
}
.tickets-load-more-container .load-more-btn .btn-text i {
  margin-right: 8px;
}
.tickets-load-more-container .load-more-btn .btn-text .fa-arrow-down {
  margin-right: 10px;
}
.tickets-load-more-container .load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.event-group {
  margin-bottom: 20px;
}
.event-group:last-child {
  margin-bottom: 0;
}
.event-tickets-group {
  margin-bottom: 40px;
}
.event-tickets-group:last-child {
  margin-bottom: 0;
}
.event-group-header {
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.event-group-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.event-group-date-badge {
  width: 55px;
  min-width: 55px;
  height: 80px;
  background: rgba(115, 44, 102, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.event-group-date-badge .day {
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
}
.event-group-date-badge .month {
  font-weight: 300;
  font-size: 13px;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
}
.event-group-date-badge .divider {
  width: 70%;
  height: 1px;
  margin-top: 5px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.event-group-date-badge .time {
  font-weight: 300;
  font-size: 10px;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-transform: uppercase;
}
.event-group-info-content {
  flex: 1;
  min-width: 0;
}
.event-group-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 5px;
  color: #1e1e1e;
}
.event-group-location {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}
.event-group-location i {
  color: #666;
}
.event-group-shop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.event-group-shop .shop-logo {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #EBEBEB;
}
.event-group-shop .shop-name {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
.event-group-stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
.event-stat-item {
  text-align: center;
}
.event-stat-item .event-stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
.event-stat-item .event-stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.event-tickets-stats-container {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.event-tickets-stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f7f7f7;
  border: 1px solid #f7f7f7;
  border-radius: 8px;
  min-width: 100px;
  transition: none;
}
.event-tickets-stat-card .event-tickets-stat-icon {
  background: #F5F5F5;
  color: #666666;
}
.event-tickets-stat-card.event-tickets-stat-total .event-tickets-stat-value {
  font-size: 20px;
}
.event-tickets-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-tickets-stat-icon i {
  font-size: 16px;
}
.event-tickets-stat-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden;
}
.event-tickets-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  line-height: 1;
}
.event-tickets-stat-label {
  font-size: 11px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-orders-preview {
  margin: 20px 0;
  background: #FCFCFC;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.event-orders-preview:hover {
  background: #F8F8F8;
  border-color: #D9D9D9;
}
.event-orders-preview.loading {
  pointer-events: none;
  opacity: 0.8;
}
.event-orders-preview-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.event-orders-preview-icon {
  width: 50px;
  height: 50px;
  background: #F6F6F6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-orders-preview-icon i {
  font-size: 20px;
  color: #666;
}
.event-orders-preview-info {
  flex: 1;
  min-width: 0;
}
.event-orders-preview-info .event-orders-preview-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.event-orders-preview-info .event-orders-preview-subtitle {
  font-size: 13px;
  color: #666;
}
.event-orders-preview-expand {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.event-orders-preview-expand i {
  font-size: 14px;
  color: #666;
}
.event-group-orders-container {
  margin-top: 0;
}
.event-group-orders-container:has(.event-group-orders.loaded:visible) .event-orders-toggle {
  margin-bottom: 20px;
}
.event-group-orders {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-bottom: 20px;
}
.event-group-orders {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.event-group-orders.show {
  opacity: 1;
  max-height: 5000px;
  transform: translateY(0);
}
.event-group-orders.animating {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .event-group-orders {
    transform: translateY(-5px);
    transition-duration: 0.3s;
  }
  .event-group-orders.show {
    transform: translateY(0);
  }
}
.event-group-orders .orders-list-item:last-child {
  margin-bottom: 20px;
}
.tickets-skeleton-event-group {
  margin-bottom: 40px;
}
.tickets-skeleton-event-group:last-child {
  margin-bottom: 0;
}
.tickets-skeleton-group-header {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.tickets-skeleton-info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.tickets-skeleton-date-badge {
  width: 55px;
  min-width: 55px;
  height: 80px;
  border-radius: 6px;
  flex-shrink: 0;
}
.tickets-skeleton-info-content {
  flex: 1;
  min-width: 0;
}
.tickets-skeleton-title {
  height: 24px;
  width: 300px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.tickets-skeleton-location {
  height: 16px;
  width: 250px;
  border-radius: 4px;
}
.tickets-skeleton-stats {
  display: flex;
  gap: 25px;
}
.tickets-skeleton-stat {
  width: 60px;
  height: 50px;
  border-radius: 6px;
}
.tickets-skeleton-orders {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tickets-skeleton-order-item {
  height: 80px;
  border-radius: 8px;
}
.tickets-skeleton-stats-container {
  display: flex;
  gap: 12px;
}
.tickets-skeleton-stat-card {
  width: 130px;
  height: 60px;
  border-radius: 8px;
}
.events-tickets-loading-indicator .tickets-skeleton-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: tickets-skeleton-shimmer 1.5s ease-in-out infinite;
}
@keyframes tickets-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.event-orders-error-message {
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 14px;
}
.event-orders-error-message i {
  margin-right: 8px;
  color: #F4A702;
}
@media screen and (max-width: 767px) {
  .event-group {
    margin-bottom: 20px;
  }
  .event-orders-preview {
    padding: 15px;
  }
  .event-orders-preview .event-orders-preview-content {
    gap: 12px;
  }
  .event-orders-preview .event-orders-preview-icon {
    width: 40px;
    height: 40px;
  }
  .event-orders-preview .event-orders-preview-icon i {
    font-size: 18px;
  }
  .event-orders-preview .event-orders-preview-info .event-orders-preview-title {
    font-size: 15px;
  }
  .event-orders-preview .event-orders-preview-info .event-orders-preview-subtitle {
    font-size: 12px;
  }
  .event-group-orders {
    gap: 20px;
    padding-bottom: 15px;
  }
  .event-group-header {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: stretch;
  }
  .event-group-info {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }
  .event-group-info-content {
    text-align: left;
  }
  .event-group-title {
    font-size: 18px;
    margin-bottom: 3px;
  }
  .event-group-subtitle {
    font-size: 14px;
  }
  .event-group-stats {
    justify-content: center;
    gap: 30px;
    padding-top: 15px;
    border-top: 1px solid #EBEBEB;
  }
  .event-group-stats .event-stat-item .event-stat-value {
    font-size: 20px;
  }
  .event-group-stats .event-stat-item .event-stat-label {
    font-size: 11px;
  }
  .event-tickets-stats-wrapper {
    position: relative;
    overflow: hidden;
    border-top: 1px solid #EBEBEB;
    padding-top: 15px;
  }
  .event-tickets-stats-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, #FCFCFC);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  .event-tickets-stats-wrapper.scrolled-end::after {
    opacity: 0;
  }
  .event-tickets-stats-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding: 0 0 5px 0;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .event-tickets-stats-container::-webkit-scrollbar {
    height: 0;
    display: none;
  }
  .event-tickets-stat-card {
    flex: 0 0 auto;
    width: 120px;
    min-width: 120px;
    padding: 10px 12px;
    scroll-snap-align: start;
  }
  .event-tickets-stat-card:first-child {
    margin-left: 15px;
  }
  .event-tickets-stat-card:last-child {
    margin-right: 15px;
  }
  .event-tickets-stat-icon {
    width: 32px;
    height: 32px;
  }
  .event-tickets-stat-icon i {
    font-size: 14px;
  }
  .event-tickets-stat-value {
    font-size: 16px;
  }
  .event-tickets-stat-label {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
  .event-tickets-stat-card.event-tickets-stat-total .event-tickets-stat-value {
    font-size: 16px;
  }
  .tickets-skeleton-group-header {
    flex-direction: column;
    padding: 20px;
  }
  .tickets-skeleton-info {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 15px;
    gap: 15px;
  }
  .tickets-skeleton-info-content {
    text-align: left;
  }
  .tickets-skeleton-title,
  .tickets-skeleton-location {
    margin-left: 0;
    margin-right: auto;
  }
  .tickets-skeleton-title {
    width: 200px;
  }
  .tickets-skeleton-stats {
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid #EBEBEB;
  }
  .tickets-skeleton-stats-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 0 0 5px 0;
    margin: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .tickets-skeleton-stats-container::-webkit-scrollbar {
    height: 0;
    display: none;
  }
  .tickets-skeleton-stat-card {
    flex: 0 0 auto;
    width: 120px;
    min-width: 120px;
    height: 54px;
  }
  .tickets-skeleton-stat-card:first-child {
    margin-left: 15px;
  }
  .tickets-skeleton-stat-card:last-child {
    margin-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .event-group-title {
    font-size: 16px;
  }
  .event-group-stats {
    gap: 30px;
  }
  .event-tickets-stat-card {
    width: 110px;
    min-width: 110px;
    gap: 6px;
    padding: 8px 10px;
  }
  .event-tickets-stat-card:first-child {
    margin-left: 15px;
  }
  .event-tickets-stat-card:last-child {
    margin-right: 15px;
  }
  .tickets-skeleton-stat-card {
    width: 110px;
    min-width: 110px;
  }
  .tickets-skeleton-stat-card:first-child {
    margin-left: 15px;
  }
  .tickets-skeleton-stat-card:last-child {
    margin-right: 15px;
  }
  .event-tickets-stat-icon {
    width: 28px;
    height: 28px;
  }
  .event-tickets-stat-icon i {
    font-size: 12px;
  }
  .order-item-details {
    gap: 10px 15px;
  }
  .order-item-details span {
    font-size: 13px;
    flex: 0 0 auto;
  }
}
.tickets-search-container {
  margin-top: 0px;
  margin-bottom: 40px;
}
.tickets-search-bar {
  height: 60px;
  background-color: #fdfdfd;
  border: 1px solid #E1E4E8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-search-input {
  width: 100%;
  font-family: "Overpass", sans-serif;
  line-height: 1.4;
  font-size: 15px;
  color: #24292E;
  background-color: transparent;
  border: none;
  font-weight: 400;
  padding: 0;
  padding-right: 30px;
  letter-spacing: 0.5px;
  -moz-appearance: none;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.4s, background-image 0.4s, color 0.4s;
  position: relative;
}
.events-tickets-no-results {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .tickets-search-bar {
    height: auto;
    padding: 10px 15px;
    gap: 10px;
  }
  .ticket-search-input {
    font-size: 15px;
    padding-right: 25px;
  }
  .events-tickets-no-results .no-results-container {
    padding: 40px 20px;
  }
  .events-tickets-no-results .no-results-container .no-results-title {
    font-size: 20px;
  }
  .events-tickets-no-results .no-results-container .no-results-text {
    font-size: 14px;
  }
  .events-tickets-no-results .no-results-container .no-results-icon {
    font-size: 36px;
  }
}
.filter-toggle-btn.loading {
  pointer-events: none;
  opacity: 0.6;
}
.filter-toggle-btn.loading i {
  animation: fa-spin 2s infinite linear;
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.filter-toggle-btn.active {
  background: #732C66;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .tickets-search-container {
    margin-bottom: 30px;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  .tickets-search-bar {
    border-width: 0.5px;
  }
}
.customer-portal-overlay-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.customer-portal-overlay-wrapper.show {
  opacity: 1;
  visibility: visible;
}
.customer-portal-modal-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 500px;
  max-height: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.customer-portal-modal-container.show {
  transform: translateY(0);
  opacity: 1;
}
.customer-portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 24px;
  border-bottom: 1px solid #EBEBEB;
  flex-shrink: 0;
}
.customer-portal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}
.customer-portal-close-btn {
  background: #f7f7f7;
  border: 1px solid transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6269;
  cursor: pointer;
  transition: all 0.2s ease;
}
.customer-portal-close-btn:hover {
  background: #f7f7f7;
  border: 1px solid #E1E4E8;
  color: #24292E;
}
.customer-portal-close-btn i {
  font-size: 16px;
}
.customer-portal-content-wrapper {
  padding: 20px 24px 24px 24px;
  overflow-y: auto;
  flex: 1;
}
.customer-portal-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid #E1E4E8;
  background: #F6F8FA;
  flex-shrink: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.customer-portal-actions .button {
  flex: 1;
  min-width: 0;
}
.portal-header-section {
  margin-bottom: 30px;
}
.portal-header-content {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
}
.portal-header-icon {
  width: 50px;
  height: 50px;
  background: #F6F6F6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.portal-header-icon i {
  font-size: 20px;
  color: #666;
}
.portal-header-info {
  flex: 1;
  min-width: 0;
}
.portal-header-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 0 0 2px;
  letter-spacing: -0.3px;
}
.portal-header-subtitle {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.portal-header-subtitle strong {
  color: #24292E;
  font-weight: 600;
}
.field-help-text {
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
}
.portal-benefits {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #E1E4E8;
}
.portal-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.portal-benefit-item:last-child {
  margin-bottom: 0;
}
.benefit-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(115, 44, 102, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon i {
  font-size: 16px;
  color: #732C66;
}
.benefit-content {
  flex: 1;
}
.benefit-content h5 {
  font-size: 15px;
  font-weight: 600;
  color: #24292E;
  margin: 0 0 4px;
}
.benefit-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.code-input-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0 25px;
}
.code-input-group {
  display: flex;
  gap: 10px;
}
.code-separator {
  color: #D1D5DA;
  font-size: 20px;
  font-weight: 300;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  line-height: 60px;
}
.code-input {
  width: 54px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  font-family: "Overpass", sans-serif;
  margin-bottom: 0px !important;
  color: #000;
  background-color: #FCFCFC;
  border: 2px solid #E1E4E8;
  border-radius: 8px;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.code-input:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #732C66;
}
.code-input.error {
  border-color: #ff4a4a;
  animation: highlight-error 0.4s ease-in-out;
}
.code-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.code-input::-webkit-inner-spin-button,
.code-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.code-input:-webkit-autofill,
.code-input:-webkit-autofill:hover,
.code-input:-webkit-autofill:focus,
.code-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #FCFCFC inset !important;
  -webkit-text-fill-color: #000 !important;
  background-color: #FCFCFC !important;
  transition: background-color 5000s ease-in-out 0s;
}
.code-help-container {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.code-help-text {
  font-size: 14px;
  color: #586069;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.code-help-text i {
  font-size: 16px;
  color: #732C66;
  opacity: 0.8;
  width: 20px;
  text-align: center;
}
.code-help-text strong {
  color: #24292E;
  font-weight: 600;
}
.code-help-text a {
  color: #732C66;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.code-help-text a:hover {
  text-decoration: underline;
  color: #5A1F51;
}
#customer-portal-content {
  max-height: calc(85vh - 140px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#customer-portal-content::-webkit-scrollbar {
  width: 8px;
}
#customer-portal-content::-webkit-scrollbar-track {
  background: #F6F8FA;
  border-radius: 4px;
}
#customer-portal-content::-webkit-scrollbar-thumb {
  background: #D1D5DA;
  border-radius: 4px;
}
#customer-portal-content::-webkit-scrollbar-thumb:hover {
  background: #C1C7CD;
}
@keyframes highlight-error {
  0% {
    background-color: #FCFCFC;
    border-color: #E1E4E8;
  }
  25% {
    background-color: #FFF5F5;
    border-color: #ff4a4a;
  }
  100% {
    background-color: #FCFCFC;
    border-color: #ff4a4a;
  }
}
.customer-portal-step {
  display: none;
}
.customer-portal-step[data-step="email"] {
  display: block;
}
#customer-portal-status {
  margin-top: 20px;
  margin-bottom: 0;
}
#customer-portal-status.visible {
  opacity: 1;
  transform: translateY(0);
}
.filter-section input[type="email"]:focus {
  outline: none;
  border-color: #732C66;
}
.filter-section input[type="email"]:-webkit-autofill,
.filter-section input[type="email"]:-webkit-autofill:hover,
.filter-section input[type="email"]:-webkit-autofill:focus,
.filter-section input[type="email"]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #FCFCFC inset !important;
  -webkit-text-fill-color: #000 !important;
  background-color: #FCFCFC !important;
  transition: background-color 5000s ease-in-out 0s;
}
@media screen and (max-width: 480px) {
  .customer-portal-modal-container {
    max-width: none;
    max-height: calc(100vh - 20px);
  }
  .customer-portal-content-wrapper {
    padding: 20px;
    padding-bottom: 35px;
  }
  .customer-portal-header h3 {
    font-size: 16px;
  }
  .customer-portal-actions {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
  }
  .customer-portal-actions .button {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .portal-header-content {
    gap: 15px;
    align-items: normal;
  }
  .portal-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .portal-header-icon i {
    font-size: 18px;
  }
  .portal-header-title {
    font-size: 18px;
  }
  .portal-header-subtitle {
    font-size: 13px;
  }
  .field-help-text {
    font-size: 12px;
  }
  .portal-benefits {
    margin-top: 25px;
    padding-top: 25px;
  }
  .portal-benefit-item {
    margin-bottom: 16px;
  }
  .benefit-icon {
    width: 28px;
    height: 28px;
  }
  .benefit-icon i {
    font-size: 14px;
  }
  .benefit-content h5 {
    font-size: 14px;
  }
  .benefit-content p {
    font-size: 13px;
  }
  .code-input-container {
    gap: 10px;
    margin: 20px 0;
  }
  .code-input-group {
    gap: 8px;
  }
  .code-separator {
    font-size: 18px;
    height: 52px;
    line-height: 52px;
  }
  .code-input {
    width: 46px;
    height: 52px;
    font-size: 20px;
  }
  .code-help-text {
    font-size: 13px;
    gap: 8px;
  }
  .code-help-text i {
    font-size: 14px;
    width: 18px;
  }
  #customer-portal-content {
    max-height: calc(100vh - 180px);
  }
}
a {
  color: #797979;
  text-decoration: none;
  transition: color 0.25s, background 0.35s;
}
a:hover {
  color: #732c66;
  text-decoration: none;
}
.ui.modal .actions > .button:hover {
  cursor: pointer;
}
.ui.basic.table tbody tr {
  background-color: #fff !important;
}
.ui.basic.striped.table tbody tr:nth-child(2n) {
  background-color: #fcfcfc !important;
}
.ui.table tr td {
  border-top: 1px solid #d8d8d8;
}
.ui.table tr td:first-child,
.ui.table tr th:first-child {
  padding-left: 20px !important;
}
.ui.table tr td:last-child,
.ui.table tr th:last-child {
  padding-right: 20px !important;
}
.ui.selectable.table tbody tr:hover,
.ui.table tbody tr td.selectable:hover {
  background: #fcfcfc !important;
  color: rgba(0, 0, 0, 0.95) !important;
}
.ui.table td.active,
.ui.table tr.active {
  background: #fcfcfc !important;
  color: rgba(0, 0, 0, 0.95) !important;
}
.ui.selectable.table tr.active:hover,
.ui.selectable.table tr:hover td.active,
.ui.table tr td.selectable.active:hover {
  background: #fcfcfc !important;
  color: rgba(0, 0, 0, 0.95) !important;
}
.ui.table.fluid tr td:first-child,
.ui.table.fluid tr th:first-child {
  padding-left: 0px !important;
}
.ui.table.fluid tr td:last-child,
.ui.table.fluid tr th:last-child {
  padding-right: 0px !important;
}
.ui.table thead.headerFixated {
  position: sticky;
  top: 0px;
  z-index: 55;
}
.ui.table thead.headerFixated:not(.sub-header) {
  background-color: #ffffff;
}
.ui.table thead.headerFixated:not(.no-padding) th {
  padding-top: 50px !important;
}
.ui.table thead.headerFixated.inContainer {
  top: -36px !important;
}
.ui.label {
  background-color: #f0f0f0 !important;
  font-weight: 600;
}
.ui.label.section {
  margin-bottom: 5px;
}
.ui.green.label,
.ui.green.labels .label {
  background-color: #39d57a !important;
  border-color: #39d57a !important;
}
.ui.red.label,
.ui.red.labels .label {
  background-color: #ff4a4a !important;
  border-color: #ff4a4a !important;
}
.ui.orange.label,
.ui.orange.labels .label {
  background-color: #f98835 !important;
  border-color: #f98835 !important;
}
.ui.label.loading {
  opacity: 1;
  pointer-events: none;
  position: relative;
  background: #f0f0f0 !important;
  border-color: #f0f0f0 !important;
}
.ui.label.loading:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  margin: -0.64285714em 0em 0em -0.64285714em;
  width: 1.28571429em;
  height: 1.28571429em;
  animation: button-spin 0.6s linear infinite;
  border-radius: 500rem;
  border-color: #000 transparent transparent;
  border-style: solid;
  border-width: 0.2em;
  box-shadow: 0px 0px 0px 1px transparent;
}
.ui.label.loading i,
.ui.label.loading span {
  opacity: 0;
}
.ui.label.min-width {
  min-width: 50px !important;
}
.ui.dropdown {
  width: 100%;
  font-family: "Overpass", sans-serif !important;
  line-height: 1.4 !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: #000 !important;
  background-color: #FCFCFC !important;
  border: 1px solid #d8d8d8 !important;
  padding: 11px !important;
  margin-top: 0px !important;
  margin-bottom: 20px !important;
  margin-left: -2px !important;
  border-radius: 6px !important;
  letter-spacing: 0.5px !important;
  display: block;
  background-image: url("../img/chevron-black-down.svg") !important;
  background-size: 14px !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 20px) center !important;
}
.ui.selection.dropdown:focus {
  border-color: #000 !important;
}
.ui.dropdown .menu {
  background: #FCFCFC !important;
}
.ui.search.dropdown .menu {
  max-height: 380px !important;
}
.ui.search.selection.dropdown.custom-dropdown {
  padding-left: 40px;
  background-image: url("../img/icon-search.svg") !important;
  background-size: 14px !important;
  background-repeat: no-repeat !important;
  background-position: 17px center !important;
}
.ui.dropdown.custom-dropdown:not(.button) > .default.text {
  padding-left: 25px !important;
}
.ui.search.dropdown.custom-dropdown > .text {
  padding-left: 25px !important;
}
.ui.search.selection.dropdown.custom-dropdown > input.search {
  color: #000 !important;
  padding: inherit !important;
  padding-left: 40px !important;
  padding-top: 15px !important;
  font-family: "Overpass", sans-serif !important;
  line-height: 1.4 !important;
  font-size: 15px !important;
  font-weight: 300 !important;
}
.ui.search.dropdown.active > input.search,
.ui.search.dropdown.visible > input.search {
  color: #000 !important;
  padding: 0px;
}
.ui.dropdown:not(.button) > .default.text,
.ui.default.dropdown:not(.button) > .text {
  color: #6A737D !important;
}
.ui.selection.dropdown {
  padding: 16px !important;
  background-color: #FCFCFC !important;
  min-width: 100px !important;
}
.ui.dropdown > .text {
  font-weight: 400 !important;
}
.ui.multiple.dropdown {
  padding: 11px !important;
}
.ui.multiple.dropdown > .label {
  padding-top: 6px;
  padding-bottom: 8px;
}
.ui.selection.dropdown.active,
.ui.selection.dropdown.visible {
  z-index: 600;
}
.ui.dropdown .dropdown.icon {
  display: none;
}
.ui.selection.active.dropdown:hover {
  -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
  box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
}
.ui.selection.active.dropdown:hover .menu {
  border-color: #000 !important;
  border-top: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ui.selection.dropdown .menu {
  margin: 0 -0.5px !important;
  min-width: calc(100% + 1px) !important;
  width: calc(100% + 1px) !important;
}
.ui.selection.active.dropdown .menu {
  border-color: #d8d8d8 !important;
}
.ui.selection.dropdown .menu > .item {
  border-top: 1px solid #f1f1f1;
}
.ui.dropdown .menu .selected.item,
.ui.dropdown.selected {
  background: #f4f4f4;
}
.ui.dropdown .menu > .item:hover {
  background: #FAFAFA;
}
.ui.dropdown .menu .selected.item,
.ui.dropdown.selected {
  color: #000 !important;
}
.ui.dropdown .menu > .item:hover {
  color: #000 !important;
}
.ui.dropdown .menu > .item {
  color: #000 !important;
}
.ui.selection.visible.dropdown > .text:not(.default) {
  color: #000 !important;
}
.detail-dropdown-item {
  display: flex;
  flex-direction: row;
}
.detail-dropdown-item .dropdown-image {
  height: 40px;
  width: 40px;
  background: #fff;
  border: 1px solid #eeeeee;
  flex: 0 0 auto;
  border-radius: 50%;
  z-index: 0;
  overflow: hidden;
}
.data-list-image.ring {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #eeeeee;
  padding: 2px;
}
.detail-dropdown-item .dropdown-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s;
}
.detail-dropdown-item .dropdown-image.scaled img {
  object-fit: contain;
  padding: 2px;
}
.detail-dropdown-item .dropdown-description {
  padding-left: 15px;
  flex: 1 1 auto;
}
.detail-dropdown-item .dropdown-description .dropdown-item-title {
  font-size: 15px !important;
  font-weight: 300 !important;
}
.detail-dropdown-item .dropdown-description .dropdown-item-subtitle {
  font-size: 12px !important;
}
.detail-dropdown-item .dropdown-status {
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  display: flex;
}
.ui.dropdown > .label {
  color: #d1d4df !important;
  background-color: #3c4248 !important;
  border: none !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}
.ui.divider {
  display: block !important;
  border-top: 1px solid rgba(34, 36, 38, 0.15) !important;
}
.ui.divider:not(.vertical):not(.horizontal) {
  border-top: 1px solid rgba(34, 36, 38, 0.15) !important;
}
.ui.grid + .grid {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.ui.grid > .column:not(.row) {
  margin-top: 15px !important;
  margin-bottom: 0px !important;
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}
.ui.fluid.dropdown.required.selection {
  position: relative;
  z-index: none !important;
}
.ui.grid {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.ui.grid > * {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.ui.table thead th {
  color: #000;
  border-bottom: 0;
}
.ui.table {
  color: #000;
}
.ui.selectable.table tbody tr:hover,
.ui.table tbody tr td.selectable:hover {
  background: #fcfcfc !important;
  color: #000 !important;
}
.ui.table tr td {
  border-top: 1px solid #d8d8d8;
}
/* Styles für Drag & Drop */
.ui.table tr.dragging {
  display: table;
  width: 100%;
  table-layout: fixed;
}
@media only screen and (min-width: 1200px) {
  .ui.mini.modal {
    width: 450px !important;
  }
}
@media (-webkit-min-device-pixel-ratio: 2) {
  .ui.table tr td {
    border-width: 0.5px;
  }
  .ui.divider {
    border-width: 0.5px !important;
  }
  .ui.divider:not(.vertical):not(.horizontal) {
    border-width: 0.5px !important;
  }
  .ui.dropdown {
    border-width: 0.5px !important;
  }
  .ui.selection.active.dropdown .menu {
    border-width: 0.5px !important;
  }
}
/* Semantic UI Dropdown Autofill */
.ui.dropdown:-webkit-autofill,
.ui.dropdown input.search:-webkit-autofill,
.ui.dropdown select:-webkit-autofill,
.ui.dropdown:-webkit-autofill:hover,
.ui.dropdown input.search:-webkit-autofill:hover,
.ui.dropdown select:-webkit-autofill:hover,
.ui.dropdown:-webkit-autofill:focus,
.ui.dropdown input.search:-webkit-autofill:focus,
.ui.dropdown select:-webkit-autofill:focus,
.ui.dropdown:-webkit-autofill:active,
.ui.dropdown input.search:-webkit-autofill:active,
.ui.dropdown select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 0px #FCFCFC inset !important;
  -webkit-text-fill-color: #000 !important;
  background-color: #FCFCFC !important;
  transition: background-color 5000s ease-in-out 0s;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Datepicker cells
   ------------------------------------------------- */
.datepicker--cells {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.datepicker--cell {
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 32px;
  z-index: 1;
}
.datepicker--cell.-focus- {
  background: #f0f0f0;
}
.datepicker--cell.-current- {
  color: #732c66;
}
.datepicker--cell.-current-.-focus- {
  color: #4a4a4a;
}
.datepicker--cell.-current-.-in-range- {
  color: #732c66;
}
.datepicker--cell.-in-range- {
  background: rgba(197, 222, 45, 0.1);
  color: #4a4a4a;
  border-radius: 0;
}
.datepicker--cell.-in-range-.-focus- {
  background-color: rgba(197, 222, 45, 0.2);
}
.datepicker--cell.-disabled- {
  cursor: default;
  color: #aeaeae;
}
.datepicker--cell.-disabled-.-focus- {
  color: #aeaeae;
}
.datepicker--cell.-disabled-.-in-range- {
  color: #a1a1a1;
}
.datepicker--cell.-disabled-.-current-.-focus- {
  color: #aeaeae;
}
.datepicker--cell.-range-from- {
  border: 1px solid rgba(197, 222, 45, 0.5);
  background-color: rgba(197, 222, 45, 0.1);
  border-radius: 4px 0 0 4px;
}
.datepicker--cell.-range-to- {
  border: 1px solid rgba(197, 222, 45, 0.5);
  background-color: rgba(197, 222, 45, 0.1);
  border-radius: 0 4px 4px 0;
}
.datepicker--cell.-range-from-.-range-to- {
  border-radius: 4px;
}
.datepicker--cell.-selected- {
  color: #fff;
  border: none;
  background: #732c66;
}
.datepicker--cell.-selected-.-current- {
  color: #fff;
  background: #732c66;
}
.datepicker--cell.-selected-.-focus- {
  background: #481d40;
}
.datepicker--cell:empty {
  cursor: default;
}
.datepicker--days-names {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 8px 0 3px;
}
.datepicker--day-name {
  color: #732c66;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}
.datepicker--cell-day {
  width: 14.28571%;
}
.datepicker--cells-months {
  height: 170px;
}
.datepicker--cell-month {
  width: 33.33%;
  height: 25%;
}
.datepicker--years {
  height: 170px;
}
.datepicker--cells-years {
  height: 170px;
}
.datepicker--cell-year {
  width: 25%;
  height: 33.33%;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Datepicker
   ------------------------------------------------- */
.datepickers-container {
  position: absolute;
  left: 0;
  top: 0;
}
@media print {
  .datepickers-container {
    display: none;
  }
}
.datepicker {
  background: #fff;
  border-bottom: 1px solid #dbdbdb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-sizing: content-box;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  color: #4a4a4a;
  width: 250px;
  position: absolute;
  left: -100000px;
  opacity: 0;
  transition: opacity 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0.3s, -webkit-transform 0.3s ease;
  z-index: 100;
}
.datepicker.-from-top- {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.datepicker.-from-right- {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
.datepicker.-from-bottom- {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
.datepicker.-from-left- {
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}
.datepicker.active {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
  transition: opacity 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s;
  transition: opacity 0.3s ease, transform 0.3s ease, left 0s 0s, -webkit-transform 0.3s ease;
  z-index: 333;
}
.datepicker-inline .datepicker {
  border-color: #d7d7d7;
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
.datepicker-inline .datepicker--pointer {
  display: none;
}
.datepicker--content {
  box-sizing: content-box;
  padding: 4px;
}
.-only-timepicker- .datepicker--content {
  display: none;
}
.datepicker--pointer {
  position: absolute;
  top: -5px;
  background: #fff;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 10px;
  height: 10px;
  z-index: -1;
}
.-top-left- .datepicker--pointer,
.-top-center- .datepicker--pointer,
.-top-right- .datepicker--pointer {
  top: calc(100% - 4px);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.-right-top- .datepicker--pointer,
.-right-center- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
  right: calc(100% - 4px);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
.-bottom-left- .datepicker--pointer,
.-bottom-center- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
  bottom: calc(100% - 4px);
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}
.-left-top- .datepicker--pointer,
.-left-center- .datepicker--pointer,
.-left-bottom- .datepicker--pointer {
  left: calc(100% - 4px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.-top-left- .datepicker--pointer,
.-bottom-left- .datepicker--pointer {
  left: 10px;
}
.-top-right- .datepicker--pointer,
.-bottom-right- .datepicker--pointer {
  right: 10px;
}
.-top-center- .datepicker--pointer,
.-bottom-center- .datepicker--pointer {
  left: calc(50% - 10px / 2);
}
.-left-top- .datepicker--pointer,
.-right-top- .datepicker--pointer {
  top: 10px;
}
.-left-bottom- .datepicker--pointer,
.-right-bottom- .datepicker--pointer {
  bottom: 10px;
}
.-left-center- .datepicker--pointer,
.-right-center- .datepicker--pointer {
  top: calc(50% - 10px / 2);
}
.datepicker--body {
  display: none;
}
.datepicker--body.active {
  display: block;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Navigation
   ------------------------------------------------- */
.datepicker--nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  min-height: 32px;
  padding: 4px;
}
.-only-timepicker- .datepicker--nav {
  display: none;
}
.datepicker--nav-title,
.datepicker--nav-action {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.datepicker--nav-action {
  width: 32px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker--nav-action:hover {
  background: #f0f0f0;
}
.datepicker--nav-action.-disabled- {
  visibility: hidden;
}
.datepicker--nav-action svg {
  width: 32px;
  height: 32px;
}
.datepicker--nav-action path {
  fill: none;
  stroke: #9c9c9c;
  stroke-width: 2px;
}
.datepicker--nav-title {
  border-radius: 4px;
  padding: 0 8px;
}
.datepicker--nav-title i {
  font-style: normal;
  color: #9c9c9c;
  margin-left: 5px;
}
.datepicker--nav-title:hover {
  background: #f0f0f0;
}
.datepicker--nav-title.-disabled- {
  cursor: default;
  background: none;
}
.datepicker--buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 4px;
  border-top: 1px solid #efefef;
}
.datepicker--button {
  color: #732c66;
  cursor: pointer;
  border-radius: 4px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 32px;
}
.datepicker--button:hover {
  color: #4a4a4a;
  background: #f0f0f0;
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
/* -------------------------------------------------
    Timepicker
   ------------------------------------------------- */
.datepicker--time {
  border-top: 1px solid #efefef;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
  position: relative;
}
.datepicker--time.-am-pm- .datepicker--time-sliders {
  -webkit-flex: 0 1 138px;
  -ms-flex: 0 1 138px;
  flex: 0 1 138px;
  max-width: 138px;
}
.-only-timepicker- .datepicker--time {
  border-top: none;
}
.datepicker--time-sliders {
  -webkit-flex: 0 1 153px;
  -ms-flex: 0 1 153px;
  flex: 0 1 153px;
  margin-right: 10px;
  max-width: 153px;
}
.datepicker--time-label {
  display: none;
  font-size: 12px;
}
.datepicker--time-current {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 14px;
  text-align: center;
  margin: 0 0 0 10px;
}
.datepicker--time-current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}
.datepicker--time-current-hours,
.datepicker--time-current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}
.datepicker--time-current-hours:after,
.datepicker--time-current-minutes:after {
  content: "";
  background: #f0f0f0;
  border-radius: 4px;
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}
.datepicker--time-current-hours.-focus-:after,
.datepicker--time-current-minutes.-focus-:after {
  opacity: 1;
}
.datepicker--time-current-ampm {
  text-transform: uppercase;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #9c9c9c;
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}
.datepicker--time-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat;
}
.datepicker--time-row:first-child {
  margin-bottom: 4px;
}
.datepicker--time-row input[type="range"] {
  background: none;
  cursor: pointer;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.datepicker--time-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
}
.datepicker--time-row input[type="range"]::-ms-tooltip {
  display: none;
}
.datepicker--time-row input[type="range"]:hover::-webkit-slider-thumb {
  border-color: #b8b8b8;
}
.datepicker--time-row input[type="range"]:hover::-moz-range-thumb {
  border-color: #b8b8b8;
}
.datepicker--time-row input[type="range"]:hover::-ms-thumb {
  border-color: #b8b8b8;
}
.datepicker--time-row input[type="range"]:focus {
  outline: none;
}
.datepicker--time-row input[type="range"]:focus::-webkit-slider-thumb {
  background: #732c66;
  border-color: #732c66;
}
.datepicker--time-row input[type="range"]:focus::-moz-range-thumb {
  background: #732c66;
  border-color: #732c66;
}
.datepicker--time-row input[type="range"]:focus::-ms-thumb {
  background: #732c66;
  border-color: #732c66;
}
.datepicker--time-row input[type="range"]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.datepicker--time-row input[type="range"]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.datepicker--time-row input[type="range"]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid #dedede;
  background: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.datepicker--time-row input[type="range"]::-webkit-slider-thumb {
  margin-top: -6px;
}
.datepicker--time-row input[type="range"]::-webkit-slider-runnable-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}
.datepicker--time-row input[type="range"]::-moz-range-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}
.datepicker--time-row input[type="range"]::-ms-track {
  border: none;
  height: 1px;
  cursor: pointer;
  color: transparent;
  background: transparent;
}
.datepicker--time-row input[type="range"]::-ms-fill-lower {
  background: transparent;
}
.datepicker--time-row input[type="range"]::-ms-fill-upper {
  background: transparent;
}
.datepicker--time-row span {
  padding: 0 12px;
}
.datepicker--time-icon {
  color: #9c9c9c;
  border: 1px solid;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 5px -1px 0;
  width: 1em;
  height: 1em;
}
.datepicker--time-icon:after,
.datepicker--time-icon:before {
  content: "";
  background: currentColor;
  position: absolute;
}
.datepicker--time-icon:after {
  height: 0.4em;
  width: 1px;
  left: calc(50% - 1px);
  top: calc(50% + 1px);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.datepicker--time-icon:before {
  width: 0.4em;
  height: 1px;
  top: calc(50% + 1px);
  left: calc(50% - 1px);
}
.datepicker--cell-day.-other-month-,
.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.datepicker--cell-day.-other-month-:hover,
.datepicker--cell-year.-other-decade-:hover {
  color: #c5c5c5;
}
.-disabled-.-focus-.datepicker--cell-day.-other-month-,
.-disabled-.-focus-.datepicker--cell-year.-other-decade- {
  color: #dedede;
}
.-selected-.datepicker--cell-day.-other-month-,
.-selected-.datepicker--cell-year.-other-decade- {
  color: #fff;
  background: #a2ddf6;
}
.-selected-.-focus-.datepicker--cell-day.-other-month-,
.-selected-.-focus-.datepicker--cell-year.-other-decade- {
  background: #8ad5f4;
}
.-in-range-.datepicker--cell-day.-other-month-,
.-in-range-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.1);
  color: #cccccc;
}
.-in-range-.-focus-.datepicker--cell-day.-other-month-,
.-in-range-.-focus-.datepicker--cell-year.-other-decade- {
  background-color: rgba(197, 222, 45, 0.2);
}
.datepicker--cell-day.-other-month-:empty,
.datepicker--cell-year.-other-decade-:empty {
  background: none;
  border: none;
}
