/* =========================================================
   THERAOO - MENU PROFIL UTILISATEUR
   Shortcode : [theraoo_user_menu]
   ========================================================= */

.theraoo-user-menu {
    width: 100%;
    background: #fff;
}


/* =========================================================
   PROFIL
   ========================================================= */

.theraoo-user-menu-profile {
    padding: 30px 20px 26px;
    text-align: center;
}

.theraoo-user-menu-avatar {
    margin-bottom: 18px;
}

.theraoo-user-menu-avatar img {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;

    object-fit: cover;

    border-radius: 50%;
}

.theraoo-user-menu-name {
    margin-bottom: 6px;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #1f2937;
}

.theraoo-user-menu-name a {
    color: inherit;
    text-decoration: none;
}

.theraoo-user-menu-name a:hover {
    color: #22c7df;
}

.theraoo-user-menu-date {
    font-size: 16px;
    line-height: 1.4;
    color: #667085;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.theraoo-user-menu-navigation {
    padding: 0 20px 28px;
}

.theraoo-user-menu-list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.theraoo-user-menu-list li {
    margin: 0;
    padding: 0;
}

.theraoo-user-menu-list a {
    position: relative;

    display: block;

    padding: 7px 8px 7px 34px;

    font-size: 15px;
    line-height: 1.40;
    font-weight: 400;

    color: #22344e;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.theraoo-user-menu-list a:hover {
    color: #20c4dc;
}


/* =========================================================
   ETAT ACTIF
   ========================================================= */

.theraoo-user-menu-list .current-menu-item > a,
.theraoo-user-menu-list .current_page_item > a {
    color: #20c4dc;
}


/* =========================================================
   ICONE GENERIQUE
   ========================================================= */

   /* =========================================================
   ICONES MENU UTILISATEUR
   Basées sur les classes CSS du menu WordPress
   ========================================================= */

.theraoo-user-menu-list a {
    position: relative;
    padding-left: 34px;
}

.theraoo-user-menu-list a::before {
    position: absolute;
    left: 6px;
    top: 50%;

    width: 18px;
    height: 18px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;

    color: currentColor;
}


/* Tableau de bord */
.theraoo-menu-dashboard > a::before {
    content: "⌗";
}


/* Avertissement */
.theraoo-menu-warning > a::before {
    content: "⚠";
}


/* Créer une fiche */
.theraoo-menu-add > a::before {
    content: "+";
    font-size: 24px;
    font-weight: 300;
}


/* Mes fiches */
.theraoo-menu-listings > a::before {
    content: "▣";
}


/* Agenda */
.theraoo-menu-agenda > a::before {
    content: "□";
}


/* Visibilité */
.theraoo-menu-visibility > a::before {
    content: "◉";
}


/* Profil */
.theraoo-menu-profile > a::before {
    content: "♙";
}


/* Messages */
.theraoo-menu-messages > a::before {
    content: "✉";
}


/* Abonnés */
.theraoo-menu-followers > a::before {
    content: "♙";
}


/* Retour Theraoo */
.theraoo-menu-return > a::before {
    content: "↗";
}


/* Témoignage */
.theraoo-menu-testimonial > a::before {
    content: "⌁";
}

.theraoo-user-menu-avatar img,
.theraoo-user-menu-avatar .theraoo-custom-avatar {
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 50% !important;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {

    .theraoo-user-menu-profile {
        padding-top: 20px;
    }

    .theraoo-user-menu-avatar img {
        width: 140px;
        height: 140px;
    }

    .theraoo-user-menu-name {
        font-size: 20px;
    }

    .theraoo-user-menu-date {
        font-size: 15px;
    }

    .theraoo-user-menu-navigation {
        padding-left: 10px;
        padding-right: 10px;
    }

}

/* =========================================================
   CONTOUR / CARTE DU MENU UTILISATEUR
   ========================================================= */

.theraoo-user-menu {
    width: 100%;

    background: #fff;

    border-radius: 14px;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.08),
        0 2px 8px rgba(15, 23, 42, 0.04);

    overflow: hidden;
}

/* =========================================================
   BREADCRUM DES TITRES PAGES INTERFACE
   ========================================================= */
.theraoo-interface-breadcrumb .bread-title {
    font-size: 25px;
    margin: 0 0 5px;
    line-height: 1.1;
    color: #fff;
}

.theraoo-breadcrumb-nav {
    font-size: 14px;
    color: #fff;
}

.theraoo-breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
}

.theraoo-breadcrumb-nav a:hover {
    text-decoration: underline;
}

.theraoo-breadcrumb-separator {
    margin: 0 8px;
    opacity: 0.7;
}

.theraoo-breadcrumb-current {
    opacity: 0.9;
}