/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 14 2026 | 07:10:39 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
	background-color: var(--secondary-dark);
	overflow-x: clip;
}

section {
	overflow: hidden;
}


  /* ─── MOBILE RESPONSIVE ───────────────────────────────── */
  @media (max-width: 992px) {

    .mobile-menu-toggle {
      display: block;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(8,8,8,0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      flex-direction: column;
      gap: 0;
      padding: 20px;
      align-items: flex-start;
      transition: all 0.3s ease;
    }
    .nav-menu.open {
      display: flex;
	
		.nav-menu__list {
			display: flex;
			column-gap: 10px;
			row-gap: 10px;
			align-items: center;
			flex-direction: column;
			width: 100%;
			overflow: scroll;
			height: 100%;
		}
    }


    .nav-dropdown > a::after {
      content: ' ▶';
    }

    .dropdown-menu {
      position: static;
      transform: none;
      background: none;
      border: none;
      min-width: auto;
      display: none;
      width: 100%;
      padding-left: 20px;
      transition: all 0.3s ease;
    }
    .nav-dropdown.open .dropdown-menu {
      display: block;
    }
    .dropdown-menu a {
      padding: 8px 0;
      border-bottom: 1px solid rgba(245,245,240,0.05);
    }
  }

@media (width > 992px) {
	
	.nav-dropdown {
  position: relative;
}

.dropdown-menu.brxe-div {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  min-width: 180px;
  padding: 8px 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.25s cubic-bezier(0.58,0.3,0.005,1);
}

/* SHOW */
.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
}
@keyframes shiftLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(10%); }
  }

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  padding: var(--space-s) var(--gutter); 
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg,rgba(26, 46, 53, 1) 1%, rgba(24, 42, 50, 1) 28%, rgba(23, 36, 44, 1) 38%, rgba(17, 21, 30, 1) 57%, rgba(16, 19, 29, 1) 92%);
	backdrop-filter: blur(18px);
  transition: background 0.3s;
}


nav ul li a {
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

nav a.active {
	 color: var(--primary);
}

body .cky-notice-btn-wrapper {
	gap: 10px;
}

body .cky-notice-btn-wrapper .cky-btn, body .cky-prefrence-btn-wrapper .cky-btn {
	background: var(--secondary) !important;
	border: 1px solid var(--secondary) !important;
	color: var(--white) !important;
	
	&:hover {
		background: var(--secondary-dark) !important;
	}
}

body .um input[type=submit].um-button {
	background: var(--primary);
	transition: all 0.5s ease-in-out;
	&:hover {
		background: #02a0718c;
	}
}

.customer-form .ws-form-content-wrapper {
	color: var(--white);
	
	a {
		text-decoration: underline;
		&:hover {
			color: var(--primary);
		}
	}
}

.customer-form ul.wsf-tabs a span {
	color: var(--white);
}

.um-profile-note {
	display: none !important;
}
