@import url("nav.css");

/* #002554; dark blue */
/* `#114d97` light blue */

html,
body {
    padding: 0;
    margin: 0;
    height: 100%;
    overflow: hidden;
}

#vtour {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#pano {
    z-index: 0;
    width: 100%;
    height: 100%;
}

#ui_stage {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    overflow: hidden;
}

#ui_stage #ui_area_lt {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    pointer-events: all;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10000;
}

#ui_stage #ui_area_rb {
    position: absolute;
    right: 10px; /* Move the area to the left by 10 pixels */
    bottom: 0px;
    width: 100%;
    pointer-events: all;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10000;
}

@media (max-width: 500px) {
    #ui_stage #ui_area_rb {
        right: 2px; /* Remove the right 10px on mobile */
    }
}

#ui_stage #ui_area_rt {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 10px;
    pointer-events: all;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10000;
}

#ui_stage #ui_area_panel {
    /*
    left: -280px;
    width: 280px;
    transition: left 0.3s;
    */
    height: 100%;
    pointer-events: all;
    position: absolute;
    top: 0px;
    z-index: 10001;
}

/*
#ui_stage #ui_area_panel::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../skin/images/side_menu_bg.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}
*/

/* logo */

#ui_stage #ui_area_panel::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 15px;
    right: 35px;
    height: 100px;
    z-index: 0;
    background-image: url(../skin/images/logo_white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (pointer: fine) {
    #ui_stage #ui_area_panel::before {
        left: 50px;
        right: 50px;
    }
}

#ui_stage #ui_area_panel #btn_open {
    position: absolute;
    left: 100%;
    top: 0;
    width: 50px;
    height: 120px;
    pointer-events: all;
    cursor: pointer;
    z-index: 1000;
    /* background-color: rgb(37, 41, 40); */
}

#ui_stage #ui_area_panel #btn_open::after {
    content: '☰';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 130px;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 2.75rem;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    transition: color 0.3s;
}

@media (pointer: fine) {
    #ui_stage #ui_area_panel #btn_open:hover::after {
        color: #ffffff;
    }
}

#ui_stage #ui_area_panel #list_menu {
    position: absolute;
    left: 0px;
    top: 130px;
    right: 0px;
    bottom: 60px;
    z-index: 10000;
}

#ui_stage #ui_area_panel #ui_area_panel_btns {
    position: absolute;
    left: 15px;
    bottom: 10px;
    right: 15px;
    height: 45px;
    padding-top: 5px;
    transition: left 0.3s;
    pointer-events: all;
    box-sizing: border-box;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: space-between;
    z-index: 10001;
}

#ui_area_panel_btns #ui_area_panel_btns_hint {
    position: absolute;
    left: 0;
    bottom: 48px;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    transition: opacity 0.2s, left 0.3s;
    padding: 10px 15px;
    z-index: 500;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 0.813rem;
    color: #000000;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
}

#ui_area_panel_btns #ui_area_panel_btns_hint::before {
    content: ' ';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top: 8px solid rgba(255, 255, 255, 0.9);
}

#ui_area_panel_btns #ui_area_panel_btns_hint.visible {
    opacity: 1;
}

/* vn logo */
#logo {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: auto;
    cursor: pointer;
}

#ui_stage #ui_logo_hint {
    position: absolute;
    right: 10px;
    top: 55px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    transition: opacity 0.2s, left 0.3s;
    padding: 10px 15px;
    z-index: 500;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 0.813rem;
    color: #000000;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}

#ui_stage #ui_logo_hint::before {
    content: ' ';
    position: absolute;
    right: 20px;
    bottom: 100%;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 6px;
    border-right-width: 6px;
    border-bottom: 8px solid rgba(255, 255, 255, 0.7);
}

@media (pointer: fine) {
    #logo:hover~#ui_logo_hint {
        opacity: 1;
    }
}

#ui_stage #ui_prevnext_stage {
    position: absolute;
    right: 60px;
    bottom: 10px;
    width: 90px;
    height: 40px;
    z-index: 100;
}

