@font-face {
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/quicksand/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58m-wi40.woff2)
        format("woff2");
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169,
        U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323,
        U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/quicksand/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58i-wi40.woff2)
        format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
        U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
        U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
        U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: "Quicksand";
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/quicksand/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58a-wg.woff2)
        format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
        U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
        U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

html {
    --parent-height: 20em;
    --duration: 1s;
    --duration-text-wrap: 12s 1.5s cubic-bezier(0.82, 0.82, 1, 1.01);
    --cubic-header: var(--duration) cubic-bezier(0.71, 0.21, 0.3, 0.95);
    --cubic-slider: var(--duration) cubic-bezier(0.4, 0, 0.2, 1);
    --cubic-play-list: 0.35s var(--duration) cubic-bezier(0, 0.85, 0.11, 1.64);
    --cubic-slider-context: cubic-bezier(1, -0.01, 1, 1.01);

    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
html *,
html *::before,
html *::after {
    box-sizing: inherit;
    scrollbar-width: none;
}
body {
    margin: 0;
    user-select: none;
    align-items: center;
    justify-content: center;
    background-color: #e5e7e9;
    font-family: "Quicksand", sans-serif;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--cubic-slider);

    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#playerid {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 20px;
    box-sizing: border-box;
    display: none;
}

.img {
    width: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}
