
.puzzle, .puzzle-image-sample{
    border: 8px solid #004b03;
    box-sizing: content-box;
}
.puzzle-image-sample {
    width: 486px;

    -o-object-fit: contain;
    object-fit: contain;
}
.puzzle .play-container{
    border: 8px solid brown;
}
.play-container {
    position: relative;
    margin: 0;
}

.play-overlay-puzzle.ng-star-inserted {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fffffff0;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
}

.bar-button.play_puzzle {
    font-size: 2rem;
}

.puzzle-tile {
    width: calc(100% / 3);
    position: relative;
    margin-bottom: 0;
    border: 1px solid #004b03;
}

.puzzle-image {
    width: 160px;
    height: 160px;
    -o-object-fit: contain;
    object-fit: contain;
}
.play_puzzle{
    max-width: 45%;
}
.play_trivia{
    max-width: 200px;
}

.tile-selection-slaceholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trivia-intro-instruction {
    width: 100%;
    height: 230px;
}

.trivia-answer {
    font-family: Arvo,serif;
    cursor: pointer;
    margin-top: 16px;
    padding: 10px;
   color: var(--main_green);
    background-color: rgba(255, 255, 255, .7);
    /*text-transform: lowercase;*/
}

.answer-error {
    color: var(--main_yellow);
    cursor: not-allowed;
    background-color: rgba(255, 0, 0, .2);
}

.answer-correct {
    cursor: not-allowed;
    background-color: rgba(0, 255, 0, .2)
}

.question-color {
    color: #707070;
}

.question-container {
    padding: 20px;
    font-family: 'Arvo Bold',serif;
}

@media screen and (min-width:987px) {
    .m-8.d-none{
        display: block !important;
    }
}
@media screen and (max-width:821px) {
    .question-container {
        width: 95%;
    }
    .puzzle {
        margin-top: 1rem;
    }
}

@media screen and (max-width:599px) {
    .puzzle {
        margin-top: 1rem;
    }
    .puzzle,
    .puzzle-image-sample {
        width: 300px;
        height: 300px;
        -o-object-fit: contain;
        object-fit: contain;
    }
    .puzzle-image {
        width: 100%;
        height: 95px;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .play_trivia{
        max-width: 120px;
    }
}