.btn {
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.btn svg .bg {
    fill: #ffffff;
    opacity: 1;
    transition: fill 0.3s;
}

.btn svg .ring {
    fill: #ffffff;
    opacity: 1;
    transition: fill 0.3s;
}

.btn svg .icon {
    fill: #000000;
    opacity: 1;
    transition: fill 0.3s, opacity 0.3s;
}

.btn svg .icon2 {
    fill: #000000;
    opacity: 0.8;
}

.btn svg .menu {
    fill: #ffffff;
    opacity: 0.8;
    transition: fill 0.3s, opacity 0.3s;
}

.btn svg .menu2 {
    fill: #000000;
    opacity: 0.8;
}

@media (pointer: fine) {
    .btn:hover svg .bg {
        fill: #2e2e2e;
        opacity: 0.4;
    }

    .btn:hover svg .icon {
        fill: #ffffff;
        opacity: 1;
    }

    .btn:hover svg .icon2 {
        fill: #ffffff;
        opacity: 1;
    }

    .btn:hover svg .menu {
        fill: #ffffff;
        opacity: 1;
    }
}

.btn.prev {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.btn.next {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.btn.info {
    right: 13px;
    bottom: 10px
}

/* .btn.audio  { right: 60px; bottom: 10px } 

.btn.audio svg path  {
    transition: opacity 0.3s;
}

.btn.audio svg .on  {
    opacity: 0;
}

.btn.audio.enabled svg .on  {
    opacity: 1;
}

.btn.audio.enabled svg .off  {
    opacity: 0;
}

*/

.btn.slide_menu_btn {
    position: relative;
    display: inline-block;
}

.btn.slide_menu_btn svg {
    pointer-events: none;
}
button.btn.slide_menu_btn {
	display: inline-flex;
	padding: 0;
	/* overflow: hidden; */
	font-size: 0;
	margin: 0;
}
.btn.autorotate svg .on {
    opacity: 0;
}

.btn.autorotate.enabled svg .on {
    opacity: 0.8;
    fill: #ffffff;
}

@media (pointer: fine) {
    .btn.autorotate.enabled:hover svg .on {
        opacity: 1;
        fill: #ffffff;
    }
}

.btn.autorotate.enabled svg .off {
    opacity: 0;
}

.btn.fullscreen svg .on {
    opacity: 0;
}

.btn.fullscreen.enabled svg .on {
    opacity: 0.8;
    fill: #ffffff;
}

@media (pointer: fine) {
    .btn.fullscreen.enabled:hover svg .on {
        opacity: 1;
        fill: #ffffff;
    }
}

.btn.fullscreen.enabled svg .off {
    opacity: 0;
}


/* #ui_group_title_m is mobile */

#ui_group_title_m {
    position: absolute;
    left: 10px;
    top: 10px;
    right: 80px;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    display: none;
}

#ui_area_rb #ui_group_title {
    position: absolute;
    right: 160px;
    bottom: 38px;
    width: auto;
    line-height: 20px;
    height: 20px;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 1px 1px 5px #00000098;
}

#ui_area_rb #ui_counter_stage {
    position: absolute;
    right: 160px;
    bottom: 10px;
    width: auto;
    line-height: 26px;
    height: 26px;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    color: #FFFFFF;
}

#ui_area_rb #ui_dots_stage {
    position: absolute;
    right: 160px;
    bottom: 10px;
    width: auto;
    height: 26px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

#ui_area_rb #ui_counter_stage.hidden,
#ui_area_rb #ui_dots_stage.hidden {
    opacity: 0;
    pointer-events: none;
}


#ui_dots_stage .dot {
    display: flex;
    cursor: pointer;
}

#ui_dots_stage .dot svg {
    pointer-events: none;
}

#ui_dots_stage .dot .dot_ring {
    fill: #114d97;
    opacity: 0.8;
}

#ui_dots_stage .dot .dot_stroke {
    fill: #ffffff;
}

#ui_dots_stage .dot .dot_hover {
    transition: fill-opacity 0.3s, transform 0.2s;
    fill: #ffffff;
    fill-opacity: 0;
    transform-origin: center;
    transform: scale(0);
}

#ui_dots_stage .dot.active .dot_hover {
    fill-opacity: 1;
    transform: scale(1);
}

