﻿.related-product-container {
    display: none;
}

.user-wrapper {
    padding: 50px;
}

.user-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.user-account {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.user-account__avt img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.user-account__name {
    font-size: 20px;
}

.user-feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.user-feature {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin: 10px 40px;
}

.icon-feature {
    font-size: 40px;
}

.name-feature {
    text-align: center
}

.user-feature:hover {
    cursor: pointer;
    background-color: #d4d4d4;
}

.show-user {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: var(--primary-color);
    gap: 10px;
    margin-bottom: 16px;
}

.user-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-name {
    color: #fff;
    font-size: 20px;
}

.user-mobile {
    display: none;
    flex-direction: column;
}

.user-app {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 300px;
}

.img-app img {
    width: 80px;
    height: 80px;
}

.instruct span {
    font-size: 13px;
    color: #7d7d7d;
}

@media only screen and (max-width: 767px) {
    .user-wrapper {
        padding: 0;
    }
    .user-feature-list {
    gap:10px;
        }
    .user-container {
    }

    .name-feature {
        text-align: center
    }

    .user-feature {
        width: 150px;
        height: 150px;
        background-color: #fff;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin:0;
    }

    #footer {
        display: none;
    }
}
