body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    touch-action: manipulation;
    -ms-touch-action: manipulation
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    overflow: hidden;
    color: #444648;
    background: #5677E0;
}

#loading {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #192f47;
}

.hide-mobile {
    display: none;
}

.percentage {
    padding-right: 20px;
}

#loading noscript {
    text-align: center;
    margin: 0 auto;
    width: 100%;
    display: inline-block;
    margin-top: 50px;
    font-size: 0.8em;
}

#loading-content {
    color: white;
    margin: 0 auto;
    width: 100%;
}

#sheep-loading {
    display: block;
    margin: 0 auto;
    padding-right: 5px;
    text-align: center;
}

#loading-content h2 {
    padding-top: 10px;
    font-size: 1.1em;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.1em;
    display: block;
}

#loading img {
    width: 100px;
}


/* Canvas Viewport */

#viewport {
    width: 100%;
    height: 100%;
    background-color: transparent;
    top: 0;
}


/* Stage Elements */

#stageBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/bg.png')no-repeat 50% 50% fixed;
    background-size: cover;
}

#cannonContainer {
    position: absolute;
    margin: auto;
    right: 10%;
    bottom: 60px;
    width: 180px;
}

#cannonContainer #cannon {
    width: 100%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 25px;
}

#cannonContainer #wheel {
    width: 60%;
    position: absolute;
    margin: auto;
    left: 0px;
    right: 0;
    bottom: 0;
}


/* Ensures Mobile Input Works */

.clickable {
    cursor: pointer;
}


/* Text Elements */

a {
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}

p {
    font-size: 1em;
}

h1 {
    margin: 0;
    padding: 0;
    font-weight: 700;
}

h2 {
    font-size: 1.6em;
    font-weight: 700;
}

h3 {
    font-size: 1.1em;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

h4 {
    margin: -5px 0 30px;
    color: #F76862;
}

hr.style-1 {
    width: 50px;
    margin: 20px auto;
    height: 4px;
    border: 0;
    background-color: #F76862;
}


/* Bootstrap Elements */

.container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}


/* Game Overlay */

#hint {
    background-color: transparent;
    color: #fff;
    font-weight: 700;
    max-width: 600px;
    width: 100%;
    font-size: 1.7em;
    z-index: 3;
    text-align: center;
    padding: 20px;
    display: none;
}


/* Buttons */

.btn {
    background-color: #F76862;
    color: #fff;
    min-width: 150px;
    font-size: 1.4em;
    border-radius: 2em;
    padding: 10px 25px;
    margin-top: .5em;
    border: 2px solid #F76862;
}

.btn:hover {
    background-color: #fff;
    color: #F76862;
}

.social-btn {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    background-color: #4bc1e7;
    border-radius: 30px;
    padding: 5px;
    border: 2px solid #4bc1e7;
    -webkit-box-shadow: inset 0px 2px 0px 0px rgba(130, 224, 255, 1);
    box-shadow: inset 0px 2px 0px 0px rgba(130, 224, 255, 1);
}

.social-btn:hover {
    background-color: #122e59;
    border: 2px solid #122e59;
    -webkit-box-shadow: inset 0px 2px 0px 0px rgba(35, 89, 173, 1);
    box-shadow: inset 0px 2px 0px 0px rgba(35, 89, 173, 1);
    cursor: pointer;
}

svg.icon {
    max-width: 50px;
}

.btn-container {
    position: relative;
    width: 100%;
    left: 0;
    bottom: 0;
}

.share-score-btn {
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    background-color: #3595c6;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 10px auto;
}

.share-score-btn.fb{
    background-color: #3b5998;
}

.share-score-btn.twitter{
    background-color: #1DA1F2;
}

.share-score-btn:hover {
    background-color: #122e59;
    cursor: pointer;
}


/* Header & Footer */

#footer,
#header {
    color: #333333;
    padding: 0;
    width: 100%;
    position: absolute;
    z-index: 4;
}

#intro-copy {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent;
    color: #fff;
    width: 100%;
    max-width: 700px;
    padding: 2em;
    z-index: 999;
}

