
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');
* {
    box-sizing: border-box;
  }
html,body{
    margin:0;
    padding:0px;
    width: 100%;
    height: 100%;

    background-color: #eceff1;

    font-family: 'Raleway', sans-serif;
    font-size:16px;
}

.HideInDesktop{
    display: none;;
}

h1 {
    display: block;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h2 {
    display: block;
    font-size: 1.5em;
    margin-top: 0.83em;
    margin-bottom: 0.83em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

h3 {
    display: block;
    font-size: 1.17em;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
h4 {
    display: block;
    font-size: 1em;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
h5 {
    display: block;
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}
h6 {
    display: block;
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
}

hr {
    border: 0;
    height: 1px;
    background: #a4caf1;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}
hr.dashed {
    border: 0;
    border-bottom: 1px dashed #ccc;
    background: #999;
}

a{
    color:#005ec2;
    text-decoration:none;
}
a:hover{
    color:#113a55;
    text-decoration:underline;
}

.pointer{
    cursor: pointer;
}

#head{
    width:100%;
    height:80px;
    background: #fafbfc;

    position: fixed;
    width: 100%;
    top: 0;

    display: flex;
    align-items: center;
    align-content: center;
   /* position: relative;*/
    z-index: 10;
    transition: all .2s;

    border-bottom: 1px solid #a4caf1;
    /*
    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    */
}

.default-with{
    width:1110px;
    margin:0 auto;
}

#headLeft{
    float: left;
    width: 100%;
    display: flex;
    max-height: 100%;
}

#logo{
    width:245px;
    padding-left:0px;
    z-index:10;
    margin-top:0px;

    font-size:36px;
}
.logo-ext{
    font-size:21px;
    color:#a4caf1;
}
#logo img{
    max-height: 90%;
    max-width: 95%;
}

#sub-logo{
    width:245px;
    padding-left:0px;
    z-index:10;
    margin-top:0px;

    font-size:11px;
    color:#005ec2;
}

#ROTLogo{
    margin-top:12px;
    width: 100%;
}
#HeadSearchBloc{
    height: 28px;
    z-index: 11;
    margin-top:2px;
}
#LeftBurgerMenu{
    float:left;
}
#headSearch{
    margin-left:20px;
    border:none;
    background-color: #d4e1e7;

    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;

    width:40px;
    height: 30px;
    transition: width 0.8s;
}
#headSearchICO{
    background-color: #d4e1e7;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    -moz-border-radius-topright: 20px;
    -moz-border-radius-bottomright: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
#headSearchICO img{
    max-width: 20px;
    margin-top:6px;
    margin-right: 10px;
}

#headRight{
    right: 10px;
    position: absolute;
}

.HeadRoundedElement{
    border-radius: 50%;
    width: 45px;
    height: 32px; 
    background-color: #d4e1e7;
    text-align: center;
    vertical-align: middle;
    padding-top:13px;
    font-weight: bold;
    margin-right: 20px;
    box-sizing: content-box;
    cursor: pointer;
}
.HeadRoundedElement img{
    max-height: 23px;
}


#footer{
    width:100%;
    height:30px;
    background: #fafbfc;

    font-size:12px;

    position: fixed;
    width: 100%;
    bottom: 0;

    display: flex;
    align-items: center;
    align-content: center;
    z-index: 10;
    transition: all .2s;
/*
    -webkit-box-shadow: 0px -1px 4px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -1px 4px -1px rgba(0,0,0,0.75);
    box-shadow: 0px -1px 4px -1px rgba(0,0,0,0.75);
*/
    border-top: 1px solid #a4caf1;

}
#footer div{
    padding:10px;
}



.float_left{
    float:left;
}
.float_right{
    float:right;
}

.margtop5{
    margin-top:5px;
}

.margtop10{
    margin-top:10px;
}

.txt_center{
    text-align:center;
}
.txt_left{
    text-align:left;
}
.txt_right{
    text-align:right;
}
.bottomAbsolute{
    bottom: 0;
    position: absolute;
}

/* menu */

.BurgerContainer {
  display: inline-block;
  cursor: pointer;
  z-index:10;
}

