:root {
    --beige: #e1c699;
    --black: #000000;
    --black10: #0000001a;
    --black25: #00000040;
    --black40: #00000061;
    --black80: #000000cc;
    --blue: #5482e6;
    --E2-blue: #00bfff;
    --E2-blue25: #007bff40;
    --green: #42eb67;
    --grey: #999999;
    --greyDark: #464646;
    --grey40: #7d7d7d66;
    --orange: #ff7f00;
    --orangeLight: #ffb36c;
    --purple: #864cf1;
    --red: #d51a14;
    --redLight: #e05959;
    --turquoise: #6de5d1;
    --white: #ffffff;
    --white10: #ffffff18;
    --white20: #ffffff38;
    --white40: #ffffff60;
    --white50: #ffffff80;
    --white60: #ffffff99;
    --white70: #ffffffb3;
    --yellow: #fae951;

    --transition15bezier: all 0.15s cubic-bezier(0.09, 0.61, 0.58, 0.88);
    --transition15: all 0.15s ease-out;
    --transition25: all 0.25s ease-out;
}

html {
    overflow: hidden;
}

body {
    font-size: 15px;
}

#hotspotlist-thewall,
#scenelist-thewall,
#PluginFloorplan {
    width: 18%;
}

#desktopDev {
    position: relative;
    overflow: hidden;
}

#btnFullscreen {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 0 6px var(--greyDark);
    background: var(--white60);
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
    transform: translateX(-50%);
    z-index: 500;
}

#btnFullscreen:hover {
    height: 60px;
}

#btnFullscreen>img {
    width: 50%;
    height: 50%;
}



/* HOTSPOTS BUBBLE */

.hotspot-bubble{
    
    color : white
}

.hotspot-bubble .category-icon {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    z-index: 15;
}

/* .hotspot-bubble .category-icon img {
} */

.hotspot-bubble .category-icon img,
.hotspot-bubble .category-icon svg {
    max-width: 70%;
    max-height: 70%;
    -webkit-transition: var(--transition15bezier);
    -moz-transition: var(--transition15bezier);
    transition: var(--transition15bezier);
}

.hotspot-bubble:hover .icon,
.hotspot-bubble:hover .category-icon img,
.hotspot-bubble:hover .category-icon svg {
    transform: scale(.7, .7);
}

/* .hotspot-bubble .category-icon,
.hotspot-bubble .category-icon .custom-icon {
    color: lime;
    fill: lime !important;
    stroke: lime !important;
} */



/* HOTSPOTS LIST */
.poi-show {
    display: flex;
}

.poi-hide {
    display: none;
}

#hotspotlist-thewall {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
    line-height: 100%;
    background: var(--white60);
    -webkit-transition: var(--transition25);
    transition: var(--transition25);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 300;
}

#hotspotlist-thewall.left {
    right: auto;
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

#hotspotlist-thewall .nicescroll-cursors {
    border: 0 !important;
    background: var(--white50) !important;
}

#hotspotlist-thewall.toggle {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

#hotspotlist-thewall>.default {
    position: absolute;
    top: 10px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 0 6px var(--greyDark);
    background: var(--white60);
    cursor: pointer;
    transform: translateX(100%);
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#hotspotlist-thewall>.default:hover {
    width: 60px;
}

#hotspotlist-thewall h2 {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 0 10px 0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--greyDark);
}

#hotspotlist-thewall h2 {
    opacity: 0.7;
}

#hotspotlist-thewall.toggle>h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#hotspotlist-thewall.toggle .default {
    display: none;
}

#hotspotlist-thewall.toggle>h2 .on-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#hotspotlist-thewall.toggle>h2 .on-toggle:hover {
    -webkit-transform: scale(.8);
    transform: scale(.8);
}

#hotspotlist-thewall .project-logo {
    max-height: 200px;
    margin: 0 auto 15px auto;
    display: block;
}

#hotspotlist-thewall .listing {
    width: 90%;
    height: calc(50% - 58px);
    margin: 0 5px 0 10px;
    padding: 0 5px 20px 0;
    overflow: auto;
    list-style-type: none;
    border-bottom: 1px solid var(--grey);
}

#hotspotlist-thewall>.listing::-webkit-scrollbar {
    display: block;
    width: 6px;
}

#hotspotlist-thewall>.listing::-webkit-scrollbar-thumb {
    background-color: var(--greyDark);
}

#hotspotlist-thewall>.listing::-webkit-scrollbar-track-piece {
    background-color: var(--grey);
}

#hotspotlist-thewall .listing .group>.title {
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

#hotspotlist-thewall .listing .scene {
    margin-bottom: 2px;
    color: var(--greyDark);
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#hotspotlist-thewall .listing .scene.current-scene,
#hotspotlist-thewall .listing .scene.current-scene:hover {
    color: var(--white);
    background-color: var(--blue);
}

#hotspotlist-thewall .listing .scene.next-scene,
#hotspotlist-thewall .listing .scene.next-scene:hover {
    color: var(--white);
    background-color: var(--green);
}

#hotspotlist-thewall .listing .scene.disabled-scene {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1) !important;
}

#hotspotlist-thewall .listing .scene .title,
#hotspotlist-thewall .listing .scene-navigation {
    position: relative;
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15em;
}

#hotspotlist-thewall .listing .scene-navigation {
    padding-left: 6px;
    justify-content: flex-start;
}

