
.media_phone
{
    display: none;
}

.parentHeader {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 5vh;
    z-index: 10;
    backdrop-filter: blur(2px);
}


.enfantHeader {
    flex: 1;
    display: flex;
    flex-direction: column;

}


.enfantTexte {
    width: 100%;
    flex: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background ease-out .2s, color ease-out .2s;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.enfantTexteEffect
{
    background-color: rgba(40, 32, 94, 0.6);
}

.enfantTexteEffectHoverBackground:hover
{
    background-color: rgba(255, 255, 255, 0.5);
    color:#28205e;
}




.enfantBordure {
    transition: transform linear .2s;
    /* flex: 1; */
    height: 10%;
    position: relative;
    background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    transform: scale(0);
    transform-origin: -50%;

}

.enfantTexteEffectHoverUnderline
{
    position: relative;
}

.enfantTexteEffectHoverUnderline::after
{
    content: '';
    display: block;
    position: absolute;
    transition: transform linear .25s;
    width: 100%;
    transform: scale(0);
    transform-origin: right;
    background-color: rgba(255, 255, 255, 0.6);
    height: 10%;
    bottom: 0;
    left: 0;
}

.enfantTexteEffectHoverUnderline:hover::after
{
    transform-origin: left;
    transform: scaleX(100%);

}

#menu_compte
{
    display: none;
}
