.container-3-carpal-tunnel-syndrome-test {
    min-height: 100vh;
    justify-items: center;
    display: grid;
    padding: env(safe-area-inset-top) 5vw env(safe-area-inset-bottom) 5vw;
    grid-template-areas:
        "header-test"
        "info-touch-test"
        "test-touch-main-area"
        "show-instruction-reset"
        "test-cancell";
    grid-template-rows: auto auto 1fr auto auto;
}

.header-test {
    grid-area: header-test;
}

.progress-container {
    margin: 16px 0 0 0;
    width: var(--content-width);
    height: 20px;
    border: 1px solid black;
    display: flex;
}

.info-touch-test {
    margin: 30px 0 0 0;
    grid-area: info-touch-test;
    font-size: 19px;
    text-align: center;
    letter-spacing: 0.95px;
    padding: 0 5vw;
}

.test-touch-main-area {
    grid-area: test-touch-main-area;
    width: min(375px, 95vw);
    min-height: 200px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.info-touch-start-info {
    font-family: Arsenal, sans-serif;
    font-weight: bold;
    font-size: 19px;
}

.show-instruction-reset {
    grid-area: show-instruction-reset;
    text-align: center;
    width: min(240px, 70vw);
    height: 54px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.test-cancell {
    margin: 16px 0 0 0;
    grid-area: test-cancell;
    text-align: center;
    width: min(240px, 70vw);
    height: 24px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding-bottom: 16px;
}

.touch-here-button {
    position: absolute;
    width: clamp(80px, 22vw, 110px);
    height: clamp(80px, 22vw, 110px);
    background: #d12c68;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.touch-content {
    text-align: center;
    font: Bold 30px/22px Arsenal;
    letter-spacing: 1.5px;
    color: #ffffff;
    user-select: none;
    -webkit-user-select: none;
}

/* Landscape warning */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .container-3-carpal-tunnel-syndrome-test::before {
        content: attr(data-rotate-msg);
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        z-index: 100;
        text-align: center;
        padding: 20px;
    }
}
