/* * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
} */

 /* html {
    background: #171a1e;
} */

/*
body {
    background: #171a1e;
    background-attachment: fixed;
    margin: 0;
    overflow: auto;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
} */

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

a:-webkit-any-link {
    text-decoration: none;
    color: #ffffff;
}

.loadPage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    z-index: 150;
}

.loadLogo {
    display: block;
    max-width: 50%;
    height: auto;
    /* user-draggable: none; */
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center;
}

.mainWrapper {
    width: 100vw;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.header {
    overflow: hidden;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 48px;
    text-align: center;
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    z-index: 100;
}

.topBumper {
    top: 0px;
    width: 100%;
    height: 54px;
}

.bottomBumper {
    bottom: 0px;
    width: 100%;
    height: 48px;
}

.bottomMenu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 48px;
    text-align: center;
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    z-index: 100;
    transition: bottom 0.3s;
}

.bottomMenuContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    /*position: fixed;
	bottom: 0px;
	left: 0px;*/
    width: 100%;
    height: 48px;
    text-align: center;
    transition: bottom 0.3s;
    max-width: 512px;
}

.butContainer {
    display: flex;
    flex: 1 0 0px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 150px;
}

.menuButton {
    display: flex;
    max-height: 60%;
}

.logo {
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
    margin-top: auto;
    max-height: 100%;
    /* user-draggable: none; */
    padding: 10px 0px 10px 0px;
    animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center;
}