.list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.uppercase {
    text-transform: uppercase;
}
.player {
    width: 17.15em;
    display: flex;
    overflow: hidden;
    font-size: 1.22em;
    border-radius: 1.35em;
    flex-direction: column;
    height: var(--parent-height);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
}
.player__header {
    z-index: 1;
    gap: 0 0.4em;
    width: 100%;
    display: flex;
    height: 5.85em;
    flex-shrink: 0;
    position: relative;
    align-items: flex-start;
    border-radius: inherit;
    justify-content: flex-end;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: #f1f1f1;
    padding: 0.95em 0.6em 0 1.2em;
    box-shadow: 0 2px 6px 1px #0000001f;
    transition: height var(--cubic-header), box-shadow var(--duration),
        padding var(--duration) ease-in-out;
}
.player__header.open-header {
    height: 100%;
    padding-left: 0;
    padding-right: 0;
    box-shadow: unset;
}
.player__header audio {
    position: absolute;
    z-index: 0;
    top: 42px;
    left: 22px;
    width: 87%;
    height: 54px;
}
.player__header audio.active {
    z-index: 1;
}
.player__img {
    width: 3.22em;
    height: 3.22em;
    border-radius: 1.32em;
}
.player__img--absolute {
    display: none;
}
.slider {
    flex-shrink: 0;
    overflow: hidden;
    transition: width var(--cubic-header), height var(--cubic-header),
        top var(--cubic-header), left var(--cubic-header);
}
.slider.open-slider {
    top: 0;
    left: 0;
    width: 100%;
    height: 14.6em;
}
.slider__content {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform var(--cubic-slider);
}
.slider__img {
    filter: brightness(75%);
}
.slider__name,
.slider__title {
    overflow: hidden;
    white-space: nowrap;
}
.text-wrap {
    display: block;
    white-space: pre;
    width: fit-content;
    animation: text-wrap var(--duration-text-wrap) infinite;
}
@keyframes text-wrap {
    75% {
        transform: translate3d(-51.5%, 0, 0);
    }
    100% {
        transform: translate3d(-51.5%, 0, 0);
    }
}
.player__header .player__button {
    position: relative !important;
    top: -3px !important;
    all: unset;
    z-index: 100;
    width: 2.5em;
    height: 2.5em;
    cursor: pointer;
}
.player__button.back {
    left: -30px;
}
.player__button.next {
    right: -20px;
}
.player__header .player__button.player__button--absolute--center.play,
.player__header .player__button.player__button--absolute--nw.playlist {
    display: none;
}
.playlist {
    transform: scale(0);
    transition: transform calc(var(--duration) / 2);
}
.slider.open-slider .playlist {
    transform: scale(1);
    transition: transform var(--cubic-play-list);
}
.player__button--absolute--nw {
    top: 5.5%;
    left: 5.5%;
    position: absolute;
}
.player__button--absolute--center {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}
img[alt="pause-icon"] {
    display: none;
}
.player__controls {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 30px;
    gap: 0.5em 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    will-change: contents;
    align-content: center;
    justify-content: center;
    transition: transform var(--cubic-header), width var(--cubic-header);
}
.player__header .player__controls {
    background: none;
}
.player__controls.move {
    width: 88%;
    transform: translate3d(-1.1em, calc(var(--parent-height) - 153%), 0);
}
.player__context {
    margin: 0;
    width: 100%;
    display: flex;
    line-height: 1.8;
    flex-direction: column;
    justify-content: center;
    text-transform: capitalize;
}
.slider__context {
    width: 56.28%;
    cursor: pointer;
    text-align: center;
    padding-bottom: 0.2em;
    will-change: contents;
    transition: width var(--cubic-header);
    /* animation: calc(var(--duration) / 2) var(--cubic-slider-context); */
}
.player__controls .slider__name {
    position: absolute;
    top: -11px;
    left: 30px;
    width: 77%;
    color: #333333;
}
@keyframes opacity {
    0% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
}
.player__controls.move .slider__context {
    width: 49.48%;
}
.player__controls .player__title {
    font-size: 0.7em;
    font-weight: bold;
    color: #00000086;
    background: #f1f1f1;
    height: 53px;
    position: absolute;
    top: 24px;
    left: 45px;
    width: 82%;
    border-radius: 0 30px 30px 0;
    box-sizing: border-box;
    line-height: 55px;
}
.player__title {
    font-size: 0.7em;
    font-weight: bold;
    color: #00000086;
}
.progres {
    position: relative;
    z-index: 2;
    top: 42px;
    width: 90%;
    height: 0.25em;
    cursor: pointer;
    border-radius: 1em;
    touch-action: none;
    background-color: #e5e7ea;
    transition: width var(--cubic-header);
}
.player__controls.move .progres {
    width: 98%;
}
.progres__filled {
    width: 0%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    border-radius: inherit;
    background-color: #78adfe;
}
.progres__filled::before {
    right: 0;
    width: 0.35em;
    content: " ";
    height: 0.35em;
    border-radius: 50%;
    position: absolute;
    background-color: #5781bd;
}
.player__playlist {
    height: 100%;
    overflow: auto;
    padding: 1.05em 0.9em 0 1.2em;
}
.player__playlist::-webkit-scrollbar {
    width: 0;
}
.player__song {
    /* gap: 0 .65em ; */
    display: flex;
    cursor: pointer;
    margin-bottom: 0.5em;
    padding-bottom: 0.7em;
    border-bottom: 0.1em solid #d8d8d859;
}
.player__song .player__context {
    line-height: 1.5;
    margin-left: 0.65em;
}
.player__song-name {
    font-size: 0.88em;
}
.player__song-time {
    font-size: 0.65em;
    font-weight: bold;
    color: #00000079;
    height: fit-content;
    align-self: flex-end;
}
.audio {
    display: none !important ;
}

canvas {
    cursor: grab;
}

canvas.-dragging {
    cursor: grabbing;
}

canvas.-moving {
    cursor: move;
}

canvas.-zoomIn {
    cursor: zoom-in;
}
canvas {
    position: fixed;
    width: 100%;
    height: 100%;
}
#preloader {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: block;
    opacity: 1;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: all 1s;
}
#preloader.hidden {
    animation: fadeout 1s 1 forwards;
}
#preloader .content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 400px;
    max-width: 100%;
    text-align: center;
}
#preloader .content .top {
    position: relative;
    width: 100%;
    aspect-ratio: 4/1.4;
    background: url(../images/logo.webp) no-repeat center center;
    background-size: contain;
}
#preloader .content .bottom {
    position: relative;
    width: 100%;
    aspect-ratio: 8/5;
    padding-top: 40px;
}
#preloader #loading_note {
    display: block;
    opacity: 1;
}
#preloader #loading_note.hidden {
    animation: fadeout 0.5s 1 forwards;
}
#startBtn {
    width: 100%;
    aspect-ratio: 8/5;
    padding: 13px 18px;
    margin: 0 auto;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
    background: #000000 url(../images/enter-button.webp) no-repeat center center;
    background-size: cover;
    color: #ffffff;
    font-size: 130%;
    text-align: center;
    display: none;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s;
}
#startBtn:focus {
    outline: none;
}
#startBtn:hover {
    /* background: #9b17c7; */
}
#startBtn:active {
    /* background: #9b17c7; */
}
#startBtn.visible {
    animation: fadein 0.5s 1 forwards;
}
#startBtn.hidden {
    animation: fadeout 0.5s 1 forwards;
}
#timetext {
    color: red;
    z-index: 1;
    position: absolute;
    top: 1%;
    left: 50%;
    font-size: 24px;
    display: none;
}