#hotspotlist-thewall .listing .scene .title .icon {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hotspotlist-thewall .listing .scene .title .category {
    width: 20%;
}

#hotspotlist-thewall .listing .scene .title .category img {
    max-width: 60%;
    max-height: 60%;
}

#hotspotlist-thewall .listing .scene .title .text {
    width: 60%;
    text-overflow: ellipsis;
}

#hotspotlist-thewall .listing .scene .title .chevron {
    width: 20%;
    border-left: 2px solid var(--white40);
}

#hotspotlist-thewall .listing .scene .title .chevron:hover {
    background-color: var(--white20);
}

#hotspotlist-thewall .listing .rubric {
    margin-bottom: 2px;
    color: white;
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#hotspotlist-thewall .listing .rubric.current-scene,
#hotspotlist-thewall .listing .rubric.current-scene:hover {
    color: var(--white);
    background-color: var(--blue);
}

#hotspotlist-thewall .listing .rubric.next-scene,
#hotspotlist-thewall .listing .rubric.next-scene:hover {
    color: var(--white);
    background-color: var(--green);
}

#hotspotlist-thewall .listing .rubric.disabled-scene {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1) !important;
}

#hotspotlist-thewall .listing .rubric .title,
#hotspotlist-thewall .listing .scene-navigation {
    position: relative;
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15em;
}

#hotspotlist-thewall .listing .scene-navigation {
    padding-left: 6px;
    justify-content: flex-start;
}

#hotspotlist-thewall .listing .rubric .title .icon {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hotspotlist-thewall .listing .rubric .title .category {
    width: 20%;
}

#hotspotlist-thewall .listing .rubric .title .category img {
    max-width: 60%;
    max-height: 60%;
}

#hotspotlist-thewall .listing .rubric .title .text {
    width: 60%;
    text-overflow: ellipsis;
}

#hotspotlist-thewall .listing .rubric .title .chevron {
    width: 20%;
    border-left: 2px solid var(--white40);
}

#hotspotlist-thewall .listing .rubric .title .chevron:hover {
    background-color: var(--white20);
}

#hotspotsListContainer {
    position: absolute;
    top: 15%;
    left: 100%;
    width: 260px;
    max-height: 70%;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 1em;
    overflow-y: auto;
    color:white
}

#hotspotlist-thewall .listing .scene .sub-list {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    background-color: inherit;
    transition: 250ms;
}

#hotspotlist-thewall .listing .scene .sub-list .hotspot {
    width: 100%;
    height: 40px;
    padding: 0 5% 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05em;
    color:var(--greyDark);
    background-color: var(--white20);
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#hotspotlist-thewall .listing .scene .sub-list .hotspot:hover {
    color: var(--white);
    background-color: var(--white10);
}

#hotspotlist-thewall .listing .scene:hover {
    background: var(--black10);
    transform: scale(0.975);
}

#hotspotlist-thewall .listing .scene .thumb {
    width: 36px;
    height: 36px;
    margin-right: 6px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid white;
}

#hotspotlist-thewall .listing .rubric .sub-list {
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    background-color: inherit;
    transition: 250ms;
}

#hotspotlist-thewall .listing .rubric .sub-list .hotspot {
    width: 100%;
    height: 40px;
    padding: 0 5% 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05em;
    color: white;
    background-color: var(--white20);
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#hotspotlist-thewall .listing .rubric .sub-list .hotspot:hover {
    color: var(--white);
    background-color: var(--white10);
}

#hotspotlist-thewall .listing .rubric:hover {
    background: var(--black10);
    transform: scale(0.975);
}

#hotspotlist-thewall .listing .rubric .thumb {
    width: 36px;
    height: 36px;
    margin-right: 6px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid white;
}





/* SCENES LIST */
#scenelist-thewall {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-weight: 500;
    line-height: 100%;
    background: var(--white60);
    -webkit-transition: var(--transition25);
    transition: var(--transition25);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 300;
}

#scenelist-thewall.left {
    right: auto;
    left: 0;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

#scenelist-thewall .nicescroll-cursors {
    border: 0 !important;
    background: var(--white50) !important;
}

#scenelist-thewall.toggle {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

#scenelist-thewall>.default {
    position: absolute;
    top: 10px;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 0 6px var(--greyDark);
    background: var(--white60);
    cursor: pointer;
    transform: translateX(-100%);
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#scenelist-thewall>.default:hover {
    width: 60px;
}

#scenelist-thewall h2 {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 0 0 10px 0;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--greyDark);
}

#scenelist-thewall h2 {
    opacity: 0.7;
}

#scenelist-thewall.toggle>h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#scenelist-thewall.toggle .default {
    display: none;
}

#scenelist-thewall.toggle>h2 .on-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#scenelist-thewall.toggle>h2 .on-toggle:hover {
    -webkit-transform: scale(.8);
    transform: scale(.8);
}

#scenelist-thewall .project-logo {
    max-height: 200px;
    margin: 0 auto 15px auto;
    display: block;
}

#scenelist-thewall .listing {
    width: 90%;
    max-height: 43%;
    margin: 0 5px 0 10px;
    padding: 0 5px 20px 0;
    overflow: auto;
    list-style-type: none;
    border-bottom: 1px solid var(--grey40);
    z-index: 310;
}

#scenelist-thewall>.listing::-webkit-scrollbar {
    display: block;
    width: 6px;
    height: 80%;
    transform: translateX(2px);
}

#scenelist-thewall>.listing::-webkit-scrollbar-thumb {
    background-color: var(--greyDark);
}

