@font-face {
    font-family: 'NM';
    font-style: normal;
    font-weight: 500;
    src: url(fonts/NM_M.woff) format('woff');
    font-display: fallback; /* Define how the browser behaves during download */
}
@font-face {
    font-family: 'NM';
    font-style: normal;
    font-weight: 700;
    src: url(fonts/NM_B.woff) format('woff');
    font-display: fallback; /* Define how the browser behaves during download */
}
/* width */
::-webkit-scrollbar {
    width: 0;
    pointer-events: none;
}
@media (max-width: 570px) {
    ::-webkit-scrollbar {
        height: 5px;
    }
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(136, 136, 136, 0.5);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

* {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
           supported by Chrome, Edge, Opera and Firefox */
}

html {
    height: 100%;
    cursor: none !important;
}
@media (max-width: 768px) {
    html {
        cursor: auto !important;
    }
}

body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: 'NM', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    background-color: #000000;
}
body.instagram-browser {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

body.noclick .hit-menu {
    pointer-events: none !important;
}

a {
    color: inherit;
    text-decoration: none;
}

/*** CURSOR ***/
.cursors {
    position: fixed;
    top: 100px;
    left: 100px;
    width: 50px;
    z-index: 51;
    transform: translateX(-12px) rotate(45deg);
    pointer-events: none;
}
.is-safari-ios .cursors {
    display: none !important;
}
.cursors img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}
.cursors .cursor-click {
    opacity: 1;
}
.cursors.down .cursor-click {
    opacity: 1;
}
.cursors.down .cursor-default {
    opacity: 0;
}
@media (max-width: 570px) {
    .cursors {
        display: none !important;
    }
}

/*** MENU ***/
:root {
    --menuwidth: calc(100vw - 40px);
    --buttonspacing: 16px;
    --singlebuttonwidth: calc(((var(--menuwidth) - (var(--buttonspacing) * 3)) / 4));
}
@media (max-width: 768px) {
    :root {
        --menuwidth: calc(100vw - 40px);
    }
}
@media (max-width: 570px) {
    :root {
        --menuwidth: calc(100vw - 20px);
    }
}

/** click area menus ***/
.hit-menu {
    position: fixed;
    top: 0px;
    left: 20px;
    width: var(--menuwidth);
    display: flex;
    z-index: 50;
    justify-content: space-between;
    opacity: 1;
    pointer-events: none;
}
@media (max-width: 570px) {
    .hit-menu {
        left: 10px;
        top: auto;
        bottom: 0;
    }
    .instagram-browser .hit-menu {
        bottom: 30px;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
}

.hit-menu .hit-b {
    height: 60px;
    display: flex;
    width: calc(25% - 16px);
}
@media (max-width: 1024px) and (max-height: 500px) {
    .hit-menu .hit-b {
        height: 40px;
        width: calc(25% - 9px);
    }
}
@media (max-width: 570px) {
    .hit-menu .hit-b {
        width: calc(25% - 11px);
        height: 60px;
    }
}
.hit-menu .hit-b > .inner {
    position: relative;
    width: 100%;
}
.hit-menu .hit-b .close {
    position: absolute;
    top: 29px;
    right: 0;
    pointer-events: none;
    opacity: 0;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .hit-menu .hit-b .close {
        top: 10px;
    }
}
@media (max-width: 570px) {
    .hit-menu .hit-b .close {
        top: 15px;
        transform: translateY(-0.25px) scale(0.8);
    }
}
.hit-menu .hit-b .close img {
    width: 15px;
    filter: drop-shadow(1px 1px 1px rgba(64, 64, 64, 0.6));
}
@media (max-width: 1024px) and (max-height: 500px) {
    .hit-menu .hit-b .close img {
        width: 11px;
    }
}
@media (max-width: 570px) {
    .hit-menu .hit-b .close img {
        width: 12px;
    }
}
.hit-menu .hit-b span {
    opacity: 0;
}

/*** INSTAGRAM ONLY MENU **/

.mobile-menu {
    display: none;
}
@media (max-width: 570px) {
    .instagram-browser .mobile-menu {
        display: flex;
        position: absolute;
        bottom: 55px;
        left: 0;
        z-index: 5;
        width: 100%;
        justify-content: space-between;
        padding: 20px 20px;
        box-sizing: border-box;
    }
    .instagram-browser .mob-menu-button {
        padding: 10px;
    }
    .instagram-browser .mob-menu-button .inner {
        display: flex;
        text-shadow: 1px 1px 1px rgb(64, 64, 64);
        font-weight: 700;
    }
    .instagram-browser .mob-menu-button span {
        padding-right: 5px;
    }
    .instagram-browser .mob-menu-button .close {
        opacity: 0;
    }
}

/*** PANEL **/
.menu-panel {
    position: fixed;
    left: 20px;
    top: 80px;
    width: var(--singlebuttonwidth);
    max-width: 330px;
    height: 80vh;
    max-height: 800px;
    background-color: rgba(121, 121, 121, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 5;
    overflow: hidden;
    transition: 0.4s ease-out height, 0.4s ease-out opacity;
    transform: translateZ(0.1px);
}
.is-safari-ios .menu-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .menu-panel {
        top: 50px;
        height: calc(100vh - 50px - 20px);
    }
}
@media (max-width: 570px) {
    .menu-panel {
        top: auto;
        bottom: 60px;
        left: 10px;
        max-width: none;
        width: calc(100% - 20px);
        height: auto;
    }
    .instagram-browser .menu-panel {
        bottom: 125px;
    }
}
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
}

