@charset "UTF-8";

@font-face {
  font-family: "axeon-360-font";
  src:url("fonts/axeon-360-font.eot");
  src:url("fonts/axeon-360-font.eot?#iefix") format("embedded-opentype"),
    url("fonts/axeon-360-font.woff") format("woff"),
    url("fonts/axeon-360-font.ttf") format("truetype"),
    url("fonts/axeon-360-font.svg#axeon-360-font") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "axeon-360-font" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="ax-icon-"]:before,
[class*=" ax-icon-"]:before {
  font-family: "axeon-360-font" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ax-icon-visite-360:before {
  content: "\e000";
}
.ax-icon-triangle:before {
  content: "\e001";
}
.ax-icon-contact:before {
  content: "\e002";
}
.ax-icon-document:before {
  content: "\e003";
}
.ax-icon-galerie:before {
  content: "\e004";
}
.ax-icon-fullscreen:before {
  content: "\e005";
}
.ax-icon-home:before {
  content: "\e006";
}
.ax-icon-localisation:before {
  content: "\e007";
}
.ax-icon-maquette-3d:before {
  content: "\e008";
}
.ax-icon-plan:before {
  content: "\e009";
}
.ax-icon-point:before {
  content: "\e00a";
}
.ax-icon-right-arrow:before {
  content: "\e00b";
}
.ax-icon-situation:before {
  content: "\e00c";
}
.ax-icon-menu:before {
  content: "\e00d";
}
.ax-icon-media:before {
  content: "\e00e";
}
.ax-icon-close:before {
  content: "\e00f";
}
.ax-icon-burger:before {
  content: "\e010";
}



@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.eot');
    src: url('fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Roboto-Regular.woff2') format('woff2'),
        url('fonts/Roboto-Regular.woff') format('woff'),
        url('fonts/Roboto-Regular.ttf') format('truetype'),
        url('fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

*{
    box-sizing: border-box;
    user-select: none;
}
:root{
    --heightHeader : 36px; /* variable hauteur header */
}
body{
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: "Roboto"!important;
    font-size: 18px;
    position:fixed;
}

#headerContainer{
    position: relative;
    top:0;
    left:0;
    height: var(--heightHeader); /* Hauteur du header */
    width:100%;
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0px 12px 0px 30px; /* Décalage du Header */
    line-height: var(--heightHeader); /* Hauteur de la ligne du Texte dans le Header */
    overflow: hidden;
    z-index: 99;
}
#headerContainer > div{
    display: flex;
}
@media screen and (max-device-width:480px),(max-device-height:480px) {
    /* Style de header sur mobile */
    #headerContainer{
        height:var(--heightHeader); /* Hauteur du header */
        line-height: var(--heightHeader); /* Hauteur de la ligne du Texte dans le Header */
    }
}
#headerContainer #header-burger{
    margin-right:12px; /* Conteneur du bouton (X) */
    margin-top:5px; /* Conteneur du bouton (X) */
    cursor: pointer;   
}
@media screen and (max-device-width:480px),(max-device-height:480px) {
    #headerContainer #header-burger{
        margin-top:6px;
    }
}
#header-burger span{
    display: block;
    width: 22px;
    height: 2px;
    position: relative;
    background-color: #ffffff;
    margin-top:5px;
    transform-origin: 4px 0px;
    transition: all 0.5s;
}
#header-burger span:first-child{
    transform-origin: 0% 0%;
}
#header-burger span{
    transform-origin: 50% 0%;
}
#header-burger span:last-child
{
  transform-origin: 0% 0%;
}
#header-burger.open span:first-child{
    opacity: 1;
    transform:rotate(45deg) translate(1px, -1px);
}
#header-burger.open span{
    opacity: 0;
    transform:scale(0);
}
#header-burger.open span:last-child{
    opacity: 1;
    transform:rotate(-45deg) translate(-1px, 1px);
}
#headerContainer #header-title{
    float: left;
}
#header-title span::before{
    position: relative;
    top:2px;
    padding: 0px 2px 0px 2px;
}

@media screen and (max-device-width:480px),(max-device-height:480px) {

    #headerContainer #header-title{
        font-size: 0.9em;
    }
}
main {
    position: relative;
    height:100%;
}
#sideContainer{
    position: absolute;
    top:0px;
    left : 0px;
    margin-top: 14px; /* Marge Top des boutons (MEDIA) */
    margin-left: 18px; /* Marge Left des boutons (MEDIA) */
    opacity: 1;
    transition: all 0.5s;
}
#sideContainer.closed{
    top: -110px;
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-device-width:480px) {
    #sideContainer{
        position: fixed;
        top: var(--heightHeader); /* Hauteur du header */
        bottom:0px;
        left : 0px;
        margin-top: 0px;
        margin-left:0px;
        padding-bottom:52px;
        padding-left: 28px;
        padding-top: 14px;
        height: max-content;
        direction: rtl;
        /* overflow-x: scroll; */
        transition: all 0.5s;
    }
}
@media screen and (max-device-height:480px) {
    #sideContainer{
        position: fixed;
        top: var(--heightHeader); /* Hauteur du header */
        bottom:0px;
        left : 0px;
        margin-top: 0px;
        margin-left:0px;
        padding-bottom:52px;
        padding-left: 28px;
        padding-top: 14px;
        height: max-content;
        direction: rtl;
        /* overflow-x: scroll; */
        transition: all 0.5s;
    }
}

