
/* ---------------------------------------------------------------------------- */
/* Carte interactive */
/* ---------------------------------------------------------------------------- */

/* ---------- Sub-title ---------- */

.wrapper_carte_interactive .sub_title {
    max-width: 850px;
    margin: -15px auto 50px;
}

/* Text */
.wrapper_carte_interactive .sub_title p {
    text-transform: none;
    margin: 0 0 25px;
}

/* Mobile */
.wrapper_carte_interactive .sub_title.mobile_carte_interactive {
    display: none;
}


/* ---------- Carte ---------- */

.carte_interactive {
    position: relative;
}

/* Background */
.carte_interactive .carte_background {
    position: relative;
    z-index: -2;
}

/* Markers */
.carte_interactive .marker {
    display: block;
    width: 38px;
    height: 60px;
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/marker_orange.png') no-repeat center center;
    background-size: 100%;
}
.carte_interactive .marker.place { background-image: url('../images/marker_grey.png'); }

.carte_interactive .marker .shadow {
    display: block;
    width: 20px;
    height: 6px;
    margin-left: -10px;
    position: absolute;
    bottom: -3px;
    left: 50%;
    z-index: -1;
    background: rgba( 0, 0, 0, 0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.carte_interactive .marker .shadow:before {
    display: block;
    content: "";
    width: 50px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -25px;
    opacity: 0;
    -webkit-box-shadow: 0 0 1px 3px #fff;
    -moz-box-shadow: 0 0 1px 2px #fff;
    box-shadow: 0 0 1px 2px #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.carte_interactive .marker:hover .shadow:before {
    -webkit-animation: pulsate 1.1s ease-out infinite;
    -moz-animation: pulsate 1.1s ease-out infinite;
    animation: pulsate 1.1s ease-out infinite;
    animation-delay: 1.1s;
}

@-moz-keyframes pulsate {
    0% { transform: scale(0.1, 0.1); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2, 1.2); opacity: 0; }
}
@-webkit-keyframes pulsate {
    0% { -webkit-transform: scale(0.1, 0.1); opacity: 0; }
    50% { opacity: 1; }
    100% { -webkit-transform: scale(1.2, 1.2); opacity: 0; }
}

/* Description */
.carte_interactive .marker .desc {
    display: none;
    max-width: 100px;
    color: #3c3c3c;
    font: 300 15px/16px 'Helvetica Neue', 'Helvetica';
    text-align: center;
    padding: 5px 5px 7px;
    margin: 0 auto 8px;
    position: absolute;
    bottom: 80%;
    left: -100%;
    right: -100%;
    z-index: 3;
    opacity: 0;
    background: #fff;
    background: rgba( 255, 255, 255, 0.95);
}
.carte_interactive .marker .desc:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    margin-left: -5px;
    position: absolute;
    top: 100%;
    left: 50%;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    border-top: 5px solid rgba( 255, 255, 255, 0.95);
}



/* ---------------------------------------------------------------------------- */
/* Pop-up */
/* ---------------------------------------------------------------------------- */

.desc_zones .desc_content {
    padding: 25px;
    background: #fff;
}

.desc_zones .desc_page {
    float: left;
    width: 393px;
}


/* ---------- Close button ---------- */

