/* CSS EN MOBILE FIRST */


@media (max-width: 600px) {

  body[data-template="form"] main{
    padding: 40px 20px;
  }
  .application-form input[type="submit"],
  .application-form button {
    padding: 1em;
    font-size: 1.1em;
  }
}

/* sm size */
@media only screen and (min-width: 48em) {
  :root{
    --h1Size: 50px;
    --h2Size: 35px;
    --fontSize: 22px;
    --smallSize: 17px;
  }

  p{
    margin-bottom: var(--normal-margin);
  }

  .show-for-small-only{
    display: none;
  }

  .hide-for-small-only{
    display: block;
  }

  .hide-for-small-only.row{
    display: flex;
  }

  /* HEADER */

  header nav ul {
    column-count: 3;
    column-gap: 10px;
    padding-top: 15px;
    font-family: var(--title-font);
  }

  header nav ul li a {
    padding: 0px 10px;
  }

  header .right-menu{
    margin-top: 0;
    padding: 0 1rem;
  }

  header .mobile__menu_btn {display: none; }

  #main-menu_wrapper {
    height: auto;
    min-height: auto;
    max-height: none;
    margin-left: 0;
    position: relative;
    top:0;
    left: 0;
  }

  .billetterie__btn{
    margin-right:0;
    padding-right:0;
  }

  .social-network{
    margin-top: 0px;
  }

  .social-network li{
    margin-right: 0;
    margin-left: 12px;
    font-size: 18px;
  }

  header .languages{
    margin-top: -5px;
  }

  header .languages li a{
    font-size: 22px;
  }

  /* HOME */
  .iframe__wrapper{
    height: auto;
  }

  .iframe__wrapper iframe{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .controls-overlay {
    opacity: 0;
  }

  .controls-overlay #soundBtn{
    width: 40px;
    height: 40px;
  }

  /* SPECTACLES */

  .spectacles-list li{
    margin-bottom: var(--big-margin);
  }

  .page_sidebar{
    min-height: 80vh;
  }

  /* GENERAL  */
  .page_header{
    padding: 0 1rem;
  }

  .page_content{
    padding-bottom: 200px;
  }

  .page_content .col-xs-12{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page_content__infos{
    padding: 0 8px;
  }

  .programme__list_spectacles .spectacle-header{
    padding: 0 8px;
  }

  .defaut_content .block h2::before,
  .page_content .block h2::before{
    width: 50%;
  }

  .block-type-table table{
    font-size: var(--fontSize);
  }

  .page_content .lettrine :not(li) > p:first-child::first-letter{
    margin-top: -15px;
  }

  .page_header h2{
    width: 100%;
  }

  .bio h2{
    padding: 0px 1rem;
  }

  .generique .cell_generique-intitule,
  .generique .cell_generique-credit{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* AGENDA */
  .agenda .dates-list .dates_date-hours span{
    display: block;
  }

  .agenda .dates-list .dates_date-hours .hours{
    font-size: var(--smallSize);
  }

  .agenda .dates-list .dates_date-hours .hours:before{
    content: none;
  }

  .agenda .link{
    text-align: right;
    margin-top: 0;
    margin-bottom: 0;
  }

  .agenda .agenda_event_col{
    margin-top: 0;
    margin-bottom: 0;
  }


  /* EQUIPE */
  .equipe__boule-disco{
    --s:800px;  /*Size of the circle */
    margin-top: 180px;
    margin-bottom: 200px;
  }

  /* FOOTER */
  footer .ccn__infos{
    margin-left: 8.333%;
    margin-top: 0px;
  }

  footer .ccn__logo-small{
    padding: 0.2rem 1rem 0.2rem 0rem;
  }

}

/* md size */
@media only screen and (min-width: 64em) {
}

/* lg size */
@media only screen and (min-width: 75em) {

}
/* xl size */
@media only screen and (min-width: 90em) {
  :root{
    --fontSize: 27px;
  }
  .social-network li{
    margin-left: 15px;
    font-size: 22px;
  }
/*  .page_header h2{
    width: 60%;
  }*/

}


/*@media only screen and (min-width: 1600px) {
  :root{
    --fontSize: 27px;
  }
}*/