#scenelist-thewall>.listing::-webkit-scrollbar-track-piece {
    background-color: var(--grey);
}

#scenelist-thewall .listing .group {
    padding: 12px 0;
    border-bottom: 1px solid var(--grey);
}

#scenelist-thewall .listing .group:nth-last-child(1) {
    border: none;
}

#scenelist-thewall .listing .group .scenes {
    padding: 0;
    list-style-type: none;
}

#scenelist-thewall .listing .group>.title {
    margin-bottom: 6px;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--greyDark);
    opacity: 0.7;
}

#scenelist-thewall .listing .scene {
    width: 100%;
    height: 46px;
    padding-left: 6px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.15em;
    color: var(--greyDark);
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#scenelist-thewall .listing .scene.active,
#scenelist-thewall .listing .scene.active:hover {
    color: white;
    background: var(--blue);
}

#scenelist-thewall .listing .scene:hover {
    background: rgba(0, 0, 0, .1);
    transform: scale(0.975);
}

#scenelist-thewall .listing .scene .thumb {
    width: 36px;
    height: 36px;
    margin-right: 6px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid white;
}

#scenelist-thewall .project-logo {
    max-width: 90%;
    max-height: 100px;
    margin: 0 auto 10px auto;
    display: block;
}



/* CONTROL BAR */
#controlbar-slash {
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 90%;
    height: 80px;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 100;
}

#controlbar-slash ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

#controlbar-slash.small .toggle {
    top: 32px;
    box-shadow: 0 -6px 12px var(--black25);
    transform: rotate(-180deg);
}

#controlbar-slash li {
    position: relative;
    bottom: 0;
    width: 60px;
    height: 100%;
    float: left;
    margin-right: 0px;
    box-shadow: 3px 0px 10px var(--black40);
    background: var(--white70);
    cursor: pointer;
    -webkit-transform: skew(-15deg) translateY(20px);
    -ms-transform: skew(-15deg) translateY(20px);
    transform: skew(-15deg) translateY(20px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#controlbar-slash.small li {
    -webkit-transform: skew(-15deg) translateY(90%);
    -ms-transform: skew(-15deg) translateY(90%);
    transform: skew(-15deg) translateY(90%);
}

#controlbar-slash li:hover {
    -webkit-transform: skew(-15deg) translateY(0px);
    -ms-transform: skew(-15deg) translateY(0px);
    transform: skew(-15deg) translateY(0px);
}

#controlbar-slash li span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-top: -8px;
    display: block;
    background-size: contain;
    text-decoration: none;
    background-repeat: no-repeat;
    color: inherit;
    -webkit-transform: skew(15deg) translate(-35%, -50%);
    -ms-transform: skew(15deg) translate(-35%, -50%);
    transform: skew(15deg) translate(-35%, -50%);
}

#controlbar-slash .toggle {
    position: absolute;
    top: -15px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    line-height: 46px;
    border-radius: 50%;
    box-shadow: 0 4px 8px var(--black25);
    background: var(--white70);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.05, 0.88, 0.63, 0.96);
    z-index: 199;
}

#controlbar-slash .toggle:hover {
    background: white;
}



/* FLOORPLAN */
#PluginFloorplan {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 18%;
    height: 36%;
    overflow: initial !important;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #ffffffcc;
    z-index: 400;
}

.showMap {
    -webkit-transform: translateX(0) !important;
    -ms-transform: translateX(0) !important;
    transform: translateX(0) !important;
    transition: all 0.25s ease-out;
}

.hideMap {
    -webkit-transform: translateX(100%) !important;
    -ms-transform: translateX(100%) !important;
    transform: translateX(100%) !important;
    transition: all 0.25s ease-out;
}

#PluginFloorplan>.default {
    position: absolute;
    top: 10px;
    left: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px 0 0 6px;
    box-shadow: 0 0 6px var(--greyDark);
    background: var(--white60);
    cursor: pointer;
    transform: translateX(-100%);
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#PluginFloorplan>.default:hover {
    width: 60px;
}

#PluginFloorplan.showMap .default {
    display: none;
}

#map-title {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--greyDark);
    background: var(--white70);
    opacity: 0.7;
    z-index: 10;
}

#map-title>.list {
    position: initial;
    width: calc(100% - 50px);
}

#map-title>.list>.thumb {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--greyDark);
    cursor: pointer;
}

#map-title>.list>.thumb.active {
    pointer-events: none;
    cursor: default;
}

#map-title>.close-btn {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    -webkit-transition: var(--transition15);
    transition: var(--transition15);
}

#PluginFloorplan .map-container {
    position: relative;
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    transform: translateX(0);
    overflow: hidden;
}

#PluginFloorplan .map-container p {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    font-weight: bold;
    font-style: italic;
}

#map-floorplan {
    position: relative;
    width: 100% !important;
    height: 100% !important;
}

#canvas-map {
    width: 100%;
}

#canvas-map:hover {
    cursor: grab;
}

#canvas-map:active {
    cursor: grabbing;
}

#map-floorplan .map-placemarker {
    cursor: pointer;
}



/* MODAL */
.modal-open .modal {
    display: flex !important;
    align-items: center;
}



/* ARTICLE */
.hotspot-bubble-article-popup .wrapper::-webkit-scrollbar {
    display: block;
    width: 6px;
    height: 80%;
    transform: translateX(2px);
}

