* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: radial-gradient(circle at top, #1b1e3a 0%, #0b0d17 45%, #050610 100%);
  color: #eef1ff;
  line-height: 1.6;
}

body.twofactor-active {
  overflow: hidden;
}
.twofactor-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 18, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  padding: 20px;
}
.twofactor-modal {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.98), rgba(14, 18, 38, 0.95));
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.1);
  box-shadow: 0 24px 60px rgba(2, 2, 12, 0.7),
              0 8px 24px rgba(0, 0, 0, 0.4);
  width: min(450px, calc(100% - 40px));
  max-height: 85vh;
  padding: 24px;
  display: grid;
  gap: 18px;
  text-align: left;
  overflow-y: auto;
}
.avatar-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 18, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2300;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.avatar-modal-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.avatar-modal {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.98), rgba(14, 18, 38, 0.95));
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.1);
  box-shadow: 0 24px 60px rgba(2, 2, 12, 0.7),
              0 8px 24px rgba(0, 0, 0, 0.4);
  width: min(500px, calc(100% - 40px));
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.avatar-modal-overlay:not([hidden]) .avatar-modal {
  transform: scale(1);
}
.avatar-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(228, 233, 255, 0.08);
  flex-shrink: 0;
}
.avatar-modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.avatar-modal-close {
  background: transparent;
  border: none;
  color: rgba(238, 241, 255, 0.7);
  font-size: 2rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.avatar-modal-close:hover {
  background: rgba(228, 233, 255, 0.1);
  color: #eef1ff;
  transform: rotate(90deg);
}
.avatar-modal-body {
  padding: 24px;
  display: grid;
  gap: 18px;
  flex: 1;
  min-height: 0;
}
.avatar-modal-body .profile-form {
  display: grid;
  gap: 18px;
}
.avatar-modal-body .avatar-cropper {
  margin: 0;
  padding: 16px;
}
.avatar-modal-body .avatar-cropper canvas {
  max-width: 100%;
  width: 100%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1;
}
.avatar-modal-body .avatar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.avatar-modal-body .form-label {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.avatar-modal-body input[type="file"] {
  padding: 10px;
  font-size: 0.9rem;
}
.twofactor-modal h2 {
  margin: 0 0 4px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.twofactor-modal p {
  margin: 0;
  color: rgba(164, 172, 196, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}
.twofactor-form {
  display: grid;
  gap: 14px;
}

/* DJ Modal Styles */
.dj-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 18, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2400;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.dj-modal-overlay:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
}
.dj-modal {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.98), rgba(14, 18, 38, 0.95));
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 255, 0.1);
  box-shadow: 0 30px 80px rgba(5, 8, 26, 0.6),
              0 8px 24px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: min(900px, calc(100% - 40px));
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.dj-modal-overlay:not([hidden]) .dj-modal {
  transform: scale(1);
}
.dj-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(228, 233, 255, 0.1);
  flex-shrink: 0;
}
.dj-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.dj-modal-close {
  background: transparent;
  border: none;
  color: rgba(238, 241, 255, 0.7);
  font-size: 2.5rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.dj-modal-close:hover {
  background: rgba(228, 233, 255, 0.1);
  color: rgba(212, 175, 55, 0.9);
  transform: rotate(90deg);
}
.dj-modal-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-height: 0;
}

/* DJ Visualizer */
.dj-visualizer {
  background: rgba(6, 8, 18, 0.6);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.dj-visualizer-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 120px;
}
.dj-bar {
  width: 12px;
  height: var(--height, 50%);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.9) 0%, rgba(255, 215, 0, 0.7) 100%);
  border-radius: 6px 6px 2px 2px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  animation: djBarPulse 1.2s ease-in-out infinite;
  animation-delay: var(--delay, 0ms);
}
@keyframes djBarPulse {
  0%, 100% {
    height: var(--height, 50%);
    opacity: 0.8;
  }
  50% {
    height: calc(var(--height, 50%) * 1.3);
    opacity: 1;
  }
}

/* DJ Decks */
.dj-decks {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
}
.dj-deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.dj-deck-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dj-deck-platter {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 8px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6),
              inset 0 2px 8px rgba(255, 255, 255, 0.1),
              inset 0 -2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: djPlatterSpin 8s linear infinite;
}
@keyframes djPlatterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.dj-deck-center {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.dj-deck-groove {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: repeating-conic-gradient(
    from 0deg,
    transparent 0deg 5deg,
    rgba(212, 175, 55, 0.05) 5deg 10deg
  );
}
.dj-deck-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.dj-control-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #0b0d17;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
.dj-control-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}
.dj-slider {
  width: 100%;
  max-width: 120px;
}
.dj-fader {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(12, 16, 36, 0.8);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.dj-fader::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}
.dj-fader::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* DJ Mixer */
.dj-mixer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(6, 8, 18, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  min-width: 200px;
}
.dj-mixer-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.dj-mixer-knobs {
  display: flex;
  gap: 20px;
}
.dj-knob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dj-knob-dial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 3px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5),
              inset 0 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}
.dj-knob-dial::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 12px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 2px;
}
.dj-knob span {
  font-size: 0.75rem;
  color: rgba(164, 172, 196, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dj-crossfader {
  width: 100%;
  margin-top: 8px;
}
.dj-crossfader-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(12, 16, 36, 0.8);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.dj-crossfader-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}
.dj-crossfader-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* DJ Track Info */
.dj-track-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(6, 8, 18, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.dj-track-current,
.dj-track-next {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dj-track-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 100px;
}
.dj-track-name {
  font-size: 1rem;
  color: rgba(238, 241, 255, 0.9);
  font-weight: 500;
}

/* Responsive DJ Modal */
@media (max-width: 768px) {
  .dj-modal {
    width: calc(100% - 32px);
    max-height: 92vh;
  }
  .dj-modal-header {
    padding: 20px 24px;
  }
  .dj-modal-body {
    padding: 24px;
    gap: 20px;
  }
  .dj-decks {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dj-deck-platter {
    width: 160px;
    height: 160px;
  }
  .dj-mixer {
    order: -1;
  }
  .dj-visualizer-bars {
    height: 80px;
  }
  .dj-bar {
    width: 10px;
  }
}
@media (max-width: 480px) {
  .dj-modal {
    width: calc(100% - 24px);
    border-radius: 20px;
  }
  .dj-modal-header {
    padding: 18px 20px;
  }
  .dj-modal-header h2 {
    font-size: 1.3rem;
  }
  .dj-modal-body {
    padding: 20px;
    gap: 18px;
  }
  .dj-deck-platter {
    width: 140px;
    height: 140px;
  }
  .dj-mixer-knobs {
    gap: 16px;
  }
  .dj-knob-dial {
    width: 40px;
    height: 40px;
  }
}
.twofactor-form input[type=text] {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(238, 241, 255, 0.14);
  background: rgba(11, 13, 29, 0.75);
  color: #eef1ff;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
}
.twofactor-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 3200;
  pointer-events: none;
  display: block;
  opacity: 0;
  transition: opacity 0.24s ease;
}
.page-transition-overlay.is-active {
  opacity: 1;
}
.page-transition-chip {
  position: absolute;
  bottom: -80px;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffe2a8 0%, #ffb03a 55%, #b25b11 100%);
  box-shadow: 0 16px 40px rgba(9, 5, 18, 0.6),
              0 8px 20px rgba(212, 175, 55, 0.4),
              inset 0 4px 12px rgba(255, 255, 255, 0.6),
              inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.8);
  animation: pageChipFlight var(--chip-duration, 640ms) ease-in-out forwards;
  animation-delay: var(--chip-delay, 0ms);
  animation-play-state: paused;
  will-change: transform, opacity;
  margin-left: var(--offset-x, 0px);
}
.page-transition-overlay.is-active .page-transition-chip {
  animation-play-state: running;
}
.page-transition-chip::after {
  content: "★";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(9, 5, 18, 0.9);
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
  font-weight: 700;
}
body[data-transition-active="true"] {
  cursor: wait;
}
@keyframes pageChipFlight {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7) rotate(0deg);
  }
  8% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
    transform: translate3d(var(--travel-x, 0px), var(--travel-y, -240px), 0) scale(1.1) rotate(var(--spin-angle, 540deg));
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition-overlay {
    display: none !important;
  }
}

