/* puzzle */
.game-container {
    position: relative;
    width: 98svw;
    margin: 1svw auto;
    height: auto;
    aspect-ratio: 16/9;
    /* overflow: hidden; */
    background-color: var(--coffee-light);
    border: 1svw solid var(--gold-light);
}

.container-startQuiz {
    width: 100%;
    margin: 0 auto;
    background-color: var(--coffee-light);
}

.gameActions {
    pointer-events: visible;
    position: relative;
    width: 100%;
    height: 100%;
}
#forPuzzle {
    border: none;
    left: 0px;
    top: 0px;
}

.polypiece {
    display: block;
    overflow: hidden;
    position: absolute;
}

.moving {
    transition-property: top, left;
    transition-duration: 1s;
    transition-timing-function: linear;
}

.gameCanvas {
    display: none;
    overflow: hidden;
    position: absolute;
}

#puzzle-containment {
    background: var(--coffee-light);
    margin: 0 auto;
    padding: 20px 0;
}

/* Timer */
#start-game {
    background-color: var(--coffee-dark);
    width: 230px;
    height: calc(7% - 10px);
    padding: 10px;
    position: relative;
    border-radius: 50px;
    font-family: var(--main-font);
    color: var(--stopper);
    font-weight: var(--tchibo-font-weight-bold);
    margin: 0 auto;
    text-transform: uppercase;
}

#startimer {
    background-color: var(--coffee-dark);
    width: 230px;
    height: calc(7% - 10px);
    padding: 10px;
    position: relative;
    border-radius: 50px;
    font-family: var(--main-font);
    color: var(--stopper);
    font-weight: var(--tchibo-font-weight-bold);
    margin: 0 auto;
    display: none;
}

#refresh-button {
    background-color: var(--gold-light);
    width: 340px;
    height: calc(7% - 10px);
    padding: 10px;
    position: relative;
    border-radius: 50px;
    font-family: var(--main-font);
    color: var(--coffee-dark);
    font-weight: var(--tchibo-font-weight-bold);
    margin: 0 auto;
    text-transform: uppercase;
}

/* form */
#submitForm {
    display: none;
}

.pure-g {
    width: 100%;
    max-width: 700px;
    margin:auto;
    background: var(--gold-dark);
    padding: 10px;
    border-radius: 10px;
    min-height: 420px;
}

@media screen and (max-width:560px) {
    .pure-g {
        min-height: 350px;
    }
}

/* Pure CSS */
.pure-button {
    margin: 5px 0;
    text-decoration: none !important;
}
.button-lg {
    margin: 5px 0;
    padding: 0.65em 1.6em;
    font-size: 105%;
}

/* required snapPuzzle styles */
.snappuzzle-wrap {
    position: relative;
    display: block;
}
.snappuzzle-pile {
    position: relative;
}
.snappuzzle-piece {
    cursor: move;
}
.snappuzzle-slot {
    position: absolute;
    background: #fff;
    opacity: 0.8;
}
.snappuzzle-slot-hover {
    background: #eee;
}

/* border-top: 1px solid #eee;border-bottom:1px solid #eee;margin:30px 0;padding:10px;text-align:center */