.hotspot-bubble-article-popup .wrapper::-webkit-scrollbar-thumb {
    background-color: var(--greyDark);
}

.hotspot-bubble-article-popup .wrapper::-webkit-scrollbar-track-piece {
    background-color: var(--grey);
}






#desktopDev {
    display: block;
}

#mobileDev {
    display: none;
}

/** ------------------------------------------------------- **/
/** --------------------- Animations ---------------------- **/
/** ------------------------------------------------------- **/
/* HOTSPOT FOCUS RINGS */
@keyframes backforce {
    0% {
        transform: scale(1);
    }

    33% {
        transform: scale(0.8);
    }

    66% {
        transform: scale(1.2);
    }

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

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

    75% {
        opacity: 1;
    }

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

@-webkit-keyframes pulsar {
    0% {
        -webkit-transform: scale(0);
        opacity: 1;
    }

    75% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

.pulsar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: 0px auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.pulsar .ring {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    border: 10px solid var(--white40);
    box-shadow: inset 0 0 100px 0 var(--white40);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    margin-top: -50%;
    margin-left: -50%;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.pulsar .ring:nth-child(1) {
    -webkit-animation: pulsar 2s 0s linear infinite;
    animation: pulsar 2s 0s linear infinite;
}

.pulsar .ring:nth-child(2) {
    -webkit-animation: pulsar 2s .5s linear infinite;
    animation: pulsar 2s .5s linear infinite;
}

.pulsar .ring:nth-child(3) {
    -webkit-animation: pulsar 2s 1s linear infinite;
    animation: pulsar 2s 1s linear infinite;
}

.pulsar .ring:nth-child(4) {
    -webkit-animation: pulsar 2s 1.5s linear infinite;
    animation: pulsar 2s 1.5s linear infinite;
}


/* LOADER */
.loader-hide {
    display: none !important;
}

.loading-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    color: white;
    font-weight: bold;
    background-color: var(--black80);
    z-index: 2000;
}

.loading-backdrop .inner {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.loading-backdrop .circle {
    width: 180px;
    height: 180px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto 24px;
}

.s1 {
    position: absolute;
    height: 80px;
    width: 80px;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: transparent;
}

.s2 {
    position: absolute;
    height: 80px;
    width: 80px;
    background-color: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bigcon {
    position: absolute;
    height: 75px;
    width: 75px;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: transparent;
    animation: bigcon 2s infinite linear;
    animation-delay: 0.25s;
}

.s {
    width: 15px;
    height: 15px;
    animation: small 2s infinite ease;
    box-shadow: 0px 2px var(--black25);
    background-color: #4096f1;
}

.b {
    border-radius: 50%;
    position: absolute;
}

.s:nth-child(1) {
    top: 0%;
    left: 0%;
}

.s:nth-child(2) {
    top: 0%;
    right: 0%;
}

.s:nth-child(3) {
    right: 0%;
    bottom: 0%;
}

.s:nth-child(4) {
    bottom: 0%;
    left: 0%;
}

.sb1 {
    animation-delay: -1.75s;
}

.sb2 {
    animation-delay: -1.25s;
}

.sb3 {
    animation-delay: -0.75s;
}

.sb4 {
    animation-delay: -0.25s;
}

.sb5 {
    animation-delay: -0s;
}

.sb6 {
    animation-delay: -1.5s;
}

.sb7 {
    animation-delay: -1s;
}

.sb8 {
    animation-delay: -0.5s;
}

.big {
    width: 12px;
    height: 12px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px var(--white), 0px 0px 20px var(--white), 0px 0px 30px var(--white), 0px 0px 50px var(--white), 0px 0px 60px var(--white);
    z-index: 1;
    background-color: var(--white);
    animation: bigball 1s infinite linear;
}

@keyframes bigcon {
    0% {
        transform-origin: center;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    100% {
        transform-origin: center;
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

@keyframes small {
    0% {
        transform: scale(1);
        background-color: var(--white);
    }

    10% {
        transform: scale(1.1);
        background-color: #f8f9fa;
        box-shadow: 0 0 25px rgba(245, 196, 98, 0.25);
    }

    15% {
        transform: scale(1);
    }

    25% {
        transform: scale(1);
        background-color: var(--E2-blue);
        box-shadow: 0 0 25px var(--E2-blue25);
    }

    100% {
        transform: scale(.85);
        background-color: transparent;
    }
}



/** ------------------------------------------------------- **/
/** -------------------- Media Queries -------------------- **/
/** ------------------------------------------------------- **/

/* DESKTOP */
/** Sur tous types d'écrans supérieurs à 1440px (1440 x 768/900) **/
@media all and (min-width: 1440px) {}

/** Sur tous types d'écrans supérieurs à 1600px (1600 x 900) **/
@media all and (min-width: 1600px) {}

/** Sur tous types d'écrans supérieurs à 1920px (1920 x 1080) **/
@media all and (min-width: 1920px) {

    #hotspotlist-thewall,
    #scenelist-thewall,
    #PluginFloorplan {
        width: 16%;
    }
}

/** Sur tous types d'écrans inférieurs à 1280px (1280 x 768) **/
@media all and (max-width: 1280px) {

    #hotspotlist-thewall,
    #scenelist-thewall,
    #PluginFloorplan {
        width: 20%;
    }
}

/** Sur tous types d'écrans inférieurs à 1024px (1024 x 768) **/
@media all and (max-width: 1024px) {
    body {
        font-size: 12px;
    }

    #map-title>.list>.thumb {
        font-size: 10px;
    }

    #hotspotlist-thewall>.default,
    #scenelist-thewall>.default,
    #PluginFloorplan>.default {
        font-size: 14px;
    }
}


/* TABLET -> LANDSCAPE */
/** Sur tous types d'écrans inférieurs à 1366px (1366 x 1024 -- iPad Pro) **/
@media all and (max-width: 1366px) and (max-height: 1024px) and (orientation: landscape) {

    #hotspotlist-thewall>.default:hover,
    #scenelist-thewall>.default:hover,
    #PluginFloorplan>.default:hover {
        width: 40px;
    }

    #btnFullscreen:hover {
        height: 40px;
    }
}

/** Sur tous types d'écrans inférieurs à 1024px (1024 x 768 -- iPad) **/
@media all and (max-width: 1024px) and (max-height: 768px) and (orientation: landscape) {}

/** Sur tous types d'écrans de  800px (800 x 600) **/
@media all and (max-width: 800px) and (max-height: 600px) and (orientation: landscape) {
    body {
        font-size: 10px;
    }

    #hotspotlist-thewall .project-logo,
    #scenelist-thewall .project-logo,
    #controlbar-slash {
        display: none;
    }

    #hotspotlist-thewall h2,
    #scenelist-thewall h2,
    #map-title {
        height: 40px;
        padding: 0 6px;
        font-size: 10px;
    }

    #map-title {
        height: 30px;
    }

    #scenelist-thewall .listing .group>.title {
        font-size: 10px;
        letter-spacing: 1px;
    }

    #hotspotlist-thewall.toggle>h2 .on-toggle,
    #scenelist-thewall.toggle>h2 .on-toggle,
    #map-title>.close-btn {
        width: 20px;
        height: 20px;
        font-size: 14px;
    }

    #hotspotlist-thewall .listing,
    #scenelist-thewall .listing {
        width: 96%;
        margin: 0 2px 0 5px;
        padding: 0 2px 10px 0;
    }

    #hotspotlist-thewall .listing .scene .title,
    #hotspotlist-thewall .listing .scene-navigation,
    #scenelist-thewall .listing .scene {
        height: 36px;
    }

    #hotspotlist-thewall .listing .scene .title .category {
        width: 16%;
    }

    #hotspotlist-thewall .listing .scene .title .text {
        width: 64%;
    }

    #hotspotlist-thewall .listing .scene .sub-list .hotspot {
        height: 30px;
        padding: 0 3% 0 6%;
    }

    #hotspotlist-thewall .listing .scene .thumb,
    #scenelist-thewall .listing .scene .thumb {
        width: 26px;
        height: 26px;
    }
}