@keyframes slotReelSpin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-300%);
  }
}
@keyframes slotReelSettle {
  0% {
    transform: translateY(-300%) scale(1.05);
    opacity: 0.8;
  }
  60% {
    transform: translateY(-5%) scale(1.02);
    opacity: 0.95;
  }
  85% {
    transform: translateY(2%) scale(0.98);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes slotReelBlur {
  0%, 100% {
    filter: blur(0px);
  }
  50% {
    filter: blur(2px);
  }
}
@keyframes slotCellSpin {
  0% {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
  }
  25% {
    transform: translateY(-25%) rotateX(90deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50%) rotateX(180deg);
    opacity: 0.1;
  }
  75% {
    transform: translateY(-75%) rotateX(270deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100%) rotateX(360deg);
    opacity: 1;
  }
}

.site-header {
  background: rgba(11, 13, 23, 0.9);
  border-bottom: 1px solid rgba(228, 233, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(6px);
}
.site-header .header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
}
.site-header .header-inner .brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.site-header .header-inner .brand-icon {
  font-size: 1.8rem;
}
.site-header .header-inner .brand-text h1 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.site-header .header-inner .brand-text p {
  margin: 0;
  color: #a4acc4;
  font-size: 0.9rem;
}
.site-header .header-inner .main-nav a {
  color: #eef1ff;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header .header-inner .main-nav a:hover,
.site-header .header-inner .main-nav a:focus {
  border-color: #d4af37;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.hero {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.98), rgba(14, 18, 38, 0.95));
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 255, 0.1);
  box-shadow: 0 30px 70px rgba(5, 8, 26, 0.5),
              0 8px 24px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 60px 48px;
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 125, 233, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.1); }
}
.hero .hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}
.hero .hero-content .hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.hero .hero-content .hero-badge-row .badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero .hero-content .hero-badge-row .badge.glow {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(255, 215, 0, 0.8));
  color: #0b0d17;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.6),
              0 4px 12px rgba(212, 175, 55, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 24px rgba(212, 175, 55, 0.6), 0 4px 12px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 32px rgba(212, 175, 55, 0.8), 0 6px 16px rgba(212, 175, 55, 0.5); }
}
.hero .hero-content .hero-badge-row .badge.outline {
  border: 1px solid rgba(228, 233, 255, 0.35);
  color: #eef1ff;
  background: rgba(11, 13, 23, 0.4);
}
.hero .hero-content .hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.hero .hero-content .hero-lead {
  color: #a4acc4;
  margin-bottom: 24px;
  max-width: 560px;
}
.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.hero .hero-stats {
  display: flex;
  gap: 26px;
  margin: 28px 0 18px;
  padding: 0;
  list-style: none;
}
.hero .hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero .hero-stats li strong {
  font-size: 2rem;
  background: linear-gradient(135deg, #d4af37 0%, rgba(255, 215, 0, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.hero .hero-stats li span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(238, 241, 255, 0.7);
}
.hero .hero-hint {
  color: #a4acc4;
  font-size: 0.95rem;
}
.hero .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero .hero-visual .casino-table {
  width: 100%;
  max-width: 400px;
  height: 360px;
  background: linear-gradient(145deg, 
    rgba(30, 35, 60, 0.98) 0%,
    rgba(18, 21, 43, 0.95) 30%,
    rgba(10, 12, 26, 0.98) 100%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 40px 80px rgba(3, 6, 20, 0.7),
              0 0 60px rgba(212, 175, 55, 0.3),
              inset 0 2px 8px rgba(255, 255, 255, 0.05);
  animation: tableGlow 4s ease-in-out infinite;
}
@keyframes tableGlow {
  0%, 100% { box-shadow: 0 40px 80px rgba(3, 6, 20, 0.7), 0 0 60px rgba(212, 175, 55, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.05); }
  50% { box-shadow: 0 40px 80px rgba(3, 6, 20, 0.7), 0 0 80px rgba(212, 175, 55, 0.5), inset 0 2px 8px rgba(255, 255, 255, 0.08); }
}
.hero .hero-visual .chip-stack {
  position: absolute;
  bottom: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0d17;
  font-size: 1.1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5),
              inset 0 2px 4px rgba(255, 255, 255, 0.3),
              inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(0, 0, 0, 0.1);
  animation: chipFloat 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.hero .hero-visual .chip-stack:hover {
  transform: translateY(-8px) scale(1.1);
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero .hero-visual .chip-stack.chip-gold {
  background: radial-gradient(circle at 30% 30%, #ffe79f, #c79a1d);
  left: 48px;
}
.hero .hero-visual .chip-stack.chip-crimson {
  background: radial-gradient(circle at 30% 30%, #ff768f, #8d1433);
  left: 132px;
}
.hero .hero-visual .floating-card {
  position: absolute;
  width: 90px;
  height: 128px;
  border-radius: 14px;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
  color: #121526;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
              inset 0 1px 2px rgba(255, 255, 255, 0.8),
              inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(0, 0, 0, 0.05);
  animation: cardFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero .hero-visual .floating-card:hover {
  transform: scale(1.1) rotate(0deg) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5),
              inset 0 1px 2px rgba(255, 255, 255, 0.9);
  z-index: 10;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(var(--card-rotation, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--card-rotation, 0deg)); }
}
.hero .hero-visual .floating-card.card-ace {
  top: 48px;
  right: 52px;
  --card-rotation: -10deg;
  transform: rotate(-10deg);
  animation-delay: 0s;
}
.hero .hero-visual .floating-card.card-queen {
  top: 118px;
  right: 138px;
  --card-rotation: 16deg;
  transform: rotate(16deg);
  animation-delay: 1s;
}
.hero .hero-visual .light-pulse {
  position: absolute;
  width: 220px;
  height: 60px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent);
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(8px);
  opacity: 0.8;
}
.hero .hero-visual .neon-arch {
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(43, 125, 233, 0.3);
  box-shadow: 0 0 18px rgba(43, 125, 233, 0.25);
}
.hero .hero-visual .jackpot-orb {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 18px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(11, 13, 23, 0.95), rgba(6, 8, 18, 0.9));
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4),
              inset 0 1px 2px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: jackpotPulse 3s ease-in-out infinite;
  z-index: 5;
}
@keyframes jackpotPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.15); }
}
.hero .hero-visual .jackpot-orb .orb-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(212, 175, 55, 0.9);
  font-weight: 700;
}
.hero .hero-visual .jackpot-orb .orb-value {
  font-weight: 800;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #d4af37 0%, rgba(255, 215, 0, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, rgba(255, 215, 0, 0.95) 100%);
  color: #0b0d17;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4),
              0 4px 12px rgba(212, 175, 55, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5),
              0 6px 16px rgba(212, 175, 55, 0.4),
              inset 0 1px 2px rgba(255, 255, 255, 0.4);
}
.btn-secondary {
  background: transparent;
  color: #eef1ff;
  border: 1px solid rgba(228, 233, 255, 0.2);
}
.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}
.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.features,
.games,
.legal,
.contact,
.lounge,
.cta {
  margin-bottom: 80px;
}
.features h3,
.games h3,
.legal h3,
.contact h3,
.lounge h3,
.cta h3 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  text-align: center;
}
.section-header h3 {
  font-size: 2.4rem;
  margin: 0;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-header p {
  color: rgba(164, 172, 196, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-hint {
  color: rgba(164, 172, 196, 0.8);
  font-size: 0.95rem;
  font-style: italic;
}

.feature-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.feature-grid article {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.95), rgba(14, 18, 38, 0.92));
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.08);
  box-shadow: 0 8px 32px rgba(5, 8, 26, 0.4),
              0 2px 8px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(5, 8, 26, 0.6),
              0 4px 16px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.25);
}
.feature-grid article:hover::before {
  opacity: 1;
}
.feature-grid article h4 {
  font-size: 1.4rem;
  margin: 0;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-grid article h4::before {
  content: "✨";
  font-size: 1.2em;
  filter: grayscale(0.2);
}
.feature-grid article p {
  color: rgba(164, 172, 196, 0.9);
  margin: 0;
  line-height: 1.7;
}

.section-hint {
  color: #a4acc4;
  margin-bottom: 20px;
}

.lounge {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.98), rgba(14, 18, 38, 0.95));
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 255, 0.1);
  box-shadow: 0 30px 70px rgba(5, 8, 26, 0.5),
              0 8px 24px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.lounge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}