#flights {
    color: rgb(255, 255, 255);
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    display: none;
}

#menu {
    display: none;
}
#openmenu {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    padding: 10px;
    transform: translateY(-50%);
    border-radius: 0 5px 5px 0;
    background: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    user-select: none;
    color: #333333;
    font-size: 130%;
    transition: all 0.4s;
}
#closemenu {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #0baae3;
    user-select: none;
}
#closemenu:hover {
    color: #222222;
    cursor: pointer;
}
.sidenav {
    height: auto;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-left: none;
    border-radius: 0 40px 40px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    overflow-x: hidden;
    transition: 0.5s;
    padding: 50px 0 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    user-select: none;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    user-select: none;
}
.sidenav .radio {
    color: black;
    font: normal 20px/1.5em Arial;
}
.sidenav .radio input {
    display: none;
}

.sidenav .radio label {
    display: block;
    padding: 10px;
    background-color: #eee;
    cursor: pointer;
    border-radius: 40px;
    margin-bottom: 5px;
    transition: background-color 0.2s;
    transition: all 0.3s;
    text-align: center;
}

.sidenav .radio input:checked + label {
    background-color: #2681a2;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    color: white;
}

#joystickarrow {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 20px;
    right: 100px;
    z-index: 1;
    user-select: none;
    grid-template-columns: auto auto auto;
    display: none;
}
.arrow {
    border: solid white;
    border-width: 0 5px 5px 0;
    display: inline-block;
    padding: 12px;
    -webkit-touch-callout: none;
}
.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -webkit-touch-callout: none;
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -webkit-touch-callout: none;
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -webkit-touch-callout: none;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -webkit-touch-callout: none;
}
#gyroup {
    position: absolute;
    bottom: 50px;
    right: 10%;
    z-index: 1;
    user-select: none;
    display: none;
    -webkit-touch-callout: none;
}
#gyrodown {
    position: absolute;
    bottom: 50px;
    left: 10%;
    z-index: 1;
    user-select: none;
    display: none;
    -webkit-touch-callout: none;
}

#reset {
    position: absolute;
    color: white;
    font-size: 24px;
    font-weight: bold;
    bottom: 150px;
    left: 10%;
    z-index: 1;
    user-select: none;
    -webkit-touch-callout: none;
    /* display: none; */
}
.radio {
    color: white;
    font-size: 24px;
    user-select: none;
}
#logo {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 400px;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 1;
    transition: 3s opacity;
}
#logo.fade-out {
    opacity: 0;
}
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    #joystickarrow {
        width: 150px;
        height: 150px;
        bottom: 14px;
        right: 5%;
    }
    .arrow {
        padding: 8px;
    }
    #reset {
        bottom: 150px;
        left: 9%;
    }

    #gyrodown {
        bottom: 65px;
    }
}

@media only screen and (max-width: 600px) {
    #joystickarrow {
        width: 150px;
        height: 150px;
        bottom: 20px;
        right: 25px;
    }
    #reset {
        bottom: 180px;
        left: 9%;
    }
    #gyroup {
        bottom: 70px;
        right: 10%;
    }
    #gyrodown {
        bottom: 85px;
        left: 10%;
    }
}
.slidecontainer {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: transparent;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: rgba(211, 211, 211, 1);
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04aa6d;
    cursor: pointer;
    /* border-radius: 50%; */
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04aa6d;
    cursor: pointer;
    /* border-radius: 50%; */
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
#jetski_guide {
    position: fixed;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 700px;
    max-width: 100%;
    height: 400px;
    max-height: 100%;
    background: url(../images/jetski_guide.webp);
    color: white;
    transition: all 0.5s;
}
#jetski_guide.hidden {
    display: none;
    opacity: 0;
}
#jetski_guide.visible {
    display: block;
    animation: fadein 0.5s 1 forwards;
}
#jetski_guide img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}
#close_jetski_guide {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 33px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}
#close_jetski_guide:hover {
    background: white;
    color: #333333;
}

