/* Theme Colors */
:root {
    --gameboard-text-color: #1f2022;
    --complete: #92C03E;
    --complete-text-color: #fff;
    --partial: #F0AB00;
    --partial-text-color: #fff;
    --incorrect:#6F2C3E;
    --incorrect-text-color: #fff;
    --key-bg: #dedede;
    --key-text-color: #1f2022;
}

/* ================================ */
* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    font-size: 16px;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

.u-isVisuallyHidden,
.visually-hidden,
.visually_hidden,
noscript img {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

#w-game button,
#w-game .button {
    cursor: pointer;
    -webkit-appearance: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    line-height: 1em;
    text-align: center;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 0;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

#w-game a {
    color: var(--incorrect);
    text-decoration: none;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

#w-game a:hover,
#w-game a:focus {
    color: var(--partial);
}

#w-game-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

#w-game {
    color: var(--gameboard-text-color);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
    position: relative;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

#w-game-board {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 1rem -0.1875rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    max-width: 360px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
}

.w-game-tile-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0.1875rem;
    opacity: 0;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -moz-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -ms-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
}

.w-game-tile-wrapper.display {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    opacity: 1;
}

.w-game-tile {
    width: 100%;
    background-color: transparent;
    -webkit-perspective: 1000px;
            perspective: 1000px;
}

.w-tile-inner {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    -o-transition: transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

.row-complete .w-game-tile .w-tile-inner {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

.w-tile-front,
.w-tile-back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    font-size: 2rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

.w-tile-back {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
}

#w-game-keyboard {
    width: 100%;
    max-width: 500px;
    opacity: 0;
    -webkit-transform: translate3d(0, 40px, 0);
            transform: translate3d(0, 40px, 0);
    -webkit-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .75s cubic-bezier(0.4, 0.0, 0.6, 1)
}

#w-game-keyboard.display {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
}

.w-game-keyboard-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 -0.1875rem
}

.w-game-keyboard-row .w-game-keyboard-key {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10%;
            flex: 0 0 10%;
    max-width: 10%;
    padding: 0.1875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.w-game-keyboard-row .w-game-keyboard-key.one-and-a-half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
    max-width: 15%;
}

.w-game-keyboard-row button,
.w-game-keyboard-row button:focus,
.w-game-keyboard-row button:active,
.w-game-keyboard-row button:hover {
    margin: 0;
    font-size: 16px;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

.w-game-keyboard-row button span {
    width: 100%;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
    font-size: 1.25rem;
    /*box-shadow: 0 0 0 1px rgba(0,0,0,0.2);*/
    text-align: center;
    font-weight: bold;
    border-radius: 4px;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    overflow: hidden;
    background-color: var(--key-bg);
    color: var(--key-text-color);
}

.w-game-keyboard-row button.enter-key span {
    font-size: 0.715rem;
}

.w-game-keyboard-row button.backspace-key span:before {
    content: '';
    background-image: url(../images/backspace-delete-key-dark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 50%;
    height: 100%;
}

.w-game-tile.active.locked[data-status="complete"] .w-tile-back,
.w-examples li.correct,
.w-game-keyboard-row button[data-status="complete"] span,
.w-game-keyboard-row button[data-status="complete"]:focus span,
.w-game-keyboard-row button[data-status="complete"]:active span,
.w-game-keyboard-row button[data-status="complete"]:hover span {
    background-color: var(--complete);
    color: var(--complete-text-color);
}

.w-game-tile.active.locked[data-status="partial"] .w-tile-back,
.w-examples li.partial,
.w-game-keyboard-row button[data-status="partial"] span,
.w-game-keyboard-row button[data-status="partial"]:focus span,
.w-game-keyboard-row button[data-status="partial"]:active span,
.w-game-keyboard-row button[data-status="partial"]:hover span {
    background-color: var(--partial);
    color: var(--partial-text-color);
}

.w-game-tile.active.locked[data-status="wrong"] .w-tile-back,
.w-examples li.incorrect,
.w-game-keyboard-row button[data-status="wrong"] span,
.w-game-keyboard-row button[data-status="wrong"]:focus span,
.w-game-keyboard-row button[data-status="wrong"]:active span,
.w-game-keyboard-row button[data-status="wrong"]:hover span {
    background-color: var(--incorrect);
    color: var(--incorrect-text-color);
}

/* Modal */
#w-modal-dialog {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 100%;
    max-width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: opacity .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: opacity .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    z-index: 101;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}

#w-modal-dialog-wrapper {
    -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 30%);
            box-shadow: 0 0 30px rgb(0 0 0 / 30%);
    border-radius: 4px;
    overflow: hidden;
}