.lounge .lounge-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: start;
}
.lounge .lounge-inner .lounge-intro {
  position: relative;
  z-index: 1;
}
.lounge .lounge-inner .lounge-intro h3 {
  font-size: 2rem;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.lounge .lounge-inner .lounge-intro p {
  color: rgba(164, 172, 196, 0.9);
  line-height: 1.7;
  font-size: 1.05rem;
}
.lounge .lounge-inner .lounge-perks {
  position: relative;
  z-index: 1;
}
.lounge .lounge-inner .lounge-perks ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.lounge .lounge-inner .lounge-perks li {
  padding: 16px 20px;
  background: rgba(12, 16, 36, 0.5);
  border-radius: 12px;
  border-left: 4px solid rgba(212, 175, 55, 0.4);
  color: rgba(164, 172, 196, 0.9);
  line-height: 1.6;
  transition: all 0.3s ease;
}
.lounge .lounge-inner .lounge-perks li:hover {
  background: rgba(12, 16, 36, 0.7);
  border-left-color: rgba(212, 175, 55, 0.6);
  transform: translateX(4px);
}
.lounge .lounge-footer {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.lounge .lounge-footer .lounge-badge {
  padding: 10px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(12, 16, 36, 0.8), rgba(18, 22, 42, 0.6));
  color: rgba(212, 175, 55, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}
.lounge .lounge-footer .lounge-badge:hover {
  background: linear-gradient(135deg, rgba(12, 16, 36, 0.95), rgba(18, 22, 42, 0.8));
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}
.lounge .lounge-footer button.lounge-badge {
  cursor: pointer;
}
.lounge .lounge-footer button.lounge-badge:hover {
  background: linear-gradient(135deg, rgba(12, 16, 36, 0.95), rgba(18, 22, 42, 0.8));
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.games-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.games-grid .game-card {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.95), rgba(14, 18, 38, 0.92));
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.08);
  box-shadow: 0 8px 32px rgba(5, 8, 26, 0.4),
              0 2px 8px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 32px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 320px;
  height: 100%;
}
.games-grid .game-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.games-grid .game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
}
.games-grid .game-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(5, 8, 26, 0.6),
              0 4px 16px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}
.games-grid .game-card:hover::before {
  opacity: 1;
}
.games-grid .game-card:hover::after {
  opacity: 1;
  border-color: rgba(212, 175, 55, 0.4);
}
.games-grid .game-card .game-icon {
  font-size: 3.2rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease, filter 0.4s ease;
  position: relative;
  z-index: 1;
}
.games-grid .game-card:hover .game-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 6px 16px rgba(212, 175, 55, 0.4));
}
.games-grid .game-card h4 {
  font-size: 1.4rem;
  margin: 0;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.games-grid .game-card p {
  color: rgba(164, 172, 196, 0.9);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.games-grid .game-card .btn {
  margin-top: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 0.95rem;
}

.legal ul {
  list-style: square inside;
  padding: 0;
  margin: 0;
  color: #a4acc4;
}

.contact .contact-form {
  background: rgba(18, 21, 43, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 26px;
  max-width: 520px;
  display: grid;
  gap: 14px;
}
.contact .contact-form label {
  font-weight: 600;
}
.contact .contact-form input,
.contact .contact-form textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(228, 233, 255, 0.12);
  background: rgba(11, 13, 23, 0.7);
  color: #eef1ff;
  font-size: 0.95rem;
}
.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  outline: 2px solid #2b7de9;
  outline-offset: 2px;
}

.cta .cta-panel {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.98), rgba(14, 18, 38, 0.95));
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 255, 0.1);
  box-shadow: 0 30px 70px rgba(5, 8, 26, 0.5),
              0 8px 24px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}
