.user-zone{
    position: fixed;
    z-index: 10000;
    top:0;
    left: 0;
    right: 0;
    height: 50px;
    line-height: 50px;
    background-color: #333;
    color: #FFF;
    font-size: 12px;
}
.user-zone a{
    color:#F5F5F5!important;
}
.user-zone a:hover{
    color:#FFFFFF!important;
    font-weight: 400;
}
.user-zone a.link-lang{
    color: rgba(255,255,255,.35) !important;
    margin-right: 5px;
    font-weight: 400;
}
.user-zone a.link-lang:hover{
    color:#0055A4 !important;
    font-weight: 700;
}
.user-zone a.link-lang-active{
    color: #ffffff !important;
    font-weight: 700;
}
.btn.btn-secondary {
    background-color: #e6e7e9;
    border-color: #e6e7e9;
    color: #ffffff !important;
}
.icon-menu:before {
    content: "\e5d2";
    font-size: 50px;
}
ul.list-inline-block{
    display: inline;
}
ul.list-inline-block li{
    float: left;
    margin-right: 0;
    margin-left: 15px;
    padding-right: 15px;
}
strong {
    font-weight: 700!important;
}
.block-txt-page a {
    font-weight: 700;
}
.inner-page-cover2{
    max-height:150px;
}
.site-blocks-cover2, .site-blocks-cover2 .row {
     min-height: 200px;
     height: calc(100vh/3);
}
.decal-txt{
    position: relative;
    background-color: rgba(255,255,255,.95);
    padding: 50px;
    left: -75px;
    top: 50px;
}
.breadcrumb{
    background-color: transparent;
}
/* animation souris pour scroll down */
.bgScrollDown{
    position: absolute;
    left: 0;
    bottom: 25px;
    width: 100%;
    height: 75px;
    margin: 0;padding: 0;
    background-color: #fff;
}

#scroll-down{
    position: relative;
    z-index: 10000;
    left: 50%;
    top: -150px;
    background-color: rgba(255,255,255,0);
    width: 75px;
    height: 75px;
    margin: 0;
    /*margin-left: -50px;*/
    padding: 0;
    border-radius:100%;
    cursor:pointer;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);


    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

#scroll-down:hover{
    /*background-color: #D9EDF6;*/
    -webkit-transform: translateX(-50%) scale(1.1);
    transform: translateX(-50%) scale(1.1);

}
#scroll-down .mouse {
    display: block;
    position: relative;
    z-index: 10000;
    top: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 35px;
    height: 50px;
    margin: 0 auto 10px;
    border: 3px solid #FFF;
    border-radius: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
#scroll-down::before {
    display: block;
    content: "";
    z-index: +1;
    position: absolute;
    top: 51%;
    left: 30px;
    width: 44%;
    height: 2px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 40%;
    color: #FFF;
    cursor: pointer;
    background-color: transparent;
}
#scroll-down::after {
    display: block;
    content: "";
    z-index: +1;
    position: absolute;
    top: 51%;
    right: 30px;
    width: 44%;
    height: 2px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 40%;
    color: #FFF;
    cursor: pointer;
    background-color: transparent;
}


#scroll-down .mouse:before {
    content: '';
    display: block;
    position: absolute;
    top: 29%;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #FFF;
    -webkit-animation: ani-mouse 1.5s linear infinite;
    animation: ani-mouse 1.5s linear infinite;
}

@-webkit-keyframes ani-mouse {
    0% {
        top: 29%;
        opacity: 1;
    }

    15% {
        top: 50%;
        opacity: 1;
    }

    50% {
        top: 50%;
        opacity: 0.5;
    }

    100% {
        top: 29%;
        opacity: 0.5;
    }
}

@keyframes ani-mouse {
    0% {
        top: 29%;
        opacity: 1;
    }

    15% {
        top: 50%;
        opacity: 1;
    }

    50% {
        top: 50%;
        opacity: 0.5;
    }

    100% {
        top: 29%;
        opacity: 0.5;
    }
}

/* fin animation souris poour scrolldown */
/* slugs sitemap */
.slug-txt{
    font-size: 12px;
    color:#666;
    font-style: italic;
}

/* search form site */

#searchFormSection{
    display: none;
    position: fixed;
    z-index:1000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: rgba(0,0,0,0.55);
    /*background-color: #828282;*/
}

