/* ==========================================================
   DIORNO NAVBAR
   ========================================================== */

.diorno-navbar {
  width: 100%;
  min-height: 56px;

  margin: 0 !important;
  padding: 0 !important;

  background-color: #ffffff !important;

  border-bottom: 1px solid #e3e7ec;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* ==========================================================
   NAVBAR CONTAINER
   ========================================================== */

.diorno-navbar-container {
  width: 100%;
  min-height: 56px;

  padding-left: 20px;
  padding-right: 20px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  box-sizing: border-box;
}

/* ==========================================================
   LOGO
   ========================================================== */

.diorno-navbar-brand {
  margin: 0 34px 0 0 !important;
  padding: 0 !important;

  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1;

  color: #172033 !important;

  text-decoration: none;
}

.diorno-navbar-brand:hover {
  color: #0d6efd !important;
}

/* ==========================================================
   MAIN MENU
   ========================================================== */

.diorno-main-menu {
  height: 56px;

  margin: 0 !important;
  padding: 0;

  display: flex;
  align-items: center;

  gap: 2px;
}

/* ==========================================================
   NAV LINK
   ========================================================== */

.diorno-nav-link {
  margin: 0;
  padding: 8px 13px !important;

  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.2;

  color: #263244 !important;

  border-radius: 5px;

  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.diorno-nav-link:hover {
  color: #0d6efd !important;
  background-color: #f3f7fc;
}

.diorno-nav-link:focus {
  color: #0d6efd !important;
  background-color: #f3f7fc;

  box-shadow: none !important;
}

/* ==========================================================
   MAIN DROPDOWN
   ========================================================== */

.diorno-dropdown {
  min-width: 190px;

  margin-top: 6px !important;
  padding: 6px;

  background: #ffffff;

  border: 1px solid #dfe4ea;
  border-radius: 6px;

  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

/* ==========================================================
   MAIN DROPDOWN ITEM
   ========================================================== */

.diorno-dropdown-item {
  display: flex;
  align-items: center;

  gap: 9px;

  padding: 8px 10px;

  font-size: 0.79rem;

  color: #374151;

  border-radius: 4px;
}

.diorno-dropdown-item i {
  width: 17px;

  font-size: 0.88rem;

  color: #0d6efd;

  text-align: center;
}

.diorno-dropdown-item:hover {
  color: #0d6efd;
  background-color: #f3f7fc;
}

/* ==========================================================
   RIGHT SIDE
   ========================================================== */

.diorno-navbar-right {
  height: 56px;

  margin-left: auto;

  display: flex;
  align-items: center;

  gap: 4px;
}

/* ==========================================================
   ICON BUTTON
   ========================================================== */

.diorno-navbar-icon-button {
  width: 36px;
  height: 36px;

  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent !important;

  border: none !important;
  border-radius: 50%;

  color: #374151 !important;

  font-size: 1.05rem;
  line-height: 1;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    color 0.15s ease,
    background-color 0.15s ease;
}

/* ==========================================================
   ICON BUTTON HOVER
   ========================================================== */

.diorno-navbar-icon-button:hover {
  color: #0d6efd !important;
  background-color: #f3f7fc !important;
}

/* ==========================================================
   ICON BUTTON FOCUS
   ========================================================== */

.diorno-navbar-icon-button:focus,
.diorno-navbar-icon-button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ==========================================================
   ICON
   ========================================================== */

.diorno-navbar-icon-button i {
  font-size: 1.08rem;
  line-height: 1;
}

/* ==========================================================
   USER DROPDOWN
   ========================================================== */

.diorno-user-dropdown {
  min-width: 160px;

  margin-top: 7px !important;
  padding: 3px;

  background: #ffffff;

  border: 1px solid #dfe4ea;
  border-radius: 6px;

  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.08);
}

/* ==========================================================
   USER DROPDOWN ITEM
   ========================================================== */

.diorno-user-dropdown-item {
  display: flex;
  align-items: center;

  gap: 9px;

  padding: 8px 10px;

  font-size: 0.79rem;

  color: #374151;

  border-radius: 4px;
}

/* ==========================================================
   USER DROPDOWN ICON
   ========================================================== */

.diorno-user-dropdown-item i {
  width: 17px;

  font-size: 0.9rem;

  color: #0d6efd;

  text-align: center;
}

/* ==========================================================
   USER DROPDOWN HOVER
   ========================================================== */

.diorno-user-dropdown-item:hover {
  color: #0d6efd;
  background-color: #f3f7fc;
}

/* ==========================================================
   LOGOUT
   ========================================================== */

.diorno-logout-item i {
  color: #dc3545;
}

.diorno-logout-item:hover {
  color: #dc3545;
  background-color: #fff5f5;
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991.98px) {
  .diorno-navbar-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 575.98px) {
  /* --------------------------------------------------------
     NAVBAR
     -------------------------------------------------------- */

  .diorno-navbar {
    position: relative;
  }

  /* --------------------------------------------------------
     NAVBAR CONTAINER
     -------------------------------------------------------- */

  .diorno-navbar-container {
    position: relative;

    min-height: 56px;

    padding-left: 12px;
    padding-right: 12px;

    align-items: flex-start;
  }

  /* --------------------------------------------------------
     LOGO
     -------------------------------------------------------- */

  .diorno-navbar-brand {
    height: 56px;

    margin: 0 !important;

    display: flex;
    align-items: center;
  }

  /* --------------------------------------------------------
     MOBILE TOGGLER
     -------------------------------------------------------- */

  .diorno-navbar .navbar-toggler {
    position: absolute;

    top: 6px;
    right: 12px;

    width: 50px;
    height: 44px;

    margin: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
  }

  /* --------------------------------------------------------
     COLLAPSE
     -------------------------------------------------------- */

  .diorno-navbar .navbar-collapse {
    flex-basis: 100%;

    width: 100%;

    margin-top: 0;
  }

  /* --------------------------------------------------------
     MAIN MENU
     -------------------------------------------------------- */

  .diorno-main-menu {
    height: auto;

    padding-top: 8px;
    padding-bottom: 8px;

    align-items: flex-start;
  }

  /* --------------------------------------------------------
     RIGHT SIDE
     -------------------------------------------------------- */

  .diorno-navbar-right {
    height: auto;

    margin-left: 0;

    padding-bottom: 10px;

    justify-content: flex-start;
  }

  /* --------------------------------------------------------
     USER DROPDOWN POSITION
     -------------------------------------------------------- */

  .diorno-navbar-right .dropdown {
    position: relative;
  }

  .diorno-user-dropdown {
    left: 0 !important;
    right: auto !important;

    margin-top: 7px !important;
  }
}

/* ==========================================================
   DIORNO LOGO + TEXT
   ========================================================== */

.diorno-navbar-brand {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  line-height: 1;

  padding: 0;

  margin: 0;
}

.diorno-logo {
  height: 55px;

  width: 70px;

  object-fit: contain;

  display: block;
}

.diorno-logo-text {
  margin-top: -12px;

  font-size: 9px;

  font-weight: 600;

  color: #6c757d;

  white-space: nowrap;

  line-height: 1;
}
