/* 
Theme Name: Défi-Évasion chez soi - Plateforme de jeu
Description: Thème de la plateforme de jeu de Défi-Évasion chez soi
Author: SatelliteWP
Author URI: https://satellitewp.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: jeuchezsoi
*/

/*
Section "Entrer le code"
*/
.de_puzzle_answer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F2F2F2;
    box-shadow: 4px 4px 4px #00000029;
    padding: 35px 15px;
    margin: 0 10px;
    border-radius: 10px;
}

.de_puzzle_title {
    text-transform: uppercase;
    color: #0748EE;
    font-size: 32px;
    text-align: center;
}

.de_puzzle_dots {
    margin: 20px 0 30px;
    display: flex;
}

.de_puzzle_dots div {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 5px;
    overflow: hidden;
    position: relative;
    background-color: rgba(7, 72, 238, 0.13);
    transform: scale(1);
}
/*.de_puzzle_dots div.active {
    background-color: rgba(7, 72, 238, 1);
}*/
.de_puzzle_dots.load div {
    animation: loading 0.3s linear;
    animation-fill-mode: forwards;
}
@keyframes loading {
    from {
        transform: scale(1);
        background-color: rgba(7, 72, 238, 0.13);
    }
    to {
        transform: scale(1.1);
        background-color: rgba(7, 72, 238, 1);
    }
  }
.de_puzzle_dots div:nth-child(2) {
    animation-delay: 0.3s;
}
.de_puzzle_dots div:nth-child(3) {
    animation-delay: 0.6s;
}
.de_puzzle_dots div:nth-child(4) {
    animation-delay: 0.9s;
}
.de_puzzle_dots div:nth-child(5) {
    animation-delay: 1.2s;
}
.de_puzzle_dots div:nth-child(6) {
    animation-delay: 1.5s;
}
.de_puzzle_dots div:nth-child(7) {
    animation-delay: 1.8s;
}
.de_puzzle_dots div:last-child {
    animation-delay: 2.1s;
}

.de_puzzle_form {
    margin-bottom: 35px;
    max-width: 400px;
    width: 100%;
}
.de_puzzle_form form {
    display: flex;
    justify-content: center;
}
.de_puzzle_form input{
    max-width: 270px;
    margin-right: 6%;
    border:2px solid #0748EE;
    border-radius: 14px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}
.de_puzzle_form input:focus{
    border-color:#0748EE;
}
.de_puzzle_form button {
    font-size:18px;
    color: #0748EE;
    background: linear-gradient(to right, #f2f2f2, #f4f4f4, #f7f7f7, #f9f9f9, #fcfcfc);
    border-radius: 23px;
    border: 0;
    box-shadow: 4px 4px 4px #00000029;
    transition: all 0.4s;
}
.de_puzzle_form button:hover {
    background:#0748EE;
}

.de_message {
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
}
.de_message .de_message_error{
    color: #FF0000;
}
.de_message .de_message_sucess{
    color: #027916;
}