.cta .cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}
.cta .cta-panel::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(60px);
  animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.2); }
}
.cta .cta-panel h3 {
  font-size: 2.4rem;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.cta .cta-panel p {
  color: rgba(164, 172, 196, 0.9);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta .cta-panel .cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.site-footer {
  border-top: 1px solid rgba(228, 233, 255, 0.08);
  padding: 20px;
  text-align: center;
  background: rgba(11, 13, 23, 0.85);
}
.site-footer a {
  color: #d4af37;
  text-decoration: none;
  margin: 0 6px;
}

.legal-page {
  background: radial-gradient(circle at top, #1a1d3a 0%, #0b0d17 45%, #060715 100%);
}
.legal-page .legal-hero {
  padding: 70px 20px 40px;
  text-align: center;
  background: linear-gradient(120deg, rgba(20, 23, 45, 0.95), rgba(19, 23, 50, 0.75));
  border-bottom: 1px solid rgba(228, 233, 255, 0.05);
}
.legal-page .legal-hero .legal-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-page .legal-hero .legal-hero-inner h1 {
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.legal-page .legal-hero .legal-hero-inner p {
  color: #a4acc4;
}
.legal-page .legal-content {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 20px;
  display: grid;
  gap: 26px;
}
.legal-page .legal-card {
  background: rgba(18, 21, 43, 0.88);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 32px 28px;
}
.legal-page .legal-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
.legal-page .legal-card p,
.legal-page .legal-card address {
  color: #a4acc4;
  margin: 0;
  line-height: 1.7;
  font-style: normal;
}
.legal-page .legal-card ul {
  margin: 14px 0 0 18px;
  color: #a4acc4;
  display: grid;
  gap: 10px;
}
.legal-page .legal-card ul li::marker {
  color: #d4af37;
}
.legal-page .legal-card a {
  color: #d4af37;
  text-decoration: none;
}
.legal-page .legal-footer {
  padding: 40px 20px 60px;
  text-align: center;
}

.dashboard-page {
  background: radial-gradient(circle at top, #1b2146 0%, #0b0d17 42%, #060716 100%);
  min-height: 100vh;
}
.dashboard-page .dashboard-hero {
  padding: 70px 20px 60px;
  background: linear-gradient(135deg, rgba(24, 27, 54, 0.95), rgba(17, 20, 42, 0.9));
  border-bottom: 1px solid rgba(228, 233, 255, 0.05);
}
.dashboard-page .dashboard-hero .dashboard-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: center;
}
.dashboard-page .dashboard-hero .dashboard-hero-text .hero-chip-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dashboard-page .dashboard-hero .dashboard-hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.dashboard-page .dashboard-hero .dashboard-hero-text p {
  color: #a4acc4;
  margin-bottom: 24px;
  max-width: 520px;
}
.dashboard-page .dashboard-hero .dashboard-hero-text .hero-quick-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.dashboard-page .dashboard-hero .dashboard-hero-card {
  background: rgba(18, 21, 43, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.dashboard-page .dashboard-hero .dashboard-hero-card .card-balance {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.dashboard-page .dashboard-hero .dashboard-hero-card .card-balance .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(238, 241, 255, 0.75);
}
.dashboard-page .dashboard-hero .dashboard-hero-card .card-balance .value {
  font-size: 2.4rem;
  font-weight: 700;
  color: #d4af37;
}
.dashboard-page .dashboard-hero .dashboard-hero-card .card-progress .progress-headline {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(238, 241, 255, 0.8);
  margin-bottom: 8px;
}
.dashboard-page .dashboard-hero .dashboard-hero-card .card-progress .progress-bar {
  height: 10px;
  background: rgba(228, 233, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.dashboard-page .dashboard-hero .dashboard-hero-card .card-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), #d4af37);
}
.dashboard-page .dashboard-hero .dashboard-hero-card .card-progress p {
  color: #a4acc4;
  margin: 0;
}
.dashboard-page .dashboard-main {
  max-width: 1080px;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: grid;
  gap: 48px;
}
.dashboard-page .dashboard-stats {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.dashboard-page .dashboard-stats article {
  background: rgba(18, 21, 43, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 26px;
}
.dashboard-page .dashboard-stats article h2 {
  margin-top: 0;
  margin-bottom: 10px;
}
.dashboard-page .dashboard-stats article .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 12px;
}
.dashboard-page .dashboard-stats article p {
  color: #a4acc4;
  margin: 0;
}
.dashboard-page .dashboard-section {
  display: grid;
  gap: 26px;
}
.dashboard-page .flash-container {
  display: grid;
  gap: 12px;
}
.dashboard-page .flash-message {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(18, 21, 43, 0.9);
  border-left: 4px solid rgba(212, 175, 55, 0.6);
  color: #eef1ff;
}
.dashboard-page .flash-message.flash-success {
  border-left-color: #2ecc71;
}
.dashboard-page .flash-message.flash-error {
  border-left-color: #e74c3c;
}
.dashboard-page .flash-message p {
  margin: 0;
}
.dashboard-page .dashboard-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.dashboard-page .dashboard-card {
  background: rgba(18, 21, 43, 0.88);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dashboard-page .dashboard-card .card-icon {
  font-size: 2.4rem;
}
.dashboard-page .dashboard-card p {
  color: #a4acc4;
  margin: 0;
}
.dashboard-page .dashboard-card form {
  margin-top: 8px;
}
.dashboard-page .dashboard-missions {
  display: grid;
  gap: 20px;
}
.dashboard-page .dashboard-hint {
  margin: 10px 0 0;
  color: rgba(238, 241, 255, 0.72);
  font-style: italic;
}
.dashboard-page .mission-card {
  background: rgba(18, 21, 43, 0.88);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.dashboard-page .mission-card.is-completed {
  opacity: 0.55;
  filter: grayscale(0.3);
}
.dashboard-page .mission-card.is-completed .mission-status,
.dashboard-page .mission-card.is-completed .mission-meta {
  color: rgba(238, 241, 255, 0.6);
}
.dashboard-page .mission-card.is-completed .mission-reward .reward-value {
  color: rgba(212, 175, 55, 0.55);
}
.dashboard-page .mission-card .mission-info h3 {
  margin: 0 0 8px;
}
.dashboard-page .mission-card .mission-info p {
  margin: 0;
  color: rgba(238, 241, 255, 0.75);
}
.dashboard-page .mission-card .mission-info .mission-status {
  margin-top: 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dashboard-page .mission-card .mission-info .mission-status .mission-meta {
  font-weight: 400;
  margin-left: 6px;
}
.dashboard-page .mission-card .mission-reward {
  display: grid;
  gap: 6px;
  text-align: right;
}
.dashboard-page .mission-card .mission-reward .reward-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(238, 241, 255, 0.6);
}
.dashboard-page .mission-card .mission-reward .reward-value {
  font-weight: 700;
  color: #d4af37;
}
.dashboard-page .mission-card .mission-reward .reward-xp {
  color: #ebc96a;
}
.dashboard-page .mission-card .mission-reward .mission-meta {
  font-size: 0.85rem;
  color: rgba(238, 241, 255, 0.7);
}
.dashboard-page .mission-card .mission-reward .btn {
  align-self: flex-end;
}
.dashboard-page .dashboard-news {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.dashboard-page .news-card {
  background: rgba(18, 21, 43, 0.86);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 24px;
  display: grid;
  gap: 12px;
}
.dashboard-page .news-card .news-badge {
  display: inline-flex;
  align-self: start;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #d4af37;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.dashboard-page .news-card p {
  color: #a4acc4;
  margin: 0;
}
.dashboard-page .dashboard-support {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.dashboard-page .support-card {
  background: rgba(18, 21, 43, 0.88);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 24px;
  display: grid;
  gap: 12px;
}
.dashboard-page .support-card p {
  color: #a4acc4;
  margin: 0;
}
.dashboard-page .support-card .btn {
  justify-self: start;
}

.auth-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1b2146 0%, #0b0d17 45%, #060716 100%);
}
.auth-page .auth-hero {
  padding: 70px 20px 50px;
  background: linear-gradient(120deg, rgba(25, 28, 56, 0.95), rgba(16, 20, 42, 0.9));
  border-bottom: 1px solid rgba(228, 233, 255, 0.05);
}
.auth-page .auth-hero .auth-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
}
.auth-page .auth-hero .auth-hero-text .auth-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.auth-page .auth-hero .auth-hero-text h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
.auth-page .auth-hero .auth-hero-text p {
  color: #a4acc4;
  margin: 0;
  max-width: 540px;
}
.auth-page .auth-hero .auth-hero-card {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 255, 0.12);
  background: linear-gradient(160deg, rgba(24, 28, 58, 0.95), rgba(14, 16, 34, 0.85));
  box-shadow: 0 25px 65px rgba(3, 6, 18, 0.55);
  overflow: hidden;
}
.auth-page .auth-hero .auth-hero-card .card-spotlight {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45), transparent 65%);
  top: -80px;
  right: -70px;
  filter: blur(10px);
  opacity: 0.9;
}
.auth-page .auth-hero .auth-hero-card .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.auth-page .auth-hero .auth-hero-card .card-header .card-chip {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.9), rgba(255, 238, 190, 0.85));
  color: #0b0d17;
  font-weight: 700;
}
.auth-page .auth-hero .auth-hero-card .card-header .card-title {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}
.auth-page .auth-hero .auth-hero-card .card-body {
  display: grid;
  gap: 10px;
  color: #a4acc4;
}
.auth-page .auth-hero .auth-hero-card .card-body p {
  margin: 0;
}
.auth-page .auth-content {
  max-width: 1080px;
  margin: 40px auto 80px;
  padding: 0 20px;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}
.auth-page .auth-form-section {
  background: rgba(18, 21, 43, 0.92);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 34px;
  border-radius: 18px;
}
.auth-page .auth-form-section h2 {
  margin-top: 0;
  margin-bottom: 24px;
}
.auth-page .auth-form-section .flash-container {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}
.auth-page .auth-form-section .flash-message {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(18, 21, 43, 0.9);
  border-left: 4px solid rgba(212, 175, 55, 0.6);
  color: #eef1ff;
}
.auth-page .auth-form-section .flash-message.flash-success {
  border-left-color: #2ecc71;
}
.auth-page .auth-form-section .flash-message.flash-error {
  border-left-color: #e74c3c;
}
.auth-page .auth-form-section .flash-message.flash-debug {
  border-left-color: #9b59b6;
}
.auth-page .auth-form-section .flash-message p {
  margin: 0;
}
.auth-page .auth-form-section .auth-form {
  display: grid;
  gap: 18px;
}
.auth-page .auth-form-section .auth-form .form-group {
  display: grid;
  gap: 8px;
}
.auth-page .auth-form-section .auth-form .form-group label {
  font-weight: 600;
}
.auth-page .auth-form-section .auth-form .form-group input,
.auth-page .auth-form-section .auth-form .form-group select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(228, 233, 255, 0.12);
  background: rgba(11, 13, 23, 0.7);
  color: #eef1ff;
  font-size: 0.95rem;
}
.auth-page .auth-form-section .auth-form .form-group input:focus,
.auth-page .auth-form-section .auth-form .form-group select:focus {
  outline: 2px solid #2b7de9;
  outline-offset: 2px;
}
.auth-page .auth-form-section .auth-form .form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.auth-page .auth-form-section .auth-form .form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.auth-page .auth-form-section .auth-form .form-checkbox input {
  margin-top: 4px;
}
.auth-page .auth-form-section .auth-form .form-checkbox label {
  color: #a4acc4;
}
.auth-page .auth-form-section .auth-form .form-checkbox label a {
  color: #d4af37;
  text-decoration: none;
}
.auth-page .auth-form-section .auth-form .auth-hint {
  color: #a4acc4;
  margin: 0;
}
.auth-page .auth-form-section .auth-form .auth-hint a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}
.auth-page .auth-side-info {
  display: grid;
  gap: 20px;
}
.auth-page .auth-side-info .info-card {
  background: rgba(18, 21, 43, 0.88);
  border-radius: 16px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 26px;
}
.auth-page .auth-side-info .info-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}
.auth-page .auth-side-info .info-card p {
  color: #a4acc4;
  margin: 0;
}
.auth-page .auth-side-info .info-card ul {
  margin: 0;
  padding-left: 18px;
  color: #a4acc4;
  display: grid;
  gap: 8px;
}
.auth-page .auth-side-info .info-card ul li::marker {
  color: #d4af37;
}

.profile-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #1b2146 0%, #0b0d17 45%, #060716 100%);
  color: #eef1ff;
  padding-bottom: 80px;
}
.profile-page .profile-hero {
  padding: 100px 20px 80px;
  background: linear-gradient(180deg, rgba(27, 30, 58, 0.4) 0%, transparent 100%);
  position: relative;
}
.profile-page .profile-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.profile-page .profile-hero .profile-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.profile-page .profile-hero .profile-hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profile-page .profile-hero .profile-hero-text .hero-chip-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}
.profile-page .profile-hero .profile-hero-text h1 {
  font-size: 3.2rem;
  margin: 0;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.profile-page .profile-hero .profile-hero-text p {
  color: rgba(164, 172, 196, 0.9);
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.profile-page .profile-hero .profile-hero-text .hero-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.profile-page .profile-hero .profile-hero-card {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.95), rgba(14, 18, 38, 0.92));
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.08);
  box-shadow: 0 8px 32px rgba(5, 8, 26, 0.4), 
              0 2px 8px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 34px;
  display: grid;
  gap: 24px;
  justify-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.profile-page .profile-hero .profile-hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  opacity: 0.6;
}
.profile-page .profile-hero .profile-hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(5, 8, 26, 0.5), 
              0 4px 12px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(228, 233, 255, 0.12);
}
.profile-page .profile-hero .profile-hero-card .profile-avatar-large {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(212, 175, 55, 0.5);
}
.profile-page .profile-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.profile-page .profile-stats span {
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(12, 16, 36, 0.6), rgba(18, 22, 42, 0.5));
  border-radius: 12px;
  border: 1px solid rgba(228, 233, 255, 0.08);
  font-size: 0.95rem;
  color: rgba(238, 241, 255, 0.9);
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.profile-page .profile-stats span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}
.profile-page .profile-stats span:hover {
  background: linear-gradient(135deg, rgba(12, 16, 36, 0.8), rgba(18, 22, 42, 0.7));
  border-color: rgba(212, 175, 55, 0.3);
  color: #eef1ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.profile-page .profile-stats span:hover::before {
  left: 100%;
}
.profile-page .profile-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: grid;
  gap: 56px;
}
.profile-page .profile-section {
  display: grid;
  gap: 28px;
}
.profile-page .flash-container {
  display: grid;
  gap: 12px;
}
.profile-page .flash-message {
  padding: 16px 20px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.95), rgba(14, 18, 38, 0.92));
  border-left: 4px solid rgba(212, 175, 55, 0.6);
  color: #eef1ff;
  box-shadow: 0 4px 16px rgba(5, 8, 26, 0.3);
}
.profile-page .flash-message.flash-success {
  border-left-color: #2ecc71;
}
.profile-page .flash-message.flash-error {
  border-left-color: #e74c3c;
}
.profile-page .flash-message p {
  margin: 0;
  line-height: 1.6;
}
.profile-page .section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.profile-page .section-header h2 {
  font-size: 2rem;
  margin: 0;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.profile-page .section-header h2::before {
  content: "";
  width: 5px;
  height: 28px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.5));
  border-radius: 3px;
  flex-shrink: 0;
}
.profile-page .section-header[data-section="password"] h2::before {
  content: "🔑";
  width: auto;
  height: auto;
  background: none;
  font-size: 1.3em;
  filter: grayscale(0.1);
}
.profile-page .section-header[data-section="2fa"] h2::before {
  content: "🔐";
  width: auto;
  height: auto;
  background: none;
  font-size: 1.3em;
  filter: grayscale(0.1);
}
.profile-page .section-header p {
  color: rgba(164, 172, 196, 0.85);
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 4px;
}
.profile-page .profile-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.profile-page .profile-section-card,
.profile-page .profile-info-card {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.95), rgba(14, 18, 38, 0.92));
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.08);
  box-shadow: 0 8px 32px rgba(5, 8, 26, 0.4), 
              0 2px 8px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 28px;
  display: grid;
  gap: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.profile-page .profile-section-card::before,
