.banner {
    background-color: gray;
    width: 100%;
    height: 190px;
    border-radius: 10px;
}

.product-info {
    display: flex;
    background-color: transparent;    
    flex-direction: row;
    position: relative;
    padding-inline: 10px;
    margin-top: -2.3rem;

    width: 100%;
    justify-content: start;
    align-items: end;
}

@media (max-width: 430px) {
    .photo img {
        width: 75px !important;
        height: 75px !important;
    }

    .photo {
        padding: 3px !important;
    }

    .product-info {
        margin-top: -1.0rem !important;
    }

    .status div p,
    .status .iconbar p {
        font-size: 10px;
    }

    .banner {
        height: 175px !important;
    }

}

@media (max-width: 335px) {
    .photo img {
        width: 60px !important;
        height: 60px !important;
    }

    .product-info {
        margin-top: -0.5rem !important;
    }

    .status div p,
    .status .iconbar p {
        font-size: 9px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 90px !important;
    }

    .banner {
        height: 140px !important;
    }

}


.profile {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.photo {
    background-color: white;
    padding: 5px;
    border-radius: 999px;
}

.photo img {
    background-color: gray;
    width: 95px;
    height: 95px;
    border-radius: 999px;
    object-fit: cover;
}

.user p, .user .status p {
    background-color: transparent;
}

.user {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: end;
    padding-inline: 15px;
    padding-bottom: 5px;
    gap: 3px;
}

.name {
    font-weight: bold;
    font-size: 15px; 
    color: #FF4B2A;
}

.username {
    font-size: 12px;
    font-weight: 500;
    color: #B9B9B9;
}

.status {
    display: flex;
    flex-direction: row;
    gap: 7px;
}

.status div {
    display: flex;
    flex-direction: row;
    padding: 3px;
    padding-inline: 5px;
    border-radius: 3px;
    font-size: 0.9em;
    background-color: #d4d4d446;
    justify-content: center;
    align-items: center;
}

.status .iconbar p {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.onlineIcon {
    width: 10px;
    justify-content: center;
    fill: #FF4B2A;
    padding-left: 5px;
    align-items: center;
    background-color: transparent;
}

.banner {
    width: 100%;
    object-fit: cover;
}

.iconbar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}