body { text-align: center; margin: 0; } .tic-tac-toe { font-family: 'Open Sans', sans-serif; height: 440px; width: 440px; margin: 50px auto 30px auto; position: relative; } .tic-tac-toe .grid { background-color: grey; position: absolute; display: block; border-radius: 3px; } .tic-tac-toe .horizontal-bar-1 { top: 140px; bottom: 290px; height: 10px; width: 440px } .tic-tac-toe .horizontal-bar-2 { top: 290px; bottom: 140px; height: 10px; width: 440px } .tic-tac-toe .vertical-bar-1 { left: 140px; right: 290px; height: 440px; width: 10px; } .tic-tac-toe .vertical-bar-2 { left: 290px; right: 140px; height: 440px; width: 10px; } .tic-tac-toe label { height: 140px; width: 140px; display: none; opacity: 0.0; position: absolute; cursor: pointer; -moz-transition: background-color 0.3s; -o-transition: background-color 0.3s; -webkit-transition: background-color 0.3s; transition: background-color 0.3s; } .tic-tac-toe label:hover { opacity: 0.2; } .tic-tac-toe input { display: none; } .tic-tac-toe input.turn-0 + label { z-index: 0; display: block; } .tic-tac-toe input.col-0 + label { left: 0px; right: 300px; } .tic-tac-toe input.col-1 + label { left: 150px; right: 150px; } .tic-tac-toe input.col-2 + label { left: 300px; right: 0px; } .tic-tac-toe input.row-0 + label { top: 0px; bottom: 300px; } .tic-tac-toe input.row-1 + label { top: 150px; bottom: 150px; } .tic-tac-toe input.row-2 + label { top: 300px; bottom: 0px; } /* CSS for creating the O and X check marks on the field. */ .tic-tac-toe .circle { position: absolute; height: 100px; width: 100px; margin: 10px; border: 10px solid #dc685a; border-radius: 50%; } .tic-tac-toe .cross { position: absolute; width: 140px; height: 140px; display: block; transform:rotate(45deg); -ms-transform:rotate(45deg); -webkit-transform:rotate(45deg); } .tic-tac-toe .cross:before, .cross:after { content: ""; position: absolute; background: #78bec5; border-radius: 3px; } .tic-tac-toe .cross:before { top: 65px; bottom: 65px; left: 0px; right: 0px; height: 10px; width: 140px; } .tic-tac-toe .cross:after { left: 65px; right: 65px; height: 140px; width: 10px; } .tic-tac-toe .end { width: 440px; height: 440px; padding-top: 125px; position: absolute; display: none; background-color: #ecaf4f; color: #3d4250; text-align: center; z-index: 11; background: rgba(255, 255, 255, 0.8); border-radius: 3px; } .tic-tac-toe .end h1 { margin: 40px; } .tic-tac-toe .end a { background-color: #3d4250; border-radius: 3px; text-decoration: none; color: #fff; padding: 10px; } /* Rules for player moves. Make selected field permanently visible and make next board visible. The next player board is the current turn + 2 because every second board is for the bot. */ .tic-tac-toe input.turn-0:checked + label { cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0:checked ~ .turn-2 + label { z-index: 2; display: block; } .tic-tac-toe input.turn-2:checked + label { cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-2:checked ~ .turn-4 + label { z-index: 4; display: block; } .tic-tac-toe input.turn-4:checked + label { cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-4:checked ~ .turn-6 + label { z-index: 6; display: block; } .tic-tac-toe input.turn-6:checked + label { cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-6:checked ~ .turn-8 + label { z-index: 8; display: block; } .tic-tac-toe input.turn-8:checked + label { cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-8:checked ~ .turn-10 + label { z-index: 10; display: block; } /* BEGIN: bot_move_rules */ .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-1.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-3.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-1.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-3.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-1.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-1.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-3.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-1.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-3.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-1.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-1.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-3.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-1.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-8 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-1.field-4 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-3.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-3.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-3.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-3.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-5.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-5.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-3.field-7 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-1 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-3.field-6 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-5.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-7.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-5.field-5 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-7.field-3 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-7.field-0 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-5.field-2 + label { display: block; cursor: default; opacity: 1.0; z-index: 10 !important; } /* END: bot_move_rules */ /* BEGING: Rules for when the bot has won. */ .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-3:checked ~ .end > h1:before { content: "Bot wins!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ .end > h1:before { content: "Bot wins!" !important; } /* END: Rules for when the bot has won. */ /* BEGING: draws */ .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-0:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-1:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-2:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-3:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-4:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-6:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-5:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-6:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-4:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-4:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-8:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-8:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-4:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-8:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-4:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-0:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-0:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-2:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-4:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-2:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-4:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-0:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-0:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-4:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-4:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-7:checked ~ input.turn-2.field-8:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-4:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-0:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-5:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-1:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-2:checked ~ input.turn-4.field-3:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-7:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-6:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-7:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-3:checked ~ input.turn-4.field-7:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-5:checked ~ input.turn-4.field-6:checked ~ input.turn-6.field-1:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-2:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-5:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-6:checked ~ input.turn-4.field-1:checked ~ input.turn-6.field-5:checked ~ input.turn-8.field-3:checked ~ .end > h1:before { content: "Tied!" !important; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-1:checked ~ .end { display: block; } .tic-tac-toe input.turn-0.field-8:checked ~ input.turn-2.field-7:checked ~ input.turn-4.field-2:checked ~ input.turn-6.field-3:checked ~ input.turn-8.field-1:checked ~ .end > h1:before { content: "Tied!" !important; } /* END: draws */