/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #FFFFFF;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #F1F1F1;;
}


body {
    margin: 24px;
}

.iconInvert{
    filter: invert(1);
}

.generalButton {
    padding: 12px;
    box-sizing: border-box;
    user-select: none;
    cursor: pointer;
    transition: all ease-out 150ms;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
}

.generalButton:hover {
    transition: all ease-out 200ms;
}

.generalButton.openned {
    color: #637A77;
    transition: all ease-out 200ms;
}

.generalButton.disabled{
    cursor: default;
    pointer-events: none;
    user-select: none;
    opacity: 0.5;
}


.iconBtn.active>img:first-child{
    display: none;
}
.iconBtn:not(.active)>img:last-child{
    display: none;
}
#endVisitBtn>img{
    transform: translateX(4px);
}
#endVisitBtn:hover>img:first-child{
    display: none;
}
#endVisitBtn>img:last-child{
    display: none;
}
#endVisitBtn:hover>img:last-child{
    display: block;
}

#shareBtn>img{
    transform: translate(0, -2px);
}
#shareBtn:hover>img:first-child{
    display: none;
}
#shareBtn>img:last-child{
    display: none;
}
#shareBtn:hover>img:last-child{
    display: block;
}

#settingsBtn>img{
    transition: all 200ms ease-out;
}
#settingsBtn.openned>img,
#settingsBtn:hover>img{
    transform: rotate(45deg);
}

#settingsBtn.tooltip .tooltip-top{
    width: 100px;
    margin-left: -50px;
    cursor: default;

    bottom: 160%; /* CHANGES LOG V4 2024/09/02 Fix style language and quality tooltip */
}
#languageManager.tooltip #languageSelector input[type="radio"]:checked + label,
#settingsBtn>span>div.selected{
    cursor: default;
    user-select: none;
    pointer-events: none;
    /* font-family: 'Bentley_SemiBold'; */
}
#languageManager.tooltip #languageSelector input[type="radio"]:not(:checked) + label,
#settingsBtn>span>div:not(.selected){
    font-family: 'Bentley_Light';
    opacity: 0.9;
    cursor: pointer;
}
#languageManager.tooltip #languageSelector input[type="radio"]:not(:checked) + label:hover,
#settingsBtn>span>div:not(.selected):hover{
    opacity: 1;
}
#languageManager.tooltip::before,
#settingsBtn::before{
    content: "";
    position: absolute;
    top: -12px;
    color: white;
    user-select: none;
    line-height: 20px;
    min-width: 44px;
    min-height: 25px;

    /* CHANGES LOG V4 2024/09/02 Fix style language and quality tooltip */
    top: -30px;
    min-width: 48px;
    min-height: 40px;
    display: flex;
    left: 0px;
}
#languageManager:not(:hover).tooltip::before,
#settingsBtn:not(:hover)::before{
    display: none;
}
#settingsBtn:hover #tooltipQuality{
    display: none;
}
#settingsBtn.tooltip #tooltipDisabled.tooltip-top{
    width: 200px;
    margin-left: -100px;
}

#settingsBtn.disabled{
    pointer-events: all;
}
#settingsBtn.disabled * {
    pointer-events: none;
}
#settingsBtn #tooltipDisabled{
    display: none;
}
#settingsBtn.disabled:hover #tooltipDisabled{
    display: block;
}
#settingsBtn.disabled:hover #tooltipOptions{
    display: none;
}

#resetBtn>img{
    transition: all 200ms ease-out;
}
#resetBtn:hover>img{
    transform: rotate(45deg);
}

.generalButton>*:last-child {
    margin-left: auto;
    transition: transform 150ms ease-in-out;
    display: flex;
}
.generalButton.iconBtn>*:last-child{
    margin-left: unset;
}

.generalButton.openned>*:last-child {
    transform: rotate(180deg);
}

#mainFlex {
    position: fixed;
    width: calc(100% - 48px);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

/* CHANGES LOG V5 Commented */
/*#mainLeftColumn {
    display: flex;
    width: 24vw;

    flex-direction: column;
    flex-wrap: nowrap;
    margin-right: 24px;

    justify-content: space-between;
}*/