@keyframes swing {
    0% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

.content {
    top: 0px;
    left: 0px;
    width: 100%;
    max-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.modal {
    display: none;
    position: absolute;
    z-index: 101;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    margin: auto;
    padding: 20px;
    position: relative;
    /* top: 50%;
    transform: translateY(-50%); */
    border-radius: 32px;
    width: 80%;
    max-width: 800px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
}

.modal-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 24px;
    text-align: center;
}

.modalImg {
    padding-top: 10px;
    padding-bottom: 5px;
    width: 100%;
}

.modalArrow {
    display: none;
    position: absolute;
    right: 12px;
    top: 12px;
    height: 15%;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    -webkit-animation-name: modalarrow;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-duration: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: modalarrow;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    animation-duration: .5s;
    animation-iteration-count: infinite;
}

.welcomeKid {
    display: none;
    position: absolute;
    margin: auto;
    bottom: 0;
    height: 15%;
    left: 50%;
    transform: translateX(-50%);
}

@-webkit-keyframes modalarrow {
    from {
        right: 12px;
        top: 12px;
    }

    to {
        right: 24px;
        top: 29px;
    }
}

@keyframes modalarrow {
    from {
        right: 12px;
        top: 12px;
    }

    to {
        right: 24px;
        top: 29px;
    }
}


.closeModal {
    color: #ffffff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 16px;
    top: 20px;
}

.closeModal:hover,
.closeModal:focus {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.gameWindow {
    display: none;
    position: fixed;
    z-index: 102;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url('../img/bg.png');
    background-repeat: repeat;
    opacity: 0;
    transition: opacity 300ms;
}

.gameOverlay {
    display: none;
    position: absolute;
    z-index: 105;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-overflow-scrolling: touch;
}

.transBack {
    background-color: rgba(0, 0, 0, 0);
}

.overlayTitle {
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
}

.contSpan {
    margin-right: 0.35em;
}

.winContainer {
    display: block;
    position: relative;
    top: 15%;
    margin: auto;
    width: 100%;
    height: 48%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.winContainer::-webkit-scrollbar {
    display: none;
}

.endWin {
    width: 100%;
    height: 100%;
}

.bulletContainer {
    display: none;
    position: relative;
    top: 11%;
    margin: auto;
    width: 72px;
    height: 2%;
    max-height: 8px;
}

.blt {
    display: block;
    position: absolute;
    top: 0;
    width: 8px;
    height: 100%;
    border-radius: 8px;
    background: #ffffff;
    transition: opacity 0.2s;
}

.blt.on {
    opacity: 1;
}

.blt.off {
    opacity: 0.5;
}

.scoreWindow {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    text-align: center;
    margin: auto;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    font-weight: bold;
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: hidden;
    height: 100%;
    color: #000000;
}

.scoreHead {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    height: 48px;
}

.scoreTab {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    width: 50%;
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    color: #ffffff;
    top: 0%;
    transition: top 0.1s;
}

.scoreTab.unselected {
    background: #8c8c8c;
    background: -webkit-linear-gradient(left, #8c8c8c 0%, #666666 100%);
    background: linear-gradient(to right, #8c8c8c 0%, #666666 100%);
    top: 10%;
}

.scoreBoard {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 48px;
    text-align: center;
    background: #ffffff;
    margin: auto;
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    overflow: scroll;
    /* -webkit-overflow-y: scroll;
        -moz-overflow-y: scroll; */
    /* overflow-x: hidden; */
    -webkit-overflow-scrolling: touch;
    height: -moz-calc(100% - 48px);
    height: -webkit-calc(100% - 48px);
    height: -o-calc(100% - 48px);
    height: calc(100% - 48px);
    /* height: 100%; */
    color: #000000;
}



.scbCont {
    position: absolute;
    top: 48px;
    width: 100%;
    height: -moz-calc(100% - 48px);
    height: -webkit-calc(100% - 48px);
    height: -o-calc(100% - 48px);
    height: calc(100% - 48px);
}

.scbCont>.scoreBoard {
    height: -moz-calc(100% - 24px);
    height: -webkit-calc(100% - 24px);
    height: -o-calc(100% - 24px);
    height: calc(100% - 24px);
    top: 24px;
}

.scbCont>.scoreBoardOverlay {
    height: -moz-calc(100% - 24px);
    height: -webkit-calc(100% - 24px);
    height: -o-calc(100% - 24px);
    height: calc(100% - 24px);
    top: 24px;
}

.scbSwitchCont {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    background-color: white;
    border-bottom: 1px solid #d4d2d2;
}

.scbSwitch {
    flex: 1;
    margin: 2px;
    border-radius: 4px;
    background: #FF416C;
    color: white;
}

.scbSwitch.unselected {
    background: none;
    color: black;
}

.scoreBoardOverlay {
    display: none;
    position: relative;
    top: 48px;
    height: -moz-calc(100% - 48px);
    height: -webkit-calc(100% - 48px);
    height: -o-calc(100% - 48px);
    height: calc(100% - 48px);
    width: 100%;
    pointer-events: none;
}

.scoreEntry {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 0 auto;
    position: relative;
    overflow: hidden;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
    background: #ffffff;
    height: 48px;
    border-bottom: 1px solid #d4d2d2;
}

.scorePhoto {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.scorePhotoContainer {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.verified {
    position: absolute;
    pointer-events: none;
    width: 20px;
    height: 20px;
    left: 20px;
    top: 20px;
}

.scoreText {
    color: #666;
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    padding-left: 4px;
    padding-right: 4px;
}

.gameLoadbar {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    top: 18.5%;
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    margin: auto;
    padding: 20px;
    border-radius: 32px;
    width: 80%;
    text-align: center;
    vertical-align: middle;
    max-width: 400px;
    /* min-width: 64px; */
    height: 10%;
    min-height: 32px;
    max-height: 65px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: pulse 0.5s linear infinite;
    animation: pulse 0.5s linear infinite;
}


.gameShare {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 22%;
    overflow: hidden;
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    margin: auto;
    padding: 10px;
    border-radius: 32px;
    width: 50%;
    text-align: center;
    vertical-align: middle;
    max-width: 280px;
    height: 8%;
    min-height: 24px;
    max-height: 52px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
}

.glint {
    pointer-events: none;
    position: absolute;
    width: 10%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: scaleY(2) skew(-25deg);
    left: -15%;
    -webkit-animation: glintrun 3s linear infinite;
    animation: glintrun 3s linear infinite;
}

@-webkit-keyframes glintrun {
    from {
        left: -15%;
    }

    12% {
        left: 105%;
    }

    to {
        left: 105%
    }
}

@keyframes glintrun {
    from {
        left: -15%;
    }

    10% {
        left: 105%;
    }

    to {
        left: 105%
    }
}

.gameShareCheckbox {
    display: flex;
    position: relative;
    top: 17%;
    margin: auto;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.checkContainer {
    display: block;
    position: relative;
    cursor: pointer;
}

.checkContainer input {
    position: absolute;
    opacity: 0;
    left: -15px;
}

.checkContainer input:checked~.checkmark {
    background-color: #4a76a8;
}

.checkmark {
    position: absolute;
    top: 25%;
    left: -15px;
    height: 12px;
    width: 12px;
    background-color: #eee;
    border-radius: 2px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkContainer input:checked~.checkmark:after {
    display: block;
    position: relative;
    top: 20%;
}

.checkContainer .checkmark:after {
    width: 3px;
    height: 6px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    right: -3px;
}

.allGamesBumper {
    display: block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 54px;
}

.gameDev {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    position: relative;
    top: 48px;
    width: 100%;
    /* overflow: hidden; */
    height: -moz-calc(15% - 32px);
    height: -webkit-calc(15% - 32px);
    height: -o-calc(15% - 32px);
    height: calc(15% - 32px);
}

.gameDevEntry {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 1 auto;
    position: relative;
    overflow: hidden;
    padding-left: 8px;
    padding-right: 8px;
    max-width: 600px;
    height: 100%;
}

.devPhoto {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.devVerified {
    position: absolute;
    pointer-events: none;
    width: 50%;
    height: 50%px;
    left: 50%;
    top: 50%;
}

.devPhotoContainer {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #4a76a8;
    width: 48px;
    height: 48px;
}

.groupNotify {
    position: absolute;
    left: 0px;
    top: -80px;
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
    width: 100%;
    height: 80px;
    border-radius: 16px;
    display: flex;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.imgA {
    width: 100%;
    height: 100%;
}

.newTop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 46px;
    left: 0%;
    width: 0%;
    overflow: hidden;
    height: -moz-calc(15% - 28px);
    height: -webkit-calc(15% - 28px);
    height: -o-calc(15% - 28px);
    height: calc(15% - 28px);
    display: flex;
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    z-index: 150;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes topslide {
    0% {
        width: 0%;
        left: 0%;
    }

    10% {
        width: 100%;
        left: 0%;
    }

    90% {
        width: 100%;
        left: 0%;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}

@keyframes topslide {
    0% {
        width: 0%;
        left: 0%;
    }

    10% {
        width: 100%;
        left: 0%;
    }

    90% {
        width: 100%;
        left: 0%;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}

.bluegrad {
    background: #4a76a8;
    background: -webkit-linear-gradient(to right, #3a90f2, #4a76a8);
    background: linear-gradient(to right, #3a90f2, #4a76a8);
}

.butText {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.block {
    display: block;
}

.show {
    opacity: 1;
}

.gameHeader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 108;
    overflow: hidden;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 32px;
    text-align: center;
    background: #ffffff;
}

.headerCont {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gameBody {
    overflow: hidden;
    margin: auto;
    width: 100%;
    height: 100%
}

.gameIframe {
    position: absolute;
    overflow: hidden;
    left: 0;
    width: 100vw;
    top: 32px;
    height: -moz-calc(100vh - 32px);
    height: -webkit-calc(100vh - 32px);
    height: -o-calc(100vh - 32px);
    height: calc(100vh - 32px);
    max-width: 100vw;
    background: none transparent;
}

.fullscr {
    top: 0;
    height: 100%;
}

.gameTitle {
    color: #080d11;
    font-size: 14px;
    margin: auto;
    font-weight: bold;
    /*position: absolute;
	left: 50%;
	transform: translateX(-50%);*/
}

.topScore {
    color: #ffffff;
    background-color: #FF416C;
    padding: 4px;
    border-radius: 4px;
}

.headerUI {
    margin-left: auto;
}

.closeGame {
    color: #080d11;
    float: right;
    padding-right: 16px;
}

.pauseGame {
    color: #080d11;
    float: right;
    padding-right: 16px;
}

/* .closeGame:hover,
.closeGame:focus,
.pauseGame:hover,
.pauseGame:focus,
{
opacity: 75%;
cursor: pointer;
} */

.gamesContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 90%;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
}

.gameThumb {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;
}

.gameNew {
    position: absolute;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 4px;
}


.gameThumb:hover,
.gameThumb:focus {
    cursor: pointer;
}

.loader {
    margin-left: auto;
    margin-right: auto;
    border: 4px solid rgba(0, 0, 0, 0);
    border-top: 4px solid #4a76a8;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
}

.loader.small {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 0, 0, 0);
    border-top: 3px solid #4a76a8;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.loaderSpace {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    overflow: hidden;
    float: left;
    bottom: 0;
    left: 0px;
    width: 100%;
    height: 48px;
}

.nogames {
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8px;
    padding-right: 8px;
    padding-left: 8px;
}