/* **********

FORCE PORTRAIT


******** */

/* SI paysage et mobile, on retourne (force à tourner la tablette) */
@media only screen and (orientation:landscape) and (max-device-width: 480px) {
  body {
    /*-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);*/
  }
}

/* SI portrait et mobile, on revient à l'initiale */
@media only screen and (orientation:portrait) and (max-device-width: 480px){
  body {
     -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
     -o-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
  }
}



/****************

  SELECTION 

*******/

::-moz-selection { /* Code for Firefox */
    background: #849ebd; 
}

::selection {
     background: #849ebd; 
}


/****************

  LANG TOOLS

*******/

body.en .lang-en{
	display:block;
}
body.en .lang-en.inline{
	display:inline;
}
body.fr .lang-en{
	display:none;
}

body.en .lang-fr{
	display:none;
}
body.fr .lang-fr{
	display:block;
}
body.fr .lang-fr.inline{
	display:inline;
}

body.fr .lang.fr {
    display: inline-block
}
body.fr .lang.en {
    display: none
}
body.en .lang.en {
    display: inline-block
}
body.en .lang.fr {
    display: none
}





/****************

  IMG TOOLS

*******/

/*NO SELECT*/

img {
  -moz-user-select: none;
   -webkit-user-select: none;
   -ms-user-select: none;
   user-select: none;

   -webkit-user-drag: none;
   user-drag: none;
}


.border{
  border: 12px solid #1c1c1b; /*#fff238 #849ebd   #1c1c1b*/
}
.invisible{
  display: none;
}

/****************

  ANIM TOOLS

*******/


.anim{
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.collapsing.no-transition {
  -moz-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
  display: none;
}

/*
  DISABLE BOOTRAP
*/

.panel {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0px;
}

.navbar{
  margin-bottom: 0px;
  position: absolute;
  z-index: 100;
  width: 100%;

}

.text-center{
  text-align: center;
}

/*
  DISABLE Menu BOOTRAP for large screen
*/

@media screen and (min-width: 768px) {
  body.home .navbar{
    display: none
  }
  body:not(.home) .navbar-header {
       float: none;
   }
  body:not(.home) .navbar-toggle {
       display: block;
   }
  body:not(.home) .navbar-collapse {
       border-top: 1px solid transparent;
       box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
   }
  body:not(.home) .navbar-collapse.collapse {
       display: none!important;
   }
  body:not(.home) .navbar-nav {
       float: none!important;
       margin: 7.5px -15px;
   }
  body:not(.home) .navbar-nav>li {
       float: none;
   }
  body:not(.home) .navbar-nav>li>a {
       padding-top: 10px;
       padding-bottom: 10px;
   }
  body:not(.home) .navbar-collapse.collapse {
       display: none!important;
   }

  body:not(.home) .navbar-collapse.collapse.in{
       display: block!important;
   }
}



/*POPOVER*/

.popover{
  color: #333;
}

/*
DISABLE INPUT LANG

*/

.menu-lang{
  margin: 20px auto 0px auto;
  width: 250px;
  text-align: center;
}

.menu-lang .item{
	display: inline-block;
    width: 100px;
	font-family:"sofia-light";
	
	color: #8a7f84;
}

.menu-lang label{
	font-weight:normal;
}

.menu-lang input[type="radio"]:not(:checked),input[type="radio"]:checked{
  position: absolute;
  cursor:pointer;
  opacity: 0;
  margin:0px;
  z-index: 1;
  min-width:20px;
  min-height:20px;
  height:20px;
  width:100px;
  margin:auto;
}

input[type="radio"]+label {
  pointer-events:none;
  color: #1c1c1b;
  background:nonce;
  display:inline-block;
  line-height:20px;
  text-align: center;
  width:100px;
  height:20px;
}

input[type="radio"]:hover+label {
  opacity:.9;
 }

input[type="radio"]:checked + label {
 
  color: #8a7f84;
  

}


/***********

DISABLE VIDEO FULLSCREEN

*************/
video::-webkit-media-controls-fullscreen-button
{
        display: none !important;
}