/* sidebar on mobile screen */
.mobile-sidebar-btn {
  background: transparent;
  border: none;
  color: #fff;
  display: none;
}

.mobile-sidebar {
  display: none;
  min-width: 100%;
  position: fixed;
  z-index: 200;
  background-color: #fff;

  transform: translate(100%, 0%);
  transition: 0.2s;
}

/* sidebar active */
.mobile-sidebar-active {
  transform: translateX(0%);
}

.mobile-sidebar > header {
  height: 4.75rem;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 1rem;
  border-bottom: 1px solid rgb(223, 227, 235);
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0px;
  right: 0px;
  z-index: 2;
}

.mobile-sidebar-container {
  overflow-y: scroll;
  height: 100vh;
  padding-bottom: 10rem;
  background-color: rgb(247, 248, 250);
  padding-top: 4.75rem;
}

.mobile-sidebar-search {
  margin: 0.75rem 0.5rem 0px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: background-color 300ms ease-out 0s;
  padding: 0.5rem;
}

.mobile-sidebar-search > div {
  background-color: rgb(240, 242, 247);
  color: rgb(18, 21, 21);
  border: none;
  border-radius: 0.5rem;
  width: 100%;
  padding-left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.mobile-sidebar-search > div > button {
  background: none;
  border: none;
  padding: 0px;
  height: 1.5rem;
}

.mobile-sidebar-search > div > input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0.625rem 0.75rem 0.625rem 0px;
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25rem;
}

.mobile-sidebar-container > section > h4 {
  background-color: rgb(247, 248, 250);
  border-bottom: 1px solid rgb(240, 242, 247);
  padding: 2rem 1rem 1rem;
  color: rgb(103, 113, 133);

  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: 1;
}

.mobile-sidebar-container > section > ul {
  list-style-type: none;
}

.mobile-sidebar-container > section > ul > li {
  font-size: 1rem;
  line-height: 1.5rem;
  width: 100%;
  border-bottom: 1px solid rgb(240, 242, 247);
  background-color: rgb(255, 255, 255);

  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
}
.mobile-sidebar-container > section > ul > li > button {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  height: min-content;
  border-radius: 0.5rem;
  border: none;
  background-color: rgb(240, 242, 247);
  color: rgb(130, 139, 159);
}

.mobile-sidebar-container > section > ul > li:hover {
  background: rgb(247, 248, 250);
}

.mobile-sidebar-container > section > ul > li > a {
  display: flex;
  align-items: center;
}

.hiring-mobile {
  margin-top: 0px !important;
  margin-left: 8px;
  margin-bottom: 8px;
}

.mobile-sidebar-text > h6 {
  margin-bottom: 0.25rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}

.mobile-sidebar-text > p {
  color: rgb(80, 89, 107);
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.25rem;
}

.mobile-sidebar-footer {
  border-top: 1px solid rgb(223, 227, 235);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 2;
  padding: 1rem;
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(240, 242, 247) 0px -1px 0px 0px,
    rgba(0, 0, 0, 0.05) 0px -0.25rem 0.875rem 0px;
}

.mobile-sidebar-footer > div {
  margin-top: 1rem;
  display: flex;
  gap: 1.25rem;
}

.mobile-sidebar-footer > div > .btn-border-blue {
  font-size: 14px;
  border-color: rgb(12, 108, 242);
  color: rgb(12, 108, 242);
  padding: 10px 14px;
  background: transparent;
}
/* responsive mobile */
@media (max-width: 426px) {
  .mobile-sidebar-btn,
  .mobile-sidebar {
    display: inherit;
  }
}