#mainRightColumn {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 24vw - 48px - 24px);
}

#mainTopRow {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-grow: 0;
    flex-shrink: 0;

    margin-bottom: 31px;

    position: relative;

    width: calc(100vw - 24vw - 48px - 24px);
    height: calc((100vw - 24vw - 48px - 24px) / 16 * 9);
    max-height: 80vh;
    max-width: calc(80vh * 16 / 9);
    margin-left: auto;
    margin-right: auto;
}

#krpanoDiv {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;

    width: 100%;
    height: 100%;
}

.bottomFlex {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
    height: calc(100vh - ((100vw - 24vw - 48px - 24px ) / 16 * 9) - 48px - 16px);

    margin-left: 22px;
    margin-right: 22px;

    min-height: 80px;
}
.bottomFlex>div{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.bottomFlex .iconBtn.animatedBtn:hover>img{
    animation: animatedBtn 0.7s ease-in-out 0s infinite alternate;
}
@keyframes animatedBtn {
    from {transform: scale(1);}
    to {transform: scale(1.3);}
  }


#bentleyLogo {
    width: 80px;
}

/* CHANGES LOG V5 Commented */
/* #visitInfo{
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;

    font-family: 'Bentley_Light';
    font-size: 12px;
    line-height: 1.3em;

    color: #040404;

    border-bottom: solid 1px #637A77;
}
#visitDate{
    font-size: 24px;
    line-height: 50px;
}
#visitDate>span{
    margin-right: 5px;
}

body.visitWaiting #participantsBtn{
    opacity: 0.5;
    pointer-events: none;
}
#participantsBtn {
    width: 100%;
    margin-top: 10px;

    font-family: 'Bentley_Light';
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0em;

    border: none;
    border-bottom: solid 1px #637A77;
    border-radius: 0;
    padding: 0;
}


#participantsCount {
    margin-left: 10px;
    margin-right: 10px;
}

#participantsContainer {
    margin-top: 0px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition: all 150ms ease;

    user-select: none;
}

#participantsContainer.openned {
    margin-top: 8px;
    max-height: calc(100vh - 260px);
    opacity: 1;
    overflow: visible;
}

.participant {
    padding: 6px 12px;

    font-family: 'Bentley';
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;

    background-color: var(--labelColor);

    display: block;

    color: #040404;
}

#labelLeader:empty{
    display: none;
}

#hostNameContainer {
    float: left;
    margin-right: 6px;
    margin-bottom: 6px;
}

#hostName {
    --labelColor: #CBCBCB;

    float: left;
}

#guestsContainter>* {
    float: left;
    margin-right: 6px;
    margin-bottom: 6px;
}
#guestsContainter>*:last-child{
    margin-bottom: 25px;
} */

/* CHANGES LOG 12/09/2023 HIDE LANGAUGE SETUP */
body.main {
    opacity: 0;
    animation: fadeInBody 0.8s ease-out 0.4s forwards;
}
@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
  }
/* CHANGES LOG 12/09/2023 HIDE LANGAUGE SETUP END */
body.main #sceneDetailsBtn{
    display: none !important;
}
#sceneDetailsBtn {
    width: 100%;
    margin-top: 16px;

    font-family: 'Bentley';
    font-style: normal;
    /* font-size: 12px; */
    font-size: 16px; /* CHANGES LOG V5 */
    line-height: 16px;
    letter-spacing: 0.16em;
}
#sceneDetailsBtn>*:first-child {
    margin-left: 5px;
    margin-right: 15px;
}

body.main #sceneDetailsContainer{
    display: none !important;
}
#sceneDetailsContainer{
    margin-top: 0px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition: all 150ms ease;

    user-select: none;
}
#sceneDetailsContainer.openned{
    /* margin-top: 24px; */ /* CHANGES LOG V5 Commented */
    /* max-height: calc(100vh - 260px); */ /* CHANGES LOG V5 Commented */
    opacity: 1;
    overflow: visible;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

#sceneDetailsContainer>*:first-child{
    font-family: 'Bentley';
    font-style: normal;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #4D4D4D;
}
#sceneDetailsContainer.map>*:first-child{
    display: none;
}
#sceneDetailsContainer>#currentSceneName{
    font-family: 'Bentley_Light';
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0em;
    text-transform: lowercase;

    color: #040404;

    margin-top: 8px;

}