.BurgerBar1, .BurgerBar2, .BurgerBar3 {
  width: 35px;
  height: 3px;
  background-color: #113a55;
  margin: 6px 0;
  transition: 0.4s;
}

.Burgerchange .BurgerBar1 {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  
  .Burgerchange .BurgerBar2 {opacity: 0;}
  
  .Burgerchange .BurgerBar3 {
    -webkit-transform: rotate(45deg) translate(-6px, -6px);
    transform: rotate(45deg) translate(-6px, -6px);
  }




/* The side navigation menu */
.SidenavLeft {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #ffffff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the SidenavLeft */
  }

  .SidenavRight {
    height: 0px; /* 100% Full-height */
    width: 250px; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 80px; /* Stay at the top */
    right: 0;
    background-color: #ffffff; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the SidenavLeft */


    box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
  }
  
  /* The navigation menu links */
  .SidenavLeft a,  .SidenavRight a, .dropdown-btn{
    /*padding: 12px 8px 8px 32px;*/
    padding: 0px 8px 8px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
    text-align: left;
    cursor: pointer;
    outline: none;
     /*min-width:250px;*/
    min-width:190px;
    font-size:16px;
    /*border-bottom:1px solid #113a55*/
  }
  .dropdown-btn{
    /*min-width:250px;*/
    min-width:190px;
    background-color: #ffffff;
    border:none;
    /*border-bottom:1px solid #113a55*/
  }
  .dropdown-container a{
      font-size:14px;
      width:100%;
      border-bottom: 1px solid #ccc;
      padding-top:5px;
  }

  .flecheb {
        float: right;
        padding-right: 8px;
    }
.MenuItem{
    padding: 12px 8px 8px 8px;
    width:250px;
    min-height:40px;
   
    clear: both;
}
.MenuItem img, .MenuItem button, .MenuItem a{
    float:left;
}
.MenuItem img{
    width:20px;
    height:20px;

}

.Menu-line{
    width:100%;
    margin-top:10px;
    height: 35px;
    border-bottom: 1px solid #a4caf1;
}


  
  /* When you mouse over the navigation links, change their color */
  .SidenavLeft a:hover,  .SidenavRight a:hover,.dropdown-btn:hover  {
    color: #113a55;
  }

  .active {
    background-color: #eceff1;
    color: #113a55;
  }
  
  /* Position and style the close button (top right corner) */
  .SidenavLeft .closebtn,  .SidenavRight .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  .dropdown-container {
    display: none;
    background-color: #cccccc;
    padding-left: 20px;
  }
  
  /* Optional: Style the caret down icon */
  .fa-caret-down {
    float: right;
    padding-right: 8px;
  }

  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
   /* transition: margin-left .5s;*/
    transition: all .5s;
    padding: 20px;
    height: 95%;
  }

  .full-height{
    height: auto;
    min-height: 100% !important;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the SidenavLeft (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .SidenavLeft {padding-top: 15px;}
    .SidenavLeft a {font-size: 18px;}
  }



    /* Rounded Elements*/
    .RoundedElementContent {
        height: 0px; /* 100% Full-height */
        width: 300px; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1; /* Stay on top */
        top: 60px; /* Stay at the top */
        right: 0;
        background-color: #ffffff; /* Black*/
        overflow-x: hidden; /* Disable horizontal scroll */
        transition: 0.5s; /* 0.5 second transition effect to slide in the SidenavLeft */
        box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%), 0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%), 0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
    }
    .RoundedElementContent div {
        padding:10px;
        width:100%;
    }



  /* /menu */