.profile-page .profile-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.profile-page .profile-section-card:hover,
.profile-page .profile-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(5, 8, 26, 0.5), 
              0 4px 12px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(228, 233, 255, 0.12);
}
.profile-page .profile-section-card:hover::before,
.profile-page .profile-info-card:hover::before {
  opacity: 1;
}
.profile-page .profile-section-card h3,
.profile-page .profile-info-card h3 {
  font-size: 1.3rem;
  margin: 0 0 4px;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.profile-page .profile-section-card p,
.profile-page .profile-info-card p {
  margin: 0;
  color: rgba(164, 172, 196, 0.9);
  line-height: 1.6;
}
.profile-page .profile-section-card p strong,
.profile-page .profile-info-card p strong {
  color: rgba(212, 175, 55, 0.9);
  font-weight: 600;
}
.profile-page .profile-section-card form {
  display: grid;
  gap: 20px;
}
.profile-page .profile-form {
  display: grid;
  gap: 20px;
}
.profile-page .form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #eef1ff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.profile-page .form-label:has(+ input:focus) {
  color: rgba(212, 175, 55, 0.9);
}
.profile-page .profile-form input[type="text"],
.profile-page .profile-form input[type="password"],
.profile-page .profile-form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #eef1ff;
  background: rgba(12, 16, 36, 0.6);
  border: 2px solid rgba(228, 233, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}
.profile-page .profile-form input[type="text"]:focus,
.profile-page .profile-form input[type="password"]:focus,
.profile-page .profile-form input[type="email"]:focus {
  background: rgba(12, 16, 36, 0.8);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15),
              0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.profile-page .profile-form input[type="text"]:hover:not(:focus),