/** Sur tous types d'écrans de 768px (768 x 600) **/
@media all and (max-width: 768px) and (max-height: 600px) and (orientation: landscape) {}


/* MOBILE -> LANDSCAPE */
/** Sur tous types d'écrans inférieurs à 870px (870 x 420 -- Samsung 869 x 412 / iPhone 6/7/8 Plus 736 x 414 HZN) **/
@media all and (max-width: 870px) and (max-height: 420px) and (orientation: landscape) {

    #controlbar-slash,
    #hotspotlist-thewall>h2>.title,
    #scenelist-thewall>h2>.title,
    #hotspotlist-thewall>.project-logo,
    #scenelist-thewall>.project-logo {
        display: none;
    }

    body {
        max-width: 100vw;
        max-height: 100vh;
        font-size: 18px;
    }

    .hotspot-bubble {
        width: 35px !important;
        height: 35px !important;
    }

    .hotspot-bubble-point {
        width: 45px !important;
        height: 45px !important;
    }

    #hotspotlist-thewall,
    #scenelist-thewall {
        width: 10%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: var(--white60);
    }

    #hotspotlist-thewall>h2,
    #scenelist-thewall>h2 {
        width: 100%;
        height: 10%;
        margin: 5% 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 2;
    }

    #hotspotlist-thewall>.listing,
    #scenelist-thewall>.listing {
        width: 96%;
        /* max-height: 85%; */
        margin: 0 2px 6px 2px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
    }

    #hotspotlist-thewall>.listing {
        /* height: auto; */
        /* max-height: 42%; */
        height: 85%;
        padding-top: 10px;
        border-bottom: none;
    }

    #scenelist-thewall>.listing {
        /* max-height: 45%; */
        max-height: 85%;
        height: 85%;
        padding-top: 10px;
        border-bottom: none;
    }

    #hotspotlist-thewall>.listing::-webkit-scrollbar,
    #scenelist-thewall>.listing::-webkit-scrollbar {
        width: 2px;
    }

    #hotspotlist-thewall>.listing>.scene {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
        flex-shrink: 0;
        border-radius: 100%;
    }

    #hotspotlist-thewall>.listing>.scene:hover {
        transform: scale(1);
    }

    #hotspotlist-thewall .listing .scene.category-onclick {
        animation: backforce 300ms ease-in;
    }

    #hotspotlist-thewall>.listing>.scene>.title {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8em;
    }

    #hotspotlist-thewall>.listing>.scene>.title>.category {
        width: 100%;
    }

    #hotspotlist-thewall>.scenes-view,
    #hotspotlist-thewall>.listing>.scene>.title>.text,
    #hotspotlist-thewall>.listing>.scene>.title>.chevron,
    #hotspotlist-thewall>.listing>.scene>.sub-list,
    #hotspotlist-thewall>.navigation-title,
    #hotspotlist-thewall>.navigation-list,
    #hotspotlist-thewall>.listing>.scene-navigation>span,
    #scenelist-thewall>.listing>.group>.title,
    #scenelist-thewall>.listing>.group>.scenes>.scene>span {
        display: none;
    }

    #hotspotlist-thewall>.listing>.rubric {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
        flex-shrink: 0;
        border-radius: 100%;
    }

    #hotspotlist-thewall>.listing>.rubric:hover {
        transform: scale(1);
    }

    #hotspotlist-thewall .listing .rubric.category-onclick {
        animation: backforce 300ms ease-in;
    }

    #hotspotlist-thewall>.listing>.rubric>.title {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8em;
    }

    #hotspotlist-thewall>.listing>.rubric>.title>.category {
        width: 100%;
    }

    #hotspotlist-thewall>.scenes-view,
    #hotspotlist-thewall>.listing>.rubric>.title>.text,
    #hotspotlist-thewall>.listing>.rubric>.title>.chevron,
    #hotspotlist-thewall>.listing>.rubric>.sub-list,
    #hotspotlist-thewall>.navigation-title,
    #hotspotlist-thewall>.navigation-list,
    #hotspotlist-thewall>.listing>.scene-navigation>span,
    #scenelist-thewall>.listing>.group>.title,
    #scenelist-thewall>.listing>.group>.scenes>.scene>span {
        display: none;
    }

    #hotspotsListContainer {
        position: absolute;
        top: 15%;
        left: 100%;
        width: 260px;
        max-height: 70%;
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        font-size: 1em;
        overflow-y: auto;
        color:white
    }

    #hotspotsListContainer::-webkit-scrollbar {
        display: block;
        width: 2px;
        transform: translateX(2px);
    }

    #hotspotsListContainer::-webkit-scrollbar-thumb {
        background-color: var(--greyDark);
    }

    #hotspotsListContainer::-webkit-scrollbar-track-piece {
        background-color: var(--grey);
    }

    #hotspotsListContainer>.title {
        width: 90%;
        height: 40px;
        padding: 6px;
        display: flex;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        font-style: italic;
        font-weight: 700;
    }

    #hotspotsListContainer>.hotspot {
        width: 90%;
        min-height: 40px;
        padding: 6px;
        display: flex;
        flex: 0 0 auto;
        justify-content: flex-start;
        align-items: center;
        border-top: 1px solid var(--greyDark);
    }

    #hotspotlist-thewall>.listing>.scene>.title>.overlayFunction {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        opacity: 0;
    }

    #hotspotlist-thewall .listing .scene-navigation {
        padding: 0;
        justify-content: center;
    }

    #hotspotlist-thewall .listing .scene .thumb {
        margin: 0;
        width: 39px;
        height: 39px;
    }

    #hotspotlist-thewall>.listing>.rubric>.title>.overlayFunction {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        opacity: 0;
    }

    #hotspotlist-thewall .listing .scene-navigation {
        padding: 0;
        justify-content: center;
    }

    #hotspotlist-thewall .listing .rubric .thumb {
        margin: 0;
        width: 39px;
        height: 39px;
    }

    #scenelist-thewall .listing .group {
        padding: 6px 0;
    }

    #scenelist-thewall .listing .scene {
        height: auto;
        margin-bottom: 4px;
        padding: 2px;
        justify-content: center;
    }

    #scenelist-thewall .listing .scene .thumb {
        width: 60px;
        height: 60px;
        margin: 0;
    }

    #PluginFloorplan {
        left: 50% !important;
        right: auto !important;
        width: 60%;
        height: 75%;
    }

    .showMap {
        -webkit-transform: translateX(-50%) translateY(-15%) !important;
        -ms-transform: translateX(-50%) translateY(-15%) !important;
        transform: translateX(-50%) translateY(-15%) !important;
    }

    .hideMap {
        -webkit-transform: translateX(-50%) translateY(100%) !important;
        -ms-transform: translateX(-50%) translateY(100%) !important;
        transform: translateX(-50%) translateY(100%) !important;
    }

    #PluginFloorplan>.default {
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 6px 6px 0 0;
    }

    #map-title {
        justify-content: center;
    }

    #map-title>.close-btn {
        position: absolute;
        right: 6px;
    }

    #PluginFloorplan .map-container {
        height: calc(100% - 30px);
    }

    .modal {
        width: 100vw;
        height: 100vh;
    }

    .modal-backdrop {
        width: 100vw;
        height: 100vh;
    }

    .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .modal-content {
        top: 20px;
        left: 50%;
        width: 80%;
        height: 90vh;
        transform: translateX(-50%);
    }

    .hotspot-modal-bubble {
        width: 100%;
        height: 100%;
        background-color: var(--white) !important;
    }

    .hotspot-bubble-image .image {
        max-width: 100%;
        max-height: 86%;
    }

    .hotspot-bubble-image .caption {
        background-color: transparent;
    }
}