@media (max-width: 1024px) {  /* MODIF EC 1-7-2024 , RESTYLING OF THE SIZE OF THE SCENETITLE and SCENEDESCRIPTION TO ACCOMMODATE IT ON IPAD */

    #sceneDetailsContainer>#currentSceneName{
        font-size: 2vw;
    }


    /* CHANGES LOG V5 Commented */
    /* #sceneDetailsContainer>#currentSceneDescription {
        font-size: 1.2vw!important;
    } */

}

#sceneDetailsContainer>#currentSceneName::first-letter{
    text-transform: capitalize;
}
#sceneDetailsContainer>#currentSceneDescription{
    font-family: 'Bentley_Light';
    font-size: 16px;
    line-height: 24px;

    color: #4D4D4D;

    /* margin-top: 22px; */ /* CHANGES LOG V5 Commented */
}


#krpanoDiv>.topFlex{
    width: 100%;
    height: inherit;

    position: relative;
}
#krpanoDiv #pano{
    width: 100%;
    height: inherit;

    border: 2px solid transparent;
    box-sizing: border-box;

    border: none;
}
#krpanoDiv #pano.map {
    border: solid #C1CDC9 2px;
    background-color: #C1CDC9 !important;
}
#krpanoDiv #pano.map #krpanoSWFObject{
    background-color: #C1CDC9 !important;
}

/* CHANGES LOG V5 Commented */
/* body.visitWaiting #pointBtn{
    opacity: 0.5;
    pointer-events: none;
}
body.visitWaiting #clarPointBtn{
    opacity: 0.5;
    pointer-events: none;
} */


.bottomFlex>div>div{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;

    font-family: 'Bentley';
    font-style: normal;
    font-weight: 400;

    font-size: 9px;
    line-height: 11px;
    text-align: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #040404;
}
/* CHANGES LOG 06/09/2023 TEXT SIZE */
html.ja .bottomFlex>div>div,
html.ko .bottomFlex>div>div,
html.zh .bottomFlex>div>div{
    font-size: 10px;
    line-height: 12px;
}
/* CHANGES LOG 06/09/2023 TEXT SIZE END */
.bottomFlex>div>div>div:first-child{
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bottomFlex>div>div>div:last-child{
    margin-top: 10px;
    align-items: flex-start;
}
.bottomFlex>div:first-child>div{
    margin-right: 28px;
}
.bottomFlex>div:last-child>div{
    margin-left: 28px;
}


/* CHANGES LOG V5 Commented */
/* #endVisitBtn>img{
    transform: translateX(4px);
}
#endVisitBtn:hover>img:first-child{
    display: none;
}
#endVisitBtn>img:last-child{
    display: none;
}
#endVisitBtn:hover>img:last-child{
    display: block;
} */

#aboutPopup{
    display: none;
}
#aboutPopup.openned{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;

    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;

    background-blend-mode: hard-light;
    background: linear-gradient(#061A1B, #061A1B), url(/imgs/backgroundAbout.png);
    background-position-x: center;
	background-position-y: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: hard-light;

    width: 100%;
    height: 100%;
}
#aboutPopup>#closeAbout,
#aboutPopup>#closeControls{
    position: absolute;
    right: 40px;
    top: 40px;

    cursor: pointer;
}

#aboutPopup #aboutCredits{
    width: 50vw;
    height: 20vw;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;

    justify-content: space-evenly;
}

#aboutPopup #aboutCredits>img:first-child{
    margin-top: 1vh;
    margin-bottom: 0;
}
#aboutPopup #aboutCredits>*:nth-child(4){
    margin: 1vh;
}
#aboutPopup #aboutCredits>div:not(.tourVersion){
    font-family: 'Bentley_Light';
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    letter-spacing: 0.16em;
    
    color: #FFFFFF;
}
#aboutPopup #aboutCredits>div.tourVersion{
    font-family: 'Bentley_Light';
    font-size: 10px;
   
    text-align: center;
    letter-spacing: 0.16em;

    color: #F7F7F7;

    margin-top: -2vh;
}