#intro-copy #title {
    max-width: 700px;
    width: 100%;
}

#intro-copy p {
    font-size: 1.1em;
    margin: 1em auto;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 0;
}


/* Header */

#header {
    top: 0;
    z-index: 100;
}

#header a {
    text-decoration: none;
}

#header #game-icon {
    position: relative;
    float: left;
    width: 70px;
    height: 70px;
    background-color: #4bc1e7;
}

#header #game-icon img {
    width: 50px;
}

#header-title {
    display: none;
    width: 60%;
    height: 100%;
    float: left;
}

#share-title {
    width: 100%;
    float: right;
    padding-right: 0px;
    text-align: center;
}


/* Footer */

#footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1em;
    z-index: 999;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 1em auto;
}

#footer #logo {
    width: 100%;
    max-width: 180px;
    display: block;
    margin: 20px auto;
}


/* V-Align */

.flex-container {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 80vh;
}

.flex-result {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0em 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    font-size: 1.2em;
    padding-right: 10px;
}

.percentage {
    font-size: 2.2em;
}


/* Modal */

#modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    display: block;
    position: relative;
    background-color: transparent;
    border-radius: 0px;
    margin: 0px auto;
    padding: 0px;
    font-size: 1.1em;
    width: 100%;
    max-width: 600px;
    text-align: center;
    z-index: 2;
    -ms-flex-item-align: start;
    align-self: flex-start;
    color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.modal-section {
    padding: 30px;
}

.modal-content p {
    line-height: 1.5em;
}

.modal-content h2 {
    font-size: 2.2em;
}

.modal-content h4 {
    margin-top: 10px;
    font-size: 1.4em;
    font-weight: 600;
    cursor: pointer;
}

.modal-content h4:hover {
    color: #0053a8;
}

.modal-header {
    width: 100%;
    position: relative;
    margin: 0 auto;
    border: 0;
}

#title-logo {
    display: block;
    position: relative;
    margin: 150px auto 10px;
}


/* Results Section */

#uiScore #result-header h2 {
    display: inline;
    font-size: 3.8em;
}

#uiScore #result-header #time-unit {
    margin-left: 2px;
    font-size: 1.4em;
    font-weight: 500;
}

#uiScore h3 {
    font-size: 1.5em;
    font-weight: 600;
}

#sub-header {
    background-color: #F76862;
    width: 100%;
    margin: 30px auto 0px;
    color: white;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.2em;
    padding: 20px 0px;
}

.highlight {
    font-weight: 700;
    color: #F76862;
    font-size: 1.3em;
}

#strapline {
    display: block;
}

.modal-bg {
    background-color: rgba(0, 0, 0, 0.2);
}


/* Score Section */

#trophy {
    width: 100%;
    max-width: 80px;
    margin-bottom: 20px;
}

.disclaimer {
    padding-top: 20px;
    margin-top: 20px;
    font-size: .9em;
}

.slick-initialized .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.left-arrow {
    right: 0;
}

.right-arrow {
    left: 0;
}

.arrow {
    cursor: pointer;
    z-index: 99;
    max-width: 1em;
    position: absolute;
    top: 15%;
}


/* Global Score Section */

#global-scores {
    display: none;
}

#result-image {
    max-width: 80px;
    width: 100%;
    margin-bottom: 1em;
}

#results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#results ul li {
    margin: 5px auto;
}

.result-left {
    font-size: 2.5em;
    text-align: right;
}

.result-right {
    text-align: left;
}


/* Background Elements */

#bgContainer {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    border: 0px;
    display: inline-block;
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg:before,
.bg:after {
    content: "";
    position: absolute;
    width: 220%;
    height: 220%;
    background-image: url(../img/clouds.svg);
    background-size: 100%;
    -webkit-animation: move 30s infinite linear;
    animation: move 30s infinite linear;
}

.bg:before {
    right: 100%;
}

