html, head, body {
    background: #000;
    color: #fff;
}

#face {
    position: absolute;

    width: 60vmin;
    height: 60vmin;

    left: 50%;
    transform: translateX(-50%);
    padding: 65px;
}
#face #indicators {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    pointer-events: none;
}
#face #indicators-circle {
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    pointer-events: none;
    border-radius: 50%;
    outline: 0px solid rgba(64, 64, 64, 0.0);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#face #indicators .indicator {
    display: block;
    position: absolute;
    height: 100%;
    width: 4px;
    left: 50%;
    margin-left: -4px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#face #indicators .indicator > span {
    display: block;
    width: 100%;
    height: 16px;
    border-radius: 2px;
    background: #424242;
    margin-top: 44px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#face #indicators .indicator.active > span {
    background: #69F372;
    margin-top: 30px;
    height: 30px;
}
#face #indicators .indicator.loading > span {
    background: yellow;
    margin-top: 30px;
    height: 30px;
}
#face #indicators .indicator.error > span {
    background: red;
    margin-top: 30px;
    height: 30px;
}
#face.circled #indicators-circle {
    outline: 6px solid #424242;
}
#face.circled #indicators .indicator {
    width: 8px;
}
#face.circled #indicators .indicator > span {
    background: #424242;
    margin-top: 57px !important;
    height: 3px !important;
}
#face.circled.active #indicators .indicator > span {
    background: #69F372;
}
#face.circled.active #indicators-circle {
    outline: 8px solid #69F372;
}

#face #camera {
    position: relative;
    width: 100%;
    height: 100%;

    border-radius: 50%;
    overflow: hidden;
}
#face #camera .no-permission {
    background: #111;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0; right: 0; bottom: 0;
    cursor: pointer;
}
#face #camera .no-permission .icon {
    display: block;
    width: 100%;
    height: 100%;
    background: url(/img/verify-age-camera.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 35%;
    opacity: 0.25;
}
#face #camera video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0; right: 0; bottom: 0;
    object-fit: cover;
    transform: scaleX(-1);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
#face #camera video.blurred {
    filter: blur(25px);
}
#face #camera canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0; right: 0; bottom: 0;
    transform: scaleX(-1);
}

#verdict-debug {
    position: absolute;
    bottom: 10vmin;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 90px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
.passed {
    color: lightgreen;
}
.not-passed {
    color: red;
}
.hint {
    position: absolute;
    top: 75vmin;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 90px;
    text-align: center;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-size: 15px;
    transition-property: opacity, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transform-origin: -50% 50%;
}
.hint.hidden {
    opacity: 0;
    transform: scale(0.5);
}