

.rotationVerticale {
    transform: rotateX(180deg);
    transition: transform 2s linear;
}
.rotationVerticaleR {   
    transform: rotateX(-180deg);
    transition: transform 2s linear;
}
.rotationVerticale90 {
    transform: rotateX(90deg);
    transition: transform 1s linear;
}
.rotationVerticaleR90 {
    transform: rotateX(-90deg);
    transition: transform 1s linear;
}

.rotationHorizontale{
    transform: rotateY(180deg);
    transition: transform 2s linear;
}
.rotationHorizontaleR{
    transform: rotateY(-180deg);
    transition: transform 2s linear;
}
.rotationHorizontale90 {
    transform: rotateY(90deg);
    transition: transform 1s linear;
}
.rotationHorizontaleR90 {
    transform: rotateY(-90deg);
    transition: transform 1s linear;
}

.rotationVerticaleZ {
    transform: rotateZ(180deg);
    transition: transform 2s linear;
}
.rotationVerticaleZR {
    transform: rotateZ(-180deg);
    transition: transform 2s linear;
}
.rotationVerticaleZ90 {
    transform: rotateZ(90deg);
    transition: transform 1s linear;
}
.rotationVerticaleZR90 {
    transform: rotateZ(-90deg);
    transition: transform 1s linear;
}




