/*
Gestion de la visite intéractive 
Author: Szydlowiski Eddy
Author URI: http://www.spider-codeur.com
Description: Visite Interactive 
Version: 1.1
License: None
*/


/* Environnement */
#popinContainer {
    -webkit-overflow-scrolling: touch;
}
#fixed-event-bar{
    z-index: 101;
}
/* ==========================================================================
Conteneur principal & Fonts
========================================================================== */
.visite_interactive {
    position: relative;
    display: block;
    width: 100%;
    min-height: 850px;
    height: auto;
    margin: 0 auto;
    background-color: #f2f2f2;
    z-index: 100;
    overflow: hidden;
}
.visite_interactive sup {
    line-height:0;
} 
.visite_interactive a:hover,
.visite_interactive a:focus {
    text-decoration: none;
}
.visite_interactive *,
.visite_interactive *:before,
.visite_interactive *:after {
    box-sizing: border-box;
}
.visite_interactive small {
    font-size: 0.8em;
}
.visite_interactive b,
.visite_interactive strong {
    
    font-weight: 800;
    color: #3b3e47;
}
.visite_interactive hr {
    display: none;
}
.visite_interactive .grey{
    color:#7e838c!important;
}
.visite_interactive h1 {
    font-size: 4em;
    text-align: left;
    margin: 20px 0;
}
.visite_interactive h2 {
    text-align: right;
    font-size: 4.2em;
    font-weight: 800;
    margin: -7px 0 0;
    line-height: 1em;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
}
.visite_interactive h3 {
    font-size: 1.9em;
    margin: 0 2px 4px -1px;
    line-height: 1.7em;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
}
.visite_interactive .link_hidden {
    display: none;
}
.visite_interactive .dropdown-toggle:after{display:none;}
/* ==========================================================================
Menu principal
========================================================================== */
.vi_menu {
    position: relative;
    width: 95%;
    max-width: 1180px;
    margin: 20px auto 0 auto;
    border-radius: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.16);
    z-index: 1;
}
.vi_menu_link {
    width: 100%;
    color: rgba(188, 188, 188, 0.50);
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
    font-size: 0.8em;
}
.vi_menu_link ul {
    display:flex;
    justify-content: space-between;
    padding:  0 0.3em;
}
.vi_menu_link ul li {
    position: relative;
    display: inline-block;
    margin: 15px 0;
    background-color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    color: #313131;
    padding: 0.5em 0.7em;
    border: 1px solid #dbdbdb;
    -moz-border-radius: 2em;
    -webkit-border-radius: 2em;
    border-radius: 2em;
    opacity: 1;
    transition: background 0.5s,color 0.5s,border 0.5s;
    -moz-transition: background 0.5s,color 0.5s,border 0.5s;
    -webkit-transition: background 0.5s,color 0.5s,border 0.5s;
    -webkit-transition-delay: 0.1s; /* Safari */
    transition-delay: 0.1s;
    outline:0;
    list-style: none;
    font-size: 0.8em;
}
.vi_menu_link_red:hover,
.vi_menu_link_red.vi_hover_effect{
    background-color: #B31C20;
    border-color: rgba(255, 255, 255, 0.3);
    color:#ffffff;
}
.vi_menu_link_purple:hover,
.vi_menu_link_purple.vi_hover_effect {
    background-color: #5E1A7F;
    border-color: rgba(255, 255, 255, 0.3);
    color:#ffffff;
}
.vi_menu_link_yellow:hover,
.vi_menu_link_yellow.vi_hover_effect {
    background-color: #FB8F00;
    border-color: rgba(255, 255, 255, 0.3);
    color:#ffffff;
}
.vi_menu_link_blue:hover,
.vi_menu_link_blue.vi_hover_effect {
    background-color: #4B8DE3;
    border-color: rgba(255, 255, 255, 0.3);
    color:#ffffff;
}

/* ==========================================================================
Menu responsive
========================================================================== */
.vi_menu_mobile {
    display: none;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}
