/**
 * Created by ludovic_jutant on 15/05/2017.
 */

/**
 Application des regles des profils
 */

.p-subscriber {
    display: none;
}

.p-subscriber_advanced {
    display: none;
}

.p-registered {
    display: none;
}

/**
- R1 : Le body ne peut pas etre masqué
 */

body.p-subscriber {
    display: block;
}

body.p-subscriber_advanced {
    display: block;
}

body.p-registered {
    display: block;
}

/**
- R2 : Les element s'affiche si le body contient le profil
 */

body.p-subscriber .p-subscriber {
    display: block;
}

body.p-subscriber_advanced .p-subscriber_advanced {
    display: block;
}

body.p-registered .p-registered {
    display: block;
}