.profile-page .profile-form input[type="password"]:hover:not(:focus),
.profile-page .profile-form input[type="email"]:hover:not(:focus) {
  border-color: rgba(228, 233, 255, 0.15);
  background: rgba(12, 16, 36, 0.7);
}
.profile-page .profile-form input[type="text"]::placeholder,
.profile-page .profile-form input[type="password"]::placeholder,
.profile-page .profile-form input[type="email"]::placeholder {
  color: rgba(164, 172, 196, 0.5);
}
.profile-page .profile-form input[type="text"][inputmode="numeric"] {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.95);
}
.profile-page .profile-form input[type="text"][inputmode="numeric"]:focus {
  letter-spacing: 0.25em;
}
.profile-page .profile-form-inline {
  gap: 16px;
}
.profile-page .profile-form-inline .profile-hint {
  font-size: 0.85rem;
  color: rgba(164, 172, 196, 0.8);
  line-height: 1.5;
  margin-top: -4px;
}
.profile-page .profile-form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}
.profile-page .profile-form .btn {
  margin-top: 8px;
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.profile-page .profile-form .btn-primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3),
              0 2px 4px rgba(0, 0, 0, 0.2);
}
.profile-page .profile-form .btn-primary:hover {
  background: linear-gradient(135deg, #e0c04a 0%, #c9a428 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4),
              0 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.profile-page .profile-form .btn-secondary {
  background: rgba(12, 16, 36, 0.6);
  border: 2px solid rgba(228, 233, 255, 0.2);
  color: #eef1ff;
}
.profile-page .profile-form .btn-secondary:hover {
  background: rgba(12, 16, 36, 0.8);
  border-color: rgba(228, 233, 255, 0.3);
  transform: translateY(-2px);
}
.profile-page .profile-section-card .section-header {
  margin-bottom: 24px;
}
.profile-page .profile-section-card .section-header h2 {
  font-size: 1.5rem;
  margin: 0 0 8px;
  color: #eef1ff;
  font-weight: 700;
}
.profile-page .profile-section-card .section-header p {
  color: rgba(164, 172, 196, 0.85);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.profile-page .profile-avatar-preview {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
              0 0 0 8px rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  margin: 0 auto;
  display: block;
}
.profile-page .profile-section-card:hover .profile-avatar-preview {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
              0 0 0 8px rgba(212, 175, 55, 0.15);
  transform: scale(1.02);
}
.profile-page .profile-section-card:has(.profile-avatar-preview) {
  text-align: center;
}
.profile-page .profile-section-card .profile-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(164, 172, 196, 0.8);
}
.profile-page .profile-section-card #openAvatarModal {
  margin-top: 20px;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.profile-page .profile-info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(228, 233, 255, 0.08);
}
.profile-page .profile-info-card h3::before {
  content: "▸";
  color: rgba(212, 175, 55, 0.7);
  font-size: 0.9em;
}
.profile-page .profile-info-card p {
  padding: 8px 0;
  border-bottom: 1px solid rgba(228, 233, 255, 0.03);
}
.profile-page .profile-info-card p:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .profile-page .profile-hero {
    padding: 60px 20px 50px;
  }
  .profile-page .profile-hero .profile-hero-text h1 {
    font-size: 2.4rem;
  }
  .profile-page .profile-hero .profile-hero-inner {
    gap: 30px;
  }
  .profile-page .profile-main {
    gap: 40px;
    padding: 0 16px 60px;
  }
  .profile-page .profile-section {
    gap: 24px;
  }
  .profile-page .section-header h2 {
    font-size: 1.6rem;
  }
  .profile-page .profile-section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .profile-page .profile-vip-grid {
    grid-template-columns: 1fr;
  }
  .profile-page .profile-avatar-preview {
    width: 140px;
    height: 140px;
  }
  .avatar-modal {
    width: calc(100% - 32px);
    max-height: 90vh;
  }
  .avatar-modal-header {
    padding: 18px 20px;
  }
  .avatar-modal-body {
    padding: 20px;
    gap: 16px;
  }
  .twofactor-modal {
    width: calc(100% - 32px);
    padding: 20px;
  }
  .profile-page .profile-hero .profile-hero-card {
    padding: 28px;
  }
  .profile-page .profile-stats span {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .profile-page .profile-hero .profile-hero-text h1 {
    font-size: 2rem;
  }
  .profile-page .section-header h2 {
    font-size: 1.4rem;
  }
  .profile-page .profile-section-card,
  .profile-page .profile-info-card {
    padding: 20px;
  }
  .avatar-modal {
    width: calc(100% - 24px);
    max-height: 92vh;
    border-radius: 16px;
  }
  .avatar-modal-header {
    padding: 16px 18px;
  }
  .avatar-modal-header h2 {
    font-size: 1.15rem;
  }
  .avatar-modal-body {
    padding: 18px;
    gap: 14px;
  }
  .avatar-modal-body .avatar-cropper {
    padding: 12px;
  }
  .avatar-modal-body .avatar-cropper canvas {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1;
  }
  .twofactor-modal {
    width: calc(100% - 24px);
    padding: 18px;
    border-radius: 16px;
  }
  .twofactor-modal h2 {
    font-size: 1.15rem;
  }
}
.profile-page .avatar-cropper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 16px;
  background: rgba(12, 16, 36, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  width: 100%;
  box-sizing: border-box;
}
.profile-page .avatar-cropper canvas {
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: move;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
  border: 3px solid #d4af37;
  background: #ffffff;
  max-width: 100%;
  height: auto;
}
.profile-page .avatar-cropper-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.profile-page .avatar-cropper-controls button {
  min-width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.profile-page .avatar-cropper-controls button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}
.profile-page .avatar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.profile-page .avatar-submit {
  display: flex;
  justify-content: center;
}
.profile-page .profile-secret {
  display: inline-block;
  font-family: "Fira Mono","Courier New",Courier,monospace;
  background: rgba(12, 16, 36, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  color: rgba(212, 175, 55, 0.95);
  word-break: break-all;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: all 0.2s ease;
  margin: 8px 0;
}
.profile-page .profile-secret:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(12, 16, 36, 0.9);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}
.profile-page .profile-hint {
  color: rgba(164, 172, 196, 0.85);
  margin: 0 0 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}
.profile-page .profile-2fa-card form + form {
  margin-top: 12px;
}
.profile-page .profile-2fa-grid {
  align-items: start;
}
.profile-page .profile-2fa-card {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.95), rgba(14, 18, 38, 0.92));
  border: 1px solid rgba(228, 233, 255, 0.08);
  box-shadow: 0 8px 32px rgba(5, 8, 26, 0.4), 
              0 2px 8px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.profile-page .profile-2fa-card h3 {
  font-size: 1.3rem;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-page .profile-2fa-card h3::before {
  content: "🔐";
  font-size: 1.2em;
  filter: grayscale(0.2);
}
.profile-page .profile-2fa-card p {
  color: rgba(164, 172, 196, 0.9);
  line-height: 1.6;
  margin: 0 0 12px;
}
.profile-page .profile-2fa-card form {
  margin-top: 20px;
}
.profile-page .profile-qr-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.profile-page .profile-qr {
  width: 220px;
  height: 220px;
  border-radius: 14px;
  background: rgba(12, 16, 36, 0.86);
  padding: 12px;
  border: 1px solid rgba(212, 175, 55, 0.28);
}
.profile-page .profile-vip-section {
  margin-top: 8px;
}
.profile-page .profile-vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 28px;
}
.profile-page .profile-vip-card {
  background: linear-gradient(145deg, rgba(20, 24, 48, 0.95), rgba(14, 18, 38, 0.92));
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.08);
  box-shadow: 0 8px 32px rgba(5, 8, 26, 0.4), 
              0 2px 8px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 32px;
  display: grid;
  gap: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.profile-page .profile-vip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.profile-page .profile-vip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(5, 8, 26, 0.5), 
              0 4px 12px rgba(0, 0, 0, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-color: rgba(228, 233, 255, 0.12);
}
.profile-page .profile-vip-card:hover::before {
  opacity: 1;
}
.profile-page .profile-vip-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(228, 233, 255, 0.08);
}
.profile-page .profile-vip-header .vip-badge {
  font-size: 3rem;
  line-height: 1;
}
.profile-page .profile-vip-header h3 {
  font-size: 1.5rem;
  margin: 0 0 4px;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.95) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.profile-page .profile-vip-header p {
  margin: 0;
  color: rgba(164, 172, 196, 0.8);
  font-size: 0.9rem;
}
.profile-page .vip-token-counter {
  text-align: center;
  padding: 20px;
  background: rgba(12, 16, 36, 0.5);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
.profile-page .vip-token-value {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 6px;
}
.profile-page .vip-token-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(164, 172, 196, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.profile-page .vip-progress {
  display: grid;
  gap: 12px;
}
.profile-page .vip-progress-bar {
  height: 12px;
  background: rgba(12, 16, 36, 0.6);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(228, 233, 255, 0.05);
}
.profile-page .vip-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.4), #d4af37, rgba(212, 175, 55, 0.8));
  border-radius: 999px;
  transition: width 0.6s ease;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}