#aboutPopup #aboutBtm{
    width: 55vw;
    height: 20vw;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;

    justify-content: space-evenly;
}
#aboutPopup #aboutSocialIcons{
    width: 50%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;

    filter: brightness(0) invert(1);
}
#aboutPopup #aboutSeparatorLine{
    width: 100%;
    border: 1px solid rgb(255 255 255 / 50%);
}

#aboutPopup #aboutBtm>*:nth-child(2){
    font-family: 'Bentley';
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;

    color: #FFFFFF;
}
#aboutPopup #aboutBtm>*:nth-child(3){
    margin-top: 10px;
    color: white;
    text-align: center;
}
#aboutPopup #aboutBtm>*:nth-child(3)>a{
    font-family: 'Bentley';
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    text-decoration-line: none;
    text-transform: uppercase;
    
    color: #FFFFFF;
    margin: 0 6px;
}
#aboutPopup #aboutBtm>*:nth-child(4){
    margin-top: 30px;
    display: flex;

    font-family: 'Bentley';
    font-style: normal;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.16em;

    color: #FFFFFF;

    justify-content: center;
    width: 280px;
}

#aboutPopup #aboutBtm>*:nth-child(4)>div{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;

    cursor: pointer;
}

#aboutPopup #aboutBtm>*:nth-child(4)>div>img{
    margin-right: 10px;

    filter: invert(1);
}

@media (max-width:1200px) {
    #aboutPopup>#closeAbout,
    #aboutPopup>#closeControls {
        right: 20px;
        top: 20px;
    }
    #aboutPopup #aboutCredits>img:first-child{
        width: 100px;
    }
    #aboutPopup #aboutCredits>*:nth-child(4){
        width: 10px;
    }
    #aboutPopup #aboutCredits>div:not(.tourVersion){
        font-size: 30px;
    }
    #aboutPopup #aboutCredits>div.tourVersion{
        font-size: 10px;
    }
    
    #aboutPopup #aboutBtm>*:nth-child(5){
        margin-top: 5px;
    }
}


#krpanoExplain{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000aa;

    padding: 30px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}
#krpanoExplain>div:first-child>*:nth-child(1){
    font-family: 'Bentley';
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;

    color: #FFFFFF;
}
#krpanoExplain>div:first-child>*:nth-child(2){
    font-family: 'Bentley_Light';
    font-size: 56px;
    line-height: 64px;
    
    letter-spacing: 0;
    
    color: #FFFFFF;

    margin-top: 2vw;
}
#krpanoExplain>div:first-child>*:nth-child(3){
    font-family: 'Bentley';
    font-size: 16px;
    line-height: 16px;
    
    letter-spacing: 0.1em;
    
    color: #FFFFFF;

    margin-top: 2vw;

    padding: 16px 22px;
    border: 1px solid #FFFFFF;

    width: fit-content;
    cursor: pointer;

    pointer-events: all;
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#krpanoExplain.disabledStart>div:first-child>*:nth-child(3){
    opacity: 0.3;
    pointer-events: none;
}

#myModal.openned{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

#myModal .modal-content.welcomeModal {
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    padding: 32px;
    box-sizing: border-box;

    row-gap: 10px;
}
#myModal .modal-content.welcomeModal .primaryBtn{
    padding: 0 40px;
    height: 40px;

    font-family: 'Bentley';

    margin-top: 2vh;

    align-self: flex-end;
}
#myModal .modal-content.welcomeModal>.txt_welcomeModal{
    font-family: 'Bentley_Light';
    font-style: normal;
    font-size: 34px;
    line-height: 46px;
    
    color: #292929;
}
#myModal .modal-content.welcomeModal>.txt_metBentleyHost{
    font-family: 'Bentley_Light';
    font-style: normal;
    font-size: 14px;
    line-height: 19px;
    
    color: #000000;
}
#myModal .modal-content.welcomeModal>img{
    margin: 24px 0;
}
#myModal .modal-content.welcomeModal>.txt_exclusiveVRtour{
    font-family: 'Bentley';
    font-style: normal;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    
    color: #3E3E3E;

    margin-bottom: 25px;
}
#myModal .modal-content.welcomeModal>.txt_welcomeText{
    font-family: 'Bentley_Light';
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    
    color: #3E3E3E;

    margin-bottom: 40px;
}

