.profile-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card-info {
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: column;
    margin-right: 14px;
}

.profile .profile-menu {
    position: absolute;
    top: 116px;
    right: 50px;
    padding: 0;
    background: #f1f1f1;
    width: 300px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 999;
    visibility: hidden;
}

.profile .profile-menu.active {
    visibility: visible;
}

.profile-menu-name {
    color: #000;
}

.profile .profile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
}

.profile-menu-options {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: initial;
}

.profile-menu-colors {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.profile-menu-colors-options {
    height: 20px;
    width: 20px;
    border-radius: 999px;
    margin: 0 5px;
    border: 1px solid black;
    cursor: pointer;
}

#bg-black {
    background: black;
}

#bg-gray {
    background: #eee;
}

#bg-darkblue {
    background: #213665;
}

.profile-menu-baner {
    background-image: url(../assets/assets/images/user-card/banner_perfil.webp);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 120px;
    border-radius: 10px 10px 0 0;
}

.profile-menu-photo img {
    border-radius: 999px;
    width: 104px;
    height: 104px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px
}

.profile-menu-photo {

    margin-top: -56px;
}