#searchContainer{
    width: 800px;
    max-width: 80%;
    height:100px;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 250px;
}
#searchContainer label{
    font-size: 30px;
    font-weight: 300;
    color:tomato;
}
#searchContainer input[type='text']{
    width: 100%;
    height: 70px;
    font-size: 30px;
    color:tomato;
    background-color: #FFFFFF;
    border: none;

}
#searchContainer input[type='text']::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #EEE;
    opacity: 1; /* Firefox */
}

#searchContainer input[type='text']:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #EEE;
}

#searchContainer input[type='text']::-ms-input-placeholder { /* Microsoft Edge */
    color: #EEE;
}
#searchContainer .errorMessage{
    color:tomato;
}
a svg #cross {
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out;
}
a svg:hover #cross{
    fill: tomato;
}
.text-dates{
    font-style: italic;
    font-size: 1.6rem;
}
.text-dates span{
    font-size: 1.2rem;
}

.owl-item{
    transition: all .3s ease;
}
.owl-item:hover{
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
/* sub nav */
.subNav{
    /*list-style-type: none;*/
    padding-left: 20px;
    margin-left: 0;
    font-size: 20px;
}
.subNav li{
    /*display:inline-block;*/
    /*float:left;*/
}

@media (max-width: 768px) {
    .site-navbar{
        padding: 0.5rem 0 !important;
    }
    .subNav li{
        display:block;
        float:none;
        width: 100%;
        margin-bottom: 10px;
    }
    .subNav li .btn{
        width: 100%;
    }
    .decal-txt{
        position: relative;
        background-color: rgba(255,255,255,.95);
        padding: 50px;
        left:0;
        top: 0;
    }
    .block-txt-page{
        padding: 0 30px;
    }
}
/* FAQ */
.FaQ_Each{
    /*padding-bottom: 10px;*/
    padding-bottom: 0;
    margin-bottom: -1px;
}
.box  {
    /*background: rgba(246, 246, 246, 1);*/
    color: #666666;
    padding-top: 15px;
    padding-bottom:15px;
    padding-left: 20px;
    font-size: 13px;
    text-transform: none;
    cursor:pointer;
    border: 1px solid #d9d9d9;
}
.draw {
    display: none;
    background: #ffffff;
    padding: 20px;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    color: #000000;
    padding-left:30px;
}
#other{
    display: none;
}
.ucfirst {
    text-transform: lowercase;
}
.ucfirst:first-letter {
    text-transform: uppercase;
}
/* FILTRES ARTICLES */
.checkbox{
    -webkit-transform: scale(.75);
    transform: scale(.75);
}
.rounded-checkbox input {
    display: none;
}

.rounded-checkbox .check {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border: 3px solid #e6e6e6;
    border-radius: 50%;
    vertical-align: middle;
    background-color: #fff;

}

#blockFilter .rounded-checkbox .check {
    transform: scale(.75);
    -webkit-transform: scale(.75);
}
.rounded-checkbox input:checked + span {
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.rounded-checkbox input:checked + span:after {
    content: "\f058";
    display: block;
    position: absolute;
    top: -18px;
    left: -3px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-family: icomoon;
    font-size: 35px;
    color:#595959;
}
.rounded-checkbox.disabled{
    color: #ccc;
}
/*
.rounded-checkbox:hover{
    cursor: pointer;
}
.rounded-checkbox input:checked:hover + span:after{
    color:tomato;
    content : "\f057";
    cursor: pointer;
}*/
.square-checkbox {
    font-weight: 400;
    color: #bfbfbf;
}

.square-checkbox input {
    display: none;
}

.square-checkbox .check {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    border: 3px solid #e6e6e6;
    vertical-align: middle;
    background-color: #fff;
}

.square-checkbox input:checked + span {
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.square-checkbox input:checked + span:after {
    content: "\f00c";
    display: block;
    position: absolute;
    top: -12px;
    left: -3px;
    width: 30px;
    height: 30px;
    font-family: FontAwesome;
    font-size: 35px;
    color:#595959;
}

ul #ref-list{
    padding-left: 0;
    list-style-type:none;
}
ul #ref-list li{
    font-size: 12px;
}
/* ------------------------------------------- *\

    RESPONSIVE IFRAME, VIDEO, MAPS ETC

\* ------------------------------------------- */