#myModal .modal-content.modalExitPrompt{
    width: 620px;
    height: 307px;
    justify-content: space-evenly;
}
.modalExitPrompt .txt_exitTour{
    font-family: 'Bentley_Light';
    font-style: normal;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.16em;

    color: #292929;
}
.modalExitPrompt .txt_exitTourSureQtn{
    font-family: 'Bentley_SemiBold';
    font-style: normal;
    font-size: 14px;
    line-height: 19px;
    text-align: center;

    color: #000000;
}
.modal-content.modalExitPrompt .optionBtns{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}
.modal-content.modalExitPrompt .optionBtns>span{
    width: 40%;
}

#myModal .modal-content.modalZoomPrompt{
    width: 600px;
    align-items: flex-start;
    padding: 32px;
}
.modal-content.modalZoomPrompt .txt_connectZoom{
    font-family: 'Bentley_Light';
    font-size: 28px;
    line-height: 32px;
    
    color: #040404;
}
.modal-content.modalZoomPrompt .txt_zoomButtons{
    font-family: 'Bentley_Light';
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.01em;
    
    color: #040404;
}
.modal-content.modalZoomPrompt .zoomButtonsDiv{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    width: 110px;
    justify-content: space-between;
    margin: 1vh 0;
}
.modal-content.modalZoomPrompt .txt_cameraAndMicro{
    font-family: 'Bentley_Light';
    font-style: normal;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    
    color: #000000;
}
.modal-content.modalZoomPrompt>img{
    width: 340px;
    margin: 1vh 0;
}
.modal-content.modalZoomPrompt .styledBtn{
    min-width: 200px;
    margin-top: 1vh;
}


.guestpoint{
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: 500px !important;
    overflow: visible !important;
    box-shadow: #000000cc 0px 0px 48px !important;
}
/* .guestpoint[colorsprite="#335b4c"] {
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 40' style='enable-background:new 0 0 30 40;' xml:space='preserve' width='30px' height='40px'%3E%3Cstyle type='text/css'%3E .guestColor%7B fill: %23335b4c; %7D .st0%7Bfill:%23FFFFFF;%7D .st1%7Bfill:%23333333;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='guestColor' d='M15.7,0c-0.2,0-0.5,0-0.7,0c-0.2,0-0.5,0-0.8,0C6,0.3,0,6.8,0,14.3C0,24.3,15,40,15,40s15-15.7,15-25.7 C30,6.8,24,0.3,15.7,0z M15,23c-5,0-9-4-9-9c0-5,4-9,9-9s9,4,9,9C24,19,20,23,15,23z'/%3E%3Cpath class='st1' d='M15,5c-5,0-9,4-9,9c0,5,4,9,9,9s9-4,9-9C24,9,20,5,15,5z M18,16.3L17.3,17L15,14.7L12.7,17L12,16.3l2.3-2.3 L12,11.7l0.7-0.7l2.3,2.3l2.3-2.3l0.7,0.7L15.7,14L18,16.3z'/%3E%3Cpolygon class='st0' points='17.3,11 15,13.3 12.7,11 12,11.7 14.3,14 12,16.3 12.7,17 15,14.7 17.3,17 18,16.3 15.7,14 18,11.7'/%3E%3C/g%3E%3C/svg%3E%0A") !important;
} */















































/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    /*margin: 15% auto;*/ /* 15% from the top and centered */
    margin: 0;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    color: black;
}



/* CHANGES LOG V5 Commented */
/* #zoomPart{
    z-index: 1;
}
#zoomDiv {
    position: relative;
}

#meetingSDKElement {
    width: calc(20vw - 20px - 20px);
    position: absolute;
    bottom: 0;
    bottom: 16px;
}
.ipad #meetingSDKElement{
    bottom: 80px;
}
#meetingSDKElement>div:first-child{
    position: absolute;
    bottom: 0;
}
#meetingSDKElement>div:first-child>div:first-child{
    position: static !important;
}

div:has(div>#live-transcription-subtitle) {
    pointer-events: none;
}
#live-transcription-subtitle>div{
    pointer-events: all;
}

.iframeZoom{
    position: absolute;
    bottom: 0;
    width: calc(20vw - 50px);
    height: 50vh;
}


#controlsPanel{
    width: 90vw;
    margin: auto;
    margin-right: 0;
    box-sizing: border-box;

    background-color: #800080;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
#controlsPanel>div{
    background-color: #00000055;
    padding: 5px;
    cursor: pointer;
} */




