:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@keyframes wrongInput {
    0% {
        box-shadow: 0 0 6px 6px rgba(255, 0, 0, 0)
    }
    25% {
        box-shadow: 0 0 6px 6px rgba(255, 0, 0, .2)
    }
    50% {
        box-shadow: 0 0 6px 6px rgba(255, 0, 0, .4)
    }
    75% {
        box-shadow: 0 0 6px 6px rgba(255, 0, 0, .2)
    }
    100% {
        box-shadow: 0 0 6px 6px rgba(255, 0, 0, 0)
    }
}

.animate__wrongInput {
    animation: wrongInput 1s linear 0s 1
}

#feedback-widget-container {
    font-family: Verdana, sans-serif;
    background-color: rgba(0, 0, 0, .85);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

#feedback-widget-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

#alert {
    display: none;
    position: absolute;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    max-width: 66%;
    text-align: center;
    min-width: 400px;
    font-size: 1.2rem;
    box-shadow: 0 0 16px 16px rgba(0, 0, 0, .2);
    align-items: center;
    justify-content: center
}

#feedback-widget {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    width: 420px
}

#feedback-widget>textarea {
    resize: vertical;
    height: 10em
}

.title {
    font-weight: 600;
    font-size: 1.875rem;
    color: #595959;
    margin: 0
}

.subtitle {
    color: gray;
    margin: 8px 0 16px 0;
    font-size: 1.1rem
}

.button {
    font-size: 1.2rem;
    border: none;
    outline: 0;
    cursor: pointer;
    background-color: #4986cc;
    color: #fff;
    border-radius: 20px;
    height: 58px;
    width: 100%
}

.button-close {
    background-color: #4986cc;
    color: #fff;
    box-shadow: 0 4px rgba(0, 0, 0, .15);
    font-size: 1.8rem;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 1.8rem;
    position: absolute;
    top: -1.6rem;
    right: -1.6rem;
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center
}

.button-close>span {
    line-height: 0
}

.can-hover .button-close:hover {
    background-color: #5297e6
}

.can-hover button:hover {
    background-color: #5297e6
}

button:active {
    background-color: #5297e6
}

.swal2-checkbox,
.swal2-file,
.swal2-input,
.swal2-radio,
.swal2-select,
.swal2-textarea {
    margin: 1em auto
}

.swal2-file,
.swal2-input,
.swal2-textarea {
    box-sizing: border-box;
    width: 100%;
    transition: border-color .3s, box-shadow .3s;
    border: 1px solid #d9d9d9;
    border-radius: 0.1875em;
    background: inherit;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06);
    color: inherit;
    font-size: 1.125em
}

.swal2-file.swal2-inputerror,
.swal2-input.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
    border-color: #f27474 !important;
    box-shadow: 0 0 2px #f27474 !important
}

.swal2-file:focus,
.swal2-input:focus,
.swal2-textarea:focus {
    border: 1px solid #b4dbed;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(100, 150, 200, .5)
}

.swal2-file::-moz-placeholder,
.swal2-input::-moz-placeholder,
.swal2-textarea::-moz-placeholder {
    color: #ccc
}

.swal2-file:-ms-input-placeholder,
.swal2-input:-ms-input-placeholder,
.swal2-textarea:-ms-input-placeholder {
    color: #ccc
}

.swal2-file::placeholder,
.swal2-input::placeholder,
.swal2-textarea::placeholder {
    color: #ccc
}

.swal2-range {
    margin: 1em auto;
    background: #fff
}

.swal2-range input {
    width: 80%
}

.swal2-range output {
    width: 20%;
    color: inherit;
    font-weight: 600;
    text-align: center
}

.swal2-range input,
.swal2-range output {
    height: 2.625em;
    padding: 0;
    font-size: 1.125em;
    line-height: 2.625em
}

.swal2-input {
    height: 2.625em;
    padding: 0 .75em
}

.swal2-input[type=number] {
    max-width: 10em
}

.swal2-file {
    background: inherit;
    font-size: 1.125em
}

.swal2-textarea {
    height: 6.75em;
    padding: .75em
}

@-webkit-keyframes fadeInUpLight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 15%, 0);
        transform: translate3d(0, 15%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUpLight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 15%, 0);
        transform: translate3d(0, 15%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.animate__fadeInUpLight {
    -webkit-animation-name: fadeInUpLight;
    animation-name: fadeInUpLight
}

#preloader {
    position: absolute;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    top: -75px;
    bottom: 0;
    left: 0;
    right: 0
}

#preloader>svg {
    position: relative;
    top: 159px
}

#preloader>svg>circle {
    transition: stroke-dashoffset .35s;
    transform: rotate(-90deg);
    transform-origin: 50% 50%
}

#preloader>p {
    color: #fff;
    font-size: 1.8rem;
    position: relative
}

#preloader>picture {
    position: relative;
    width: 150px;
    height: 150px
}

#preloader>picture>img {
    width: 150px;
    height: 150px;
    border-radius: 75px
}

.copyright {
    display: none;
    color: #fff;
    position: absolute;
    bottom: 0;
    text-align: center;
    transform-origin: bottom;
    font-size: 1rem
}

.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.spinner-fadein {
    opacity: 1;
    transition: opacity .15s ease-out
}

.spinner-fadeout {
    opacity: 0;
    transition: opacity .15s ease-out
}

.loading-spinner {
    width: 64px;
    height: 64px
}

.loading-spinner div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px
}

.loading-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    margin: -3px 0 0 -3px
}

.loading-spinner div:nth-child(1) {
    animation-delay: -36ms
}

.loading-spinner div:nth-child(1):after {
    top: 50px;
    left: 50px
}

.loading-spinner div:nth-child(2) {
    animation-delay: -72ms
}

.loading-spinner div:nth-child(2):after {
    top: 54px;
    left: 45px
}

.loading-spinner div:nth-child(3) {
    animation-delay: -108ms
}

.loading-spinner div:nth-child(3):after {
    top: 57px;
    left: 39px
}

.loading-spinner div:nth-child(4) {
    animation-delay: -144ms
}

.loading-spinner div:nth-child(4):after {
    top: 58px;
    left: 32px
}

.loading-spinner div:nth-child(5) {
    animation-delay: -0.18s
}

.loading-spinner div:nth-child(5):after {
    top: 57px;
    left: 25px
}

.loading-spinner div:nth-child(6) {
    animation-delay: -216ms
}

.loading-spinner div:nth-child(6):after {
    top: 54px;
    left: 19px
}

.loading-spinner div:nth-child(7) {
    animation-delay: -252ms
}

.loading-spinner div:nth-child(7):after {
    top: 50px;
    left: 14px
}

.loading-spinner div:nth-child(8) {
    animation-delay: -288ms
}

.loading-spinner div:nth-child(8):after {
    top: 45px;
    left: 10px
}

@keyframes lds-roller {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}

body,
html {
    touch-action: none
}

body {
    background-color: #000;
    margin: 0;
    font-family: PoetsenOne, Verdana, sans-serif
}

body,
canvas,
html {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0)
}

#rotate {
    display: none;
    position: fixed;
    background-color: #000;
    z-index: 999;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center
}

#rotate>svg {
    display: block;
    fill: white;
    width: 33%;
    height: 33%
}

#canvas-container {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #05123a
}

#stats {
    position: fixed;
    left: 0;
    bottom: 0;
    color: #fff;
    font-family: monospace;
    background-color: #000;
    font-size: 10pt;
    padding: 3pt 7pt;
    border-top-right-radius: 6pt
}