@media (pointer: fine) {
    #ui_dots_stage .dot:hover .dot_hover {
        fill-opacity: 1;
        transform: scale(1);
    }
}

#ui_dots_stage .dot .dot_check {
    transition: fill 0.3s, transform 0.2s;
    fill: #ffffff;
    stroke: #114d97 transform-origin: center;
    transform: scale(0);
}

#ui_dots_stage .dot.visited .dot_check {
    transform: scale(1);
}

#ui_dots_stage .dot.active .dot_check {
    fill: #2e2e2e;
    stroke: #ffffff;
}

@media (pointer: fine) {
    #ui_dots_stage .dot:hover .dot_check {
        fill: #2e2e2e;
        stroke: #ffffff;
    }
}

@media (max-width: 500px) {

    #ui_area_rt {
        display: none;
    }

    #ui_area_rb #ui_dots_stage {
        right: 10px;
        bottom: 100px;
        height: calc(100vh - 170px);
        flex-direction: column;
        justify-content: flex-end;
    }

    #ui_area_rb #ui_group_title {
        display: none;
    }

    #ui_group_title_m {
        display: block;
    }
}







/* #ui_stage #ui_area_rb {
    position: absolute;
    right: 0px; bottom: 0px; width: 100%;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1;
}

*/
#ui_stage #ui_description_stage {
    position: absolute;
    display: flex;
    flex-direction: column;
    right: 8px;
    bottom: 60px;
    width: 40vw;
    min-width: 250px;
    max-width: 500px;
    max-height: 30vh;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 5px;
    transition: background-color 0.3s, padding 0.3s;
    padding: 0;
    box-sizing: border-box;
}

#ui_stage #ui_description_stage .scrollarea>.scrollarea-track-v,
#ui_stage #ui_description_stage .scrollarea>.scrollarea-track-h {
    background: rgba(255, 255, 255, 0.2);
}

#ui_stage #ui_description_stage .scrollarea>.scrollarea-track-v>.scrollarea-bar-v,
#ui_stage #ui_description_stage .scrollarea>.scrollarea-track-h>.scrollarea-bar-h {
    background: rgba(255, 255, 255, 1);
}

@media (max-width: 500px) {
    #ui_stage #ui_description_stage {
        width: calc(100vw - 20px);
        min-width: auto;
        max-width: auto;
    }
}

#ui_stage #ui_description_stage::before {
    content: ' ';
    position: absolute;
    right: 6px;
    top: 100%;
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top: 8px solid rgba(255, 255, 255, 0.9);
    /* triangle */
    transform-origin: top;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}

#ui_stage #ui_description_stage.open {
    background-color: rgba(255, 255, 255, 0.9);
    /*background colour*/
    padding: 0px 0px 10px 15px;
}

#ui_stage #ui_description_stage.open::before {
    opacity: 1;
    transform: scale(1);

}

#ui_stage #ui_description_stage #ui_description_title {
    position: relative;
    top: 6px;
    /* added to align with the title text */
    width: 100%;
    transition: width 0.5s, color 0.3s;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: right;
    white-space: nowrap;
}

@media (max-width: 500px) {
    #ui_stage #ui_description_stage #ui_description_title {
        font-size: 1.125rem;
        /* mobile title  */
    }
}


#ui_stage #ui_description_stage.open #ui_description_title {
    width: 0;
    color: #000000;
}

#ui_stage #ui_description_stage #ui_description_title {
    width: auto !important;
    white-space: unset !important;
}

#ui_stage #ui_description_stage.open #ui_description_title {
    text-align: left;
}

#ui_stage #ui_description_stage #ui_description_text {
    position: relative;
    height: 0px;
    margin-top: 0;
    transition: height 0.4s, margin-top 0.4s;
}

#ui_stage #ui_description_stage.open #ui_description_text {
    margin-top: 10px;
}

#ui_stage #ui_description_stage.open #ui_description_text>div:first-child {
    overflow: auto;
    max-height: 100%;
}

#ui_stage #ui_description_stage.open #ui_description_text>div:first-child>div {
    font-family: Open Sans, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #000000;
    padding: 0 10px 0 0;
}