#w-modal-dialog-content {
    position: relative;
    z-index: 9;
}

#w-game .w-modal-dialog-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0.5rem;
    background: #222;
    color: #fff;
}

#w-game .w-modal-dialog-msg {
    background: #fff;
    color: #222;
    padding: 1rem;
}

#w-game .w-modal-dialog-msg p {
    font-weight: normal;
    line-height: 1.25;
    margin: 0 0 0.5rem 0;
    font-size: 0.825rem;
}

.w-modal-dialog-header span.close {
    height: 1rem;
    width: 1rem;
    display: block;
    background: transparent;
}

.w-modal-dialog-header span.close:before {
    content: '';
    background-image: url(../images/close-white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 100%;
    height: 100%;
}

#w-game[data-state="intro"] #w-modal-dialog,
#w-game[data-state="complete"][data-modal="show"] #w-modal-dialog {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .35s .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: opacity .35s .75s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: opacity .35s .75s cubic-bezier(0.4, 0.0, 0.6, 1);
}


#w-game .w-examples {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

#w-game .w-examples ul {
    margin: 1rem 0 0.5rem 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-transform: uppercase;
    font-weight: bold;
}

#w-game .w-examples li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    padding: 0.5rem;
    max-width: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1;
    margin-right: 0.5rem;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
    border-radius: 2px;
}


#w-game[data-status="error"] #w-modal-dialog,
#w-game[data-status="fail"] #w-modal-dialog {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .15s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: opacity .15s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: opacity .15s cubic-bezier(0.4, 0.0, 0.6, 1);
}

#w-game[data-status="error"] #w-modal-dialog-wrapper,
#w-game[data-status="fail"] #w-modal-dialog-wrapper {
    margin-top: 25%;
}

#w-game[data-status="error"] .w-modal-dialog-header,
#w-game[data-status="fail"] .w-modal-dialog-header {
    display: none;
}

#w-game[data-status="error"] .w-modal-dialog-msg {
    background: #222;
    color: #fff;
}
#w-game[data-status="fail"] .w-modal-dialog-msg {
    background: #fff;
    color: #222;
    text-transform: uppercase;
}

#w-game[data-status="error"] #w-modal-dialog p,
#w-game[data-status="fail"] #w-modal-dialog p {
    margin: 0;
    line-height: 1;
    font-weight: bold;
    font-size: 1rem;
}
#w-game[data-status="fail"] #w-modal-dialog p {
    font-size: 1.5rem;
}
/* ===================== */
/* Countdown */
.word_countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.word_countdown div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.75rem;
    line-height: 1;
    position: relative;
    padding-right: 0.25rem;
}

.word_countdown div.colon {
    padding: 0 0.25rem;
}

.word_countdown div:last-child {
    padding: 0;
}

#w-game .w-modal-dialog-msg p.w-congrats,
#w-game .w-modal-dialog-msg p.w-fail,
#w-game .w-modal-dialog-msg p.w-modal-title {
    font-size: 1.35rem;
    font-family: "colusregular", serif;
    font-weight: normal;
    letter-spacing: -0.22px;
    line-height: 1.192;
    color: #6F2C3E;
    margin: 0;
    text-transform: uppercase;
}

#w-game .w-modal-dialog-msg p.w-modal-title {
    margin-bottom: 1rem;
}

#w-game .w-modal-dialog-msg p.w-congrats,
#w-game .w-modal-dialog-msg p.w-fail {
    text-align: center;
}

.w-modal-dialog-msg p.w-congrats-results,
.w-modal-dialog-msg p.w-fail-results {
    font-weight: normal;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    font-size: 0.825rem;
    text-align: center;
}

.w-congrats-msg,
.w-fail-msg {
    font-size: 0.825rem;
    text-align: left;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.w-congrats-msg p:last-child,
.w-fail-msg p:last-child {
    margin: 0;
}
.w-fail .fail-icon {
    display: block;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem auto;
    background-image: url(../images/sad-face.png);
    background-size: contain;
    background-position:center;
    background-repeat: no-repeat;
}
#w-ct {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 1rem 0 0 0;
    margin: 0 -0.5rem;
}

.w-ct-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 0 0.5rem
}

.w-ct-col:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

#w-ct p {
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    font-size: 0.825rem;
    margin: 0;
}