/* DEBUT DU CONTENEUR DE PAGE*/
  #content{
    padding-top:65px;
    padding-bottom:40px;
    position: relative;
    height: auto;
    min-height: 100% !important;

  }
  .spacer{
      clear: both;
      width: 100%;
      height: 20px;
  }
  .spacer5{
    clear: both;
    width: 100%;
    height: 5px;
}
.spacer7{
    clear: both;
    width: 100%;
    height: 7px;
}
  .spacer40{
    clear: both;
    width: 100%;
    height: 40px;
}
  /* Colonne */

    .column {
        float: left;
        padding: 0 10px;
    }
    .columnFullWidth {
        width: 100%;
    }
    .columnIn2 {
        width: 50%;
    }

    .columnIn3 {
        width: 33.333%;
    }
    .columnIn4 {
        width: 25%;
    }
    
    /* Remove extra left and right margins, due to padding in columns */
    .row {margin: 0 -5px;}
    
    /* Clear floats after the columns */
    .row:after {
        content: "";
        display: table;
        clear: both;
    }
    
    /* Style the counter cards */
    .card {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
        padding: 16px;
        text-align: left;
        background-color: #f1f1f1;
    }
    .card h1,.card h2, .card h3, .card h4, .card h5{
        margin-top: unset;
    }
    .card-relative{
        position: relative;
    }
    .card-article{
        cursor:pointer;
    }
    .lirearticle{
        position: absolute;
        right: 20px;
        bottom: 20px;
    }

    #home-title{
        display: block;
        font-size: 1.17em;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: 0;
        margin-right: 0;
        font-weight: bold;
    }
    .home-articles .card, #bottom-page .card, .article-card-min-height{
        min-height: 285px;
    }
    .home-articles .card-with-add{
       
    }
    .ad300x250{
        width:300px;
        height: 250px;
       /* background-color: #999;*/
        margin:0 auto;
    }
    .home-articles  .card iframe{
        max-width: 100%;
        max-height: 100%;
    }
    .home-articles  .card-social{
        min-height: 400px;
    }
    .home-articles  .card-social iframe{
        width: 100%;
    }

    .mixed-card{
        height: 400px;
        overflow: auto;
        margin-bottom:30px;
    }

    /* Mix Grid*/
    .the-mixer2c {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
        -moz-column-gap: 1em;
        -webkit-column-gap: 1em;
        column-gap: 1em;
    }
    .the-mixer3c {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
        -moz-column-gap: 1em;
        -webkit-column-gap: 1em;
        column-gap: 1em;
    }
    .the-mixer4c {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
        -moz-column-gap: 1em;
        -webkit-column-gap: 1em;
        column-gap: 1em;
    }
      .mixer-bloc {
        display: inline-block;
        margin: 0 0 1em;
        width: 100%;

        box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
        padding: 16px;
        text-align: left;
        background-color: #f1f1f1;
      }
      
    /* Mix Grid*/




    .pages{
        margin-top:20px;
    }
    .pages .card-fullpage{
        min-height: 100%;;
    }

    .article-content{
       
    }
    #article-bottom-btn{
        width: 100%;
        height:40px;
        border-top: 1px solid #a4caf1;
        bottom:10px;
        padding-top:10px;
        text-align:center;
        margin-bottom:10px;
    }
    #article-bottom-btn img{
        margin-left:5px;
        margin-right:5px;
    }


    #article-bottom-date{
        float:right;
        text-align:right;
        font-style: italic;
    }
    #article-bottom-source{
        float:left;
        text-align:left;
        font-style: italic;
    }


    #bottom-page{
        border-top: 1px solid #a4caf1;
        width: 100%;
    }
  /* Colonne */



    /* Formulaires*/
    label { 
        font-weight: bold;
     }
    input, textarea, select { 
        width: 100%;
        border:1px solid #113a55;
        height: 30px;
        margin-bottom:20px;
        color:#000000;;
    }
    select{
        font-size:14px;
    }
    select option{
        background-color: #eceff1;
        color:#000000;
    }

    option:hover{
        background-color: #113a55;
        color:#ffffff;
        box-shadow: 0 0 10px 100px #1882A8 inset;
    }

    select:focus > option:checked { 
        background: #113a55 !important;
        color:#ffffff;
    }

    textarea { 
        min-height: 100px;
    }
    label.check, label.radio { }

    input[type=submit],input[type=button] {
        border:1px solid #113a55;
        width:200px;
        font-size:16px;
    }

    input[type=submit]:hover,input[type=button]:hover {
        border:1px solid #113a55;
        background-color: #d4e1e7;
        color:#000000;
    }

    /* Customize the label (the container) */
        .checkboxcontainer, .radiocontainer {
            display: block;
            position: relative;
            padding-left: 35px;
            margin-bottom: 12px;
            cursor: pointer;
            font-size: 14px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;

            height: 30px;
            margin-top:20px;
        }
        
        /* Hide the browser's default checkbox */
        .checkboxcontainer input,.radiocontainer input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        
        /* Create a custom checkbox */
        .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 25px;
            width: 25px;
            background-color: #cccccc;
        }
        .radiocontainer .checkmark{
            border-radius: 50%;
        }
        
        /* On mouse-over, add a grey background color */
        .checkboxcontainer:hover input ~ .checkmark{
            background-color: #d4e1e7;
            border:1px solid #113a55;
        }
        
        /* When the checkbox is checked, add a blue background */
        .checkboxcontainer input:checked ~ .checkmark,.radiocontainer input:checked ~ .checkmark {
            background-color: #113a55;
        }
        
        /* Create the checkmark/indicator (hidden when not checked) */
        .checkmark:after, .radiocontainer .checkmark:after  {
            content: "";
            position: absolute;
            display: none;
        }
        
        /* Show the checkmark when checked */
        .checkboxcontainer input:checked ~ .checkmark:after,.radiocontainer input:checked ~ .checkmark:after {
            display: block;
        }
        
        /* Style the checkmark/indicator */
        .checkboxcontainer .checkmark:after {
            left: 9px;
            top: 5px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 3px 3px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        /* Style the indicator (dot/circle) */
        .radiocontainer .checkmark:after {
            top: 9px;
            left: 9px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: white;
        }

        .checkboxcontainer{
            padding-top:3px;
        }

        .checkboxcontainerLabel{
            padding-top:1px;
        }
        .radiocontainerLabel{
            padding-top:5px;
        }


        /* Input file*/

        .label-file {
            cursor: pointer;
        }
        .label-file:hover {
            color: #000000;
        }

        input[type=file]{
            width: 100%;
            height: 100%;
        }
        .uploadBox input[type=file]{
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            outline: none;
            opacity: 0;
        }
        .uploadBox{
            width: 300px;
            height: 50px;
            border:1px dashed #113a55;
            text-align: center;
        }
        #uploadBox_data{
            position: absolute;
            text-align: center;
            width: 300px;
            font-weight: 100;
        }
        .uploadBox img{
            max-height: 50px;
        }




    /* Formulaires*/



    /* Tableau*/
        .resp-table {
            width: 100%;
            display: table;
        }

        .resp-table-caption{
            display: table-caption;
            text-align: center;
            font-size: 30px;
            font-weight: bold;
        }
        .resp-table-header{
            display: table-header-group;
            background-color: #bcccd3;
            font-weight: bold;
        }
        .table-header-cell{
            display: table-cell;
            padding: 10px;
            text-align: justify;
            border-bottom: 1px solid black;
        }

        .resp-table-body{
            display: table-row-group;
        }

        .resp-table-row{
            display: table-row;
        }
        .resp-table-row:hover{
           background-color: #bcccd3;
        }
        .table-body-cell{
            display: table-cell;
            padding: 10px;
            border-bottom:1px solid #000000;
        }

        .resp-table-footer {
            display: table-footer-group;
            background-color: #bcccd3;
            font-weight: bold;
            color:#000000;        }

        .table-footer-cell{
            display: table-cell;
            padding: 10px;
            text-align: justify;
            border-bottom: 1px solid black;
        }


     /* Tableau*/

/* /FIN DU CONTENEUR DE PAGE*/

/* smartphone*/
  @media screen and (max-width: 450px) {
    .default-with{
        width:100%;
    }
    #logo,#sub-logo{
        padding-left:10px;
    }
    .HideInSmartphone{
        display: none;
    }

    .HideInDesktop{
        display: block;
    }
    #logo{
        width: 240px;
    }
    #HeadSearchBloc{
        position: absolute;
        right: 5px;
    }

    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
    .card-with-add{
        padding: 0px;
    }
    .ad300x250{
        padding-top:15px;
    }

    .the-mixer2c,  .the-mixer3c,  .the-mixer4c {
        -moz-column-count: 1;
        -webkit-column-count: 1;
        column-count: 1;
    }

    
}