#ui_stage #ui_description_stage.open #ui_description_text>div:first-child>div p:first-child {
    margin-top: 0;
}

#ui_stage #ui_description_stage.open #ui_description_text>div:first-child>div p:last-child {
    margin-bottom: 0;
}

/* AUDIO 

#ui_stage #ui_description_stage #ui_audio_timeline {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 5px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}

#ui_stage #ui_description_stage.open #ui_audio_timeline.visible {
    opacity: 1;
}

#ui_stage #ui_audio_timeline > div {
    position: absolute;
    left: 0; top: 0; width: 0%; height: 5px;
    background: rgb(31,100,208);
    transition: width 0.3s;
}

*/

/* dots */

#ui_stage #ui_dot_title {
    position: absolute;
    left: 0px;
    bottom: 45px;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    transition: opacity 0.2s, left 0.3s;
    padding: 10px 15px;
    z-index: 500;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 0.813rem;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
}

#ui_stage #ui_dot_title::before {
    content: ' ';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top: 8px solid rgba(0, 0, 0, 0.7);
}

#ui_stage #ui_dot_title.visible {
    opacity: 1;
}




.btn.guide_enter::before,
.btn.guide_exit::before {
    display: block;
    position: absolute;
    right: 50px;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    color: #FFFFFF;
    white-space: nowrap;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
    height: 40px;
    line-height: 40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

@media (pointer: fine) {

    .btn.guide_enter:hover:before,
    .btn.guide_exit:hover:before {
        opacity: 1;
    }
}

.btn.guide_enter::before {
    content: "Enter guided tour";
}

.btn.guide_exit::before {
    content: "Exit guided tour";
}

/* menu */

.slide_menu {
    background-color: rgba(0, 0, 0, 0.0);
}

.slide_menu .stage>div:first-child {
    padding: 0 14px;
}

.slide_menu .stage>div:first-child>.item {
    margin-bottom: 2px;
}

.slide_menu .stage>div:first-child>.item>.title {
    padding: 5px 0 5px 0px;
    background-color: rgba(0, 0, 50, 0.0);
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 1rem;
    text-align: center;
    color: #fff;
}

@media (pointer: fine) {
    .slide_menu .stage>div:first-child>.item>.title:hover {
        background-color: rgba(53, 53, 53, 0.5);
        color: white;
    }
}

.slide_menu .stage>div:first-child>.item.active>.title {
    background-color: rgba(98, 98, 98, 0.8);
    color: white;
}

@media (pointer: fine) {
    .slide_menu .stage>div:first-child>.item.active>.title:hover {
        background-color: rgba(97, 97, 97, 0.8);
        color: white;
    }
}

.slide_menu .stage>div:first-child>.item.group>.title {
    padding: 6px 0 6px 10px;
    background-color: rgba(255, 255, 255, 0.0);
    font-weight: normal;
    color: white;
}

@media (pointer: fine) {
    .slide_menu .stage>div:first-child>.item.group>.title:hover {
        background-color: rgba(181, 152, 90, 0.5);
        color: white;
    }
}

.slide_menu .stage>div:first-child>.item.group.active>.title {
    background-color: rgba(181, 152, 90, 0.5);
    color: black;
}

@media (pointer: fine) {
    .slide_menu .stage>div:first-child>.item.group.active>.title:hover {
        background-color: rgba(181, 152, 90, 0.5);
        color: black;
    }
}

.slide_menu .stage>div:first-child>.item.group>.title:after {
    /* content: url(../images/arrow_white.svg); */
    right: 10px;
}

.slide_menu .stage>div:first-child>.item.group>.title:hover:after,
.slide_menu .stage>div:first-child>.item.group.active>.title:after {
    /* content: url(../images/arrow_black.svg); */
}

.slide_menu .stage>div:first-child>.item.back>.title {
    padding-left: 36px;
    color: orange;
}

@media (pointer: fine) {
    .slide_menu .stage>div:first-child>.item.back>.title:hover {
        background-color: rgba(50, 0, 0, 0.9);
        color: orange;
    }
}

.slide_menu .stage>div:first-child>.item.back>.title:after {
    /* content: url(../images/arrow_white.svg); */
}

@media (pointer: fine) {
    .slide_menu .stage>div:first-child>.item.back:hover>.title:after {
        /* content: url(../images/arrow_black.svg); */
    }
}

.slide_menu .stage.scrollarea>.scrollarea-track-v,
.slide_menu .stage.scrollarea>.scrollarea-track-h {
    background-color: rgba(255, 255, 255, 0.2);
}

.slide_menu .stage.scrollarea>.scrollarea-track-v>.scrollarea-bar-v,
.slide_menu .stage.scrollarea>.scrollarea-track-h>.scrollarea-bar-h {
    background-color: rgba(41, 41, 41, 0.9);
}

.caption_item {
    box-sizing: border-box;
    pointer-events: none;
    border-radius: 5px;
    border: 1px solid rgba(181, 152, 90, 0.5);
}

.itemcolor_group {
    background-color: rgba(181, 152, 90, 0.7);
}



@media (max-width: 500px) {
    #ui_stage #ui_area_panel #btn_open {
        left: auto;
        right: 100%;
    }

    #ui_stage #ui_area_panel.open #btn_open {
        left: auto;
        right: 0;
    }

    #ui_stage #ui_area_panel.open #ui_area_panel_btns:before {
        content: "";
        position: absolute;
        width: calc(100% + 40px);
        height: calc(100% + 22px);
        background-color: #000204;
        left: -25px;
        top: 0px;
        z-index: -10;
    }

    .slide_menu .stage>div:first-child>.item>.title {
        /* text-align: center; */
    }

    #ui_colorbtn_stage {
        /* Color Buttons Hidden on mobile */
        /* display: none; */
        top: 35px;
        left: 10px;
        right: auto;
        flex-direction: column;
    }

    .color_btn.open {
        margin: 0;
    }

    .color_btn.apply {
        display: none;
    }

    #vtour.menu_open .color_btn.open {
        display: none;
    }
}



