﻿body {
    font-size: 16pt;
}

.fullscreen-height {
    height: 100vh;
}

.time-limiter {
    position: absolute;
    left: -1000px;
    top: -1000px;
}

.variant-wildcard {
    position: relative;
    float: left;
    margin: 15px;
    width: 150px;
    height: 150px;
    background-image: url(../img/quiz-gray.png);
    background-size: contain;
    border-radius: 14px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.variant-wildcard:hover {
    box-shadow: 0 0 10px 5px rgba(24, 145, 192, 0.5);
    background-image: url(../img/quiz-cian.png);
}

.variant-manual {
    position: relative;
    float: left;
    margin: 15px;
    width: 150px;
    height: 150px;
    padding: 40px 0 0 0;
    background-image: url(../img/quiz-gray-empty.png);
    background-size: contain;
    border-radius: 14px;
    font-size: 30pt;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.variant-manual:hover {
    box-shadow: 0 0 10px 5px rgba(24, 145, 192, 0.5);
    background-image: url(../img/quiz-cian-empty.png);
}