body {
    user-select: none;
}

.page-container {
    margin-top: 80px;
}

.pi-container {
    align-items: flex-end !important;
    font-weight: bold;
    font-size: 2.5em;
    border: 15px solid rgba(255,255,255,.8);
    border-image: url("https://www.unicefusa.org/sites/default/files/answer-box.png") 20;
}

.pi-settings {
    margin-top: 20px;
    margin-bottom: 270px;
}

.pi-processed, .pi-queue {
    width: min(40vw, 400px);
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
}

.pi-processed > div {
    float: right;
}

.pi-processed::-webkit-scrollbar {
    display: none;
}

.pi-queue {
    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: hidden;
}

.pi-queue-hidden {
    visibility: hidden;
}

.pi-current {
    padding:0 0.25em;
    align-self: center;
}
.pi-current > span:nth-child(1) {
    width: 0.75em;
}

.red-input {
    color: red;
}

.blinking-cursor {
    font-weight: 700;
    font-size: 1em;
    animation: 1s blink step-end infinite;
    width: 0.4rem;
    height: 1.25em;
    background-color: aliceblue;
}

@keyframes blink {
    from, to {
        opacity: 0;
    }
    50% {
        /*color: #02bcf5;*/
        opacity: 1;
    }
}

.keyboard {
    display: grid;
    position: fixed;
    bottom: 0;
    grid-template-columns: repeat(3, 33.3%);
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.keyboard > div {
    margin: 1px;
    border: 15px solid rgba(255,255,255,.8);
    border-image: url(https://www.unicefusa.org/sites/default/files/answer-box.png) 20;
    font-size: 2em;
}

.keyboard > div:hover {
    transform: scale(1.05);
    transition: all 0.5s ease;
}

.progress-container {
    margin-top: 20px;
}

.percent {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: inset 0 0 50px #000;
    background: #222;
    z-index: 1000;
}

.percent .num {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.percent .num span:nth-child(1) {
    color: #777;
    font-weight: 700;
    font-size: 40px;
    transition: 0.5s;
}

.box:hover .percent .num span:nth-child(1) {
    color: #fff;
    font-size: 60px;
}

.percent .num span:nth-child(2) {
    color: #777;
    font-size: 24px;
    transition: 0.5s;
}

.box:hover .percent .num span:nth-child(2) {
    color: #fff;
}

svg {
    position: relative;
    width: 150px;
    height: 150px;
    z-index: 1000;
}

svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #191919;
    stroke-width: 10;
    stroke-linecap: round;
    transform: translate(5px, 5px);
}

svg circle:nth-child(2) {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
}

svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 0) / 100);
    stroke: #00bdff;
}