/* to add help button to the UI 
.btn.help {
    right: 60px;
    bottom: 10px
}

#ui_stage #ui_prevnext_stage {
    right: 110px;
    bottom: 10px;
}

@media (min-width: 500px) {
    #ui_area_rb #ui_group_title {
        right: 210px;
        bottom: 38px;
    }

    #ui_area_rb #ui_dots_stage {
        right: 210px;
        bottom: 10px;
    }
}

*/

/* to remove help button to the UI */

#ui_stage #ui_prevnext_stage {
    right: 60px;
    bottom: 10px;
}

@media (min-width: 500px) {
    #ui_area_rb #ui_group_title {
        right: 160px;
        bottom: 38px;
    }

    #ui_area_rb #ui_dots_stage {
        right: 160px;
        bottom: 10px;
    }
}



.hs_content h4 {
    margin: 0 0 6px 0;
    padding: 0;
    font-size: 1.625rem;
}

.hs_content {
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
}

.hs_smash_ring_pulsing {
    animation: hs_smash_ring_pulsing 2s infinite;
}

@keyframes hs_smash_ring_pulsing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0
    }
}





/* NEW STYLE FOR FOR MENU */
#ui_dots_stage .dot {
    bottom: 0;
    transform: scale(1);
    position: relative;
}

#ui_dots_stage .dot.hide {
    bottom: -40px;
    opacity2: 0.60;
    transform2: scale(0.5);
    transform2: scale(0);
    transform: scale(1) rotate(0deg);
}

#ui_dots_stage .dot.before_show {
    opacity: 0;
    transform: scale(0.0);
    transform: scale(0.0) rotate(0deg);
}

path.dot_ring,
path.dot_stroke {
    display: none;
}

#ui_dots_stage .dot {
    width: 18px;
    height: 18px;
    transform: scale(1) rotate(45deg);
    border: 1px solid #002554;
    box-shadow: inset 1px 1px 0px #ffffff, inset -1px -1px 0px #ffffff, 0px 0px 9px rgba(0, 0, 0, 0.15);
}

#ui_dots_stage .dot svg {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    transform: scale(1);
    border: 1px solid transparent;
    position: relative;
    top: 2px;
    left: 2px;
    overflow: hidden;
}

