#wizzard {
    z-index: 10007;
    position: absolute;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    top: 30px;
    left: 30px;
    margin: 0;
    padding: 20px;
    background: #f7f7f7;
    box-shadow: 10px 10px 15px -12px rgba(0, 0, 0, 0.75);
    border-radius: 12px;
}

.answers {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 23% 23% 23% 23%;
    grid-gap: calc(8% / 3);
    color: #444;
}

[data-page="2"] .answers {
    grid-template-columns: 19% 19% 19% 19% 19%;
    grid-gap: calc(5% / 4);
}

.answer {
    border: solid 1px #eee;
    cursor: pointer;
    background: #fff;
}

.answer:hover {
    box-shadow: 10px 10px 15px -12px rgba(0, 0, 0, 0.75);
}

.answer-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center center;
}

.answer-text {
    text-align: center;
    margin: 30px;
    font-weight: bold;
    font-size: 16px;
}

.wizzard-page {
    display: none;
}

.wizzard-page[data-page="1"] {
    display: block;
}
