.profile-dropdown {
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    align-content: center;
    color: var(--color-negro);
}

.profile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    width: 180px;
    border-radius: 50px;
    color: var(--white-primary);
    /* background-color: white;
    box-shadow: var(--shadow); */

    cursor: pointer;
    border: 1px solid var(--blue-menu);
    transition: box-shadow 0.2s ease-in, background-color 0.2s ease-in,
        border 0.3s;
}

.profile-dropdown-btn:hover {
    /* background-color: var(--blue-menu); */
    background-color: #e8e4e4;
    box-shadow: var(--shadow);
}

.profile-img {
    position: relative;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: url(../img/UsuarioAzul.svg);
    background-size: cover;
}

.profile-img i {
    position: absolute;
    right: 0;
    bottom: 0.3rem;
    font-size: 0.5rem;
    color: var(--blue-menu);
}

.profile-img+span {
    font-size: 16px;
    font-weight: 800;
}

.profile-dropdown-btn span {
    margin: 0 0.5rem;
    margin-right: 0;
}

.profile-dropdown-list {
    position: absolute;
    top: 68px;
    width: 220px;
    right: 0;
    /* background-color: var(--blue-menu); */
    background-color: #e8e4e4;
    border-radius: 10px;
    max-height: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: max-height 0.5s;
    padding-left: 0px;
}

.profile-dropdown-list hr {
    border: 0.5px solid var(--blue-menu);
}

.profile-dropdown-list.active {
    max-height: 500px;
}

.profile-dropdown-list-item {
    padding: 0.5rem 0rem 0.5rem 1rem;
    transition: background-color 0.2s ease-in, padding-left 0.2s;
}

.profile-dropdown-list-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--blue-menu);
}

.profile-dropdown-list-item a:hover {
    color: var(--color-blanco);
}

.profile-dropdown-list-item a i {
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 2.3rem;
    height: 2.3rem;
    /* background-color: var(--blue-menu); */
    background-color: #e8e4e4;
    color: var(--blue-menu);
    line-height: 2.3rem;
    text-align: center;
    margin-right: 1rem;
    border-radius: 50%;
    transition: margin-right 0.3s;
}

.profile-dropdown-list-item:hover {
    padding-left: 1.5rem;
    background-color: var(--blue-menu);
}