@-webkit-keyframes move {
    from {
        -webkit-transform: translateX( 0%);
        transform: translateX( 0%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes move {
    from {
        -webkit-transform: translateX( 0%);
        transform: translateX( 0%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}


/* Santa */

#santa {
    position: absolute;
    bottom: 1em;
    left: -2em;
    z-index: 4;
    width: 150px;
    display: none;
}

#santa img {
    max-width: 100%;
}

#santa-arm img {
    width: 70%;
}

#santa-arm {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 11em;
    z-index: 1;
    -webkit-animation: rotating 3s ease-in-out infinite;
    animation: rotating 3s ease-in-out infinite;
    -webkit-transform-origin: 20% 40%;
    -ms-transform-origin: 20% 40%;
    transform-origin: 20% 40%;
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

#santa-body {
    position: relative;
    width: 100%;
    z-index: 2;
}

#pressies {
    position: absolute;
    z-index: 3;
    max-width: 30em;
    width: 200px;
    right: -5em;
    bottom: 1.5em;
    display: none;
}

#pressies img {
    width: 100%;
}


/* Custom Description */

#textBlock1,
#textBlock2,
#textBlock3,
#textBlock4 {
    /*    display: none;*/
}


/* Animation */

.cannonFire {
    -webkit-animation: animation 3010ms linear both;
    animation: animation 3010ms linear both;
}

