﻿/* INFO USER */
.info-user {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
}
.info-user__btn {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}
    .info-user__img > img {
        width: 40px;
        height: 40px;
        border-radius: 100%;
    }
    .info-user__data {
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }
    .info-user__name {
        font-size: 16px;
        color: #FFF;
    }
    .info-user__text {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }
    .info-user__arrow {
        display: inline-flex;
        width: 12px;
        height: 12px;
        border: 2px solid rgba(251, 176, 48, 1);
        border-top-width: 0;
        border-right-width: 0;
        transform: rotate(-45deg);
    }
    .info-user--active .info-user__arrow {transform: rotate(135deg);}

.info-user__content {
    position: absolute;
    top: 70px;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    width: 290px;
    padding: 24px 18px;
    opacity: -1;
    visibility: hidden;
    border: 1px solid rgba(112, 112, 112, 1);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.24);
    border-radius: 6px;
    transition: all .2s ease-in-out;
}
    .info-user__content:before {
        position: absolute;
        top: -12px;
        right: 16px;
        z-index: 2;
        display: inline-block;
        border-bottom: 14px solid #FFF;
        border-left: 10px solid transparent; 
        border-right: 10px solid transparent; 
        content: '';
    }
    .info-user__content:after {
        position: absolute;
        top: -14px;
        right: 16px;
        z-index: 1;
        display: inline-block;
        border-bottom: 14px solid rgba(112, 112, 112, 1);
        border-left: 10px solid transparent; 
        border-right: 10px solid transparent; 
        content: '';
    }
.info-user--active .info-user__content {
    opacity: 1;
    visibility: visible;
}

.phone .info-user {padding: 0 15px 0 12px;}
.phone .info-user__img {
    display: none;
}
.phone .info-user__data {
    gap: 0;
    text-align: left;
}
.phone .info-user__name,
.phone .info-user__text {
    font-size: 10px;
}