@font-face/*--------------------------------------------------------------------------------------------------------------------------------------Fonts*/
{
    font-family: 'FontAwesome';
    src: url('../font/fontawesome-webfont.eot');
    src: url('../font/fontawesome-webfont.woff') format('woff'),
         url('../font/fontawesome-webfont.ttf') format('truetype'),
         url('../font/fontawesome.otf') format("opentype"),
         url('../font/fontawesome-webfont.svg#fontawesome-webfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face
{
    font-family: 'Roboto';
    src: url('../font/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face
{
    font-family: 'Roboto';
    src: url('../font/Roboto-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body/*------------------------------------------------------------------------------------------------------------------------------------------Général*/
{
	font-family: Roboto, FontAwesome, sans-serif;
	margin:0;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #111;
}

.hidden
{
    display: none !important;
}

#carrousel/*----------------------------------------------------------------------------------------------------------------------------------Diaporama*/
{
    background-color: #c62828;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

#carrousel p
{
    margin: auto;
    margin-top: 10%;
    max-width: 90%;
    min-width: 270px;
    font-size: 2em;
    color: white;
    overflow-wrap: break-word;
    display: block;
}

figure
{
    max-width: 1200px;
    height: 600px;
    overflow: hidden;
    position : relative;
    margin: auto;
}

img
{
    width: 1200px;
}

#navigation/*-------------------------------------------------------------------------------------------------------------------Navigation du diaporama*/
{
    margin : auto;
    background-color: rgba(0, 0, 0, 0.25);
    width: 150px;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    top: -80px;
    border-radius: 35px;
}

.button
{
    color: red;
    opacity: 0.75;
	font-size: 3em !important;
}

#map-conteneur/*----------------------------------------------------------------------------------------------------------------------------------Carte*/
{
    width: 100%;
    display: flex;
    position: relative;
}

#map 
{
    height: 800px;
    flex: 1;
}

#encart/*----------------------------------------------------------------------------------------------------------------------------------------Encart*/
{
    width: 300px ;
    text-align: center;
}

#signature
{
    background-color: grey; 
}

#resume/*------------------------------------------------------------------------------------------------------------------Récapitulatif de réservation*/
{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
    background-color : #c62828; 
    position: fixed;
    bottom: 0px;
}

.menu/*-----------------------------------------------------------------------------------------------------------------------Menu et Message d'alertes*/
{
    display: flex;
    justify-content: center;
}

.menu p
{
    margin: 10px 20px 10px 20px;
}

.warning
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    text-align: center;
    padding: 20px;
    border: 10px solid #c62828;
}

@media (max-width: 830px)/*------------------------------------------------------------------------------------------------------------------Responsive*/
{
    #map-conteneur
    {
        display: block;
    }
    
    #map 
    {
        height: 500px;
    }
    
    #encart
    {
        margin: auto;
        min-height: 250px;       
    }
    
    #resume
    {              
        height: 91px; 
    }
    
    
}

