@import url("finkit.css");
:root {
  --primary: #0a1734;
  --white: #ffffff;
  --primary-bg: rgb(10 23 52 / 2%);
}

* {
  color: #000;
  text-decoration: none !important;
  font-family: "Product Sans";
}

#f-logo{
  display: none;
}

body {
  background-color: #fff;
  margin: 0;
}
.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
}
.profile-picture {
  position: absolute;
  top: 12px;
  right: 30px;
  background-color: #edeaea;
  color: white;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
}
.profile-picture span {
  color: #848383;
}

.search-bell {
  position: absolute;
  top: 12px;
  right: 100px;
  color: white;
  font-size: 25px;
  width: 75px;
  height: 45px;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
}
.search-bell .ph-bold.ph-magnifying-glass {
  color: white;
}
.search-bell .ph-bold.ph-bell {
  color: white;
}
.search-bell span {
  color: #848383;
}

#search-modal {
  display: none;
  position: fixed;
  z-index: 1 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
#search-modal .search-content {
  background: #f9f9f9; /* Light macOS-like background */
  padding: 20px;
  border-radius: 8px; /* More pronounced rounded corners */
  width: 80%;
  position: fixed;
  height: 62%;
  top: 350px;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: hidden;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Soft macOS-style shadow */
}
#search-modal .search-content #search-input {
  width: 100%;
  padding: 12px; /* Larger padding for better spacing */
  border: 1px solid #d1d5db; /* Softer border color */
  border-radius: 8px; /* Rounded corners */
  margin-bottom: 15px;
  font-size: 16px;
  background-color: #f2f2f7; /* Subtle background for input */
}
#search-modal .search-content .close-search {
  font-size: var(--primary-font-size);
  border-radius: var(--primary-radius);
  box-shadow: var(--box-shadow);
  border: none;
  padding: 10px;
  height: 32px;
  color: #ffffff;
  background-color: #414347;
  font-weight: 500;
  cursor: pointer;
  height: 45px;
}
#search-modal .search-content .close-search:hover {
  box-shadow: var(--shadow-hover);
}
#search-modal .search-content #search-results {
  margin-top: 15px;
  max-height: 300px;
  overflow-y: auto;
  text-align: left;
}
#search-modal .search-content #search-results h3 {
  font-size: 18px;
  color: #333;
  border-bottom: 1px solid #e1e4e8; /* Lighter divider for macOS feel */
  padding-bottom: 8px;
  margin-bottom: 10px;
}
#search-modal .search-content #search-results .search-result-table {
  margin-bottom: 5px;
}
#search-modal .search-content #search-results .search-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#search-modal
  .search-content
  #search-results
  .search-category-list
  .search-result-item {
  padding: 12px;
  border-bottom: 1px solid #e1e4e8;
  cursor: pointer;
  transition: background 0.3s, padding 0.2s ease-in-out;
}
#search-modal
  .search-content
  #search-results
  .search-category-list
  .search-result-item:hover {
  background: #f4f5f7;
  padding-left: 15px; /* Slight left shift on hover */
}
#search-modal
  .search-content
  #search-results
  .search-category-list
  .search-result-item
  a {
  text-decoration: none;
  color: #007aff; /* macOS blue link color */
  font-size: 16px;
}
#search-modal
  .search-content
  #search-results
  .search-category-list
  .search-result-item
  a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .search-bell {
    right: 20px;
    font-size: 20px;
  }
  #search-modal .modal-content {
    width: 90%;
  }
}
.nav-opac {
  position: fixed;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.nav-opac.show {
  opacity: 0.8;
  visibility: visible;
  z-index: 2;
}

.nav {
  position: fixed;
  top: 0px;
  z-index: 2;
  left: -360px;
  padding: 24px;
  width: 360px;
  height: 100%;
  display: inline-block;
  box-sizing: border-box;
  overflow: scroll;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  background-color: #0b1734;
  transition: left 0.3s ease;
}
.nav.show {
  left: 0;
}
@media (max-width: 768px) {
  .nav {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .nav {
    width: 205px;
  }
}

#nav-logo {
  position: relative;
  float: left;
  width: 100%;
  height: 48px;
  margin-bottom: 24px;
}
#nav-logo img {
  position: relative;
  float: left;
  height: 20px;
  margin: 14px 24px;
}

.nav-item {
  position: relative;
  float: left;
  padding: 12px 24px;
  width: 100%;
  height: 48px;
  background-color: #0a1734;
  border-radius: 48px;
  box-sizing: border-box;
  margin-bottom: 2px;
  align-items: center;
  display: flex;
  text-align: left;
  cursor: pointer;
}
.nav-item i {
  position: relative;
  float: left;
  font-size: 22px;
  line-height: 24px;
  padding-right: 12px;
  color: #ffffff;
  opacity: 60%;
}
.nav-item span {
  position: relative;
  float: left;
  font-family: "Product Sans";
  font-weight: 500;
  line-height: 24px;
  opacity: 60%;
  color: #ffffff;
  font-size: 15px;
}
.nav-item.active {
  background: rgba(255, 255, 255, 0.21);
}
.nav-item.active i,
.nav-item.active span {
  opacity: 100% !important;
}
.nav-item:hover {
  background: rgba(0, 0, 0, 0.1);
}