#sideContainer .navBtn{
    position: relative;
    margin-bottom: 14px; /* Espacement vertical entre les boutons (MEDIA) */
    height: 40px;
    width: 40px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.navBtn::before{
    position: relative;
    top:1px;
    left: -1px;
}

.navBtn span{
    padding: 12px 12px; /* Marge du texte du bouton (MEDIA) */
    position: absolute;
    float: left;
    left: 42px; /* Décalage du texte du bouton (MEDIA) */
    transition: all 0.5s;
    opacity: 0.9;
    color: var(--primary-color);
    background-color: #ffffff;
    white-space: nowrap;
    font-size: 0.6em;
    border-radius: 50px;
    height: 40px;
    top: 0;
}

@media screen and (max-device-width:480px) {
    #sideContainer .navBtn{
        position: relative;
        margin-bottom: 0px;
        margin-bottom:12px;
        height: 50px;
        width: 50px;
        border-radius: 30px;
        background-color: var(--primary-color);
        color: #ffffff;
        font-size: 1.4em;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .navBtn::before{
        position: relative;
        top:0px;
        left: 0px;
    }

    .navBtn span{
        top:2px;
        padding: 15px 16px;
        position: absolute;
        height: 50px;
        float: left;
        left: 58px;
    }
}
@media screen and (max-device-height:480px) {
    #sideContainer .navBtn{
        position: relative;
        margin-bottom: 0px;
        margin-bottom:12px;
        height: 50px;
        width: 50px;
        border-radius: 30px;
        background-color: var(--primary-color);
        color: #ffffff;
        font-size: 1.4em;
        padding:13px;
        cursor: pointer;
    }
    .navBtn::before{
        position: relative;
        top:0px;
        left: 0px;
    }
    .navBtn span{
        top:2px;
        padding: 15px 16px;
        position: absolute;
        height: 50px;
        float: left;
        left: 58px;
    }
}
main iframe{
    height: calc(100% - var(--heightHeader)); /* Décalage de la lightbox - Bottom */
    width: 100vw;
    border: none;
}
@media screen and (max-device-width: 480px) {
    main iframe{
        height: calc(100% - var(--heightHeader));
    }
}
@media screen and (max-device-height: 480px) {
    main iframe{
        height: calc(100% - var(--heightHeader));
    }
}

#ax-overlay{
    position: absolute;
    top:var(--heightHeader); /* Décalage de la lightbox - Top */
    height: calc(100% - var(--heightHeader)); /* Décalage de la lightbox - Bottom */
    width: 100vw;
    z-index: 99;
    background-color: #000000cc;
    padding: var(--heightHeader); /* Marge intérieur de la lightbox */
}
#ax-overlay.closed{
    display: none;
}
@media screen and (max-device-width: 480px), (max-device-height: 480px) {
    #ax-overlay{
        position: fixed;
        top:0px;
        height: 100%;
        padding: 24px;
        padding-top: 32px;
    }
}
#lightBox-container{
    position: relative;
    height: 100%;
    width: 100%;
}

#ax-light-menu{
    position: absolute;
    height: 42px;
    width: 100%;
    min-width: 150px;
    display: flex;
    flex-direction: row;
    z-index:1;
    transform: translateY(-50%) translateX(-16px);
}
@media screen and (max-device-width:480px) {
    #ax-light-menu{
        height: calc(100% - var(--heightHeader));
        width: max-content;
        min-width: 52px;
        flex-direction: column;
        top: -16px;
        transform: translateY(0%) translateX(-16px);
    } 
}
@media screen and (max-device-height:480px) {
    #ax-light-menu{
        height: calc(100% - var(--heightHeader));
        width: max-content;
        min-width: 52px;
        top: -16px;
        transform: translateY(0%) translateX(-16px);
    } 
}

#ax-light-btn-menu{
    position: relative;
    display: block;
    height: var(--heightHeader); /* Hauteur du bouton (MEDIA) */
    border-radius: 30px;
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 0.8em;
    margin-right: 12px;
    padding: 6px 18px; /* Marge latérale du bouton (MEDIA) */
    border: solid 2px var(--primary-color);
    cursor: pointer;
}
#ax-light-btn-menu.active{
    background-color: var(--primary-color);
    color: #ffffff;
    border: solid 2px #ffffff;
}
@media screen and (max-device-width:480px),(max-device-height:480px) {
    #ax-light-btn-menu{
        margin-right:12px;
        margin-bottom: 12px;
    }
}
#ax-light-content{
    position:relative;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}
#ax-light-content iframe {
    height:100%;
    width:100%;
    border: none;
}
#ax-light-close{
    position: absolute;
    top:0px;
    right: 0px;
    transform: translate(50%, -50%);
    background-color: #ffffff;
    height:38px;
    width:38px;
    color: var(--primary-color);
    font-size: 1.2em;
    border-radius: 30px;
    border: solid 2px var(--primary-color);
    padding: 6px;
    cursor: pointer;
    z-index: 9;
}