#myModal .modal-content.modalSharePrompt{
    width: 900px;
    min-height: 620px;
    position: relative;

    justify-content: flex-start;

    border-radius: 20px;
}
#myModal .modal-content.modalSharePrompt .txt_sharePostcard{
    font-family: 'Bentley_Light';
    font-style: normal;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    letter-spacing: 0.16em;

    color: #292929;

    margin-top: 20px;
    margin-bottom: 45px;
}
#myModal .modal-content.modalSharePrompt #closeModal{
    position: absolute;
    top: 22px;
    right: 22px;
    width: 30px;
    height: 30px;

    cursor: pointer;
}
#myModal .modal-content.modalSharePrompt #closeModal>img{
    display: block;
    width: 100%;
}

#myModal .modal-content.modalSharePrompt .bottomFlex{
    height: auto;
    margin-top: 45px;
}

#myModal .modal-content.modalSharePrompt #postcard{
    width: 570px;
    height: 332px;
    display: flex;
}

#myModal .modal-content.modalSharePrompt #postcard>#postcardImg{
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    display: block;
}


/* --------------------------------------------- GA REQUIRED */
#resetBtn > *{
    pointer-events: none;
}
#infoBtn > *{
    pointer-events: none;
}
/* --------------------------------------------- END GA REQUIRED */



@media (max-height: 850px){
    #mainTopRow{
        margin-bottom: 2vh;
    }
    body{
        margin: 12px;
    }
}


/* ZOOM CSS --- ZOOM MODIF */
/* div[role="tooltip"], */
/* CHANGES LOG V5 Commented */
/* #meetingSDKElement button[title="Meeting Information"],
#meetingSDKElement button[title="See apps that are accessing your meeting content"],
#meetingSDKElement button[aria-label="See apps that are accessing your meeting content"],
div[aria-label="participants list footer"]{
    position: absolute;
    left: -1000px;
    bottom: -1000px;
}

#meetingSDKElement button[title="Participants"] svg g{
    clip-path: none !important;
} */




/* CHANGES LOG V5 Commented */
/* #myModal .modal-content.modalSharePrompt .bottomFlex{
    margin-top: 25px;
}
#myModal .modal-content.modalSharePrompt #qrDiv>img{
    width: 115px;
    height: auto;
}
#myModal .modal-content.modalSharePrompt #infoShareDiv{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-end;
}
#myModal .modal-content.modalSharePrompt #infoShareDiv>.txt_hashtag{
    font-family: 'Bentley';
    font-size: 18px;
    line-height: 25px;
    color: #000000;

    width: auto;
}
#myModal .modal-content.modalSharePrompt #infoShareDiv>.txt_shareYourVisitText{
    text-align: left;
    font-family: 'Bentley';
    font-size: 14px;
    line-height: 19px;
    color: #000000;
    text-transform: none;
}
#myModal .modal-content.modalSharePrompt .bottomFlex>div>div:last-child{
    align-self: flex-end;
}
#myModal .modal-content.modalSharePrompt .bottomFlex>div{
    align-self: flex-end;
} */


#controlsPopup{
    display: none;
}
#controlsPopup.openned{
    display: block;

    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;

	background-color: #394d45;
    color: #FFFFFF;
    font-family: 'Bentley_Light';
    font-size: 14px;
    line-height: 19px;

    width: 100%;
    height: 100%;

    overflow-y: auto;
    overflow-x: hidden;
}
#controlsPopup.openned::-webkit-scrollbar-thumb{
    background-color: #FFFFFF;
}
#controlsPopup>#closeAbout,
#controlsPopup>#closeControls {
    position: absolute;
    right: 40px;
    top: 40px;

    cursor: pointer;
}

