.navbar {
  height: 100%;
  background: white;
  -webkit-box-shadow: 0px 1px 4px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 1px 4px 5px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px 0 120px;
  position: relative;
  z-index: 4;
}

.question-mark {
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.question-mark:hover {
  height: 28px;
  width: 28px;
}

.profile-info {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.profile-circle {
  height: 50px !important;
  width: 50px !important;
  background: white;
  border-radius: 50%;
  border: 3px solid #161618;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #29abe2;
  font-weight: bold;
  font-size: 1.25rem;
  cursor: pointer;
}

.profile-circle:hover {
  background: rgb(231, 231, 231);
}

.menu {
  position: absolute;
  right: 30px;
  bottom: -170px;
  height: 150px;
  width: 160px;
  background: #2a3647;
  border-radius: 20px 0 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.hidden {
  display: none;
}

.d_none {
  display: none;
}

.select {
  height: 50px;
  display: flex;
  align-items: center;
  color: #cdcdcd;
  font-size: 1rem;
  padding-left: 25px;
  cursor: pointer;
}

.select:hover {
  background: #283d5a;
}

/* Responsive */

@media (max-width: 875px) {
  .navbar h3 {
    display: none;
  }

  .navbar {
    justify-content: flex-end;
  }
}

@media (max-width: 670px) {
  .navbar {
    height: 80px;
    padding: 0 30px 0 30px;
    justify-content: space-between;
  }

  .d_none {
    display: block;
  }

  .profile-circle {
    height: 40px;
    width: 40px;
    background: white;
    border-radius: 50%;
    border: 2px solid #161618;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #29abe2;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
  }

  .hide {
    display: none;
  }
}

.navbar-wrap {
  height: 100px;
}

.vis-none {
  display: none;
}

/* Responsive */

@media (max-width: 670px) {
  .navbar-wrap {
    padding-left: 0;
    height: 80px;
  }

  .vis-none {
    display: block;
  }

  .menu {
    height: 200px;
    bottom: -220px !important;
  }
}

@media (min-width: 670px) {
  .help-mobile {
    display: none;
  }
}
