/* Reset stylów */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.h-20 {
  height: 5rem;
}

.h-10 {
  height: 2.5rem;
}

.w-100 {
  width: 100%;
}

.pb-10 {
  padding-bottom: 10px;
}

.text-right {
  text-align: right;
}

.container-desktop {
  max-width: 1440px;
  padding: 0 36px 0 36px;
  margin: 0 auto; /* Wyśrodkowanie */
}

.container-desktop--grow {
  min-height: 40vh;
}

.horizontal-separator {
  width: 100%;
  border-bottom: solid 1px rgba(255, 255, 255, 0.25);
}

.horizontal-separator--blue {
  border-bottom-color: #0b5fff;
}

.vertical-separator {
  margin: 0 10px 0 10px;
  border-right: solid 1px rgba(255, 255, 255, 0.25);
}

header {
  font-family: Sora, sans-serif;
  background-color: #000033;
  line-height: 1.5;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

#headerOverlay {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 0;
  width: 0;
  background-color: black;
  opacity: 0.7;
  z-index: 998;
}

.small-icon {
  height: 18px;
  width: 18px;
}

.header-box {
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 400;
}

.header-box ul {
  padding-inline-start: 0;
}

.header-box--upper {
  font-family: Inter, sans-serif;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  gap: 30px;
}

.accent,
.header-box .accent {
  fill: #0b5fff;
  color: #0b5fff;
  font-weight: 500;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-wrap: nowrap;
  color: white;
}

.header-link a {
  text-decoration: none;
}

.header-help-center {
  white-space: nowrap;
}

.header-help-center span {
  text-wrap: nowrap;
}

.icon-box {
  display: flex;
}

.logo img {
  height: 60px;
}

.logo {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  margin-right: 10px;
}

.logoTintLayer {
  position: absolute;
  width: 100%;
  height: 50px;
  background: #0361ff9e;
  mix-blend-mode: multiply;
  filter: blur(10px);
  z-index: 10;
  opacity: 0.9;
}

.logoLightLayer {
  position: absolute;
  width: 100%;
  height: 70px;
  left: 10px;
  top: -30px;
  background: radial-gradient(
    circle,
    rgb(43 176 215 / 65%),
    rgb(0 46 255 / 92%)
  );
  mix-blend-mode: multiply;
  filter: blur(20px) brightness(1.1);
  animation: reverse rotate 40s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  z-index: 15;
  opacity: 0.9;
}