#ui_dots_stage .dot .dot_check {
    transform: scale(0) rotate(-45deg) !important;
    transform-origin: center !important;
    fill: #114d97;
}

#ui_dots_stage .dot.visited .dot_check {
    transform: scale(1.7) rotate(-45deg) !important;
    fill: #ffffff;
    stroke: unset;
}

#ui_dots_stage .dot.active .dot_check {
    transform: scale(1.7) rotate(-45deg) !important;
    fill: #002554;
    stroke: #ffffff;
}

#ui_dots_stage .dot.visited svg {
    background-color: #ffffff;
    background-color: transparent;
}

#ui_dots_stage .dot.active svg,
#ui_dots_stage .dot:hover svg {
    background-color: #ffffff;
}

.btn svg .icon {
    fill: #114d97;
}

#logo {
    display: none;
}

#ui_area_rb #ui_group_title {
    /* display: none; */
}

@media (min-width: 1085px) {
    #ui_area_rb #ui_dots_stage {
        bottom: 17px;
        bottom: 10px;
    }
}

#ui_area_panel_btns #ui_area_panel_btns_hint.slide_menu_btn_first_item::before {
    left: 27px;
}


@media (min-width: 1085px) {
    #ui_stage #ui_area_panel {
        /*
        left: 0px !important;
        pointer-events: none;
        */
    }

    #ui_stage #ui_area_panel #btn_open {
        display: none;
    }

    #ui_stage #ui_area_panel #list_menu {
        display: none;
    }

    #ui_stage #ui_area_panel::after {
        display: none;
    }

    .btn.slide_menu_btn {
        pointer-events: all;
    }

    div#ui_area_panel_btns {
        border-top: 0px !important;
    }

    #ui_stage #ui_area_panel::before {
        display: none;
    }

    a#top_left_menu_logo {
        position: relative;
        left: 13px;
        top: 0; /* Changed from 7px to 0 */
    }

    #top_left_menu_logo img {
        width: auto;
        height: 100px;
    }
}

/* START BUTTON NEW STYLE */
#menu_button_container {
    display: block;
    position: absolute;
    box-sizing: border-box;
    top: 33px;
    right: 10px;
}

.cmp-button {
    position: relative;
    text-align: center;
    background-color: transparent;
    app-region: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    color: #fafafa;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    padding: 13px 15px 10px 15px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background: #002554; /* Dark blue background */
    border: .5px solid rgba(250, 250, 250, 0.0);

    font-size: 0.938rem;
    cursor: pointer;
}

.cmp-button:hover,
li:hover .cmp-button,
.cmp-button.active,
li.active .cmp-button {
    border: .5px solid #fafafa;
    /* background: #114d97; */
}

.cmp-button>span:before {
    left: 0;
    opacity: 0;
}

.cmp-button>span:after {
    right: 0;
    opacity: 0;
}

.cmp-button:hover>span:before,
li:hover .cmp-button>span:before,
.cmp-button.active>span:before,
li.active .cmp-button>span:before {
    left: calc(50% - 12px);
    opacity: 1;
}

.cmp-button:hover>span:after,
li:hover .cmp-button>span:after,
.cmp-button.active>span:after,
li.active .cmp-button>span:after {
    right: calc(50% - 12px);
    opacity: 1;
}

@media (max-width: 1085px) {
    .cmp-button {
        display: flex;
        margin-bottom: 10px;
        font-size: 0.813rem;
        padding: 8px 10px 5px 10px;
    }

    #menu_button_container {
        top: 10px;
        right: 10px;
        text-align: right;
        direction: rtl;

        display: none;
    }

    #menu_button_container * {
        direction: ltr;
    }
}

/* END BUTTON NEW STYLE */

/* START DESKTOP MENU */
nav.navbar * {
    direction: ltr;
    display: none;
}

header {
    position: absolute;
    top: 10px; /* Changed from 24px to 10px */
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 9;
    /* background-color: rgba(0,0,0,0.2); */
    min-height: 50px;
}


header {
    display: block;
    z-index: 9;
    position: absolute;
    pointer-events: none;
}

@media (min-width: 1085px) {}

@media (max-width: 1085px) {
    header {
        display: none !important;
    }
}