ul.nav {
    list-style: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 66px;
    max-height: 68px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 70px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s;
}
ul.nav.open {
    max-height: none;
}
ul.nav li {
    position: relative !important;
    width: 40px !important;
    height: 40px !important;
    padding: 10px !important;
    margin: 5px !important;
    vertical-align: middle;
    transition: all 0.3s;
    cursor: pointer;
}
ul.nav li img,
ul.nav li span {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    display: inline-block;
    width: 100% !important;
    height: 100% !important;
    font-size: 30px;
    line-height: 40px;
    color: white;
}
ul.nav li span {
    background-color: rgba(0, 0, 0, 0.17);
    padding: 10px;
    margin: -10px;
    border-radius: 50%;
    transition: all 0.3s;
}
ul.nav li span:hover {
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.5);
}
ul.nav li#reset_btn {
    display: none;
}
ul.nav li#toggle_nav {
    position: absolute !important;
    z-index: 1;
    top: -1px;
    left: -2px;
    border-radius: 50%;
    background: white;
}
ul.nav li#toggle_nav.on {
    position: relative !important;
}
ul.nav li#toggle_nav span:before {
    content: "\f204";
    font-family: FontAwesome;
}
ul.nav li#toggle_nav.on span:before {
    content: "\f205";
    font-family: FontAwesome;
}
#volume_modal {
    position: fixed;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 300px;
    max-width: 98%;
    height: 300px;
    margin-top: -200vh;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
    color: #333333;
    text-align: center;
}
#volume_modal.open {
    z-index: 3;
    margin-top: 0;
}
#close_volume_modal {
    position: absolute;
    top: 20px;
    right: 20px;
    left: auto;
    width: 40px;
    height: 40px;
    padding: 5px;
    border-radius: 50%;
    background: #cccccc;
    font-size: 40px;
    line-height: 27px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
#close_volume_modal:hover {
    background: white;
}
#volume_modal label {
    display: block;
}
#env_vol_lbl {
    margin-top: 60px;
}
#volume_modal input[type="range"] {
    display: block;
    width: 90%;
    margin: 10px 5%;
}
#globalVolumeSlider {
}
#musicVolumeSlider {
}

.buttons,
#play,
#helicopterfly,
#helicopterfly2,
#helicopterflycancel,
#music,
#door,
#ship,
#studio,
#studiospeed,
#studiostraight,
#storestraight,
#helicoptertoshop,
#helicoptertoshopspeed,
#cancelintro,
#studio2,
#ferris {
    position: absolute;
    right: 2%;
    border: none;
    width: 30px;
    height: 30px;
    margin: 0;
    z-index: 1;
    cursor: pointer;
    border-radius: 50%;
    -ms-box-shadow: inset 0 0 15px 6px rgba(0, 0, 0, 0.2);
    -o-box-shadow: inset 0 0 15px 6px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 15px 6px rgba(0, 0, 0, 0.2);
}

.buttons:hover,
#play:hover,
#helicopterfly:hover,
#helicopterflycancel:hover,
#helicopterfly2:hover,
#music:hover,
#door:hover,
#ship:hover,
#studio:hover,
#studiospeed:hover,
#studiostraight:hover,
#storestraight:hover,
#helicoptertoshop:hover,
#helicoptertoshopspeed:hover,
#cancelintro:hover,
#studio2:hover,
#ferris:hover {
    fill: #000000;
    color: #000000;
    -ms-box-shadow: inset 0 0 15px 6px rgba(255, 255, 255, 0.4);
    -o-box-shadow: inset 0 0 15px 6px rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 15px 6px rgba(255, 255, 255, 0.4);
}

