@charset "UTF-8";
.site_header {
  width: 100%;
  height: 50px;
  min-width: 220px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: center;
  background: rgba(245, 245, 245, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0 0 5px 5px;
}
@media (min-width: 1520px) {
  .site_header {
    width: 1510px;
  }
}

.header_logo {
  height: 50px;
  display: flex;
  align-items: center;
  transition: background-color 0.25s ease;
}
.header_logo a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
}
.header_logo img {
  /*
  width: auto;
  height: auto;
  */
  padding-left: 5px;
  display: block;
}
.header_logo span {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.header_logo span.header_logo_txtspan1 {
  margin-left: 4px;
  color: #0f172a;
}
.header_logo span.header_logo_txtspan2 {
  margin-right: 6px;
  color: #8a0808;
}

.header_center {
  flex: 1;
  height: 100%;
  border-left: 0px dashed #8a0808;
  border-right: 0px dashed #8a0808;
}

.header_nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
  font-size: 1rem;
}

.nav_menu {
  list-style: none;
  margin: 0 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.nav_menu li {
  margin: 0;
  display: flex;
  align-items: stretch;
}
.nav_menu li a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 50px;
  text-decoration: none;
  color: #0b0b0b;
  font-size: 0.9rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.nav_menu li a:hover {
  color: #f5f5f5;
  background-color: #8a0808;
}

.header_login_btn {
  height: 50px;
  display: flex;
  align-items: center;
}
.header_login_btn a {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 100%;
  text-decoration: none;
  color: #0b0b0b;
  font-size: 0.9rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.header_login_btn a:hover {
  color: #f5f5f5;
  background-color: #8a0808;
}

.navRegistarIcon,
.navKontaktIcon,
.navLoginIcon {
  display: none;
}

.has_dropdown {
  position: relative;
}
.has_dropdown .nav_dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  display: none;
  flex-direction: column;
  min-width: 180px;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 1100;
  background: rgba(245, 245, 245, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.has_dropdown .nav_dropdown li {
  width: 100%;
}
.has_dropdown .nav_dropdown li a {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.has_dropdown:hover > .nav_dropdown {
  display: flex;
}

.nav_separator {
  height: 1px;
  margin: 6px 0;
  background-color: #ccc;
}

.nav_toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  padding: 0 8px;
  cursor: pointer;
  color: #0b0b0b;
}
.nav_toggle:hover {
  background-color: #8a0808;
}

/* DESKTOP — 901px+ */
@media (min-width: 901px) {
  /* Hover efekti */
  .has_dropdown:hover {
    background-color: #8a0808;
  }
  .has_dropdown:hover > a {
    color: #f5f5f5;
  }
  .has_dropdown {
    position: relative;
  }
  .has_dropdown > .nav_dropdown {
    top: 50px;
    right: 0;
  }
  .has_dropdown .has_dropdown {
    position: relative;
  }
  .has_dropdown .has_dropdown > .nav_dropdown {
    top: 0;
    right: 100%;
    margin-right: 6px;
    background: rgba(245, 245, 245, 0.95);
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }
  .has_dropdown .has_dropdown:hover > .nav_dropdown {
    display: flex;
  }
  .has_dropdown > .nav_dropdown > .has_dropdown > .nav_dropdown {
    top: 0;
    right: 100%;
    margin-right: 0;
  }
}
@media (max-width: 900px) {
  .nav_toggle {
    display: block;
    margin-left: auto;
    height: 100%;
  }
  .nav_menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 90vw;
    min-width: 220px;
    height: calc(100vh - 50px);
    flex-direction: column;
    align-items: stretch;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    background: rgba(245, 245, 245, 0.98);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }
  .nav_menu.open {
    transform: translateX(0);
  }
  .nav_menu > li {
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid #ddd;
  }
  .nav_menu > li > a {
    justify-content: space-between;
    padding: 0 16px;
    font-size: 1.3rem;
  }
  .submenu_arrow {
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-right: 2px solid #8a0808;
    border-bottom: 2px solid #8a0808;
    transform: rotate(135deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
  }
  .has_dropdown:hover .submenu_arrow {
    border-right-color: #f5f5f5;
    border-bottom-color: #f5f5f5;
  }
  .has_dropdown.open .submenu_arrow {
    transform: rotate(45deg);
    border-right-color: #f5f5f5;
    border-bottom-color: #f5f5f5;
  }
  .has_dropdown .nav_dropdown {
    position: static !important;
    top: auto !important;
    right: auto !important;
    min-width: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    background-color: transparent;
    border: none;
    padding-left: 20px;
  }
  .has_dropdown:hover > .nav_dropdown {
    display: none;
  }
  .has_dropdown.open > .nav_dropdown {
    display: flex;
  }
  .has_dropdown .nav_dropdown li a {
    justify-content: flex-start !important;
    text-align: left;
    height: auto;
    padding: 12px 0;
    padding-left: 20px;
    font-size: 1.2rem;
  }
  .nav_menu > li,
  .nav_menu .has_dropdown {
    align-items: flex-start;
  }
  .has_dropdown > a {
    height: 50px;
    display: flex;
    align-items: center;
  }
  .has_dropdown.open > a {
    background-color: #8a0808;
    color: #f5f5f5;
  }
  .has_dropdown .has_dropdown > a {
    padding-left: 20px;
    font-size: 1.2rem;
    height: auto;
    line-height: normal;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .has_dropdown .has_dropdown .nav_dropdown {
    padding-left: 20px;
    width: 100%;
  }
}
@media (max-width: 450px) {
  .navRegistarIcon,
  .navKontaktIcon,
  .navLoginIcon {
    display: block;
    fill: #555;
    transition: 0.2s;
  }
  a:hover .navLoginIcon {
    fill: #eee;
  }
  .navRegistarIcon {
    width: 30px;
    height: 20px;
  }
  .navKontaktIcon {
    width: 30px;
    height: 20px;
  }
  .navLoginIcon {
    width: 30px;
    height: 20px;
  }
  .navLoginText {
    display: none;
  }
  .header_login_btn a {
    padding: 0 8px;
  }
}/*# sourceMappingURL=nav.css.map */