.menu-panel.panel-contact {
    height: 410px;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .menu-panel.panel-contact {
        height: calc(100vh - 50px - 20px);
    }
}
@media (max-width: 570px) {
    .menu-panel.panel-contact {
        height: auto;
    }
    .menu-panel.panel-contact .thumb-content {
        margin-top: 0 !important;
    }
    .menu-panel.panel-contact > .inner {
        padding-bottom: 20px;
    }
}
@media (max-width: 570px) {
    .menu-panel.panel-contact .single-content {
        min-width: auto;
        max-width: 220px;
        min-width: 123px;
    }
    .menu-panel.panel-contact .single-content:last-child {
        min-width: 150px;
    }
}
@media (max-width: 570px) {
    .menu-panel.panel-tour .single-content {
        /* min-width: -webkit-max-content !important; */
        /* min-width: -moz-max-content !important; */
        /* min-width: max-content !important; */
        max-width: 220px;
    }
    .menu-panel.panel-tour .thumb-content {
        margin-top: 0 !important;
    }
    .menu-panel.panel-tour .button {
        margin-top: 11px !important;
    }
}
.menu-panel.closed {
    height: 0;
    opacity: 0;
    pointer-events: none;
}
.menu-panel .inner {
    padding: 15px;
    overflow: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 15px - 15px);
    height: calc(100% - 15px - 15px);
    display: flex;
    flex-direction: column;
}
@media (max-width: 570px) {
    .menu-panel .inner {
        position: relative;
        flex-direction: row;
        height: auto;
    }
}
.menu-panel .single-content {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.25s ease-in-out opacity;
}
.menu-panel .single-content.active {
    opacity: 0.5;
}
@media (max-width: 570px) {
    .menu-panel .single-content {
        min-width: 123px;
        margin-right: 20px;
        margin-bottom: 0;
    }
    .menu-panel .single-content:last-child {
        margin-right: 0;
    }
}
.menu-panel .single-content.content-tour .thumb-content .thumb-title {
    margin-bottom: 3px;
}
@media (max-width: 570px) {
    .menu-panel .single-content.content-tour .thumb-content .tour-desc {
        margin-top: 5px;
    }
}
.menu-panel .single-content .thumb {
    display: flex;
    flex-direction: column;
}
.menu-panel .single-content .thumb img {
    width: 100%;
}
.menu-panel .single-content .thumb-content {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.4;
}
@media (max-width: 570px) {
    .menu-panel .single-content .thumb-content {
        margin-top: 8px;
    }
}
.menu-panel .single-content .thumb-content .thumb-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
}
@media (max-width: 570px) {
    .menu-panel .single-content .thumb-content .thumb-title {
        font-size: 12px;
        line-height: 1.1;
    }
}
.menu-panel .single-content .thumb-content .button-wrap {
    display: flex;
    flex-wrap: wrap;
}
.menu-panel .single-content .thumb-content .button {
    margin-top: 11px;
    font-size: 11px;
    margin-right: 10px;
}
@media (max-width: 570px) {
    .menu-panel .single-content .thumb-content .button {
        margin-top: 6px;
        margin-right: 6px;
    }
}
.menu-panel .single-content .thumb-content a {
    text-transform: uppercase;
}

