/* #region Fonts */
@font-face {
    font-family: 'Roboto-Thin';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Roboto-Thin.eot');
    src: local(''), url('fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'),
        url('fonts/Roboto-Thin.woff2') format('woff2'),
        url('fonts/Roboto-Thin.woff') format('woff'),
        url('fonts/Roboto-Thin.ttf') format('truetype'),
        url('fonts/Roboto-Thin.svg#Roboto-Thin') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/roboto-v20-latin-regular.eot');
    src: local(''), url('fonts/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/roboto-v20-latin-regular.woff2') format('woff2'),
        url('fonts/roboto-v20-latin-regular.woff') format('woff'),
        url('fonts/roboto-v20-latin-regular.ttf') format('truetype'),
        url('fonts/roboto-v20-latin-regular.svg#Roboto') format('svg');
}

/* #endregion */

/* #region CSS divers */
p {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

.interface_color_svg {
    fill: #dbad55;
}

.svg_white {
    fill: #fff;
}

.svg_transparent {
    fill: rgba(0, 0, 0, 0);
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

.pointer {
    cursor: pointer;
}

/* #endregion */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#map_big_container {
    position: absolute;
    left: 2.5%;
    top: 0;
    width: 97.4%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
}

#map_container {
    position: relative;
    width: 100%;
    flex-grow: 4;
    overflow: hidden;
    margin-top: 8px;
    margin-bottom: 8px;
}

#map {
    /* width: 100%; */
    height: 100%;
}

#map_titre {
    width: 100%;
    color: #DBAD55;
    font-size: 47em;
    letter-spacing: 0.243em;
    font-family: 'Roboto';
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    margin: 10px 0;
}

@media (min-width:1801px) {
    #map_titre {
        font-size: 38px;
        letter-spacing: 0.15em;
    }
}

@media (min-width:1200px) and (max-width:1800px) {
    #map_titre {
        font-size: 32px;
        letter-spacing: 0.15em;
    }
}

@media (min-width:850px) and (max-width:1199px) {
    #map_titre {
        font-size: 32px;
        letter-spacing: 0.15em;
    }
}

@media (max-width:849px) {
    #map_titre {
        font-size: 27px;
        letter-spacing: 0.11em;
    }
}

@media (max-height:600px) {
    #map_titre {
        font-size: 23px;
        letter-spacing: 0.1em;
    }
}



.map_infowindow_text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    color: black;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.map_infowindow_img {
    width: 400px;
    height: auto;
}

/* #region Map Menu */
#map_menu_container {
    width: 100%;
    /*flex-grow:;*/
}

#map_menu {
    width: auto;
    height: 8%;
}

.map_menu_pointille {
    fill: none;
    stroke: #dbad55;
    stroke-dasharray: 8;
}

.map_menu_texte {
    isolation: isolate;
    font-size: 21px;
    font-family: Roboto-Light, Roboto;
    font-weight: 300;
    letter-spacing: 1.953px;
}

.map_item_content {
    transform-origin: 104px 55px;
}

.map_menu_item:hover .map_item_content {
    transform: scale(0.97);
}

/*
.map_menu_item:hover .map_item_picto>path {
    fill: #c9c9c9; 
}
*/
.map_menu_disable .map_item_picto>path {
    fill: #c9c9c9;
}

/* #endregion */