/*
COPIAR ESTILOS EN STYLES.CSS AL COMPILAR SASS
O AGREGAR EN SASS EN CASO DE NO ESTAR CORRUPTO
O INCLOMPLETO
*/
/* .nav_phones {
  display: flex;
  align-items: center;
}

.nav_phones_a {
  display: flex;
} */

.nav_drop_down {
  position: relative;
  display: inline-block;
  height: fit-content;
}

.nav_drop_down_content {
  position: absolute;
  display: none;
  z-index: 1;
  flex-direction: column;
  gap: 5px;
  /* transform-origin: top right; */
  top: 100%;
  right: 0;
  background-color: #efefef;
  padding: 0.7rem;
  border-radius: 0.7rem;
}

.nav_drop_down:hover .nav_drop_down_content {
  display: flex;
}

.nav_drop_down:active .nav_drop_down_content {
  display: flex;
}

.nav_drop_down_content a {
  background-color: white;
  white-space: nowrap;
}

.nav_drop_down_content a:hover {
  background-color: #c3f73a;
}