.navbar-nav.mr-auto>li {
    text-transform: capitalize;
    margin-right: 10px;
    font-size: 0.938rem;
    position: relative;

    display: flex;
    justify-content: center;
}

.navbar-nav a.nav-link svg {
    width: 26px;
    margin-right: 15px;
    position: relative;
    top: -1px;
}

.navbar-nav .nav-link {
    cursor: pointer;
}

.navbar-nav .sr-only {
    display: none;
}

.navbar-nav .active .sr-only {
    display: inline-block;
}

.navbar-nav .dropdown-menu {
    left: auto;
}

.navbar-nav .sub-menu {
    text-transform: initial;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgba(43, 59, 76, 0) !important;
    backdrop-filter: blur(10px);
    border-radius: 0;
    text-align: center;
    padding: 1px;
}

@media (min-width: 1085px) {
    .navbar-nav .sub-menu {
        background-color: #ffffff !important;
    }

    .navbar-expand-md .navbar-nav>li:hover>ul,
    .navbar-expand-md .navbar-nav>li:focus>ul {
        display: block;
    }

    .navbar-expand-md .navbar-nav>li>ul,
    .navbar-expand-md .navbar-nav>li>ul {
        min-width: 240px;
        background-color: rgba(255, 255, 255, 0.85);
    }

    .dropdown-menu .submenu {
        background-color: rgba(255, 255, 255, 0.85) !important;
    }

    .navbar-expand-md .navbar-nav>li:hover ul,
    .navbar-expand-md .navbar-nav>li::focus ul {
        min-width: 240px;
        padding: 0px;
        left: -12px;
        border-radius: 0;
    }

        /* move the menu to right and keep the logo in left */
    .navbar-expand-md .navbar-collapse {
        flex-direction: row-reverse;
    }
    ul#top_menu > li:first-child {
        position: absolute;
        left: 0;
    }

    .dropdown-menu>li {
        border-bottom: 1px solid #d0d0d0;
        padding-left: 10px;
        padding: 5px 5px 5px 10px;
    }

    .dropdown-menu>li:hover {
        background-color: #f2f2f2;
    }

    .dropdown-menu>li:last-child {
        border-bottom: 0px;
    }

    nav.navbar ul#top_menu>li>ul {
        margin-top: -1px;
    }

    .dropdown-menu {
        top: 55px !important;
    }

    .navbar-expand-md .navbar-nav>.nav-item>.nav-link {
        /* border-bottom: 17px solid transparent; */
        text-transform: none;
        color: #ffffff;
    }

    .navbar-nav {
        margin-left: 0px;
        pointer-events: all;
    }

    nav.navbar {
        box-sizing: border-box;
    }

    li.nav-item.apply_now_btn {
        position: absolute;
        right: 0;
        background-color: #94a3c0;
        margin: 0;
        top: 0;
        border-left: 1px solid #ffffff;
        height: 100%;
        line-height: 38px;
        width: 166px;
        text-align: center;
        font-size: 0.938rem;
    }

    li.nav-item.apply_now_btn a {
        color: #000000 !important;
        border: 0px solid transparent;
    }
}

.navbar-expand-md .navbar-nav>li:hover>ul a,
.navbar-expand-md .navbar-nav>li:focus>ul a,
.navbar-expand-md .navbar-nav>li>ul a {
    font-weight: normal !important;
    color: black;
    text-transform: none;
    border: unset;
}

.navbar-expand-md .navbar-nav>li:hover>ul:before,
.navbar-expand-md .navbar-nav>li:focus>ul:before {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-top: 0px;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-bottom: 9px solid #ffffff;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    margin: auto;
}

.navbar-expand-md .navbar-nav>li:hover>ul:after,
.navbar-expand-md .navbar-nav>li:focus>ul:after {
    content: "";
    width: 100%;
    height: 15px;
    display: block;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    margin: auto;
    /* background-color: red; */
    pointer-events: all;
}

ul.submenu.sub-menu li.active {
    background-color: #f2f2f2;
    background-color: #cfcfcf;
}

/* END DESKTOP MENU */


/* START MOBILE MENU  */

.accordion-item {
    background-color: transparent;
    border: 0px;
    margin-bottom: 0px;
}