#w-game-share {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#w-game-share span {
    width: 100%;
    display: block;
    padding: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background:#4267B2;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
            position: relative;
}
#w-game-share span:before {
    content: 'Copied!';
    text-transform: uppercase;
    display: block;
    padding: 0.75rem 1rem;
    background: #222;
    color: #fff;
    position: absolute;
    font-size: 1rem;
    border-radius: 4px;
    top:50%;
    left:50%;
    opacity:0;
    -webkit-transform:translate3d(-50%,-50%,0);
          transform:translate3d(-50%,-50%,0);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .3s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .3s cubic-bezier(0.4, 0.0, 0.6, 1);
}
#w-game-share.copied span:before {
    -webkit-animation: fadeInOut 1s normal forwards ease-in-out;
          animation: fadeInOut 1s normal forwards ease-in-out;
    visibility: visible;
}
#w-game-share span:after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../images/share-white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 1rem;
}
.shake {
    -webkit-animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
            animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
}

@-webkit-keyframes shake {

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
                transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
                transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0);
                transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
                transform: translate3d(4px, 0, 0);
    }
}

@keyframes shake {

    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
                transform: translate3d(-1px, 0, 0);
    }

    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
                transform: translate3d(2px, 0, 0);
    }

    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, 0, 0);
                transform: translate3d(-4px, 0, 0);
    }

    40%,
    60% {
        -webkit-transform: translate3d(4px, 0, 0);
                transform: translate3d(4px, 0, 0);
    }
}
@-webkit-keyframes fadeInOut {
    0% { 
        opacity:0; 
        -webkit-transform:translate3d(-50%,-75%,0); 
        transform:translate3d(-50%,-75%,0);
    }
    50% { 
        opacity:1; 
        -webkit-transform:translate3d(-50%,-125%,0); 
        transform:translate3d(-50%,-125%,0);
    }
    100% { 
        opacity:0; 
        -webkit-transform:translate3d(-50%,-175%,0); 
        transform:translate3d(-50%,-175%,0);
    }
}
@keyframes fadeInOut {
    0% { 
        opacity:0; 
        -webkit-transform:translate3d(-50%,-75%,0); 
        transform:translate3d(-50%,-75%,0);
    }
    50% { 
        opacity:1; 
        -webkit-transform:translate3d(-50%,-125%,0); 
        transform:translate3d(-50%,-125%,0);
    }
    100% { 
        opacity:0; 
        -webkit-transform:translate3d(-50%,-175%,0); 
        transform:translate3d(-50%,-175%,0);
    }
}
/*Pryo*/