#vi_menu_mobile_select {
    width: 100%;
    padding: 15px;
}
.vi_menu_mobile_list {
    background-color: #f46263;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    font-size: 1.4em;
}
.vi_menu_mobile .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    list-style: none;
    background-color: #f46263;
    background-clip: padding-box;
}
.vi_menu_mobile .dropdown-menu>li>a {
    text-decoration: none;
    display: block;
    padding: 7px 0;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: white;
    white-space: nowrap;
}
.vi_menu_mobile .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 0 solid;
    font-size: 1.6em;
}
.vi_menu_mobile .open>.dropdown-menu {
    display: block;
}
.vi_menu_mobile .btn-select_zone {
    width: 100%;
    padding: 15px;
    background-color: #f46263;
    color: white;
    box-shadow: 0 10px 40px 10px rgba(0, 0, 0, 0.16);
}
/* ==========================================================================
Intro & background
========================================================================== */
.vi_intro {
    position: relative;
    width: 90%;
    max-width: 1180px;
    height: 775px;
    background: url(../images/intro_background.png) 0px top no-repeat;
    background-size: 100%;
    z-index: 0;
    margin: 0 auto;
}
.vi_intro_text {
    float: right;
    color: #FFFFFF;
    padding-top: 50px;
    margin-right: 15px;
    text-align: right;
    
    -webkit-font-smoothing: antialiased;
}
.vi_intro_text_title {
    width: 550px;
    float: right;
    
}
.vi_intro_text_information {
    width: 537px;
    float: right;
    text-align: justify;
    line-height: 1.5;
}
/* ==========================================================================
Vidéo
========================================================================== */
.vi_video {
    width: 90%;
    max-width: 1180px;
    max-height: 467px;
    margin: 0 auto;
    display: none;
    height: 36vw;
    overflow: hidden;
}
.vi_video video {
    display: none;
    position: relative;
    max-width: 100%!important;
    left: 0;
    top: 0;
    z-index: -10;
}
.vi_masque_video {
    width: 100%;
    height: 260px;
    position: absolute;
    top: -70px;
    z-index: 0;
    background: url(../images/bottom_video.png) 0 0 no-repeat;
}
.vi_video video:after{
    display: none;
    position: absolute;
    background-color: #111;
    width: inherit;
    max-width: 1180px;
    height: 25vw;
    z-index: -11;
}
.vi_video_fond{
    display: block;
    position: absolute;
    background-color: #111;
    width: inherit;
    max-width: 1180px;
    height: 34vw;
    z-index: -11;
}
/* ==========================================================================
Carte animée
========================================================================== */
.vi_plan {
    position: absolute;
    top: 90px;
    left: 50%;
    margin-left: -650px;
    outline: none;
    z-index: 11;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
    -webkit-transform-origin: 0 0!important;
    -ms-transform-origin: 0 0!important;
    transform-origin: 0 0!important;
}
.vi_plan_mobile {
    display: none;
    -webkit-transform: scale(0.34);
    transform: scale(0.34);
    transform-origin: 0 0;
    left: 50%;
    margin-left: -140px;
    position: relative;
    top: 30px;
    height: 350px;
    left: 50%;
    margin-left: -650px;
    outline: none;
    z-index: 5;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.vi_plan .vi_plan_overlay {
    display: none;
    position: absolute;
    width: 850px;
    height: 800px;
    background: url(../images/overlay.png) 0px top no-repeat;
    top: 0;
    left: 0;
    z-index: 1;
    outline: none;
}
.vi_plan .vi_plan_background {
    position: absolute;
    width: 850px;
    height: 800px;
    background: url(../images/background.png) 0px top no-repeat;
    top: 0;
    left: 0;
    z-index: 0;
    outline: none;
}
vi_plan area {
    cursor: pointer;
    border: none !important;
    outline: 0 none!important;
    outline-style: none!important;
    outline-offset: 15px;
}
vi_plan a {
    border: none !important;
    outline: 0 none;
    outline-style: none;
}
.vi_plan img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    outline: none;
}
.visite_interactive area,
.visite_interactivearea :focus,
.visite_interactive area:active,
.visite_interactive area:selection {
    border: none !important;
    outline: 0 none;
    outline-style: none;
}
.visite_interactive #calque {
    width: 790px;
    height: 800px;
}
/* ==========================================================================
Informations salles container
========================================================================== */
.vi_info_salle {
    display: none;
    position: relative;
    box-sizing: initial;
    right: 0;
    height: auto;
    width: 90%;
    max-width: 1180px;
    min-height: 270px;
    color: #7e838c;
    margin: 0 auto;
    line-height: 1.4;
}
.vi_info_salle_content {
    position: relative;
    display: block;
    -webkit-font-smoothing: antialiased;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 576px;
    height: auto;
    padding: 0 12px 20px 12px;
    box-shadow: 0 7px 12px -6px rgba(0, 0, 0, 0.75);
    margin-left: auto;
    right: 20px;
    top: -21px;
    box-sizing: initial;
}
.vi_info_salle_content .info_small {
    font-size: 0.8em;
    margin-top: -1px;
    line-height: 1.6em;
    color: #3b3e47;
    font-weight: 700;
}
.vi_titre_indicator {
    float: right;
    width: 42px;
    height: 0;
    display: block;
    content: "";
    margin-top: 13px;
    margin-right: 0;
    bottom: 0;
}
.vi_info_salle_presentation {
    display: block;
    margin: 24px 0 0 0;
    min-height: 60px;
    text-align: justify;
    font-size: 1em;
}
/* ==========================================================================
Valeurs importantes de la salle
========================================================================== */
.vi_info_salle_big_value {
    margin: 25px 0 10px 0;
    display: block;
    text-align: justify;
    line-height: 2;
    padding: 0;
    width: 100%;
}
.vi_info_salle_big_value:after {
    display: inline-block;
    width: 95%;
    content: '';
    vertical-align: top;
}
.vi_info_salle_big_value li {
    font-size: 0.8em;
    list-style-type: none;
    margin-bottom: 14px;
    line-height: 1em;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    height: 65px;
    vertical-align: top;
    padding: 0 0.8em;
}
.vi_info_salle_big_value .separator {
    border-right: 1px solid #babbc0;
}
.vi_info_salle_big_value .item1 {
    width: 100%;
}
.vi_info_salle_big_value .item2 {
    width: 50%;
}
.vi_info_salle_big_value .item3 {
    width: 33.33333%;
}
.vi_info_salle_big_value .item4 {
    width: 25%;
}
.vi_info_salle_big_value .valeur {
    line-height: normal;
    color: #3b3e47;
    font-size: 2.4em;
    line-height: 1em;
}
.vi_info_salle_big_value > li span {
    display: block;
    color: #7e838c;
}
/* ==========================================================================
Equipements
========================================================================== */
.vi_info_salle_equipement {
    display: inline-block;
    vertical-align: top;
    margin-top: 35px;
    text-align: right;
    width: 50%;
    list-style-type: none;
}