@-webkit-keyframes animation {
    0% {
        -webkit-transform: matrix3d(1.128, 0.513, 0, 0, -0.509, 1.365, 0, 0, 0, 0, 1, 0, 36, 0, 0, 1);
        transform: matrix3d(1.128, 0.513, 0, 0, -0.509, 1.365, 0, 0, 0, 0, 1, 0, 36, 0, 0, 1);
    }
    1.43% {
        -webkit-transform: matrix3d(1.1, 0.387, 0, 0, -0.371, 1.295, 0, 0, 0, 0, 1, 0, 25.255, 0, 0, 1);
        transform: matrix3d(1.1, 0.387, 0, 0, -0.371, 1.295, 0, 0, 0, 0, 1, 0, 25.255, 0, 0, 1);
    }
    2.87% {
        -webkit-transform: matrix3d(1.069, 0.279, 0, 0, -0.257, 1.208, 0, 0, 0, 0, 1, 0, 15.987, 0, 0, 1);
        transform: matrix3d(1.069, 0.279, 0, 0, -0.257, 1.208, 0, 0, 0, 0, 1, 0, 15.987, 0, 0, 1);
    }
    4.3% {
        -webkit-transform: matrix3d(1.041, 0.192, 0, 0, -0.173, 1.124, 0, 0, 0, 0, 1, 0, 8.822, 0, 0, 1);
        transform: matrix3d(1.041, 0.192, 0, 0, -0.173, 1.124, 0, 0, 0, 0, 1, 0, 8.822, 0, 0, 1);
    }
    5.74% {
        -webkit-transform: matrix3d(1.017, 0.126, 0, 0, -0.114, 1.054, 0, 0, 0, 0, 1, 0, 3.731, 0, 0, 1);
        transform: matrix3d(1.017, 0.126, 0, 0, -0.114, 1.054, 0, 0, 0, 0, 1, 0, 3.731, 0, 0, 1);
    }
    8.61% {
        -webkit-transform: matrix3d(0.989, 0.041, 0, 0, -0.039, 0.973, 0, 0, 0, 0, 1, 0, -1.552, 0, 0, 1);
        transform: matrix3d(0.989, 0.041, 0, 0, -0.039, 0.973, 0, 0, 0, 0, 1, 0, -1.552, 0, 0, 1);
    }
    9.44% {
        -webkit-transform: matrix3d(0.985, 0.025, 0, 0, -0.024, 0.962, 0, 0, 0, 0, 1, 0, -2.202, 0, 0, 1);
        transform: matrix3d(0.985, 0.025, 0, 0, -0.024, 0.962, 0, 0, 0, 0, 1, 0, -2.202, 0, 0, 1);
    }
    11.48% {
        -webkit-transform: matrix3d(0.981, -0.004, 0, 0, 0.004, 0.953, 0, 0, 0, 0, 1, 0, -2.748, 0, 0, 1);
        transform: matrix3d(0.981, -0.004, 0, 0, 0.004, 0.953, 0, 0, 0, 0, 1, 0, -2.748, 0, 0, 1);
    }
    12.91% {
        -webkit-transform: matrix3d(0.982, -0.017, 0, 0, 0.017, 0.956, 0, 0, 0, 0, 1, 0, -2.562, 0, 0, 1);
        transform: matrix3d(0.982, -0.017, 0, 0, 0.017, 0.956, 0, 0, 0, 0, 1, 0, -2.562, 0, 0, 1);
    }
    13.15% {
        -webkit-transform: matrix3d(0.983, -0.019, 0, 0, 0.019, 0.957, 0, 0, 0, 0, 1, 0, -2.505, 0, 0, 1);
        transform: matrix3d(0.983, -0.019, 0, 0, 0.019, 0.957, 0, 0, 0, 0, 1, 0, -2.505, 0, 0, 1);
    }
    17.22% {
        -webkit-transform: matrix3d(0.992, -0.032, 0, 0, 0.032, 0.981, 0, 0, 0, 0, 1, 0, -1.119, 0, 0, 1);
        transform: matrix3d(0.992, -0.032, 0, 0, 0.032, 0.981, 0, 0, 0, 0, 1, 0, -1.119, 0, 0, 1);
    }
    18.89% {
        -webkit-transform: matrix3d(0.995, -0.031, 0, 0, 0.031, 0.989, 0, 0, 0, 0, 1, 0, -0.616, 0, 0, 1);
        transform: matrix3d(0.995, -0.031, 0, 0, 0.031, 0.989, 0, 0, 0, 0, 1, 0, -0.616, 0, 0, 1);
    }
    20.55% {
        -webkit-transform: matrix3d(0.998, -0.028, 0, 0, 0.028, 0.996, 0, 0, 0, 0, 1, 0, -0.243, 0, 0, 1);
        transform: matrix3d(0.998, -0.028, 0, 0, 0.028, 0.996, 0, 0, 0, 0, 1, 0, -0.243, 0, 0, 1);
    }
    26.29% {
        -webkit-transform: matrix3d(1.001, -0.012, 0, 0, 0.012, 1.003, 0, 0, 0, 0, 1, 0, 0.187, 0, 0, 1);
        transform: matrix3d(1.001, -0.012, 0, 0, 0.012, 1.003, 0, 0, 0, 0, 1, 0, 0.187, 0, 0, 1);
    }
    27.99% {
        -webkit-transform: matrix3d(1.001, -0.008, 0, 0, 0.008, 1.003, 0, 0, 0, 0, 1, 0, 0.17, 0, 0, 1);
        transform: matrix3d(1.001, -0.008, 0, 0, 0.008, 1.003, 0, 0, 0, 0, 1, 0, 0.17, 0, 0, 1);
    }
    28.33% {
        -webkit-transform: matrix3d(1.001, -0.007, 0, 0, 0.007, 1.003, 0, 0, 0, 0, 1, 0, 0.163, 0, 0, 1);
        transform: matrix3d(1.001, -0.007, 0, 0, 0.007, 1.003, 0, 0, 0, 0, 1, 0, 0.163, 0, 0, 1);
    }
    33.33% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0.048, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0.048, 0, 0, 1);
    }
    39.44% {
        -webkit-transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.011, 0, 0, 1);
        transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.011, 0, 0, 1);
    }
    41.11% {
        -webkit-transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.012, 0, 0, 1);
        transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.012, 0, 0, 1);
    }
    55.99% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.001, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.001, 0, 0, 1);
    }
    61.66% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    66.67% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    83.98% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@keyframes animation {
    0% {
        -webkit-transform: matrix3d(1.128, 0.513, 0, 0, -0.509, 1.365, 0, 0, 0, 0, 1, 0, 36, 0, 0, 1);
        transform: matrix3d(1.128, 0.513, 0, 0, -0.509, 1.365, 0, 0, 0, 0, 1, 0, 36, 0, 0, 1);
    }
    1.43% {
        -webkit-transform: matrix3d(1.1, 0.387, 0, 0, -0.371, 1.295, 0, 0, 0, 0, 1, 0, 25.255, 0, 0, 1);
        transform: matrix3d(1.1, 0.387, 0, 0, -0.371, 1.295, 0, 0, 0, 0, 1, 0, 25.255, 0, 0, 1);
    }
    2.87% {
        -webkit-transform: matrix3d(1.069, 0.279, 0, 0, -0.257, 1.208, 0, 0, 0, 0, 1, 0, 15.987, 0, 0, 1);
        transform: matrix3d(1.069, 0.279, 0, 0, -0.257, 1.208, 0, 0, 0, 0, 1, 0, 15.987, 0, 0, 1);
    }
    4.3% {
        -webkit-transform: matrix3d(1.041, 0.192, 0, 0, -0.173, 1.124, 0, 0, 0, 0, 1, 0, 8.822, 0, 0, 1);
        transform: matrix3d(1.041, 0.192, 0, 0, -0.173, 1.124, 0, 0, 0, 0, 1, 0, 8.822, 0, 0, 1);
    }
    5.74% {
        -webkit-transform: matrix3d(1.017, 0.126, 0, 0, -0.114, 1.054, 0, 0, 0, 0, 1, 0, 3.731, 0, 0, 1);
        transform: matrix3d(1.017, 0.126, 0, 0, -0.114, 1.054, 0, 0, 0, 0, 1, 0, 3.731, 0, 0, 1);
    }
    8.61% {
        -webkit-transform: matrix3d(0.989, 0.041, 0, 0, -0.039, 0.973, 0, 0, 0, 0, 1, 0, -1.552, 0, 0, 1);
        transform: matrix3d(0.989, 0.041, 0, 0, -0.039, 0.973, 0, 0, 0, 0, 1, 0, -1.552, 0, 0, 1);
    }
    9.44% {
        -webkit-transform: matrix3d(0.985, 0.025, 0, 0, -0.024, 0.962, 0, 0, 0, 0, 1, 0, -2.202, 0, 0, 1);
        transform: matrix3d(0.985, 0.025, 0, 0, -0.024, 0.962, 0, 0, 0, 0, 1, 0, -2.202, 0, 0, 1);
    }
    11.48% {
        -webkit-transform: matrix3d(0.981, -0.004, 0, 0, 0.004, 0.953, 0, 0, 0, 0, 1, 0, -2.748, 0, 0, 1);
        transform: matrix3d(0.981, -0.004, 0, 0, 0.004, 0.953, 0, 0, 0, 0, 1, 0, -2.748, 0, 0, 1);
    }
    12.91% {
        -webkit-transform: matrix3d(0.982, -0.017, 0, 0, 0.017, 0.956, 0, 0, 0, 0, 1, 0, -2.562, 0, 0, 1);
        transform: matrix3d(0.982, -0.017, 0, 0, 0.017, 0.956, 0, 0, 0, 0, 1, 0, -2.562, 0, 0, 1);
    }
    13.15% {
        -webkit-transform: matrix3d(0.983, -0.019, 0, 0, 0.019, 0.957, 0, 0, 0, 0, 1, 0, -2.505, 0, 0, 1);
        transform: matrix3d(0.983, -0.019, 0, 0, 0.019, 0.957, 0, 0, 0, 0, 1, 0, -2.505, 0, 0, 1);
    }
    17.22% {
        -webkit-transform: matrix3d(0.992, -0.032, 0, 0, 0.032, 0.981, 0, 0, 0, 0, 1, 0, -1.119, 0, 0, 1);
        transform: matrix3d(0.992, -0.032, 0, 0, 0.032, 0.981, 0, 0, 0, 0, 1, 0, -1.119, 0, 0, 1);
    }
    18.89% {
        -webkit-transform: matrix3d(0.995, -0.031, 0, 0, 0.031, 0.989, 0, 0, 0, 0, 1, 0, -0.616, 0, 0, 1);
        transform: matrix3d(0.995, -0.031, 0, 0, 0.031, 0.989, 0, 0, 0, 0, 1, 0, -0.616, 0, 0, 1);
    }
    20.55% {
        -webkit-transform: matrix3d(0.998, -0.028, 0, 0, 0.028, 0.996, 0, 0, 0, 0, 1, 0, -0.243, 0, 0, 1);
        transform: matrix3d(0.998, -0.028, 0, 0, 0.028, 0.996, 0, 0, 0, 0, 1, 0, -0.243, 0, 0, 1);
    }
    26.29% {
        -webkit-transform: matrix3d(1.001, -0.012, 0, 0, 0.012, 1.003, 0, 0, 0, 0, 1, 0, 0.187, 0, 0, 1);
        transform: matrix3d(1.001, -0.012, 0, 0, 0.012, 1.003, 0, 0, 0, 0, 1, 0, 0.187, 0, 0, 1);
    }
    27.99% {
        -webkit-transform: matrix3d(1.001, -0.008, 0, 0, 0.008, 1.003, 0, 0, 0, 0, 1, 0, 0.17, 0, 0, 1);
        transform: matrix3d(1.001, -0.008, 0, 0, 0.008, 1.003, 0, 0, 0, 0, 1, 0, 0.17, 0, 0, 1);
    }
    28.33% {
        -webkit-transform: matrix3d(1.001, -0.007, 0, 0, 0.007, 1.003, 0, 0, 0, 0, 1, 0, 0.163, 0, 0, 1);
        transform: matrix3d(1.001, -0.007, 0, 0, 0.007, 1.003, 0, 0, 0, 0, 1, 0, 0.163, 0, 0, 1);
    }
    33.33% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0.048, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1.001, 0, 0, 0, 0, 1, 0, 0.048, 0, 0, 1);
    }
    39.44% {
        -webkit-transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.011, 0, 0, 1);
        transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.011, 0, 0, 1);
    }
    41.11% {
        -webkit-transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.012, 0, 0, 1);
        transform: matrix3d(1, 0.002, 0, 0, -0.002, 1, 0, 0, 0, 0, 1, 0, -0.012, 0, 0, 1);
    }
    55.99% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.001, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.001, 0, 0, 1);
    }
    61.66% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    66.67% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    83.98% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@media only screen and (min-width: 768px) {
    
    #footer #logo {
        width: 140px;
        display: block;
        margin: 20 auto 0;
    }
    #strapline {
        display: none;
    }
    body {
        font-size: 14px;
    }
    #title-logo {
        margin: 115px auto 10px;
    }
    .disclaimer {
        font-size: 0.8em;
    }
    #sub-header {
        width: 90%;
    }
    #header-title {
        display: block;
    }
    #share-title {
        width: 40%;
        float: right;
        padding-right: 20px;
        text-align: right;
    }
    .mobimg {
        display: none;
    }
    /* Stage Elements */
    #cannonContainer {
        width: 220px;
    }
    #cannonContainer #cannon {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 30px;
    }
    #cannonContainer #wheel {
        width: 60%;
        left: 0px;
        right: 0;
        bottom: 0;
    }
    #cannonShadow {
        width: 100%;
        height: 40px;
        left: 20px;
        position: absolute;
        bottom: 0px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 100px;
    }
    /* Santa */
    #santa {
        left: 0vw;
        width: 300px;
        display: block;
    }
    #pressies {
        position: absolute;
        width: 500px;
        right: -4em;
        display: block;
    }
    #intro-copy {
        margin: auto;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
            align-self: center;
    }
    #intro-copy p {
        font-size: 1.6em;
    }
    /* Animated BG */
    .bg:before,
    .bg:after {
        content: "";
        position: absolute;
        width: 150%;
        height: 150%;
        background-image: url(../img/clouds.svg);
        background-size: 100%;
        -webkit-animation: move 50s infinite linear;
        animation: move 50s infinite linear;
    }
    .modal-bg {
        background-color: #edf4f9;
    }
    .modal-content {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
            align-self: center;
        background-color: #ffffff;
        color: #333;
    }
    .hide-mobile {
        display: inline;
    }
    .flex-result {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
    }
}