.nav-item-label {
  position: relative;
  float: left;
  padding: 8px 24px;
  width: 100%;
  height: 40px;
  line-height: 24px;
  box-sizing: border-box;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 600;
  opacity: 80%;
}
.nav-item-label span {
  color: #fff;
}

.nav-item-hr {
  position: relative;
  float: left;
  width: 100%;
  height: 1px;
  padding: 0px 24px;
  box-sizing: border-box;
  margin: 12px 0px;
  opacity: 25%;
}
.nav-item-hr span {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}

#logo {
  width: 6.8em;
  padding-top: 9.5px;
}
#logo svg {
  width: 100%;
  height: fit-content;
  padding: 9px;
  border-radius: 4px;
  background-color: #ffffff17;
}

@media (max-width: 390px) {
  .menu {
    position: relative;
    float: left;
    height: 100%;
    width: 70% !important;
  }
  .menu a {
    margin-left: 0 !important;
  }

  #logo {
    width: 20%;
    padding-top: 6.5px;
    margin-left: 0 !important;
    margin-right: 10px;
  }
}

.subMenu .nav-item {
  color: #717171;
  padding-left: 58px;
  font-size: 15px;
}
.subMenu .nav-item.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.051);
}

.subMenu {
  display: none;
}

.container {
  display: flex;
  align-content: center;
  justify-content: center;
}

.main {
  position: sticky;
  top: 0px;
  width: 100%;
  height: 64px;
  z-index: 1;
  background: #0b1734;
}

.menu {
  position: relative;
  float: left;
  height: 100%;
  width: 60%;
}
.menu a {
  position: relative;
  float: left;
  width: 64px;
  height: 100%;
  line-height: 58px;
  text-align: center;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
}
.menu a i {
  color: #fff;
}
.menu span {
  position: relative;
  float: left;
  height: 64px;
  line-height: 64px;
  color: #fff;
  font-family: "Product Sans";
  font-size: 21px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .menu #logo {
    font-size: 1em;
  }
}

@media screen and (max-width: 390px) {
  #logo {
    display: none;
  }

  #f-logo{
    width: 35px;
    display: block;
    padding-top: 0.5rem;
  }

  #f-logo svg {
    width: 2.4rem;
        height: 2.4rem;
        margin-top: 5px;
        padding: 6px;
        border-radius: 8px;
        background: #ffffff17;
  }

  .menu span{
    margin-left: 0px !important;
    margin-right: 10px !important;
  }
}


@media screen and (max-width: 820px) {
  #logo {
    display: none;
  }

  #f-logo{
    width: 35px;
    display: block;
    padding-top: 0.5rem;
  }

  #f-logo svg {
    width: 2.4rem;
        height: 2.4rem;
        margin-top: 5px;
        padding: 6px;
        border-radius: 8px;
        background: #ffffff17;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) and (orientation: landscape) {
  #logo {
    display: none;
  }

  #f-logo{
    width: 35px;
    display: block;
    padding-top: 0.5rem;
  }

  #f-logo svg {
    width: 2.4rem;
        height: 2.4rem;
        margin-top: 5px;
        padding: 6px;
        border-radius: 8px;
        background: #ffffff17;
  }
}

@media screen and (max-width: 1180px) {
  #logo {
    display: none;
  }

  #f-logo{
    width: 35px;
    display: block;
    padding-top: 0.5rem;
  }

  /* .f_logo{
    width: 1.6rem;
    height: 1.6rem;
    border: 1px solid red;
  } */

  #f-logo svg {
    width: 2.4rem;
        height: 2.4rem;
        margin-top: 5px;
        padding: 6px;
        border-radius: 8px;
        background: #ffffff17;
  }
}

@media (max-width: 615px) {
  .main .menu #core {
    font-size: 16px;
    margin-left: 10px;
  }
  .main .menu #spanText {
    font-size: 16px;
    margin-left: 5px;
  }
  .main .search-bell {
    top: 10px;
    right: 35px;
    font-size: 16px;
    width: 35px;
    height: 45px;
    gap: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
  }
  .main .search-bell .ph-bold.ph-magnifying-glass {
    color: white;
  }
  .main .search-bell .ph-bold.ph-bell {
    color: white;
  }
  .main .search-bell span {
    color: #848383;
  }
  .main .profile-picture {
    display: none;
  }
  .nav-item {
    padding: 7px 13px;
    align-items: center;
    display: flex;
    text-align: left;
  }
  .nav-item span {
    font-size: 13px;
  }
  .nav-item a {
    align-items: center;
  }
  .subMenu .nav-item {
    padding-left: 13px;
    font-size: 13px;
  }
  .nav-item-label {
    font-size: 12px;
  }
}
.permission-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  line-height: 5px;
  margin: 0 auto;
  max-width: 450px;
  padding: 40px;
  position: sticky;
  top: 40%;
  width: 100%;
}
.permission-card p {
  color: #0b1734;
  text-align: center;
}

@media (max-width: 768px) {
  .permission-card {
    line-height: 20px;
    width: 60%;
  }
}
@media (max-width: 320px) {
  .main .menu a {
    width: 52px;
    margin-left: 0px;
  }
  .main .search-bell {
    right: 20px;
  }
} /*# sourceMappingURL=style.css.map */