.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: #2a3647;
  z-index: 5;
  -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);
  overflow: hidden;
}

.div-join-logo {
  width: 100%;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.div-nav-out {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 3px;
}

.div-navigation {
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-button {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  color: white;
  gap: 5px;
  padding-left: 55px;
  cursor: pointer;
}

.div-icon {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icn {
  height: 28px;
}

.div-links a:hover {
  color: #29abe2;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: -0.3px;
}

.div-links {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 80px;
  left: 0;
}

.div-links a {
  color: white;
  font-weight: 300;
}

.legals-button {
  cursor: pointer;
  padding: 10px;
  padding-left: 55px;
  width: 240px;
}

.privacy-links-mobile {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  display: none;
}

.privacy-mobile {
  width: 120px;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.login {
  width: 100%;
}

/* Sidebar responsive */

@media (max-width: 670px) {
  .sidebar {
    position: absolute;
    top: inherit;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: #2a3647;
    z-index: 5;
    -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);
  }

  .div-nav-out {
    padding: 0 20px;
  }

  .div-join-logo {
    display: none;
  }

  .div-navigation {
    height: 80px;
    display: flex;
    flex-direction: inherit;
    justify-content: space-evenly;
    align-items: center;
  }

  .login {
    width: 80px;
  }

  .nav-button {
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 7px;
    padding-left: inherit;
    font-size: 0.9rem;
    padding: 0 10px;
    border-radius: 15px;
  }

  .icn {
    height: 22px;
  }

  .div-links {
    display: none;
  }

  .privacy-links-mobile {
    display: flex;
  }
}

@media (min-width: 671px) {
  .nav-button:hover {
    background: #314663;
  }
}

@media (max-height: 710px) {
  .div-links {
    bottom: 20px;
  }

  .div-join-logo {
    margin-bottom: 0px;
  }
}

.d_none {
  display: none;
}