.level-2 {
    display: none;
    opacity: 0;
}
@media (max-width: 570px) {
    .level-2 {
        display: none !important;
    }
}

.level-2-mobile {
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 60px;
    left: 10px;
    width: calc(100% - 50px);
    height: auto;
    z-index: 10;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 12px;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .level-2-mobile {
        height: calc(100vh - 50px - 20px);
    }
}
@media (max-width: 570px) {
    .level-2-mobile {
        height: auto;
    }
    .instagram-browser .level-2-mobile {
        bottom: 125px;
    }
}
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
}

.level-2-mobile .single-content {
    display: flex;
}
.level-2-mobile .single-content .thumb {
    margin-right: 15px;
    max-width: 120px;
}
.level-2-mobile .single-content .thumb img {
    width: 100%;
}
.level-2-mobile .single-content .thumb-content {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    padding-bottom: 15px;
}
.level-2-mobile .single-content .thumb-title {
    text-transform: uppercase;
    font-weight: 700;
}
.level-2-mobile .single-content .button-wrap {
    display: flex;
    flex-wrap: wrap;
}
.level-2-mobile .single-content .button {
    margin-top: 6px;
    margin-right: 6px;
}
.level-2-mobile .single-content a {
    text-transform: uppercase;
}

.swiper {
    position: fixed;
    top: 0px;
    left: 20px;
    width: var(--menuwidth);
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
    padding-bottom: 2px;
}
@media (max-width: 570px) {
    .swiper {
        left: 10px;
        top: auto;
        bottom: 20px;
    }
    .instagram-browser .swiper {
        bottom: 50px;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
}

.swiper .menu-button {
    font-size: 16px;
    font-weight: 700;
    overflow: visible;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .swiper .menu-button {
        font-size: 12px;
    }
}
@media (max-width: 570px) {
    .swiper .menu-button {
        font-size: 12px;
        text-align: center;
    }
}
.swiper .menu-button.clicked-active > .inner .close {
    display: flex;
}
.swiper .menu-button > .inner {
    padding-top: 28px;
    padding-bottom: 15px;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .swiper .menu-button > .inner {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}
@media (max-width: 570px) {
    .swiper .menu-button > .inner {
        padding-top: 15px;
        padding-bottom: 8px;
    }
}
.swiper .menu-button > .inner span {
    pointer-events: none;
    text-shadow: 1px 1px 1px rgba(64, 64, 64, 0.6);
}
@media (max-width: 570px) {
    .swiper .menu-button > .inner span {
        text-shadow: 1px 1px 1px rgb(64, 64, 64);
    }
    .instagram-browser .swiper .menu-button > .inner span {
        text-shadow: none;
        color: #ededed;
    }
}
@media only screen and (device-width: 390px) and (device-height: 844px) and (-webkit-device-pixel-ratio: 3) {
}

.swiper .menu-button > .inner .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    box-shadow: 1px 1px 1px rgba(64, 64, 64, 0.6);
}
@media (max-width: 570px) {
    .swiper .menu-button > .inner .line {
        display: none;
    }
}
.swiper .menu-button > .inner .close {
    position: absolute;
    top: 28px;
    right: 16px;
    display: none;
}

/***/
.mute-control {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 5;
    width: 30px;
    filter: drop-shadow(1px 1px 1px rgba(64, 64, 64, 0.9));
}
@media (max-width: 570px) {
    .mute-control {
        top: 20px;
        right: 15px;
        bottom: auto;
        width: 24px;
    }
}
.mute-control img {
    width: 100%;
}
.mute-control .unmute {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}
.mute-control .mute {
    opacity: 0;
}
.mute-control.muted .unmute {
    opacity: 0;
}
.mute-control.muted .mute {
    opacity: 1;
}

/***/
.button {
    display: flex;
}
.button.button-pill {
    padding: 2px 6px;
    border-radius: 2px;
    border: 1px solid white;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background-color: transparent;
    transition: 0.25s ease-in-out color, 0.25s ease-in-out background-color;
    cursor: none;
}
@media (max-width: 570px) {
    .button.button-pill {
        font-size: 10px;
    }
}
@media (min-width: 1024px) {
    .button.button-pill:hover {
        background-color: white;
        color: black;
    }
}

/**** INTRO ***/
.intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(233, 178, 29);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    /**/
    pointer-events: none;
}
.intro.loading {
    pointer-events: auto;
}
.intro .logo-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    transform: translate(-50%, -55%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro .logo-wrap img {
    width: 100%;
    padding: 11px;
    box-sizing: border-box;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .intro .logo-wrap img {
        width: 200px;
    }
}
@media (max-width: 570px) {
    .intro .logo-wrap img {
        width: 200px;
    }
}
.intro .logo-wrap .intro-text {
    position: relative;
    margin-top: 40px;
    width: 100%;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .intro .logo-wrap .intro-text {
        margin-top: 19px;
    }
}
@media (max-width: 570px) {
    .intro .logo-wrap .intro-text {
        font-size: 12px;
    }
}
.intro .logo-wrap .intro-text span {
    display: block;
    line-height: 1.5;
    color: black;
    width: 100%;
}
.intro .logo-wrap .intro-text span.complete-text {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.intro .logo-wrap .intro-text span strong {
    font-weight: bold;
    border: 1px solid black;
    padding: 6px 5px 5px;
    margin: 11px auto;
    display: block;
    border-radius: 4px;
    max-width: fit-content;
    line-height: 1;
}
@media (max-width: 1024px) and (max-height: 500px) {
    .intro .logo-wrap .intro-text span strong {
        font-size: 10px;
    }
}

#pano {
    pointer-events: none;
    cursor: pointer;
}

.intro-ended .swiper {
    pointer-events: auto;
}

@media (max-width: 570px) {
    .single-album-content .thumb-content {
        margin-top: 0 !important;
    }
}
.single-album-content .tracks {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
    padding: 0;
}
.single-album-content .tracks li {
    list-style: none;
    margin: 0 0 3px;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.single-album-content .tracks li .track-title {
    padding-right: 13px;
}
.single-album-content .streaming-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
@media (max-width: 570px) {
    .single-album-content .streaming-wrap {
        margin-top: 20px;
    }
}
.single-album-content .streaming-wrap ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.single-album-content .streaming-wrap ul a {
    cursor: none;
}

.clickk {
    position: fixed;
    top: 30%;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: red;
    z-index: 300;
}

#krpanoSWFObject.blocked {
    pointer-events: none !important;
} /*# sourceMappingURL=styles.css.map */

.instagram-browser .ig-bar-test-0 {
    position: fixed;
    bottom: 100px;
    width: 1px;
    height: 1px;
    right: 0;
    z-index: 5;
    background-color: red;
}
.instagram-browser .ig-bar-test-1 {
    position: fixed;
    bottom: 60px;
    width: 1px;
    height: 1px;
    right: 0;
    z-index: 5;
    background-color: green;
}