/** Sur tous types d'écrans inférieurs à 812px (812 x 375 -- iPhone X) **/
@media all and (max-width: 812px) and (max-height: 375px) and (orientation: landscape) {}

/** Sur tous types d'écrans inférieurs à 720px (720 x 480) **/
@media all and (max-width: 720px) and (max-height: 480px) and (orientation: landscape) {

    #controlbar-slash,
    #hotspotlist-thewall>h2>.title,
    #scenelist-thewall>h2>.title,
    #hotspotlist-thewall>.project-logo,
    #scenelist-thewall>.project-logo {
        display: none;
    }

    body {
        max-width: 100vw;
        max-height: 100vh;
        font-size: 18px;
    }

    .hotspot-bubble {
        width: 35px !important;
        height: 35px !important;
    }

    .hotspot-bubble-point {
        width: 45px !important;
        height: 45px !important;
    }

    #hotspotlist-thewall,
    #scenelist-thewall {
        width: 10%;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background: var(--white60);
    }

    #hotspotlist-thewall>h2,
    #scenelist-thewall>h2 {
        width: 100%;
        height: 10%;
        margin: 5% 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        z-index: 2;
    }

    #hotspotlist-thewall>.listing,
    #scenelist-thewall>.listing {
        width: 96%;
        /* max-height: 85%; */
        margin: 0 2px 6px 2px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
    }

    #hotspotlist-thewall>.listing {
        /* height: auto; */
        /* max-height: 42%; */
        height: 85%;
        padding-top: 10px;
        border-bottom: none;
    }

    #scenelist-thewall>.listing {
        /* max-height: 45%; */
        max-height: 85%;
        height: 85%;
        padding-top: 10px;
        border-bottom: none;
    }

    #hotspotlist-thewall>.listing::-webkit-scrollbar,
    #scenelist-thewall>.listing::-webkit-scrollbar {
        width: 2px;
    }

    #hotspotlist-thewall>.listing>.scene {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
        flex-shrink: 0;
        border-radius: 100%;
    }

    #hotspotlist-thewall>.listing>.scene:hover {
        transform: scale(1);
    }

    #hotspotlist-thewall .listing .scene.category-onclick {
        animation: backforce 300ms ease-in;
    }

    #hotspotlist-thewall>.listing>.scene>.title {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8em;
    }

    #hotspotlist-thewall>.listing>.scene>.title>.category {
        width: 100%;
    }

    #hotspotlist-thewall>.scenes-view,
    #hotspotlist-thewall>.listing>.scene>.title>.text,
    #hotspotlist-thewall>.listing>.scene>.title>.chevron,
    #hotspotlist-thewall>.listing>.scene>.sub-list,
    #hotspotlist-thewall>.navigation-title,
    #hotspotlist-thewall>.navigation-list,
    #hotspotlist-thewall>.listing>.scene-navigation>span,
    #scenelist-thewall>.listing>.group>.title,
    #scenelist-thewall>.listing>.group>.scenes>.scene>span {
        display: none;
    }

    #hotspotlist-thewall>.listing>.rubric {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
        flex-shrink: 0;
        border-radius: 100%;
    }

    #hotspotlist-thewall>.listing>.rubric:hover {
        transform: scale(1);
    }

    #hotspotlist-thewall .listing .rubric.category-onclick {
        animation: backforce 300ms ease-in;
    }

    #hotspotlist-thewall>.listing>.rubric>.title {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.8em;
    }

    #hotspotlist-thewall>.listing>.rubric>.title>.category {
        width: 100%;
    }

    #hotspotlist-thewall>.scenes-view,
    #hotspotlist-thewall>.listing>.rubric>.title>.text,
    #hotspotlist-thewall>.listing>.rubric>.title>.chevron,
    #hotspotlist-thewall>.listing>.rubric>.sub-list,
    #hotspotlist-thewall>.navigation-title,
    #hotspotlist-thewall>.navigation-list,
    #hotspotlist-thewall>.listing>.scene-navigation>span,
    #scenelist-thewall>.listing>.group>.title,
    #scenelist-thewall>.listing>.group>.scenes>.scene>span {
        display: none;
    }

    #hotspotsListContainer {
        position: absolute;
        top: 15%;
        left: 100%;
        width: 260px;
        max-height: 70%;
        margin-left: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        font-size: 1em;
        overflow-y: auto;
        color:white
    }

    #hotspotsListContainer::-webkit-scrollbar {
        display: block;
        width: 2px;
        transform: translateX(2px);
    }

    #hotspotsListContainer::-webkit-scrollbar-thumb {
        background-color: var(--greyDark);
    }

    #hotspotsListContainer::-webkit-scrollbar-track-piece {
        background-color: var(--grey);
    }

    #hotspotsListContainer>.title {
        width: 90%;
        height: 40px;
        padding: 6px;
        display: flex;
        flex: 0 0 auto;
        justify-content: center;
        align-items: center;
        font-style: italic;
        font-weight: 700;
    }

    #hotspotsListContainer>.hotspot {
        width: 90%;
        min-height: 40px;
        padding: 6px;
        display: flex;
        flex-shrink: 0;
        justify-content: flex-start;
        align-items: center;
        border-top: 1px solid var(--greyDark);
    }

    #hotspotlist-thewall>.listing>.scene>.title>.overlayFunction {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        opacity: 0;
    }
    #hotspotlist-thewall>.listing>.rubric>.title>.overlayFunction {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        opacity: 0;
    }

    #hotspotlist-thewall .listing .scene-navigation {
        padding: 0;
        justify-content: center;
    }

    #hotspotlist-thewall .listing .scene .thumb {
        margin: 0;
        width: 39px;
        height: 39px;
    }

    #hotspotlist-thewall .listing .rubric .thumb {
        margin: 0;
        width: 39px;
        height: 39px;
    }

    #scenelist-thewall .listing .group {
        padding: 6px 0;
    }

    #scenelist-thewall .listing .scene {
        height: auto;
        margin-bottom: 2px;
        padding: 2px;
        justify-content: center;
    }

    #scenelist-thewall .listing .scene .thumb {
        width: 60px;
        height: 60px;
        margin: 0;
    }

    #PluginFloorplan {
        left: 50% !important;
        right: auto !important;
        width: 70%;
        height: 70%;
    }

    .showMap {
        -webkit-transform: translateX(-50%) translateY(-15%) !important;
        -ms-transform: translateX(-50%) translateY(-15%) !important;
        transform: translateX(-50%) translateY(-15%) !important;
    }

    .hideMap {
        -webkit-transform: translateX(-50%) translateY(100%) !important;
        -ms-transform: translateX(-50%) translateY(100%) !important;
        transform: translateX(-50%) translateY(100%) !important;
    }

    #PluginFloorplan>.default {
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 6px 6px 0 0;
    }

    #map-title {
        justify-content: center;
    }

    #map-title>.close-btn {
        position: absolute;
        right: 6px;
    }

    #PluginFloorplan .map-container {
        height: calc(100% - 30px);
    }

    .modal {
        width: 100vw;
        height: 100vh;
    }

    .modal-backdrop {
        width: 100vw;
        height: 100vh;
    }

    .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .modal-content {
        top: 20px;
        left: 50%;
        width: 80%;
        height: 90vh;
        transform: translateX(-50%);
    }

    .hotspot-modal-bubble {
        width: 100%;
        height: 100%;
        background-color: var(--white) !important;
    }

    .hotspot-bubble-image .image {
        max-width: 100%;
        max-height: 86%;
    }

    .hotspot-bubble-image .caption {
        background-color: transparent;
    }
}