.backgroundSpotLight {
  position: absolute;
  top: -0;
  left: 10%;
  width: 400px;
  height: 110%;
  background: radial-gradient(circle, #2842dd82, #4c00ffe0);
  filter: blur(110px) brightness(1.2);
  animation: reverse rotate 30s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  z-index: -5;
  opacity: 0.12;
  mix-blend-mode: exclusion;
}

@keyframes hueRotate {
  from {
    /*filter: hue-rotate(0deg);*/
    transform: rotate(180deg);
  }

  to {
    /*filter: hue-rotate(360deg);*/
    transform: rotate(0deg);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(180deg);
  }
}

nav {
  height: 100%;
  padding-left: 50px;
  padding-right: 10px;
}

nav a {
  text-decoration: none;
  background-color: transparent;
  border: none;
  height: 100%;
  display: flex;
  align-items: center;
}

nav .menu-item {
  text-decoration: none;
  color: white;
  font-weight: 400;
  font-size: 16px;
}

nav .menu-item.selected {
  color: #0b5fff;
}

nav a:hover,
nav a.hover-state {
  border-bottom: 2px solid #0b5fff;
}

nav a:hover .menu-item {
  padding-bottom: 2px;
  color: #0b5fff;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 40px; /* Jednostka px */
  height: 100%;
}

nav ul li {
  display: inline-block;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 100%;
}

nav ul li ul {
  border-bottom: 2px solid #0b5fff;
  display: none;
  position: absolute;
  width: 250px;
  gap: 0;
  background-color: white;
  height: auto;
  top: 80px;
  border-radius: 5px;
  align-items: flex-start;
  padding: 20px 0 20px 0;
}

nav ul li ul li {
  height: 40px;
}

nav ul li ul li a {
  text-decoration: none;
  color: black !important;
  display: block;
  padding: 10px 14px;
  font-size: 16px;
}

nav ul li ul li a:hover {
  color: #0b5fff !important;
  border: none;
}

.spacer {
  flex-grow: 1;
}

.buttons {
  display: flex;
  gap: 20px;
  transition: gap 0.3s ease;
}

.eli-button {
  display: block;
  text-decoration: none;
  padding: 12px 32px;
  border: none;
  border-radius: 5px;
  font-size: 19px;
  font-weight: 400;
  cursor: pointer;
  text-align: center;
  color: inherit;
  transition: padding 0.3s ease, font-size 0.3s ease, gap 0.3s ease;
}

.eli-button a,
.eli-button a:link,
.eli-button a:visited {
  box-sizing: border-box;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.eli-button--border {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.eli-button--border:hover {
  background-color: #13135d;
}

.accordion {
  width: 100%;
  border-bottom: solid 1px rgba(255, 255, 255, 0.25);
}

.accordion .chevron-up,
.accordion.open .chevron-down {
  display: none;
}

.accordion .chevron-down,
.accordion.open .chevron-up {
  display: block;
}

.accordion .accordion-content {
  padding: 10px 5px 10px 5px;
  font-size: 14px;
}

.accordion-content ul {
  padding-left: 20px;
}

.accordion-content p,
.accordion-content li {
  margin-bottom: 5px;
}

.eli-button--accordion {
  font-size: 16px;
  background-color: transparent;
  width: 100%;
  border-radius: 0;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  fill: #0b5fff;
  text-align: left;
}

.eli-button--accordion:hover {
  background-color: #13135d;
}

.eli-button--fixed {
  max-width: 400px;
}

.eli-button--icon {
  font-size: 16px;
  background-color: transparent;
  width: 100%;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  fill: #0b5fff;
}

.eli-button--icon:hover {
  background-color: #13135d;
}

.eli-button--icon-light {
}

.eli-button--icon-light:hover {
  background-color: rgb(242 244 255);
}

.eli-button--fill {
  background-color: #0b5fff;
  border: 2px solid #0b5fff;
  color: white !important;
}

.eli-button--fill:hover {
  background-color: #1800b8;
  border: 2px solid #1800b8;
}

.eli-button--shadow {
  background-color: transparent;
  border: 2px solid rgb(214, 214, 231);
  color: black;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 61, 255, 0.12) 0px 0px 6px 2px;
}

.eli-button--shadow:hover {
  background: linear-gradient(
    138deg,
    rgba(187, 209, 255, 0.2) 0%,
    rgba(118, 160, 255, 0.2) 25.08%,
    rgba(226, 167, 255, 0.2) 56.38%,
    rgba(187, 209, 255, 0.2) 100%
  );
}

/* Ikona menu */
.menu-toggle {
  display: none;
  font-size: 19px;
  cursor: pointer;
}

.toggle-items {
  position: absolute;
  right: 0;
  width: 100vw;
  display: none;
  background-color: #000033;
  height: auto;
  padding: 20px 0 20px 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.25);
}

.toggle-items ul {
  width: 100%;
  display: block;
}

.toggle-items ul li {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.toggle-items .menu-item {
  height: 50px;
}

.toggle-items ul li a {
  text-decoration: none;
  color: white;
  width: 100%;
}

.email-label {
  unicode-bidi: bidi-override;
  direction: rtl;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

a:link,
a:visited,
a:hover {
  text-decoration: none;
}

/* Responsywność */

@media (max-width: 800px) {
  .header-link {
    display: none;
  }

  .header-news {
    display: none;
  }

  .header-box--upper {
    justify-content: flex-end;
  }
}

@media (max-width: 1325px) {
  header .buttons {
    gap: 15px;
  }

  header .eli-button {
    padding: 10px 26px;
    font-size: 18px;
  }
}

@media (max-width: 1300px) {
  .spacer {
    display: none;
  }

  nav {
    padding-left: 10px;
  }

  nav ul {
    gap: 15px;
  }

  .header-news {
    display: none;
  }
}

@media (max-width: 1100px) {
  header .buttons {
    gap: 10px;
  }

  header .eli-button {
    padding: 7px 15px;
    font-size: 16px;
  }
}

@media (max-width: 1025px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  header .buttons {
    display: none;
  }

  .header-box--upper {
    display: none;
  }
}

@media (min-width: 1026px) {
  header nav {
    display: flex !important;
  }
}
