body, html
{
    margin: 0;
    padding: 0;
    width:100%;
    height:100%;



    background-color: #ffffff;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body{
}

html {
    box-sizing: border-box;

    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
}

.CSite
{
    position: relative;

    width: 100vw;

    max-width: 680px;
    max-height: 680px;


    overflow: hidden;

    pointer-events: none;

    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    user-select: none;
}


.CMap
{
    position: relative;

    left: 0px;
    top: 0px;

    width: 100vw;
    height: 100vw;

    max-width: 680px;
    max-height: 680px;
}


.CMarker
{
    position: absolute;

    display: none;

    left: 0px;
    top: 0px;

    cursor: inherit;
    pointer-events: all;

    text-align: center;

    opacity: 0;

    color: #ffffff;

    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    animation-play-state: running;

    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease;
    -moz-animation-name: AMarkerIn;
    -moz-animation-duration: 0.5s;
    -moz-animation-delay: 0.0s;

    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-name: AMarkerIn;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-delay: 0.0s;

    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-name: AMarkerIn;
    animation-duration: 0.5s;
    animation-delay: 0.0s;
}


.CMarkerInteractive
{
    -moz-transition-property: fill, color;
    -moz-transition-duration: 0.5s;
    -moz-transition-timing-function: ease;

    -webkit-transition-property: fill, color;
    -webkit-transition-duration: 0.5s;
    -webkit-transition-timing-function: ease;

    transition-property: fill, color;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

.CMarkerInteractive:hover
{
    fill: #ffffff;
    color: #000000;
}

.CMarkerInteractive:hover > svg > .icon_st0
{
    fill: #000000 !important;
}

@-moz-keyframes AMarkerIn {
    0% { opacity: 0; -moz-transform: translateY(20px); }
    100% { opacity: 1; -moz-transform: translateY(0px); }
}

@-webkit-keyframes AMarkerIn {
    0% { opacity: 0; -webkit-transform: translateY(20px); }
    100% { opacity: 1; -webkit-transform: translateY(0px); }
}

@keyframes AMarkerIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0px); }
}

/***/

@-moz-keyframes AMarkerPulse {
    0%      { -moz-transform: scale(1); }
    50%     { -moz-transform: scale(1.4); }
    100%    { -moz-transform: scale(1); }
}

@-webkit-keyframes AMarkerPulse {
    0%      { -webkit-transform: scale(1); }
    50%     { -webkit-transform: scale(1.4); }
    100%    { -webkit-transform: scale(1); }
}

@keyframes AMarkerPulse {
    0%      { transform: scale(1); }
    50%     { transform: scale(1.4); }
    100%    { transform: scale(1); }
}

.CMarker p
{
    position: absolute;

    top: -66px;
    left: -30px;
    width: 60px;



    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 30px;

    pointer-events: none;
}
.CMarkerInfo
{
    position: absolute;

    right: -36px;
    top: -81px;

    width: 26px;
    height: 26px;

    background-color: #aa033c;

    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;

    text-align: center;

    cursor: pointer;

    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    -moz-animation-name: AMarkerPulse;
    -moz-animation-duration: 2.0s;
    -moz-animation-delay: 0.0s;

    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -webkit-animation-name: AMarkerPulse;
    -webkit-animation-duration: 2.0s;
    -webkit-animation-delay: 0.0s;

    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: AMarkerPulse;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

.CMarkerInfo::after
{
    position: absolute;

    content: url('../ressources/images/info.svg');

    display: block;

    left: 10px;
    top: 5px;

    width: 6px;
    height: 18px;
}

.CMarker svg
{
    position: absolute;

    left: -20px;
    top: -20px;

    width: 40px;
    height: 40px;
}

.CMapOverlay
{
    position: absolute;

    left: 25px;
    top: 25px;

    width: calc(100% - 50px);
    height: calc(100% - 50px);

    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;

    background-color: rgba(255, 255, 255, 0.9);

    -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);

    padding: 40px;

    text-align: left;

    display: none;

    -moz-transition-property: opacity;
    -webkit-transition-property: opacity;
    transition-property: opacity;

    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;

    -moz-transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    opacity: 0;

}

.CMapOverlayInactive
{
    opacity: 0;
}

.CMapOverlayActive
{
    opacity: 1;
}

.CTextContainer {
    position: relative;

    padding: 20px;

    max-width: 680px;
}

h2
{
    position: relative;

    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 32px;

    color: #000000;

    margin-bottom: 10px;
}

h3
{
    position: relative;

    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;

    color: #aa033c;

    margin-bottom: 20px;
}

.CMapOverlay h1
{
    position: relative;

    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 24px;

    color: #aa033c;

    margin-top: 20px;
    margin-bottom: 20px;
}

.CMapOverlay p
{
    position: relative;

    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;

    color: #363636;
}

.CMapOverlayClose
{
    position: absolute;

    pointer-events: all;

    right: 20px;
    top: 12px;

    width: 100px;
    height: 30px;

    cursor: pointer;

    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;

    padding-top: 6px;

    color: #363636;
}

.CMapOverlayClose::after
{
    position: absolute;

    content: url('../ressources/images/close.svg');

    display: block;

    right: 0px;
    top: 8px;

    width: 16px;
    height: 16px;
}

.CSource
{
    position: relative;

    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 10px;

    color: #363636;
}

.CTimeline
{
    position: absolute;

    left: 0px;
    bottom: 0px;

    width: 100%;
    height: 80px;
}

.CTimelineBackground
{
    position: absolute;

    left: 0px;
    bottom: 0px;

    width: 100%;
    height: 80px;

    background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

.CTimelineBar
{
    position: absolute;

    left: 20px;
    top: 40px;

    width: calc(100% - 40px);
    height: 4px;

    background-color: #000000;

    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.CTimelineHandle
{
    position: absolute;

    pointer-events: all;

    left: 20px;
    top: 31px;

    width: 40px;
    height: 23px;

    background-color: #aa033c;

    cursor: pointer;

    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}


.CTimelineHandle svg
{
    position: absolute;

    left: 14px;
    top: 5px;

    width: 11px;
    height: 13px;
}

.CTimelineLabelFront
{
    position: absolute;

    display: block;

    left: 50%;
    top: -31px;

    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;

    color: #363636;

    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);

}

.CTimelineLabelBack
{
    position: absolute;

    display: block;

    right: 20px;
    top: 0px;

    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;

    color: #363636;

}

@media (max-width: 720px)
{


    .CMarker p
    {
        top: -40px;
        left: -15px;
        width: 30px;

        font-size: 16px;
    }

    .CMarkerInfo
    {
        right: -22px;
        top: -51px;

        width: 13px;
        height: 13px;

        -moz-border-radius: 7px;
        -webkit-border-radius: 7px;
        border-radius: 7px;
    }

    .CMarkerInfo::after
    {
        left: 5px;
        top: -2px;

        width: 3px;
        height: 9px;
    }

    .CMarker svg
    {
        left: -15px;
        top: -15px;

        width: 30px;
        height: 30px;
    }

    .CMapOverlay
    {
        left: 20px;
        top: 20px;

        width: calc(100% - 40px);
        height: calc(100% - 40px);

        padding: 30px;
    }

    .CMapOverlay h1
    {
        font-size: 14px;

        margin-top: 10px;
        margin-bottom: 10px;
    }

    .CMapOverlay p
    {
        font-size: 10px;
    }

    .CMapOverlayClose
    {
        right: 20px;
        top: 12px;

        width: 80px;
        height: 30px;

        font-size: 12px;

        padding-top: 8px;
    }

    .CSource
    {
        font-size: 9px;
    }
}