/** Sur tous types d'écrans inférieurs à 667px (667 x 375 -- iPhone 6/7/8 HZN) **/
@media all and (max-width: 667px) and (max-height: 375px) and (orientation: landscape) {

    #hotspotlist-thewall,
    #scenelist-thewall {
        width: 11%;
    }

    #hotspotlist-thewall>.listing>.scene {
        width: 55px;
        height: 55px;
    }

    #hotspotlist-thewall>.listing>.scene>.title {
        font-size: 1.6em;
    }

    #hotspotlist-thewall>.listing>.rubric {
        width: 55px;
        height: 55px;
    }

    #hotspotlist-thewall>.listing>.rubric>.title {
        font-size: 1.6em;
    }

    #hotspotsListContainer {
        width: 200px;
        font-size: 0.8em;
        color:white
    }

    #scenelist-thewall .listing .scene .thumb {
        width: 55px;
        height: 55px;
    }

    #PluginFloorplan {
        width: 60%;
        height: 75%;
    }

    .showMap {
        -webkit-transform: translateX(-50%) translateY(-10%) !important;
        -ms-transform: translateX(-50%) translateY(-10%) !important;
        transform: translateX(-50%) translateY(-10%) !important;
    }
}

/** Sur tous types d'écrans inférieurs à 640px (640 x 360)**/
@media all and (max-width: 640px) and (max-height: 360px) and (orientation: landscape) {}