.vi_info_salle_equipement_list {
    color: #7e838c;
    border-right: 1px solid #babbc0;
    text-align: right;
    margin-right: -1px;
    font-size: 0.75em;
}
.vi_info_salle_equipement h3,
.vi_info_salle_equipement_list
{
    padding-right: 10px;
}
.vi_info_salle_equipement_list li {
    line-height: 1.3em;
}
/* ==========================================================================
Les points forts
========================================================================== */
.vi_info_salle_lespointsforts {
    vertical-align: top;
    width: 50%;
    display: inline-block;
    text-align: left;
    margin-top: 35px;
}
.vi_info_salle_lespointsforts:before {
    background-image: url(../images/pictos/plus.png);
    position: absolute;
    margin: -40px 0;
    left: 63%;
    content: '';
    width: 54px;
    height: 40px;
    background-size: 100%;
}
.vi_pouce_EN:before{
    left: 59%;
}
.vi_info_salle_lespointsforts_list {
    width: 100%;
    color: #7e838c;
    border-left: 1px solid #babbc0;
    text-align: left;
    font-size: 0.75em;
    list-style-type: none;
    text-align: justify;
}
.vi_info_salle_lespointsforts h3,
.vi_info_salle_lespointsforts_list{
    padding-left: 10px;
}
.vi_info_salle_lespointsforts_list li {
    text-align: justify;
    line-height: 1.3em;
}
/* ==========================================================================
Pictogrammes
========================================================================== */
.vi_info_salle_pictos {
    margin: 30px auto 30px auto;
    display: block;
    line-height: 0;
    padding: 0;
    width: 92%;
    text-align: center;
}
.vi_info_salle_pictos:after {
    display: inline-block;
    width: 95%;
    content: '';
    vertical-align: top;
}
.vi_info_salle_pictos li {
    line-height: 1.2em;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    vertical-align: top;
    margin-top: 14px;
    font-size: 0.8em;
    width: 25%;
}
.vi_info_salle_pictos li img{
    width: 32%;
}
/* ==========================================================================
Nos services complémentaires
========================================================================== */
.vi_info_salle_servicescomp {
    position: relative;
    width: 100%;
    text-align: left;
}
.vi_info_salle_servicescomp_list li {
    font-size: 0.9em;
    list-style-type: none;
    text-align: justify;
    line-height: 1.1em;
}
.vi_info_salle_servicescomp_list li:before {
    content: '- ';
}
.vi_info_salle_servicescomp_list ul {
    line-height: 0.9em;
    list-style-type: none;
    padding-bottom: 0.2em;
    padding-left: 20px;
}

