/*=- /Content/Layouts/Clean/stylesheets/site-header.css -=*/

@charset "UTF-8";
/* Main file */

/* =========================
   HEADER
========================= */

.design-header {
  height: 40px;
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  position: relative;
  z-index: 9999;
  width: 100%;
  left: 0;
  position: fixed;
  top: 0 !important;
}
/* =========================
   LOGO
========================= */

.site-id {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.design-header .site-id img {
  width: 158px;
  height: 35px;
  display: block;
}
/* =========================
   LINKS
========================= */

.site-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-links li {
  list-style: none;
}
.site-links a {
  color: #115fa4;
  text-decoration: none;
  white-space: nowrap;
}
/* =========================
   MENU
========================= */

.site-menu {
  display: flex;
  align-items: center;
  gap: 2em;
  list-style: none;
  margin: 0 36px 0 0;
  padding: 0;
}
.site-menu li {
  list-style: none;
}
.site-menu a {
  color: #115fa4;
  text-decoration: none;
}
/* =========================
   HAMBURGER
========================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #115fa4;
  font-size: 30px;
  line-height: 1;
  padding: 0;
  margin: 0;
}
/* =========================
   CLOSE BUTTON
========================= */

.menu-close-btn {
  display: none;
}
/* =========================
   LOGIN FLYOUT
========================= */

.login-flyout {
  display: none;
  position: absolute;
  top: 80px;
  right: 40px;
  z-index: 999999;
}
.flyout-box {
  width: 340px;
  background: white;
  padding: 22px;
  border-radius: 4px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.flyout-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
}
.flyout-btn {
  width: 100%;
  padding: 12px;
  border: none;
  background: #d91c2c;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.flyout-links {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
}
.flyout-close {
  position: absolute;
  top: 8px;
  right: 10px;
  cursor: pointer;
}
/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
  .design-header {
    height: 60px !important;
    padding: 0 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
  }
  /* =========================
           LOGO
        ========================= */
  
  .site-id {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
  }
  .design-header .site-id img {
    width: 105px !important;
    height: auto !important;
    display: block !important;
  }
  /* =========================
           SITE LINKS WRAPPER
        ========================= */
  
  #SiteLinks {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
    margin-right: 6px !important;
    min-width: 0 !important;
  }
  /* =========================
           LOGIN / SIGNUP LINKS
        ========================= */
  
  .site-links {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
  }
  .site-links a {
    font-size: 13px !important;
    white-space: nowrap !important;
  }
  /* =========================
           HAMBURGER
        ========================= */
  
  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 24px !important;
    flex: 0 0 auto !important;
  }
  /* =========================
           MOBILE MENU
        ========================= */
  
  .site-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: calc(40vh) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px !important;
    margin: 0 !important;
    background: #f0f0f0 !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99999 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .design-header.menu-open .site-menu {
    transform: translateX(0);
  }
  .site-menu li {
    width: 100%;
    margin-bottom: 14px;
    border-bottom: 0.5px solid;
  }
  .site-menu a {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #115fa4;
    text-decoration: none;
  }
  /* =========================
           CLOSE BUTTON
        ========================= */
  
  .menu-close-btn {
    display: flex !important;
    justify-content: flex-end !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  .menu-close-btn button {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333333;
    padding: 0;
  }
  /* =========================
           MOBILE LOGIN FLYOUT
        ========================= */
  
  .login-flyout {
    top: 60px !important;
    right: 10px !important;
    width: calc(80vw) !important;
  }
  .flyout-box {
    width: 100% !important;
  }
}
/* =========================
   EXTRA SMALL DEVICES
========================= */

@media (max-width: 380px) {
  .design-header .site-id img {
    width: 95px !important;
  }
  .site-links a {
    font-size: 12px !important;
  }
  .menu-toggle {
    font-size: 22px !important;
  }
}