/* TABLET -> PORTRAIT */
/** Sur tous types d'écrans inférieurs à 1024px (1024 x 1366 -- iPad Pro) **/
@media all and (max-width: 1024px) and (max-height: 1366px) and (orientation: portrait) {
    #desktopDev {
        display: none;
    }

    #mobileDev {
        width: 100vw;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        color: var(--white);
        background-color: var(--greyDark);
    }

    #mobileDev h1 {
        width: 80%;
        font-size: 4rem;
        text-align: center;
    }

    #mobileDev img {
        max-width: 60%;
        max-height: 60%;
    }
}

/** Sur tous types d'écrans inférieurs à 768px (768 x 1024 -- iPad) **/
@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) {}

/** Sur tous types d'écrans inférieurs à 600px (600 x 800) **/
@media all and (max-width: 600px) and (max-height: 800px) and (orientation: portrait) {
    #mobileDev h1 {
        font-size: 3rem;
    }
}

/** Sur tous types d'écrans inférieurs à 600px (600 x 768) **/
@media all and (max-width: 600px) and (max-height: 768px) and (orientation: portrait) {}


/* MOBILE -> PORTRAIT */
/** Sur tous types d'écrans inférieurs à 480px (480 x 720) **/
@media all and (max-width: 480px) and (max-height: 720px) and (orientation: portrait) {}

/** Sur tous types d'écrans inférieurs à 420px (420 x 870 -- Samsung 412 x 869 / iPhone 6/7/8 Plus 414 x 735) **/
@media all and (max-width: 420px) and (max-height: 870px) and (orientation: portrait) {
    #mobileDev h1 {
        font-size: 2.6rem;
    }
}

/** Sur tous types d'écrans inférieurs à 375px (375 x 812 -- iPhone X) **/
@media all and (max-width: 375px) and (max-height: 812px) and (orientation: portrait) {}

/** Sur tous types d'écrans inférieurs à 375px (375 x 667 -- iPhone 6/7/8) **/
@media all and (max-width: 375px) and (max-height: 667px) and (orientation: portrait) {}

/** Sur tous types d'écrans inférieurs à 360px (360 x 640)**/
@media all and (max-width: 360px) and (max-height: 640px) and (orientation: portrait) {
    #mobileDev h1 {
        font-size: 2.4rem;
    }
}