@keyframes titleBackMovement {
    0% {
        background-size: 0%;
        background-image: var(--backImage);
    }
    100% {
        background-size: 200%;
        background-image: var(--backImage);
    }
}
@keyframes progressBackMovement {
    0% {
        width: 0px;
    }
    100% {
        width: 20px;
    }
}
@keyframes progressBackMovementClosing {
    0% {
        width: 20px;
    }
    100% {
        width: 0px;
    }
}
@keyframes checkPointButtonBackMovement {
    0% {
        transform: var(--originTransform) rotate(var(--originDeg));
    }
    100% {
        transform: var(--originTransform) rotate(calc(360deg + var(--originDeg)));
    }
}
@keyframes showGameCheckPointPageProgressItem {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: var(--originTransform) scale(0);
    }
    80% {
        transform: var(--originTransform) scale(1.2);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: var(--originTransform) scale(1);
    }
}
@keyframes waterDrop {
    0% {
        top: -50px;
    }
    100% {
        top: calc(100% + 50px);
    }
}
#game {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: url(/assets//image/gameBackground.png) no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
#game .gameLoadDiv {
    --originRotate: rotateZ(-180deg);
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    left: -30%;
    transform-origin: left center;
    transform: var(--originRotate);
    transition: 1s;
    transition-timing-function: linear;
    z-index: 101;
}
#game .gameLoadDiv:nth-child(1) {
    z-index: 102;
}
#game .gameLoadDiv:nth-child(2) {
    --originRotate: rotateZ(180deg);
}
#game .gameLoadDiv:nth-child(3) {
    --originRotate: rotateZ(-180deg);
    left: 130%;
    transform: var(--originRotate) rotateY(180deg);
}
#game .gameLoadDiv:nth-child(4) {
    --originRotate: rotateZ(180deg);
    left: 130%;
    transform: var(--originRotate) rotateY(180deg);
}
#game .gameLoadDiv:nth-child(5) {
    --originRotate: rotateZ(180deg);
    z-index: 103;
    transform: var(--originRotate);
}
#game .gameLoadDiv:nth-child(6) {
    z-index: 104;
    transform: var(--originRotate);
}
#game .gameLoadDiv:nth-child(7) {
    --originRotate: rotateZ(180deg);
    left: 130%;
    transform: var(--originRotate) rotateY(180deg);
    z-index: 103;
}
#game .gameLoadDiv:nth-child(8) {
    --originRotate: rotateZ(-180deg);
    left: 130%;
    transform: var(--originRotate) rotateY(180deg);
    z-index: 104;
}
#game .gameLoadDiv:nth-child(9) {
    z-index: 105;
}
#game .gameLoadDiv:nth-child(10) {
    --originRotate: rotateZ(180deg);
    z-index: 106;
}
#game .gameLoadDiv:nth-child(11) {
    --originRotate: rotateZ(-180deg);
    left: 130%;
    transform: var(--originRotate) rotateY(180deg);
    z-index: 105;
}
#game .gameLoadDiv:nth-child(12) {
    --originRotate: rotateZ(180deg);
    left: 130%;
    transform: var(--originRotate) rotateY(180deg);
    z-index: 106;
}
#game .gameLoadDiv div {
    position: absolute;
    width: 140%;
    height: 294%;
    top: 50%;
    left: 0%;
    transform: translate(0, -50%);
    background-image: url(/assets/image/fan.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
    filter: drop-shadow(2px 2px 10px #9a6738);
}
#game .gameLoadDiv:nth-child(1) div, #game .gameLoadDiv:nth-child(2) div, #game .gameLoadDiv:nth-child(3) div, #game .gameLoadDiv:nth-child(4) div {
    filter: brightness(0.7);
}
#game .gameLoadDiv:nth-child(5) div, #game .gameLoadDiv:nth-child(6) div, #game .gameLoadDiv:nth-child(7) div, #game .gameLoadDiv:nth-child(8) div {
    background-size: 80% 80%;
    left: -10%;
    filter: brightness(0.85);
}
#game .gameLoadDiv:nth-child(9) div, #game .gameLoadDiv:nth-child(10) div, #game .gameLoadDiv:nth-child(11) div, #game .gameLoadDiv:nth-child(12) div {
    background-size: 60% 60%;
    left: -20%;
}
#game .gameCheckPointPage {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 0px;
    z-index: 98;
    border-radius: 30px / 50px;
    backdrop-filter: blur(50px);
    box-shadow: inset 5px 5px 20px 1px #f2f2f2, 2px 2px 20px 1px #653a0f;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
    user-select: none;
}
#game .gameCheckPointPage:before, #game .gameCheckPointPage:after {
    position: absolute;
    content: "";
    width: 0px;
    height: 85%;
    top: 50%;
    transform: translate(0, -50%) rotateZ(180deg);
    background-image: linear-gradient(#4e3217 0%, #000000 50%, transparent 50%);
    background-size: 100% 10%;
    background-position-y: 3%;
    animation: progressBackMovement 0.7s ease-in-out 1s 1 forwards;
}
#game .gameCheckPointPage:before {
    left: 0;
    transform-origin: left center;
}
#game .gameCheckPointPage:after {
    right: 0;
    transform-origin: right center;
}
#game .gameCheckPointPage.closing:before, #game .gameCheckPointPage.closing:after {
    animation: progressBackMovementClosing 0.7s ease-in-out 1 forwards;
}
#game .gameCheckPointPage .gameCheckPointPageProgress {
    position: absolute;
    width: 130px;
    height: 100%;
    top: 0;
    background: #bd997969;
    border-radius: 30px / 50px;
    backdrop-filter: blur(50px);
    box-shadow: inset 5px 5px 20px 1px #f2f2f2, 2px 2px 20px 1px #653a0f;
    opacity: 0;
    overflow: hidden;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft {
    left: -150px;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft div div {
    transition: 0.3s;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopCeilling {
    position: absolute;
    width: 230px;
    height: 230px;
    top: -200px;
    left: 50%;
    background: #000000;
    border-radius: 40% / 50%;
    --originDeg: 0deg;
    --originTransform: translateX(-50%);
    transform: var(--originTransform) rotate(var(--originDeg));
    animation: checkPointButtonBackMovement 8s linear infinite;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop {
    width: 50px;
    height: 30px;
    position: absolute;
    background: black;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) rotateY(70deg);
    border-radius: 50%;
    animation: waterDrop 1s linear 3 forwards;
    filter: drop-shadow(2px 4px 10px #000000);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(2) {
    animation-delay: 0.3s;
    transform: translateX(calc(-50% - 10px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(3) {
    animation-delay: 1.8s;
    transform: translateX(calc(-50% - 20px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(4) {
    animation-delay: 0.6s;
    transform: translateX(calc(-50% - 30px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(5) {
    animation-delay: 2.4s;
    transform: translateX(calc(-50% - 40px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(6) {
    animation-delay: 0.9s;
    transform: translateX(calc(-50% + 10px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(7) {
    animation-delay: 1.5s;
    transform: translateX(calc(-50% + 20px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(8) {
    animation-delay: 2.1s;
    transform: translateX(calc(-50% + 30px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:nth-child(9) {
    animation-delay: 1.2s;
    transform: translateX(calc(-50% + 40px)) rotateY(70deg);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:before, #game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:after {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    top: -26px;
    border-radius: 50%;
    border-bottom: 20px solid black;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:before {
    transform: rotate(-45deg);
    left: 3px;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftTop .gameCheckPointPageProgressLeftTopWaterDrop:after {
    transform: rotate(45deg);
    right: 3px;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftBottom {
    position: absolute;
    width: 100%;
    height: calc(100% + 50px);
    background: transparent;
    left: 0;
    top: 100%;
    transition: 6s;
    z-index: 1;
    filter: blur(2px);
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftBottom .gameCheckPointPageProgressLeftBottomSurface {
    width: 230px;
    height: 230px;
    position: absolute;
    top: 0;
    left: 50%;
    background: #000000;
    border-radius: 40% / 50%;
    animation: checkPointButtonBackMovement linear infinite;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftBottom .gameCheckPointPageProgressLeftBottomSurface:nth-child(1) {
    animation-duration: 3s;
    opacity: 1;
    --originDeg: 0deg;
    --originTransform: translateX(-50%);
    transform: var(--originTransform) rotate(var(--originDeg));
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftBottom .gameCheckPointPageProgressLeftBottomSurface:nth-child(2) {
    animation-duration: 5s;
    opacity: 0.3;
    --originDeg: 30deg;
    --originTransform: translate(-50%, -8px);
    transform: var(--originTransform) rotate(var(--originDeg));
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressLeft .gameCheckPointPageProgressLeftBottom .gameCheckPointPageProgressLeftBottomContent {
    width: 110%;
    height: calc(100% - 130px);
    position: absolute;
    left: -5%;
    bottom: 0;
    background: #000000;
}
#game .gameCheckPointPage .gameCheckPointPageProgress.gameCheckPointPageProgressRight {
    right: -150px;
    user-select: none;
}
#game .gameCheckPointPage .gameCheckPointPageProgress .gameCheckPointPageProgressItem {
    position: absolute;
    width: 100%;
    height: calc(100% / var(--length));
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    font-weight: bolder;
    background-color: #8d5b2e54;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    --originTransform: translate(0, 0);
    transform: var(--originTransform) scale(0);
    transition: 0.3s;
    animation: showGameCheckPointPageProgressItem 0.7s ease-in-out 1s 1 forwards;
    -webkit-text-stroke: 8px #3c2713;
}
#game .gameCheckPointPage .gameCheckPointPageProgress .gameCheckPointPageProgressItem.chosen {
    filter: brightness(200%);
}
#game .gameCheckPointPage .gameCheckPointPageProgress .gameCheckPointPageProgressItem:hover {
    filter: brightness(150%);
}
#game .gameCheckPointPage .gameCheckPointPageProgress .gameCheckPointPageProgressItem:before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: attr(data-content);
    color: white;
    top: 0;
    left: 0;
    -webkit-text-stroke: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#game .gameCheckPointPage .gameCheckPointPageTitle {
    width: 100%;
    height: 80px;
    padding-top: 20px;
    font-size: 28px;
    letter-spacing: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
}
#game .gameCheckPointPage .gameCheckPointPageTitle .gameCheckPointPageTitleText, #game .gameCheckPointPage .gameCheckPointPageQuestionTitle .gameCheckPointPageQuestionTitleText {
    --backImage: linear-gradient(90deg, #000000 0%, #ffffff 90%);
    color: transparent;
    text-shadow: 0 0 10px #734a22;
    font-weight: bolder;
    background-image: transparent;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 200%;
    -webkit-text-stroke: 1px transparent;
    animation: titleBackMovement 5s ease-in-out 1 forwards;
    padding-right: 230px;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionTitle {
    width: 100%;
    height: 80px;
    font-size: 45px;
    letter-spacing: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    opacity: 0;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionTitle .gameCheckPointPageQuestionTitleText {
    --backImage: linear-gradient(90deg, #000000 0%, #777777 70%, #ffffff 100%);
    animation-duration: 2s;
    padding-right: unset;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction {
    width: 100%;
    height: calc(100% - 320px);
    box-shadow: inset 5px 5px 20px #2c1e0d;
    border-radius: 20px / 40px;
    opacity: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    overflow: hidden;
    position: relative;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionShade {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: url(/assets/image/gameBackground.png) no-repeat;
    z-index: 1;
    box-shadow: 5px 5px 20px #2c1e0d;
    z-index: 2000;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionContent {
    width: calc(100% - 650px);
    height: 100%;
    background: transparent;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    padding: 40px 60px;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionContent::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionContent .gameCheckPointPageQuestionActionContentItem {
    width: 100%;
    margin: 30px 0;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionContent .gameCheckPointPageQuestionActionContentItem .space {
    display: inline-block;
    width: 300px;
    height: 60px;
    margin: 0 15px;
    border-radius: 20px;
    box-shadow: inset 2px 2px 10px #39280d;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo {
    width: 600px;
    height: 100%;
    background: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    user-select: none;
}
/* #game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.submit {
    position: relative;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.submit:before {
    position: absolute;
    content: "您选择的答案：";
    top: 50%;
    left: -50%;
    transform: translate(-10%, -50%);
} */
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options {
    width: 300px;
    height: 60px;
    text-align: center;
    font-size: 25px;
    border-radius: 20px;
    box-shadow: 2px 2px 10px #000000;
    background-color: #9b6d3e;
    transition: 0.3s;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options.tip {
    background-color: transparent;
    box-shadow: 2px 2px 10px #429720;
    color: #256c08;
    font-weight: bolder;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options.chosen.submit {
    background: #7b0404;
    color: aliceblue;
    font-weight: bolder;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options.answer {
    background: #1d521b!important;
    color: aliceblue;
    font-weight: bolder;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options.chosen, #game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges.chosen {
    filter: brightness(150%);
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options.canMove {
    position: relative;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options.draging {
    transition: unset;
    z-index: 1111;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges {
    width: 150px;
    height: 150px;
    text-align: center;
    font-size: 45px;
    border-radius: 40%;
    box-shadow: 2px 2px 10px;
    background-color: #9b6d3e;
    transition: 0.3s;
    margin: 30px;
    overflow: hidden;
    position: relative;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges:nth-child(1) {
    background-image: url(/assets/image/true.png);
    background-repeat: no-repeat;
    background-size: 120% 120%;
    background-position: 35% 35%;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges:nth-child(2) {
    background-image: url(/assets/image/error.png);
    background-repeat: no-repeat;
    background-size: 60% 60%;
    background-position: center center;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges .group {
    position: absolute;
    width: 450px;
    height: 450px;
    top: -150px;
    left: -150px;
    transform: translate(49%, 47%);
    transition: 0.5s;
    pointer-events: none;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges:hover .group, #game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges.answer .group {
    transform: translate(21%, 21%);
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges .group div {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 40% / 30%;
    opacity: 0.6;
    transform-origin: center center;
    --originTransform: scale(1);
    --originDeg: 45deg;
    transform: var( --originTransform) rotate(var(--originDeg));
    animation: checkPointButtonBackMovement linear 8s infinite;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges .group div:nth-child(1) {
    --originTransform: scale(1.05);
    opacity: 0.3;
    animation-duration: 5s;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges:nth-child(1) .group div {
    background-color: #429720;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges:nth-child(2) .group div {
    background-color: #ef3d30;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges.chosen {
    filter: brightness(140%);
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges.chosen .group{
    transform: translate(21%, 21%);
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.judges.chosen:after {
    width: 100%;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.input {
    width: 450px;
    height: 80%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.input * {
    display: block;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.input label {
    font-size: 30px;
    font-weight: 700;
    position: relative;
    color: #c1a483;
    -webkit-text-stroke: 8px #39280d;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.input label:after {
    position: absolute;
    content: attr(data-content);
    width: 100%;
    top: 0;
    left: 0;
    -webkit-text-stroke: 0;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.input .gameCheckPointPageQuestionActionDoItemTextarea {
    outline: none;
    width: 350px;
    height: 0;
    background: transparent;
    border: none;
    border-radius: 20px;
    box-shadow: inset 2px 2px 10px #453521;
    padding: 20px;
    font-size: 20px;
    transition: 0.3s;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.input .gameCheckPointPageQuestionActionDoItemTextarea:focus {
    box-shadow: inset 2px 2px 10px #ffffff;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.input .gameCheckPointPageQuestionActionDoItemTextarea::-webkit-scrollbar {
    width: 0;
    height: 0;
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo .gameCheckPointPageQuestionActionDoItem.options:hover {
    filter: brightness(130%);
}
#game .gameCheckPointPage .gameCheckPointPageQuestionAction .gameCheckPointPageQuestionActionDo:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 80%;
    background-color: #000000;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    filter: blur(10px);
    border-radius: 50px;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit {
    width: 100%;
    height: 160px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 20px;
    opacity: 0;
    user-select: none;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem {
    width: 300px;
    height: 80%;
    background: #f6d4ae;
    font-size: 30px;
    border-radius: 40px;
    box-shadow: 5px 5px 10px #34200c;
    color: white;
    font-weight: bolder;
    position: relative;
    overflow: hidden;
    transition: 0.7s;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem.notAllowed {
    filter: grayscale(100%) brightness(50%);
}
#game .gameCheckPointPage .gameCheckPointPageSubmit [class='gameCheckPointPageSubmitItem']:hover {
    box-shadow: 5px 5px 10px #ffffff;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: inherit;
    box-shadow: inherit;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: transparent;
    box-shadow: inset 5px 5px 10px #4d3217;
    transition: 0.7s;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit [class='gameCheckPointPageSubmitItem']:hover:after {
    box-shadow: inset 5px 5px 10px #ffffff;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem span {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 12.5px), -50%);
    letter-spacing: 25px;
    z-index: 1;
    -webkit-text-stroke: 7px #4d3217;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem span:before {
    width: 100%;
    position: absolute;
    content: attr(data-content);
    color: white;
    top: 0;
    left: 0;
    -webkit-text-stroke: 0;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem > div {
    position: absolute;
    top: 400%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-80%, 50%) scale(1);
    transition: 2s;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit [class='gameCheckPointPageSubmitItem']:hover > div {
    top: 325%;
    filter: brightness(180%);
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem > div > div {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 500px;
    height: 500px;
    background: #39280d;
    border-radius: 40% / 50%;
    animation: checkPointButtonBackMovement linear 1s infinite;
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem > div > div:nth-child(1) {
    animation-duration: 3s;
    opacity: 1;
    --originTransform: scale(1);
    --originDeg: 45deg;
    transform: var(--originTransform) rotate(var(--originDeg));
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem > div > div:nth-child(2) {
    animation-duration: 5s;
    opacity: 0.3;
    --originTransform: scale(1.1);
    --originDeg: 105deg;
    transform: var(--originTransform) rotate(var(--originDeg));
}
#game .gameCheckPointPage .gameCheckPointPageSubmit .gameCheckPointPageSubmitItem > div > div:nth-child(3) {
    animation-duration: 4s;
    opacity: 0.7;
    --originTransform: scale(1.05);
    --originDeg: 60deg;
    transform: var(--originTransform) rotate(var(--originDeg));
}
#game .gameCheckPointPage .gameCheckPointPageButton {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 10px;
    opacity: 0;
}
#game .gameCheckPointPage .gameCheckPointPageButton button {
    font-size: 20px;
    padding: 13px 75px;
}