.w-pyro {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.w-pyro>.before,
.w-pyro>.after {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
    box-shadow: 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
    -webkit-animation: 1s w-bang ease-out infinite backwards, 1s w-gravity ease-in infinite backwards, 5s position linear infinite backwards;
    animation: 1s w-bang ease-out infinite backwards, 1s w-gravity ease-in infinite backwards, 5s position linear infinite backwards;
}

.w-pyro>.after {
    -webkit-animation-delay: 1.25s, 1.25s, 1.25s;
    animation-delay: 1.25s, 1.25s, 1.25s;
    -webkit-animation-duration: 1.25s, 1.25s, 6.25s;
    animation-duration: 1.25s, 1.25s, 6.25s;
}

@-webkit-keyframes w-bang {
    to {
        -webkit-box-shadow: -118px -157.66667px #0055ff, -209px -53.66667px #ff7b00, -149px -231.66667px #ff8000, -55px -256.66667px #b3ff00, -76px -124.66667px #0095ff, 210px -325.66667px #ff0015, -220px -83.66667px #bbff00, 25px -413.66667px #00ff09, -238px -354.66667px #99ff00, 244px -72.66667px #ffd000, -190px -194.66667px #ff2200, 116px -46.66667px #0015ff, -93px -60.66667px #ff6a00, 240px -126.66667px #00ff26, -206px 4.33333px #ff00e6, 190px 48.33333px #00ffc8, 98px -50.66667px #ff0077, 168px -389.66667px #ff0033, -219px -247.66667px #00fff7, -84px 33.33333px #6aff00, 61px -244.66667px #66ff00, 190px -123.66667px #ff0095, 199px -240.66667px #00ff99, 186px -177.66667px #0004ff, -158px 35.33333px #00ff6a, 168px -269.66667px #00bbff, -56px -293.66667px #0048ff, 59px 64.33333px #8800ff, -119px -260.66667px #ff00f7, -200px 79.33333px #0033ff, 228px -24.66667px #1e00ff, 82px -181.66667px #001eff, 151px -282.66667px #ff6a00, 223px -157.66667px #26ff00, -64px 43.33333px #ff009d, 55px -220.66667px deepskyblue, -229px -19.66667px #3c00ff, 20px -378.66667px #00aaff, 106px 9.33333px #aaff00, -122px -273.66667px #ff00a6, -202px -371.66667px #00ff4d, 39px -272.66667px #0dff00, -151px -241.66667px #15ff00, 163px -222.66667px #2f00ff, -74px -297.66667px #ff0062, 250px -249.66667px #00ffb3, 67px -113.66667px #ff00f7, -111px 31.33333px #00a6ff, -204px 48.33333px #ffea00, -243px -328.66667px #00ffd0, 3px -372.66667px #00ffae;
        box-shadow: -118px -157.66667px #0055ff, -209px -53.66667px #ff7b00, -149px -231.66667px #ff8000, -55px -256.66667px #b3ff00, -76px -124.66667px #0095ff, 210px -325.66667px #ff0015, -220px -83.66667px #bbff00, 25px -413.66667px #00ff09, -238px -354.66667px #99ff00, 244px -72.66667px #ffd000, -190px -194.66667px #ff2200, 116px -46.66667px #0015ff, -93px -60.66667px #ff6a00, 240px -126.66667px #00ff26, -206px 4.33333px #ff00e6, 190px 48.33333px #00ffc8, 98px -50.66667px #ff0077, 168px -389.66667px #ff0033, -219px -247.66667px #00fff7, -84px 33.33333px #6aff00, 61px -244.66667px #66ff00, 190px -123.66667px #ff0095, 199px -240.66667px #00ff99, 186px -177.66667px #0004ff, -158px 35.33333px #00ff6a, 168px -269.66667px #00bbff, -56px -293.66667px #0048ff, 59px 64.33333px #8800ff, -119px -260.66667px #ff00f7, -200px 79.33333px #0033ff, 228px -24.66667px #1e00ff, 82px -181.66667px #001eff, 151px -282.66667px #ff6a00, 223px -157.66667px #26ff00, -64px 43.33333px #ff009d, 55px -220.66667px deepskyblue, -229px -19.66667px #3c00ff, 20px -378.66667px #00aaff, 106px 9.33333px #aaff00, -122px -273.66667px #ff00a6, -202px -371.66667px #00ff4d, 39px -272.66667px #0dff00, -151px -241.66667px #15ff00, 163px -222.66667px #2f00ff, -74px -297.66667px #ff0062, 250px -249.66667px #00ffb3, 67px -113.66667px #ff00f7, -111px 31.33333px #00a6ff, -204px 48.33333px #ffea00, -243px -328.66667px #00ffd0, 3px -372.66667px #00ffae;
    }
}

@keyframes w-bang {
    to {
        -webkit-box-shadow: -118px -157.66667px #0055ff, -209px -53.66667px #ff7b00, -149px -231.66667px #ff8000, -55px -256.66667px #b3ff00, -76px -124.66667px #0095ff, 210px -325.66667px #ff0015, -220px -83.66667px #bbff00, 25px -413.66667px #00ff09, -238px -354.66667px #99ff00, 244px -72.66667px #ffd000, -190px -194.66667px #ff2200, 116px -46.66667px #0015ff, -93px -60.66667px #ff6a00, 240px -126.66667px #00ff26, -206px 4.33333px #ff00e6, 190px 48.33333px #00ffc8, 98px -50.66667px #ff0077, 168px -389.66667px #ff0033, -219px -247.66667px #00fff7, -84px 33.33333px #6aff00, 61px -244.66667px #66ff00, 190px -123.66667px #ff0095, 199px -240.66667px #00ff99, 186px -177.66667px #0004ff, -158px 35.33333px #00ff6a, 168px -269.66667px #00bbff, -56px -293.66667px #0048ff, 59px 64.33333px #8800ff, -119px -260.66667px #ff00f7, -200px 79.33333px #0033ff, 228px -24.66667px #1e00ff, 82px -181.66667px #001eff, 151px -282.66667px #ff6a00, 223px -157.66667px #26ff00, -64px 43.33333px #ff009d, 55px -220.66667px deepskyblue, -229px -19.66667px #3c00ff, 20px -378.66667px #00aaff, 106px 9.33333px #aaff00, -122px -273.66667px #ff00a6, -202px -371.66667px #00ff4d, 39px -272.66667px #0dff00, -151px -241.66667px #15ff00, 163px -222.66667px #2f00ff, -74px -297.66667px #ff0062, 250px -249.66667px #00ffb3, 67px -113.66667px #ff00f7, -111px 31.33333px #00a6ff, -204px 48.33333px #ffea00, -243px -328.66667px #00ffd0, 3px -372.66667px #00ffae;
        box-shadow: -118px -157.66667px #0055ff, -209px -53.66667px #ff7b00, -149px -231.66667px #ff8000, -55px -256.66667px #b3ff00, -76px -124.66667px #0095ff, 210px -325.66667px #ff0015, -220px -83.66667px #bbff00, 25px -413.66667px #00ff09, -238px -354.66667px #99ff00, 244px -72.66667px #ffd000, -190px -194.66667px #ff2200, 116px -46.66667px #0015ff, -93px -60.66667px #ff6a00, 240px -126.66667px #00ff26, -206px 4.33333px #ff00e6, 190px 48.33333px #00ffc8, 98px -50.66667px #ff0077, 168px -389.66667px #ff0033, -219px -247.66667px #00fff7, -84px 33.33333px #6aff00, 61px -244.66667px #66ff00, 190px -123.66667px #ff0095, 199px -240.66667px #00ff99, 186px -177.66667px #0004ff, -158px 35.33333px #00ff6a, 168px -269.66667px #00bbff, -56px -293.66667px #0048ff, 59px 64.33333px #8800ff, -119px -260.66667px #ff00f7, -200px 79.33333px #0033ff, 228px -24.66667px #1e00ff, 82px -181.66667px #001eff, 151px -282.66667px #ff6a00, 223px -157.66667px #26ff00, -64px 43.33333px #ff009d, 55px -220.66667px deepskyblue, -229px -19.66667px #3c00ff, 20px -378.66667px #00aaff, 106px 9.33333px #aaff00, -122px -273.66667px #ff00a6, -202px -371.66667px #00ff4d, 39px -272.66667px #0dff00, -151px -241.66667px #15ff00, 163px -222.66667px #2f00ff, -74px -297.66667px #ff0062, 250px -249.66667px #00ffb3, 67px -113.66667px #ff00f7, -111px 31.33333px #00a6ff, -204px 48.33333px #ffea00, -243px -328.66667px #00ffd0, 3px -372.66667px #00ffae;
    }
}

@-webkit-keyframes w-gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0;
    }
}