.vi_info_salle_servicescomp_list ul li:before {
    content: ' ';
}
/* ==========================================================================
Diaporama
========================================================================== */
.vi_photos_salle {
    position: absolute;
    background-color: rgba(0, 0, 0, .4);
    top: 175px;
    right: 600px;
    padding: 0;
    z-index: 3;
    width: 300px;
    height: 200px;
    background-color: #f2f2f2;
    z-index: 12;
}
.vi_photos_salle2 {
    position: absolute;
    background-color: rgba(0, 0, 0, .4);
    top: 430px;
    right: 600px;
    padding: 0;
    z-index: 3;
    width: 300px;
    height: 200px;
    background-color: #f2f2f2;
    z-index: 12;
}
.vi_photos_salle img {
    position: absolute;
    left:0;
    top:0;
    box-shadow:         -1px 3px 3px 0px rgba(50, 50, 50, 0.75);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .3s ease-in-out;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition-delay: .15s;
    -webkit-transition-delay: .15s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-user-select: none;
}
.vi_photos_salle2 img {
    position: absolute;
    box-shadow:         -1px 3px 3px 0px rgba(50, 50, 50, 0.75);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform .3s ease-in-out;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition-delay: .15s;
    -webkit-transition-delay: .15s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-user-select: none;
}
.vi_photos_salle img,.vi_photos_salle2 img {
    display: none;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* ==========================================================================
Bouton téléchargement
========================================================================== */
.vi_btn_download_fiche {
    width: 275px;
    text-align: center;
    margin: 24px auto 30px auto;
    border-radius: 28px;
    color: #ffffff;
    background: #363636;
    padding: 8px 10px 8px 10px;
    text-decoration: none;
}
.vi_info_salle_content a {
    color: #fff;
}
.vi_btn_download_fiche:hover {
    background: #474747;
    text-decoration: none;
}

/* responsive
========================================================================== */
@media all and (min-width: 1900px) {
    .visite_interactive{
        min-height: 845px;
    }
    .visite_interactive h2{
        font-size: 4.6em;
    }
    .vi_menu,.vi_menu_link,.vi_intro,.vi_video,.vi_video video{
        max-width: 1450px;
    }
    /* intro
    ========================================================================== */
    .vi_intro_text_information {
        width: 725px;
    }
    /* Carte
    ========================================================================== */
    .vi_plan {
        margin-left: -710px;
    }

    /* Vidéos
    ========================================================================== */
    .vi_video{
        max-height: 570px;
        height: 30vw;
    }
    /* Adaptation du masque
    ========================================================================== */
    .vi_masque_video{
        -ms-transform:     scale(1.22899999,1.22899999);
        -moz-transform:    scale(1.22899999);
        -o-transform:      scale(1.22899999);
        -webkit-transform: scale(1.22899999);
        transform:         scale(1.22899999);
    }
    .vi_video_fond {
        max-width: 1450px;
        height: 28vw;
    }
    .vi_menu_link {
        padding: 0 8px;
        font-size: 1em;
    }
    .vi_menu_link button {
        padding: 0.3em 1em;
        font-size: 0.7em;        
    }
    .vi_info_salle_content{
        max-width: 626px;
        right: -110px;
        top: -40px;
    }
    .vi_photos_salle,.vi_photos_salle2{
        right: 650px;
    }
    .vi_info_salle_big_value li{
        font-size: 0.8em;
    }
    .vi_info_salle_big_value .valeur{
        font-size: 2.5em;
        line-height: 1em;
    }
    .vi_info_salle_equipement_list, .vi_info_salle_lespointsforts_list{
        font-size: 0.8em;
    }
}
@media all and (max-width: 1370px) {
    .vi_plan {
        -ms-transform:     scale(0.7,0.7);
        -moz-transform:    scale(0.7);
        -o-transform:      scale(0.7);
        -webkit-transform: scale(0.7);
        transform:         scale(0.7);
        top: 120px;
        margin-left: -560px;
    }
    .vi_menu_link {
        font-size: 0.75em;
    }
    .vi_menu{
        width: 90%;
    }

}
@media all and (max-width: 1250px) {
    .vi_plan {
        -ms-transform:     scale(0.6,0.6);
        -moz-transform:    scale(0.6);
        -o-transform:      scale(0.6);
        -webkit-transform: scale(0.6);
        transform:         scale(0.6);
        top: 120px;
        margin-left: -540px;
    }
    .vi_video_fond {
        height: 36vw;
    }
}
@media all and (max-width: 1024px) {
    /* Zoom carte
    ========================================================================== */
    .vi_plan {
        -ms-transform:     scale(0.4,0.4);
        -moz-transform:    scale(0.4);
        -o-transform:      scale(0.4);
        -webkit-transform: scale(0.4);
        transform:         scale(0.4);
        top: 150px;
        margin-left: -460px;
    }
    /* Menu & intro
    ========================================================================== */
    .vi_menu {
        display: none;
    }
    .vi_intro_text {
        padding-top: 0;
    }
    .vi_intro_text_information {
        float: right;
        text-align: justify;
        width: 500px;
    }
    .visite_interactive h3 {
        margin-right: 10px;
    }
    .vi_menu_mobile {
        display: block;
        width: 90%;
        padding-top: 40px;
    }
    .vi_menu_link button {
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }
    /* Information salles
    ========================================================================== */
    .vi_info_salle_content {
        max-width: 91%;
        right: 20px;
        top: -29px;
        z-index: 10;
    }
    .vi_pouce_EN:before{
        left: 56%;
    }
    .vi_masque_video {
        top: -78px;
    }
    /* Bouton télécharger
    ========================================================================== */
    .vi_info_salle_big_value {
        font-size: 1.2em;
    }
    .vi_info_salle_big_value .valeur {
        font-size: 2.5em;
    }
    .vi_photos_salle {
        position: relative;
        top: 10px;
        right: initial;
        height: 200px;
        background: rgba(255, 255, 255, 0);
        width: 300px;
        margin: 45px auto;
    }
    .vi_photos_salle2 {
        position: relative;
        top: 10px;
        right: initial;
        height: 200px;
        background: rgba(255, 255, 255, 0);
        width: 300px;
        margin: 45px auto;
    }
    .vi_photos_salle img{
        transition-delay: 0;
        -webkit-transition-delay: 0;
        -ms-transition-delay: 0;
    }
    .vi_photos_salle2 img{
        transition-delay: 0;
        -webkit-transition-delay: 0;
        -ms-transition-delay: 0;
    }

    .vi_info_salle_pictos li img{
        width: 24%;
    }

    .vi_btn_download_fiche {
        width: 65%;
    }
}
@media all and (max-width: 861px) {
    .vi_plan {
        -ms-transform:     scale(0.32,0.32);
        -moz-transform:    scale(0.32);
        -o-transform:      scale(0.32);
        -webkit-transform: scale(0.32);
        transform:         scale(0.32);
        margin-left: -140px;
        left: 120px;
        top: 100px;
        z-index: 10;
    }
    .visite_interactive h3 {
        font-size: 1.9em;
    }
    .visite_interactive h1 {
        margin: 10px 0;
    }
    .vi_intro_text_title {
        padding-left: 100px;
    }
    .vi_intro_text_information {
        line-height: 1;
        width: 400px;
    }
    .vi_info_salle {
        margin: 0 auto;
    }
    .vi_info_salle_servicescomp_list li {
        font-size: 1em;
    }
    .vi_info_salle_presentation,
    .vi_info_salle_lespointsforts_list,
    .vi_info_salle_servicescomp_list,
    .vi_info_salle_equipement_list {
        font-size: 1.2em;

    }
    .vi_info_salle_lespointsforts_list ul li,
    .vi_info_salle_servicescomp_list ul li ,
    .vi_info_salle_equipement_list ul li{
        padding-bottom: 0;

    }
    .vi_info_salle_content {
        max-width: 88%;
    }
    .vi_pouce_EN:before{
        left: 57%;
    }
    .vi_info_salle_pictos li {
        width: 96%;
        font-size: 1.4em;
        line-height: 1.5em;
    }
    .vi_video {
        height: 37vw;
    }
    /* Valeurs clées  salle
    ========================================================================== */
    .vi_info_salle_big_value li {
        width: 100%;
        margin-bottom: 10px;
    }
    .vi_info_salle_big_value li {
        font-size: 1.1em;
    }
    .vi_info_salle_big_value {
        margin: 40px 0 40px 0;
        font-size: 1em;
    }
    .vi_info_salle_big_value .valeur {
        font-size: 3.5em;
    }
    .vi_info_salle_big_value .item1 {
        width: 100%;
    }
    .vi_info_salle_big_value .item2 {
        width: 100%;
    }
    .vi_info_salle_big_value .item3 {
        width: 100%;
    }
    .vi_info_salle_big_value .item4 {
        width: 100%;
    }
    .vi_info_salle_big_value .separator {
        border-right: solid 0 #fff;
        margin-bottom: 25px;
        vertical-align: initial;
    }
    .vi_info_salle_pictos li img {
        width: 10%;
    }
    .vi_info_salle_servicescomp h3 {
        text-align: left;
    }
    /*  Bouton télécharger
    ========================================================================== */
    .vi_btn_download_fiche {
        width: 70%;
        font-size: 1.3em;
    }
}  
@media all and (max-width: 680px) {
    .vi_intro_text_information {
        width: 380px;
        font-size: 0.9em;
    }
    /* Baculement carte en en haut */
    .vi_plan {
        position: absolute;
    }
}  
@media all and (max-width: 650px) {
    .vi_intro {
        height: 210px;
    }
    /* Baculement carte en bas */
    .vi_plan {
        left: 50%;
        margin-left: -140px;
        top: -20px;
        height: 260px;
        position: relative;
    }
    .vi_intro_text_information {
        width: 480px;
    }
}   
@media all and (max-width: 575px) {
    /*  Zoom carte
    ========================================================================== */
    .vi_plan {
        position: relative;
        -ms-transform:     scale(0.4,0.4);
        -moz-transform:    scale(0.4);
        -o-transform:      scale(0.4);
        -webkit-transform: scale(0.4);
        transform: scale(0.40);
        top: -70px;
        left: 50%;
        margin-left: -160px;
        height: 280px; 
    }
    /*  Conteneur
    ========================================================================== */
    .visite_interactive {
        margin: 0;
        padding: 0;
        border: 0;
        max-width: 100%;
        vertical-align: baseline;
    }
    .visite_interactive h1 {
        text-align: left;
        padding-left: 10px;
        font-size: 2.4em;
        margin: 8px 0;
        line-height: 1em;
    }
    .visite_interactive h2 {
        font-size: 4em;
    }
    .visite_interactive h3 {
        text-align: left;
        font-size: 2.5em;
        text-align: center;
        line-height: 1.1em;
        padding: 5px 0;
    }
    /*  Menu mobile
    ========================================================================== */
    .vi_menu_mobile {
        width: 99%;
    }
    .vi_intro {
        height: 225px;
        background-size: 100% 70%;
        width: 99%;
    }
    .vi_intro_text {
        float: left;
        margin-right: 10px;
    }
    .vi_intro_text_title {
        padding-left: 80px;
    }
    .vi_intro_text_information {
        padding-left: 10px;
        width: 100%;
    }
    /*  video
    ========================================================================== */
    .vi_video {
        top: 0;
        width: 99%;
        max-height: 35vw;
        min-height: 34vw;
    }
    .vi_video > video {
        padding: 0;
    }
    .vi_masque_video {
        display: none;
    }
    /*  Information salles
    ========================================================================== */
    .vi_info_salle_presentation {
        font-size: 1.3em;
    }
    .vi_info_salle_big_value .valeur {
        font-size: 3em;
    }
    .vi_info_salle {
        width: 100%;
    }
    .vi_info_salle_content {
        top: 0;
        max-width: 95%;
        margin: 0 auto 90px auto;
        right: initial;
        padding: 10px;
    }

    /*  Equipements
    ========================================================================== */
    .vi_info_salle_equipement {
        text-align: left;
        width: 100%;
        margin: 30px 0;
        border-right: 0 solid #ffffff;
        padding: 0;
    }
    .vi_info_salle_equipement_list {
        margin-left: 0;
        border-right: 0 solid #ffffff;
        text-align: center;
    }
    .vi_info_salle_equipement_list li {
        line-height: 1.2em;
    }
    .vi_info_salle_equipement_list ul li {
        line-height: 1em;
        margin-top: 
    }     
    .vi_info_salle_equipement_list ul {
        padding-bottom: 0.5em;
    }

    /*  Les points forts
    ========================================================================== */
    .vi_info_salle_lespointsforts {
        width: 100%;
        margin: 70px 0 50px 0;
        padding: 0;
    }
    .vi_info_salle_lespointsforts:before {
        left: 50%;
        width: 64px;
        height: 50px;
        margin: -50px 0 0 -34px;
    }
    .vi_info_salle_lespointsforts_list {
        border-left: 0 solid #ffffff;
        text-align: center;
    }
    .vi_info_salle_lespointsforts_list li {
        text-align: center;
    }

    .vi_info_salle_content .info_small {
        list-style-type: none;
        margin-top: -0.7em;
        line-height: 1em;
    }  
    /*  Pictogrammes
    ========================================================================== */
    .vi_info_salle_pictos {
        margin: 0 auto 30px auto;
    }
    .vi_info_salle_pictos li {
        font-size: 1.2em;
    }
    .vi_info_salle_pictos li img{
        width: 20%;
    } 
    /*  Services complémentaires
    ========================================================================== */
    .vi_info_salle_servicescomp {
        margin: 70px 0;
    }
    .vi_info_salle_servicescomp h3 {
        text-align: center;
    }
    .vi_info_salle_servicescomp_list li {
        line-height: 1em;
        text-align: center;
    }
    .vi_info_salle_servicescomp_list ul {
        list-style-type: none;
        padding-left: 0;
        margin-top: -0.6em;
        margin-bottom: 0.6em;
    }
    .vi_info_salle_servicescomp_list ul li {
        font-size: 0.85em;
    }
    .vi_info_salle_servicescomp_list ul li:before {
        content: '- ';
    }
    .vi_info_salle_servicescomp_list li:before {
        content: '';
    }
    .vi_info_salle_servicescomp_list hr {
        display: none;
    }    
    .vi_info_salle_lespointsforts_list li,
    .vi_info_salle_servicescomp_list li ,
    .vi_info_salle_equipement_list li{
        padding-bottom: 8px;

    }
    /*  Bouton télécharger
    ========================================================================== */
    .vi_btn_download_fiche {
        width: 95%;
    }
}
@media only screen and (max-width: 370px) {    
    /*  Zoom carte
    ========================================================================== */
    .vi_plan {
        position: relative;
        -ms-transform:     scale(0.4,0.4);
        -moz-transform:    scale(0.4);
        -o-transform:      scale(0.4);
        -webkit-transform: scale(0.4);
        transform:         scale(0.4);
        top: -70px;
        left: 50%;
        margin-left: -170px;
        height: 280px;
        width: 260%;
    }
}

/*  Hide control vidéo
========================================================================== */
.visite_interactive .mr-controls-bar {
    display: none;
}
.visite_interactive video::-webkit-media-controls {
    display: none!important;
}
.visite_interactive video::-webkit-media-controls-enclosure {
    display: none !important;
}
.visite_interactive video::-webkit-media-controls-fullscreen-button {
    display: none;
}
.visite_interactive video::-webkit-media-controls-play-button {
    display: none;
}
.visite_interactive video::-webkit-media-controls-volume-slider {
    display: none;
}
.visite_interactive video::-webkit-media-controls-mute-button {
    display: none;
}
.visite_interactive video::focus {
    outline: none;
    border: 0;
}
.visite_interactive  video::-moz-focus-inner {
    outline: 0;
    outline: 0 !important;
    outline-style: none;
}