#studio {
    width: 30px;
    height: 30px;
    bottom: 42%;
    padding: 14px;
    display: none;
}
.studioimg {
    position: absolute;
    top: 16px;
    right: -25px;
    transform: scale(0.7) translateX(-50%) translateY(-50%);
    user-select: none;
}

#studiostraight {
    width: 30px;
    height: 30px;
    bottom: 24%;
    padding: 14px;
    display: none;
}

#storestraight {
    width: 30px;
    height: 30px;
    bottom: 22%;
    padding: 14px;
    display: none;
}

.storestraightimg {
    position: absolute;
    top: -14px;
    right: -56px;
    transform: scale(0.35) translateX(-50%) translateY(-50%);
    user-select: none;
}

#studiospeed {
    width: 30px;
    height: 30px;
    bottom: 42%;
    padding: 14px;
    display: none;
}
#studiospeedimg {
    position: absolute;
    top: 16px;
    right: -25px;
    transform: scale(0.7) translateX(-50%) translateY(-50%);
    user-select: none;
}

#studio2 {
    width: 30px;
    height: 30px;
    bottom: 42%;
    padding: 14px;
    display: none;
}
#studio2img {
    position: absolute;
    top: 16px;
    right: -25px;
    transform: scale(0.7) translateX(-50%) translateY(-50%);
    user-select: none;
}

#ferris {
    width: 30px;
    height: 30px;
    bottom: 62%;
    padding: 14px;
    display: none;
}
#ferrisimg {
    position: absolute;
    top: 16px;
    right: -25px;
    transform: scale(0.7) translateX(-50%) translateY(-50%);
    user-select: none;
}

#helicoptertoshop {
    width: 35px;
    height: 35px;
    bottom: 52%;
    padding: 12px;
    display: none;
}
#helicoptertoshopimg {
    position: absolute;
    top: -28%;
    left: -22%;
    margin-top: 0px;
    margin-left: 0px;
    transform: scale(0.35) translateX(-50%) translateY(-50%);
    user-select: none;
}

#helicoptertoshopspeed {
    width: 35px;
    height: 35px;
    bottom: 32%;
    padding: 12px;
    display: none;
}
#helicoptertoshopspeedimg {
    position: absolute;
    top: -28%;
    left: -22%;
    margin-top: 0px;
    margin-left: 0px;
    transform: scale(0.35) translateX(-50%) translateY(-50%);
    user-select: none;
}

#ship {
    width: 35px;
    height: 35px;
    bottom: 2%;
    padding: 12px;
}

#shipimg {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: scale(0.8) translateX(-50%) translateY(-50%);
    user-select: none;
}

#door {
    bottom: 12%;
    padding: 9px 14px 20px 15px;
}

#doorimg {
    position: absolute;
    top: 30%;
    left: 30%;
    transform: scale(0.6) translateX(-50%) translateY(-50%);
    user-select: none;
}

#music {
    bottom: 32%;
    padding: 12px 17px 17px 12px;
    display: none;
}
#musicimg {
    position: absolute;
    top: -20%;
    left: -10%;
    transform: scale(0.3) translateX(-50%) translateY(-50%);
    user-select: none;
}

#helicopterfly {
    width: 35px;
    height: 35px;
    bottom: 32%;
    padding: 12px;
    display: none;
}

#helicopterflyimg {
    position: absolute;
    top: -28%;
    left: -22%;
    margin-top: 0px;
    margin-left: 0px;
    transform: scale(0.3) translateX(-50%) translateY(-50%);
    user-select: none;
}

#helicopterflycancel {
    width: 35px;
    height: 35px;
    bottom: 22%;
    padding: 12px;
    display: none;
}

#helicopterflycancelimg {
    position: absolute;
    top: -28%;
    left: -22%;
    margin-top: 0px;
    margin-left: 0px;
    transform: scale(0.3) translateX(-50%) translateY(-50%);
    user-select: none;
}

#cancelintro {
    width: 35px;
    height: 35px;
    bottom: 22%;
    padding: 12px;
}

#cancelintroimg {
    position: absolute;
    top: -28%;
    left: -22%;
    margin-top: 0px;
    margin-left: 0px;
    transform: scale(0.3) translateX(-50%) translateY(-50%);
    user-select: none;
}

