/* Carte interactive */
#map-container {
    z-index: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}
#map-universites {
    position: relative;
    padding: 50px 0 10px;
    margin: 0;
}
#map-universites .map {
    position: relative;
    top: 0;
    text-align: center;
    right: 0;
    width: 85%;
    margin: 0 auto !important;
    margin-bottom: 50px;
    margin-right: 0;
    transform: scale(1);
    cursor: default;
    transition: transform 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: transform 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: transform 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#map-universites .map img {
    max-width: none;
    width: 100%;
    display: inline-block;
}
#map-universites .map.scale {
    transform: scale(4);
    cursor: zoom-out;
}
#map-universites .map .point {
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 11px;
    height: 11px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
    transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
}
#map-universites .map .point:hover {
    background-color: #ec001a;
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    box-shadow: 0px 0px 8px rgba(0,0,0,0.5);
}
#map-universites .map .point.bigpoint {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 2rem;
}

.infos {
    background: #fff;
    border-radius: 8px;
    padding: 5px;
    font-size: 0.6em;
    line-height: 1.5em;
    max-width: 220px;
}
.univ-nom {
    font-size: 1.1em;
    line-height: 1.1em;
    font-weight: bold;
}
.univ-detail {
    display: flex;
    margin-top: 5px;
}
img.univ-image {
    max-width: 100px;
    margin: 0 5px 0 0;
}

.noJS {
    display: none;
}
#warning_message {
    text-align: center;
    padding: 40px 0 20px;
    font-size: 24px;
    font-style: italic;
}

/* Moteur de recherche des formations */
#recherche-formation input#search-button {
    cursor: pointer;
}

/* Page de résultat des formations */
.hidden {display: none;}

@media (max-width: 768px) {
    .nav.nav-tabs.elementkit-tab-nav.elementskit-fullwidth-tab {
        display: flex;
        flex-direction: column;
    }
}