.iframe-responsive-wrapper {
    position: relative;
}

.iframe-responsive-wrapper .iframe-ratio {
    display: block;
    width: 100%;
    height: auto;

    /*width: 1192px;*/
    /*height: 1460px;*/

}

.iframe-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*height: 500px;*/
}

/* mini lecteur on scroll */
@keyframes fade-in-up {
    0% {
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.video iframe {
    max-width: 100%;
    max-height: 100%;
}

.video.stuck {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 260px;
    height: 145px;
    transform: translateY(100%);
    animation: fade-in-up 0.75s ease forwards;
    z-index: 1;
}

/* navigation dans iframes articles */

.blurContent {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    -o-filter: blur(10px);
    filter: blur(10px);
}

#right-panel-article {
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 100%;
    right: 0;
    width: calc(100vw);
    height: 100vh;
    min-height:100vh;
    padding-left: 25vw;

    overflow:auto;
    background-color: transparent;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#right-panel-article::after {
    content: "";
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow:hidden;
    background-color: rgba(255,255,255, .65);
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#right-panel-article.in {
    left: 0%;
    width: 100%;
    -moz-transform: skew(0deg, 0deg);
    -webkit-transform: skew(0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    transform: skew(0deg, 0deg);
}
#right-panel-article.out {
    left: 115%;
    /*-moz-transform: skew(6deg, 3deg);*/
    /*-webkit-transform: skew(6deg, 3deg);*/
    /*-o-transform: skew(6deg, 3deg);*/
    /*-ms-transform: skew(6deg, 3deg);*/
    transform: skew(15deg, 3deg);
}
#site-content{
    position: relative;
    width: 100%;
    transition: all 0.4s linear;
}
#site-content.in {
    left: -5%;
    width: 105%;
    /*-webkit-transform:scale(.9);*/
    /*transform:scale(.9);*/
}
#site-content.out {
    left: 0%;
    width: 100%;
    /*-webkit-transform:scale(1);*/
    /*transform:scale(1);*/
}
.close-panel{
    position: absolute;
    z-index: 10000;
    left: 0;
    top: 0;
    right: 0;
    height: 50px;
    line-height: 50px;
    background-color: transparent;
}
.close-panel a{
    font-size: 50px;
    color:#ccc;
    transition: all 0.2s linear;
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}
.close-panel a:hover{
    color:#444;
}
#content-article-right{
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    min-height: calc(100vh);
    padding: 0;
    -webkit-box-shadow: -10px 0px 41px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: -10px 0px 41px 0px rgba(0,0,0,0.4);
    box-shadow: -10px 0px 41px 0px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    #right-panel-article {
        padding-left: 0;
    }
    #right-panel-article::before {
        display: none;
    }
    #right-panel-article.in {
        left: 0%;
        width: 100%;
        -moz-transform: skew(0deg, 0deg);
        -webkit-transform: skew(0deg, 0deg);
        -o-transform: skew(0deg, 0deg);
        -ms-transform: skew(0deg, 0deg);
        transform: skew(0deg, 0deg);
    }
    #right-panel-article.out {
        left: 125%;
        /*-moz-transform: skew(6deg, 3deg);*/
        /*-webkit-transform: skew(6deg, 3deg);*/
        /*-o-transform: skew(6deg, 3deg);*/
        /*-ms-transform: skew(6deg, 3deg);*/
        transform: skew(15deg, 3deg);
    }
    #site-content{
        position: relative;
        width: 100%;
        transition: all 0.4s linear;
    }
    #site-content.in {
        left: -5%;
        width: 105%;
        /*-webkit-transform:scale(.9);*/
        /*transform:scale(.9);*/
    }
    #site-content.out {
        left: 0%;
        width: 100%;
        /*-webkit-transform:scale(1);*/
        /*transform:scale(1);*/
    }

}

/* test fancybox iframe pour courses Rise */
.fancybox-slide--iframe {
    padding: 44px 0 0 0!important;
}
.fancybox-slide--iframe .fancybox-content {
    background: #fff;
    height: calc(100%)!important;
    margin-bottom: 0!important;
}

.new-content{
    overflow: auto;
    height: 320px;
    max-height: 320px;
}