#controlsPopup .txt_controls{
    font-size: 36px;
    line-height: 40px;

    letter-spacing: 0.02em;

    margin: 3vw;
}
#controlsPopup .controlsTitle{
    font-size: 14px;
    line-height: 19px;

    margin-bottom: 4%;
}

#controlsPopup #controlsMainDiv{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;

    min-height: 50%;
    min-height: calc(100% - 85px - 6vw);
}
#controlsPopup #controlsMainDiv>div{
    width: 60%;
    min-width: 650px;
    margin-top: 5%;
}

#controlsPopup #krpanoControls{
    display: flex;
    justify-content: space-between;
}
#controlsPopup #krpanoControls>div:not(:nth-child(2)){
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;

    row-gap: 15px;
}
#controlsPopup #krpanoControls>div:not(:nth-child(2))>img{
    max-height: 89px;
    align-self: flex-start;
}
#controlsPopup #krpanoControls>div>div{
    max-width: 120px;
}
#controlsPopup #buttonsControls{
    display: flex;
}
#controlsPopup #buttonsControls>img:first-child{
    position: absolute;

    transform: translateX(calc(-100% - 20px)) translateY(6px);
}
#controlsPopup #buttonsControls>div{
    width: 100%;
}
#controlsPopup #buttonsControls #buttonsControlsFlex{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
#controlsPopup #buttonsControls #buttonsControlsFlex>div{
    max-width: 113px;
}
#controlsPopup #buttonsControls #buttonsControlsFlex>div>img{
    max-width: 16px;
    max-height: 16px;
    margin-bottom: 5%;
}
#controlsPopup #buttonsControls #buttonsControlsFlex>div:not(:last-child)>img{
    filter: invert(1);
}
#controlsPopup #buttonsControls #buttonsControlsFlex>div>div:nth-child(2){
    color: #94C11D;
}




#controls-modal{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
}
#controls-modal>div{
    width: calc(100vw - 24vw - 48px - 24px);

    position: absolute;

    top: 24px;
    right: 24px;
}
@media (max-height: 850px){
    #controls-modal>div{  
        top: 12px;
        right: 36px;
    }
}
#controls-modal #controlsParent{
    background-color: white;

    width: calc(100vw - 24vw - 48px - 24px);
    height: calc((100vw - 24vw - 48px - 24px) / 16 * 9);
    max-height: 80vh;
    max-width: calc(80vh * 16 / 9);
    margin-left: auto;
    margin-right: auto;

    border-radius: 10px;
}
#controls-modal #controlsParent > div:first-child{
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}
#controls-modal #controlsParent > div::-webkit-scrollbar-thumb {
    background-color: #335B4C !important;
}

#controls-modal #controlsParent > div::-webkit-scrollbar-thumb:hover {
	background: #417361 !important;
}
#controls-modal #controlsParent #controlsPopup{
    display: block;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#controls-modal #controlsParent #controlsPopup #closeAbout,
#controls-modal #controlsParent #controlsPopup #closeControls {
    display: none;
}
#controls-modal #controlsParent #controlsPopup .controlsTitle{
    color: #335B4C;
}
#controls-modal #controlsParent #controlsPopup #buttonsControls #buttonsControlsFlex>div>div:nth-child(2){
    color: #335B4C;
}
#controls-modal #controlsParent #controlsPopup #buttonsControls #buttonsControlsFlex>div>img{
    filter: invert(0);
}
#controls-modal #controlsParent #controlsPopup #buttonsControls #buttonsControlsFlex>div:last-child>img{
    filter: invert(1);
}

#controlsPopup #darkDiagram{
    display: none;
}
#controls-modal #controlsParent #controlsPopup #diagramContainer{
    position: relative;
}
#controls-modal #controlsParent #controlsPopup #darkDiagram{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

#controls-modal #controlsParent .styledBtn{
    width: fit-content;
    padding: 0 50px;
    margin: auto;
    margin-top: 20px;
}
#controls-modal #controlsParent #firstContinueBtn.disabled{
    user-select: none;
    pointer-events: none;
}

/* CHANGES LOG V5 Commented */
/* #meetingSDKElement.waitingHost .tooltiptext{
    width: max-content;
    visibility: visible;
    opacity: 1;
    margin-bottom: 20px;
    margin-left: -50%;

    background-color: #040404;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    line-height: 28px;
} */