.profile-page .vip-progress-hint {
  margin: 0;
  color: rgba(164, 172, 196, 0.85);
  font-size: 0.9rem;
  text-align: center;
}
.profile-page .vip-tier-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.profile-page .vip-tier-perks li {
  padding: 10px 14px;
  background: rgba(12, 16, 36, 0.4);
  border-radius: 8px;
  color: rgba(164, 172, 196, 0.9);
  font-size: 0.9rem;
  border-left: 3px solid rgba(212, 175, 55, 0.4);
}
.profile-page .profile-vip-unlocks h3 {
  font-size: 1.3rem;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #eef1ff 0%, rgba(212, 175, 55, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.profile-page .vip-unlock-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.profile-page .vip-unlock-column h4 {
  font-size: 0.85rem;
  margin: 0 0 14px;
  color: rgba(212, 175, 55, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.profile-page .vip-unlock-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.profile-page .vip-unlock-column li {
  padding: 14px;
  background: rgba(12, 16, 36, 0.4);
  border-radius: 10px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.profile-page .vip-unlock-column li:hover {
  background: rgba(12, 16, 36, 0.6);
  border-color: rgba(228, 233, 255, 0.1);
}
.profile-page .vip-unlock-column li.is-unlocked {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.05);
}
.profile-page .vip-item-label {
  display: block;
  font-weight: 600;
  color: #eef1ff;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.profile-page .vip-item-description {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(164, 172, 196, 0.8);
  line-height: 1.4;
}
.profile-page .vip-item-status {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(12, 16, 36, 0.6);
  color: rgba(164, 172, 196, 0.9);
}
.profile-page .vip-unlock-column li.is-unlocked .vip-item-status {
  background: rgba(212, 175, 55, 0.2);
  color: rgba(212, 175, 55, 0.95);
}
.slot-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #231d45 0%, #0b071c 45%, #03030b 100%);
  color: #eef1ff;
  padding-bottom: 90px;
}
.slot-page .slot-hero {
  padding: 80px 20px 60px;
}
.slot-page .slot-hero .slot-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}
.slot-page .slot-hero .slot-hero-text {
  display: grid;
  gap: 18px;
}
.slot-page .slot-hero .slot-hero-text h1 {
  font-size: 3rem;
  margin: 0;
}
.slot-page .slot-hero .slot-hero-text p {
  color: rgba(238, 241, 255, 0.75);
  max-width: 520px;
}
.slot-page .slot-hero .slot-hero-text .hero-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.slot-page .slot-hero .slot-player-card {
  background: rgba(18, 21, 43, 0.88);
  border-radius: 20px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 20px 45px rgba(5, 8, 26, 0.35);
  padding: 30px;
  display: grid;
  gap: 14px;
}
.slot-page .slot-hero .slot-player-card .slot-player-name {
  font-size: 1.1rem;
  font-weight: 700;
}
.slot-page .slot-hero .slot-player-card .slot-player-balance {
  font-size: 1.4rem;
  font-weight: 700;
  color: #d4af37;
}
.slot-page .slot-hero .slot-player-card .slot-player-progress {
  display: grid;
  gap: 6px;
}
.slot-page .slot-hero .slot-player-card .slot-player-progress span {
  font-weight: 600;
}
.slot-page .slot-hero .slot-player-card .slot-player-progress .progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(238, 241, 255, 0.1);
  overflow: hidden;
}
.slot-page .slot-hero .slot-player-card .slot-player-progress .progress-bar .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), #d4af37);
}
.slot-page .slot-hero .slot-player-card .slot-player-progress small {
  color: rgba(238, 241, 255, 0.65);
}
.slot-page .slot-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 48px;
}
.slot-page .slot-flashes {
  display: grid;
  gap: 10px;
}
.slot-page .slot-machine-section {
  background: rgba(18, 21, 43, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(228, 233, 255, 0.05);
  box-shadow: 0 30px 70px rgba(2, 2, 12, 0.6);
  padding: 34px;
}
.slot-page .slot-machine {
  display: grid;
  gap: 24px;
  background: linear-gradient(145deg, rgba(14, 16, 38, 0.95), rgba(6, 8, 24, 0.92));
  border-radius: 22px;
  border: 1px solid rgba(238, 241, 255, 0.05);
  padding: 26px;
}
.slot-page .slot-machine-top {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.85);
  text-align: center;
}
.slot-page .slot-machine-reels {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.12), rgba(12, 12, 28, 0.95));
  border-radius: 18px;
  border: 2px solid rgba(238, 241, 255, 0.08);
  padding: 18px;
  display: grid;
  gap: 12px;
  position: relative;
  box-shadow: inset 0 12px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.slot-page .slot-machine-reels.is-spinning,