.accordion-body button {
    width: 100%;
    border: 0px solid transparent;
    margin: 0 0 5px 0;
}

.accordion-button {
    text-decoration: none;
    color: #ffffff !important;
    background-color: transparent !important;
    box-shadow: unset !important;
    border-radius: 2px !important;
    /* Changed this line */
    /* min-height: 60px; */
    width: calc(100% - 10px) !important;
    margin: auto;
    border: 1px solid white !important;
    font-family: inherit;
    text-align: center !important;
}

.accordion-button::after {
    display: none;
    --bs-accordion-btn-icon-width: 0.75rem;
}

.accordion-button span.title {
    margin: auto;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.accordion-body {
    padding: 0 20px;
}

.accordion-body button {
    width: 100%;
    border: 0px solid transparent;
    margin: 0 0 0px 0;
    background-color: white;
    color: #000000;
    border-bottom: 1px solid #ffffff;
    min-height: 60px;
    /* width: calc(100% - 20px); */
    margin: auto;
}

.accordion-body button.active {
    background-color: #e0e0e0;
}

.accordion-body button:last-of-type {
    border-bottom: 0px solid #ffffff;

}

#ui_stage #ui_area_panel #list_menu {
    overflow: auto;
}

#list_menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
    background-color: transparent;
    cursor: pointer;
}

#list_menu::-webkit-scrollbar {
    display: block;
    height: auto;
    width: 4px !important;
    background-color: transparent;
    cursor: pointer;
}

#list_menu::-webkit-scrollbar-thumb {
    background-color: rgba(42, 58, 75, 0.6);
    cursor: pointer;
    transition: all 300ms ease-in-out;
    border-radius: 900px;
}

#list_menu::-webkit-scrollbar-thumb:hover {
    background-color: rgba(42, 58, 75, 0.9);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent;
}

div#ui_dots_stage * {
    box-sizing: content-box;
}

.btn {
    --bs-btn-padding-x: unset;
}

/* END MOBILE MENU  */


#krpano_vtour,
#krpano_vtour *,
#krpano_vtour ::after,
#krpano_vtour ::before {
    box-sizing: content-box;
}

.lang_en #ui_stage #ui_area_panel::before {
    background-image: url(../skin/images/logo_white.png);
}

.lang_sc #ui_stage #ui_area_panel::before {
    background-image: url(../skin/images/logo_white.png);
}

.lang_tc #ui_stage #ui_area_panel::before {
    background-image: url(../skin/images/logo_tc_white.png);
}

.lang_id #ui_stage #ui_area_panel::before {
    background-image: url(../skin/images/logo_id_white.png);
}

.lang_kr #ui_stage #ui_area_panel::before {
    background-image: url(../skin/images/logo_kr_white.png);
}

.lang_jp #ui_stage #ui_area_panel::before {
    background-image: url(../skin/images/logo_jp_white.png);
}
#krpano_vtour .htmllightbox-inner, #krpano_vtour .htmllightbox-inner * {
	box-sizing: border-box;
}

/* Move the menu to the left by 100px and keep the logo in the left */

@media (min-width: 1085px) {
    /* Move the menu to the left by 100px and keep the logo in the left */
    .navbar-expand-md .navbar-collapse {
        flex-direction: row-reverse;
        margin-right: 60px; /* Move the navbar to the left by 100px */
    }
    ul#top_menu > li:first-child {
        position: absolute;
        left: 0;
    }
}



#ui_stage #ui_dot_title {
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust to perfectly center */
}

#ui_stage #ui_dot_title {
    position: absolute;
    transform: translateX(-50%); /* Adjust to perfectly center */
    bottom: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    transition: opacity 0.2s, left 0.3s;
    padding: 10px 15px;
    z-index: 500;
    font-family: Proxima Nova, Arial, Helvetica, sans-serif;
    font-size: 0.813rem;
    color: #ffffff;
    opacity: 0;
    pointer-events: none;
}

#ui_stage #ui_dot_title::before {
    content: ' ';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 6px;
    border-right-width: 6px;
    border-top: 8px solid rgba(0, 0, 0, 0.7);
}