#helicopterfly2 {
    width: 35px;
    height: 35px;
    bottom: 12%;
    padding: 12px;
    display: none;
}

#helicopterfly2img {
    position: absolute;
    top: -25%;
    left: -23%;
    margin-top: 0px;
    margin-left: 0px;
    transform: scale(0.3) translateX(-50%) translateY(-50%);
    user-select: none;
}

#helicopterfly2:hover #helicopterfly2-icon {
    fill: #000000;
    color: #000000;
}

#music-list-container {
    position: absolute;
    right: 4%;
    bottom: 20.5%;
    opacity: 0;
    transition: transform 1s;
}

#music-list-container ul {
    list-style-type: none;
    display: flex;
    direction: rtl;
    transition: transform 1s;
}

#music-list-container ul li {
    position: absolute;
    width: 25px;
    height: 25px;
    color: #2c2c2c;
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    z-index: 0;
    transition: transform 1s;
    -ms-box-shadow: inset 0 0 15px 6px rgba(0, 0, 0, 0.2);
    -o-box-shadow: inset 0 0 15px 6px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 15px 6px rgba(0, 0, 0, 0.2);
}

#music-list-container ul li span {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    transform: translateX(-50%) translateY(-50%);
}

#music-list-container ul li:hover {
    -ms-box-shadow: inset 0 0 15px 6px rgba(255, 255, 255, 0.4);
    -o-box-shadow: inset 0 0 15px 6px rgba(255, 255, 255, 0.4);
    box-shadow: inset 0 0 15px 6px rgba(255, 255, 255, 0.4);
}

#music-0 {
    bottom: 15px;
    right: -15px;
}

#music-1 {
    bottom: 15px;
    right: -15px;
}

#music-2 {
    bottom: 15px;
    right: -15px;
}

#dialog {
    padding: 0;
    border: none;
    overflow: hidden;
    border-radius: 3px;
    background: #eaeaea;
    animation: fadeIn 1s ease both;
    animation: fullScreen 5s ease both;
}

#dialog::backdrop {
    z-index: 2;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    animation: fadeIn 1s ease both;
    background: rgba(255, 255, 255, 0.4);
}

#dialog .x {
    top: 15px;
    right: 10px;
    border: none;
    cursor: pointer;
    position: absolute;
}

#dialog .x svg {
    width: 15px;
    height: 15px;
    padding: 5px;
    border-radius: 30%;
    background-color: rgb(231, 35, 35);
}

#dialog .x svg .cls-1 {
    fill: none;
    stroke: #424141;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    stroke-width: 15px;
}

#dialog .x:hover {
    transform: scale(1.1);
}

#dialog #popupVideo {
    width: 100%;
    border: none;
    margin-bottom: -5px;
}

#linkus {
    position: absolute;
    z-index: 10;
    left: 2%;
    border: none;
    margin: 0;
    bottom: 1%;
    font-size: 80%;
    font-family: Arial, sans-serif;
    color: white;
    z-index: 1;
}

#linkus a {
    text-decoration: none;
    color: white;
}

#loading-screen {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 1;
    transition: 1s opacity;
}

#loading-screen #loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #546e7a;
    animation: spin 2s linear infinite;
}

#loading-screen #loader::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ef6c00;
    animation: spin 3s linear infinite;
}

#loading-screen #loader::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #546e7a;
    animation: spin 1.5s linear infinite;
}

#loading-screen.fade-out {
    opacity: 0;
}

@keyframes beat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fullScreen {
    0% {
        width: 0vw;
    }

    100% {
        width: 100vw;
    }
}

@media only screen and (min-width: 601px) {
    #dialog {
        max-width: 85vw;
    }
}

@media only screen and (max-width: 600px) {
    #door {
        width: 30px;
        height: 30px;
    }

    #music {
        width: 30px;
        height: 30px;
    }

    #helicopterfly {
        width: 35px;
        height: 35px;
    }

    #helicopterfly2 {
        width: 35px;
        height: 35px;
    }

    #dialog {
        max-width: 100vw;
    }
}

/*# sourceMappingURL=style.css.map */