.slot-page .slot-grid.is-spinning {
  position: relative;
}
.slot-page .slot-machine-reels.is-spinning::before,
.slot-page .slot-grid.is-spinning::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
  animation: slotReelBlur 0.15s ease-in-out infinite;
  border-radius: inherit;
}
.slot-page .slot-machine-reels.is-spinning .slot-cell,
.slot-page .slot-grid.is-spinning .slot-cell {
  animation: slotCellSpin 0.2s linear infinite;
}
.slot-page .slot-machine-reels.is-spinning .slot-row .slot-cell:nth-child(1),
.slot-page .slot-grid.is-spinning .slot-row .slot-cell:nth-child(1) {
  animation-delay: 0s;
}
.slot-page .slot-machine-reels.is-spinning .slot-row .slot-cell:nth-child(2),
.slot-page .slot-grid.is-spinning .slot-row .slot-cell:nth-child(2) {
  animation-delay: 0.05s;
}
.slot-page .slot-machine-reels.is-spinning .slot-row .slot-cell:nth-child(3),
.slot-page .slot-grid.is-spinning .slot-row .slot-cell:nth-child(3) {
  animation-delay: 0.1s;
}
.slot-page .slot-machine-reels.is-spinning .slot-row .slot-cell:nth-child(4),
.slot-page .slot-grid.is-spinning .slot-row .slot-cell:nth-child(4) {
  animation-delay: 0.15s;
}
.slot-page .slot-machine-reels.is-spinning .slot-row .slot-cell:nth-child(5),
.slot-page .slot-grid.is-spinning .slot-row .slot-cell:nth-child(5) {
  animation-delay: 0.2s;
}
.slot-page .slot-machine-reels.is-settling .slot-row,
.slot-page .slot-grid.is-settling .slot-row {
  animation: slotReelSettle 0.85s cubic-bezier(0.22, 0.75, 0.3, 1) both;
}
.slot-page .slot-machine-reels.is-settling .slot-row:nth-child(1),
.slot-page .slot-grid.is-settling .slot-row:nth-child(1) {
  animation-delay: 0s;
}
.slot-page .slot-machine-reels.is-settling .slot-row:nth-child(2),
.slot-page .slot-grid.is-settling .slot-row:nth-child(2) {
  animation-delay: 0.15s;
}
.slot-page .slot-machine-reels.is-settling .slot-row:nth-child(3),
.slot-page .slot-grid.is-settling .slot-row:nth-child(3) {
  animation-delay: 0.3s;
}
.slot-page .slot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.slot-page .slot-machine-saar-book .slot-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.slot-page .slot-row-active {
  position: relative;
}
.slot-page .slot-row-active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 14px;
  pointer-events: none;
}
.slot-page .slot-cell {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(238, 241, 255, 0.06);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slot-page .slot-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.slot-page .slot-machine-reels.is-spinning .slot-cell::before,
.slot-page .slot-grid.is-spinning .slot-cell::before {
  opacity: 1;
}
.slot-page .slot-cell .slot-symbol {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}
.slot-page .slot-symbol {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), rgba(8, 10, 28, 0.95));
  border: 1px solid rgba(238, 241, 255, 0.08);
  box-shadow: inset 0 6px 12px rgba(255, 255, 255, 0.08), 0 16px 28px rgba(0, 0, 0, 0.35);
}
.slot-page .slot-symbol .slot-symbol-shape {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: inset 0 12px 14px rgba(0, 0, 0, 0.35), 0 12px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.slot-page .slot-symbol-small {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}
.slot-page .slot-symbol-small .slot-symbol-shape {
  width: 34px;
  height: 34px;
  box-shadow: inset 0 8px 9px rgba(0, 0, 0, 0.35), 0 8px 14px rgba(0, 0, 0, 0.25);
}
.slot-symbol-classic .slot-symbol-shape {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: block;
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.4), 0 12px 28px rgba(0, 0, 0, 0.4);
}
.slot-symbol-classic.slot-symbol-small .slot-symbol-shape {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}
.slot-symbol-classic .slot-symbol-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.slot-symbol-cherry .slot-symbol-shape {
  background: radial-gradient(circle at 30% 30%, #ffb6c1 0%, #c51236 65%, #6b0f1e 100%);
}
.slot-symbol-lemon .slot-symbol-shape {
  background: linear-gradient(140deg, #fffac1 0%, #ffd94d 55%, #caa11f 100%);
}
.slot-symbol-orange .slot-symbol-shape {
  background: radial-gradient(circle at 35% 30%, #ffd89a 0%, #f07807 68%, #b84a00 100%);
}
.slot-symbol-plum .slot-symbol-shape {
  background: radial-gradient(circle at 32% 28%, #d2a6ff 0%, #7c28bf 70%, #3c126b 100%);
}
.slot-symbol-bell .slot-symbol-shape {
  background: linear-gradient(150deg, #fff0b5 0%, #f5c13b 45%, #c07d09 100%);
}
.slot-symbol-bell .slot-symbol-shape::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #ffe9a0 0%, #b97408 85%);
  box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.25);
}
.slot-symbol-bar .slot-symbol-shape {
  background: linear-gradient(160deg, #f4f6f8 0%, #424750 100%);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #111421;
  font-size: 1.2rem;
}
.slot-symbol-bar .slot-symbol-shape::after {
  content: "BAR";
  letter-spacing: 0.1em;
}
.slot-symbol-double-bar .slot-symbol-shape,
.slot-symbol-triple-bar .slot-symbol-shape {
  background: linear-gradient(160deg, #f4f6f8 0%, #424750 100%);
  position: relative;
  color: #10131f;
  font-weight: 800;
  display: grid;
  place-items: center;
  letter-spacing: 0.08em;
  font-size: 1rem;
}
.slot-symbol-double-bar .slot-symbol-shape::before,
.slot-symbol-double-bar .slot-symbol-shape::after,
.slot-symbol-triple-bar .slot-symbol-shape::before,
.slot-symbol-triple-bar .slot-symbol-shape::after {
  content: "BAR";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 6px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.7), rgba(30, 34, 48, 0.9));
  box-shadow: inset 0 3px 6px rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.45);
}
.slot-symbol-double-bar .slot-symbol-shape::before {
  top: 18%;
}
.slot-symbol-double-bar .slot-symbol-shape::after {
  bottom: 18%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  content: "";
}
.slot-symbol-triple-bar .slot-symbol-shape::before,
.slot-symbol-triple-bar .slot-symbol-shape::after {
  content: "BAR";
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after,
.slot-symbol-triple-bar .slot-symbol-shape::before {
  font-size: 0.95rem;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after,
.slot-symbol-triple-bar .slot-symbol-shape::before {
  padding: 4px 12px;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape span {
  display: none;
}
.slot-symbol-triple-bar .slot-symbol-shape::after,
.slot-symbol-triple-bar .slot-symbol-shape::before {
  content: "BAR";
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape span {
  display: none;
}
.slot-symbol-triple-bar .slot-symbol-shape::after,
.slot-symbol-triple-bar .slot-symbol-shape::before {
  content: "BAR";
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::before {
  top: 12%;
}
.slot-symbol-triple-bar .slot-symbol-shape::after {
  bottom: 12%;
}
.slot-symbol-book .slot-symbol-shape {
  background: linear-gradient(135deg, #8b4513 0%, #654321 50%, #3e2723 100%);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.slot-symbol-book .slot-symbol-shape::after {
  content: "📖";
}
.slot-symbol-explorer .slot-symbol-shape {
  background: linear-gradient(140deg, #d4a574 0%, #8b6914 60%, #5d4e37 100%);
}
.slot-symbol-explorer .slot-symbol-shape::after {
  content: "🧭";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.slot-symbol-pharaoh .slot-symbol-shape {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ff8c00 100%);
}
.slot-symbol-pharaoh .slot-symbol-shape::after {
  content: "👑";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.slot-symbol-scarab .slot-symbol-shape {
  background: radial-gradient(circle at 40% 40%, #2d5016 0%, #1a3009 70%, #0d1804 100%);
}
.slot-symbol-scarab .slot-symbol-shape::after {
  content: "🐞";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.slot-symbol-statue .slot-symbol-shape {
  background: linear-gradient(160deg, #c0c0c0 0%, #808080 50%, #404040 100%);
}
.slot-symbol-statue .slot-symbol-shape::after {
  content: "🗿";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.slot-symbol-sarcophagus .slot-symbol-shape {
  background: linear-gradient(140deg, #daa520 0%, #b8860b 60%, #8b6914 100%);
}
.slot-symbol-sarcophagus .slot-symbol-shape::after {
  content: "⚰️";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.slot-symbol-ace .slot-symbol-shape {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 60%, #4b0000 100%);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.slot-symbol-ace .slot-symbol-shape::after {
  content: "A";
}
.slot-symbol-king .slot-symbol-shape {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #0f172a 100%);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.slot-symbol-king .slot-symbol-shape::after {
  content: "K";
}
.slot-symbol-queen .slot-symbol-shape {
  background: linear-gradient(135deg, #7c2d12 0%, #9a3412 50%, #431407 100%);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.slot-symbol-queen .slot-symbol-shape::after {
  content: "Q";
}
.slot-symbol-jack .slot-symbol-shape {
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #064e3b 100%);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.slot-symbol-jack .slot-symbol-shape::after {
  content: "J";
}
.slot-symbol-ten .slot-symbol-shape {
  background: linear-gradient(135deg, #581c87 0%, #6b21a8 50%, #3b0764 100%);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.slot-symbol-ten .slot-symbol-shape::after {
  content: "10";
  font-size: 1.2rem;
}