.ticket {
    border: 1px solid black;
    position: relative;
    width: 302px;
    height: 302px;
    margin: 20px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.cadeau {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index:-1;
    justify-content: center;
    align-items: center;
}
.cadeau i{
    position: absolute;
    font-size: 3rem;
}
.cadeau i.ok {
    color: #ff006e;
}
.cadeau i.position-0 {
    top: 10%;
    left: 15%;
    transform: rotate(12deg);
}
.cadeau i.position-1 {
    top: 10%;
    left: 60%;
    font-size: 4rem;
    transform: rotate(-25deg);
}
.cadeau i.position-2 {
    top: 40%;
    left: 10%;
    font-size: 2rem;
    transform: rotate(22deg);
}
.cadeau i.position-3 {
    top: 50%;
    left: 60%;
    font-size: 3.5rem;
    transform: rotate(33deg);
}
.cadeau i.position-4 {
    top: 70%;
    left: 30%;
    font-size: 4.5rem;
    transform: rotate(25deg);
}
.canvas {
    position: absolute;
    top: 0;
    opacity: 1;
    transition: 2s;
}
.ticket-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: rgba(255,255,255, 0.7);
    background-image: url("/clients/zeconfiserie/documents/ticket-zeconfiserie.jpg");
    background-size: 100% 100%;
    cursor: pointer;
    z-index: 1;
    opacity: 1;
}
.ticket-description {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    background-color: #e50063;
    border-bottom: 1px solid #000000;
    z-index: 2;
}
.ticket-jouer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    bottom: 20px;
    left: 50%;
    margin-left: -50px;
    background-color: #e50063;
    border: 1px solid #000000;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 2;
}
.ticket-jouer:hover {
    background-color: #ffdd00;
    color: #000000;
}