.prehome #flex {
    position: fixed;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    display: none;
    z-index: 5000;
}

.prehome h1 {
    color: #0292aa;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.8em;
    padding: 5px 0 5px 0px;
    margin-top: 10px;
}

.prehome p {
    padding: 5px 0 5px 0px;
    font-size: 1.1em;
}

.prehome ul {
    display: flex;
    flex-direction: column;
    padding: 5px 0 5px 0px;
}

.prehome li {
    padding: 5px 0 5px 20px;
    position: relative;
    margin-left: 10px;
}

.prehome li:before {
    width: 16px;
    height: 18px;
    content: "";
    background: url(../images-marqueBlanche/puce_fleche.png) center 0 no-repeat;
    position: absolute;
    left: -5px;
}

.prehome li img {
    position: absolute;
    right: 10px;
    top: -2px;
}

.prehome iframe {
    margin-top: 10px;
}

.prehome #dialog-overlay {

    /* set it to fill the whil screen */
    width: 100%;
    height: 100%;

    /* transparency for different browsers */
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    background: #000;

    /* make sure it appear behind the dialog box but above everything else */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3000;

    /* hide it by default */
    display: none;
}

.prehome .dialog-box {
    margin: auto;

    background: #fff;
    max-width: 700px;
    height: auto; /*max-height:420px;*/
    margin: 0px;
    top: 0;
    left: 0;
    padding: 0px;

    background-color: transparent;
    /* make sure it has the highest z-index */
    position: relative;
    z-index: 5000;
}

.prehome .contenuPH {
    background-color: #FFF;
    margin: 0px;
    padding: 20px;
    position: relative;
    /*height:100%;*/
    z-index: 100;
    font-size: 1.2em;

    border: 10px solid #FFF;
}

.prehome .contenuPH p {
    margin-top: 5px;
    text-align: justify;
}

.prehome .contenuPH img {
}

.prehome .contenuPH > img {
    float: right;
    margin: 0 0 0 10px;
}

.prehome .contenuPH h1 img {
    vertical-align: middle;
}

.prehome .contenuPH #cadre {
    position: relative;
    margin: 20px 0;
    padding: 10px 10px 10px 30px;
    border: 2px dotted #000;
    overflow: hidden;
}

.prehome .contenuPH #cadre::before {
    content: '→';
    position: absolute;
    top: 8px;
    left: 10px;
    font-size: 1.2em;
}

.prehome .contenuPH #cadre img {
    float: right;
    margin: 0 0 0 10px;
}

.prehome .contenuPH #cadre p {
    margin: 0;
    padding: 0;
}

.prehome .contenuPH #cadre p + p {
    margin: 10px 0 0;
}

.prehome .contenuPH #cadre p a {
    float: right;
    background: #b71600;
    margin: 0 0 0 10px;
    padding: 10px;
    color: #fff;
    font-weight: bold;

}

.prehome .contenuPH #cadre p #camionette {
    color: #e0812c;
    font-weight: bold;
}

.prehome .contenuPH #cadre p #reservation {
    color: #b71600;
}

.prehome .contenuPH #partenaires {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    font-style: italic;
    font-weight: bold;
}

.prehome .contenuPH #partenaires img {
    margin: 0 10px;

}

.prehome .buttons {
    display: flex;
    text-align: center;
    padding: 20px;
}

.prehome a.button {
    z-index: 1;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5em;

    /* styles for button */
    text-align: center;
    display: inline-block;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;

    z-index: 9999;

    margin: 0 10px;
    padding: 10px;
    background-color: #e0812c;

    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;

}

.prehome a.button + a.button {
    background: #0292aa;
}

.prehome a.button:hover {
    background-color: #bababa;
}

.prehome a.button.close {
    background-color: #000;
    position: absolute;
    top: 1px;
    right: -9px;
}


