.navbar {
    background-color: #18c29c;
    width: 78px;
    height: 100vh;
    padding: 20px 14px;
    transition: all 0.5s ease-out;
}

.navbar .petLogo {
    display: none;
}

.navbar.active {
    background-color: #18c29c;
    padding: 16px 14px;
    width: 240px;
    height: 100vh;
    position: fixed;
    transition: all 0.5s ease-out;
}

.navbar.active .petLogo {
    display: block;
}

.logo {
    display: flex;
    justify-content: center;
}

.navbar.active .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-icon {
    cursor: pointer;
}

.navbar ul {
    margin-top: 30px;
    list-style: none;
    transition: all 1s ease;
}

.navbar ul .texto {
    display: none;
}

.navbar.active ul .texto {
    display: block;
    margin-left: 12px;
}

.navbar ul li {
    display: flex;
    margin-top: 8px;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    list-style: none;
    border-radius: 12px;
}

.navbar.active ul li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 12px;
}

.navbar ul li:hover {
    background-color: #8ed7c6;
    cursor: pointer;
    transition: all 0.6s ease;
}

ul li input {
    width: 90%;
    background-color: #8ed7c6;
    border-style: none;
    outline: 0;
}

ul li:nth-child(1) {
    background-color: #8ed7c6;
}

.navbar .details {
    display: none;
}

.navbar.active .details{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.navbar.active .profile-user {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    height: 60px;
    width: 240px;
    background-color: #8ed7c6;
    transition: all 0.5s ease-out;
}

.navbar .profile-user{
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #8ed7c6;
    width: 78px;
    height: 60px;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-out;
}

.navbar.active .profile {
    width: 100%;
    display: flex;
    justify-content:space-around ;
}

.img-profile{
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: 12px;
}

.details{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.log-out{
    cursor: pointer;
    transition: all 0.5s ease;
}