/* CHANGES LOG V5 Commented */
/* #myModal .modal-content.modalZoomPrompt{
    width: auto;
    height: unset;
    row-gap: 2vh;
} */

#myModal .modal-content .modalStep{
    position: absolute;
    top: 10px;
    right: 15px;
    color: #335B4C;
    font-family: 'Bentley';
}

/* CHANGES LOG V5 Commented */
/* #myModal .modal-content.modalZoomPrompt #btnsAreaZoom{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    column-gap: 25px;
}
#myModal .modal-content.modalZoomPrompt #btnsAreaZoom > div{
    padding: 0 20px;
    min-width: max-content;
}

#myModal .modal-content.modalZoomPromptTwo{
    left: 15%;
    top: 15%;
    position: absolute;
}

#myModal .modal-content.modalZoomPromptTwo::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 75%;
    margin-left: -20px;
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent white transparent;
    transform: scaleX(0.7);
} */


#languageManager.tooltip #languageSelector input{
    display: none;
}
#languageManager.tooltip #languageSelector label:not(:last-child){
    border-bottom: dotted 2px #717171;
    margin-bottom:9px!important;
}
#languageManager.tooltip #languageSelector{
    display: flex;
    flex-direction: column;

    bottom: 160%; /* CHANGES LOG V4 2024/09/02 Fix style language and quality tooltip */
}


/* CHANGES LOG XX/01/2024 ZOOM DISABLED */
/* CHANGES LOG V5 Commented */
/* body.disabledZoom{
    margin: 16px;
    height: calc(100vh - 32px);
}
body.disabledZoom #mainLeftColumn{
    width: 15vw;
    margin-right: 14px;
}
body.disabledZoom #mainRightColumn{
    width: calc(100vw - 15vw - 32px - 14px);
}
body.disabledZoom #mainTopRow{
    width: calc(100vw - 15vw - 32px - 14px);
    height: calc((100vw - 15vw - 32px - 14px) / 16 * 9);
    max-height: calc(100vh - 32px - 80px);
    max-width: calc((100vh - 32px - 80px) * 16 / 9);
    margin-bottom: 14px;
}
body.disabledZoom .bottomFlex{
    height: calc(100vh - ((100vw - 15vw - 32px - 14px ) / 16 * 9) - 32px - 14px);
}
body.disabledZoom #mainFlex{
    width: calc(100% - 32px);
} */

.loadingInfo{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.loadingInfo>img{
    width: calc(100% - 50px);
    mix-blend-mode: darken;
}


/* CHANGES LOG V5 Commented */
/* #tooltipsContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    box-sizing: border-box;

    display: flex;
    pointer-events: none;

    z-index: 100;
}

#tooltipTutorial {
    position: absolute;

    --colorTutorialBG: #DCD8C0;
    background-color: var(--colorTutorialBG);
    padding: 30px;

    width: 20%;
    min-width: 200px;
    min-height: 300px; /* CHANGES LOG 2024/06/25 V4 Allow div adjust different languages

    font-family: 'Bentley_Light';
    font-size: 18px;
    line-height: 28px;

    pointer-events: all;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
} */

#tooltipTutorial div:first-child img{
    /* filter: invert(1) sepia(49%) saturate(19%) hue-rotate(359deg) brightness(98%) contrast(97%); */
    cursor: pointer;
}
#tooltipTutorial div:last-child img{
    transform: rotate(180deg);
    max-width: 18px;
}

#tooltipTutorial div:last-child{
    font-size: 12px;
}

#tooltipTutorial div:first-child,
#tooltipTutorial div:last-child{
    display: flex;
    justify-content: space-between;

    line-height: 13.8px;
}

#tooltipTutorial.tutorial1 {
    top: 20px;
    right: 20px;
}

#tutorialStep {
    text-align: right;
    font-size: 13px;
}

#tutorialContent {
    margin: 10px 0;
    height: 100%;
    align-content: end;
    flex: auto; /* CHANGES LOG 2024/06/25 V4 Allow div adjust different languages *//* Allow div fill the height */
}