@keyframes w-gravity {
    to {
        transform: translateY(200px);
        -moz-transform: translateY(200px);
        -webkit-transform: translateY(200px);
        -o-transform: translateY(200px);
        -ms-transform: translateY(200px);
        opacity: 0;
    }
}

@-webkit-keyframes position {

    0%,
    19.9% {
        margin-top: 10%;
        margin-left: 40%;
    }

    20%,
    39.9% {
        margin-top: 40%;
        margin-left: 30%;
    }

    40%,
    59.9% {
        margin-top: 20%;
        margin-left: 70%;
    }

    60%,
    79.9% {
        margin-top: 30%;
        margin-left: 20%;
    }

    80%,
    99.9% {
        margin-top: 30%;
        margin-left: 80%;
    }
}

@keyframes position {

    0%,
    19.9% {
        margin-top: 10%;
        margin-left: 40%;
    }

    20%,
    39.9% {
        margin-top: 40%;
        margin-left: 30%;
    }

    40%,
    59.9% {
        margin-top: 20%;
        margin-left: 70%;
    }

    60%,
    79.9% {
        margin-top: 30%;
        margin-left: 20%;
    }

    80%,
    99.9% {
        margin-top: 30%;
        margin-left: 80%;
    }
}

@media screen and (max-width:479px) {
    .w-game-tile-wrapper {
        max-width: 18%;
    }

    .w-game-keyboard-row button.backspace-key span:before {
        width: 75%;
    }
    #w-game-share span {
        font-size: 1rem;
    }
    #w-game-share span:after {
        width: 1.25rem;
        height: 1.25rem;
        margin-left: 0.5rem
    }
}

.w-word-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
            flex-direction: row;
            margin: 1.5rem 0 1rem 0;
}
.w-word-content-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.w-word-content-img img {
    width:100%;
    display:table;
    -webkit-box-shadow: -5px 5px 0 0 #6f2c3e, 0 0 5px 0 rgb(0 0 0 / 30%);
            box-shadow: -5px 5px 0 0 #6f2c3e, 0 0 5px 0 rgb(0 0 0 / 30%);
}
.w-word-content-desc {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
            flex: 0 0 65%;
    padding-left: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
#w-game .w-modal-dialog-msg .w-word-content-desc p {
    font-size: 0.925rem;
}

@media screen and (max-width:479px){
    .w-word-content {
        margin: 1.5rem 0 0 0;
    }
    #w-game .w-modal-dialog-msg .w-word-content-desc p {
        font-size: 0.825rem;
    }
}