.fancybox-close {
    display: block!important;
    width: 35px!important;
    height: 35px!important;
    top: 10px!important;
    right: 10px!important;
    background: none!important;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.fancybox-close:before {
    display: block!important;
    content: "x"!important;
    width: 35px!important;
    height: 35px!important;
    color: #fff!important;
    font: 700 31px/32px 'Turmino'!important;
    text-align: center!important;
    position: absolute!important;
    top: 0!important;
    left: 0!important;
}

.fancybox-close:hover {
    background: rgba( 255, 255, 255, 0.25);
}


/* ---------- Titles ---------- */

.desc_zones h2 {
    color: #fff;
    font: 700 20px/25px 'Turmino';
    text-transform: uppercase;
    padding: 15px 25px;
    background: #e68f1a;
}

.desc_zones h3 {
    color: #1b1b1b;
    font: 700 18px/23px 'Turmino';
    text-transform: uppercase;
    margin: 0 0 15px;
}
.desc_zones h3 .ico {
    float: left;
    display: block;
    color: #1b1b1b;
    font: 22px/23px 'FontAwesome';
    margin: 0 10px 0 0;
}


/* ---------- Cameras ---------- */

.desc_zones .cameras_direct {
    float: right;
    width: 200px;
}

/* Thumb */
.desc_zones .cameras_direct .single_camera_direct .camera_thumb {
    position: relative;
}
.desc_zones .cameras_direct .single_camera_direct .btn_play {
    display: block;
    width: 55px;
    height: 55px;
    color: #fff;
    font: 19px/23px 'FontAwesome';
    text-align: center;
    padding: 17px 0 0 5px;
    position: absolute;
    bottom: 20px;
    right: 15px;
    background: #000;
    background: rgba( 0, 0, 0, 0.25);
    -webkit-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    -moz-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.5);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.desc_zones .cameras_direct .single_camera_direct:hover .camera_thumb .btn_play {
    background: rgba( 0, 0, 0, 0.55);
    -webkit-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
    -moz-box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
    box-shadow: 0 0 0 4px rgba( 255, 255, 255, 0.8);
}

/* Name */
.desc_zones .cameras_direct .single_camera_direct h4 {
    margin: 0 0 25px;
}
.desc_zones .cameras_direct .single_camera_direct:last-child h4 {
    margin: 0;
}
.desc_zones .cameras_direct .single_camera_direct h4 a {
    display: block;
    color: #4e4d4d;
    font: 700 15px/20px 'Turmino';
    text-align: center;
    padding: 10px 0;
    background: #ecebeb;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.desc_zones .cameras_direct .single_camera_direct:hover h4 a {
    color: #fff;
    background: #e68f1a;
}


/* ---------- Collations ---------- */

.desc_zones table,
.desc_zones table {
    width: 100%;
    margin: 0 0 25px;
    border-collapse: collapse;
    border: 1px solid #d2d2d2;
}

.desc_zones table td,
.desc_zones table th {
    color: #4e4d4d;
    font: 700 14px/20px 'Turmino';
    padding: 8px 20px;
    text-align: left;
    vertical-align: middle;
    border-left: 1px solid #d2d2d2;
}
.desc_zones table td:last-child,
.desc_zones table th:last-child { text-align: center; }

/* Head */
.desc_zones table thead {
    border: 1px solid #000;
}
.desc_zones table thead td,
.desc_zones table thead th {
    color: #fff;
    font: 900 16px/18px 'Turmino';
    text-align: center;
    padding: 10px 20px;
    background: #000;
    border-left: 1px solid #717171;
}

/* Body */
.desc_zones table tbody tr:nth-child(2n) {
    background: #ecebeb;
}


/* ---------- Animals ---------- */

.desc_zones .especes {
    list-style: none;
    margin: 0;
}
.desc_zones .especes li {
    float: left;
    margin: 0 6px 7px 0;
}

.desc_zones .especes li a {
    display: block;
    color: #4e4d4d;
    font: 600 13px/20px 'Turmino';
    padding: 2px 12px;
    background: #ecebeb;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.desc_zones .especes li a:hover {
    color: #fff;
    background: #e68f1a;
}



/* ---------------------------------------------------------------------------- */
/* Responsive */
/* ---------------------------------------------------------------------------- */

/* ---------- Tablet Portrait/Horizontal ---------- */

@media all and (max-width: 1023px) {

    .carte_interactive .marker { width: 27px; height: 43px; }
    .carte_interactive .marker:before { width: 28px; height: 14px; }

    .carte_interactive .marker .desc { font-size: 13px; line-height: 15px; }

}


/* ---------- Mobile ---------- */

@media all and (max-width: 767px) {

    .wrapper_carte_interactive .sub_title,
    .carte_interactive { display: none; }
    .wrapper_carte_interactive .sub_title.mobile_carte_interactive { display: block; }

}