#div_identity{
    position:relative;
    width:150px;
    height:50px;
    
    /*top: -50px;*/
    /* right: 0px; */
    float: right;
    margin-right: 50px;
    z-index: 3000;
}



.div_identity{
    position:absolute;
    /*border: thin solid black;*/
    width:100%;
    text-align: center;
    cursor: pointer;

}

.div_identity .div_username{
    position: relative;
    top: -12px;
    
}
.visible{    display:block !important;}

.invisible{    display:none;;}

.pictouser {
   
    background: url(//www.airmate.aero/php/templates/login/pictouser.png) no-repeat center center; 
    background-size: contain; 
    margin: auto;
}


#popup_login{
    /*
    position: absolute;
    top:45%;
    margin-left: 50%;
    margin-right: 50%;
    */
}

.description{
    font-size: small;   
}

.error{
    color: red;
    display: none;
}

#list_airports{  
    position: relative;
    z-index: 200000;
}
.lean_overlay, 
#lean_overlay {
    position: fixed;
    z-index:2500;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
    
}

.popups {
    width: 404px;
    padding-bottom: 12px;
    display:none;
    background: #FFF;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);

}
.popup-header{
     border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
.popup-title{
    /*margin: 18px;*/
}

.modal_close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: block;
    width: 14px;
    height: 14px;
    background: url(//www.airmate.aero/php/templates/modal_close.png);
    z-index: 2;
}

.popup_input{
    padding: 5px 18px 5px  18px ;
}

.input_invalid {
  border: 1px solid red;
}

input:valid {
  border: 1px solid green;
}

.valid_btn_ok
{
    background-color: green !important;
}

.unselectable{
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
    opacity: 0.2;
     cursor: default !important;
}

.unselectable2{
    -webkit-user-select: none; /* Chrome/Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */

    /* Rules below not implemented in browsers yet */
    -o-user-select: none;
    user-select: none;
    background-color:#eee;
    cursor: default !important;
}

.selectable{
    -webkit-user-select: all;  /* Chrome 49+ */
  -moz-user-select: all;     /* Firefox 43+ */
  -ms-user-select: all;      /* No support yet */
  user-select: all; 
  opacity: 1;
  cursor: pointer  !important;
}

#popup_identity{
    width:240px;
    font-size: small;
    padding:10px;
}

#popup_identity_div1{
       vertical-align: top;
}
#popup_identity_div2{
    display:inline-block;
     width:20%;
     vertical-align: middle;
}
#popup_identity_div3{
     display:inline-block;
        width:50%;
        padding: 10px;
        vertical-align: top;
}

#popup_identity .modal_close {
    top: 5px;
    right: 5px;
}





.picto_logout {width:90%; height:auto;cursor:pointer;}

.clear{
      clear:both;
}

.float_left{
    float: left;
}


.ui-state-highlight{
        border-radius: 6px;
       
	 
	    
	    border: 1px solid #d9bb73;
    background: #f5f5b5;
    color: #060200;
    margin:20px; 
    color: green;
    
       
    padding: 0 .7em;
 
}

.success{
      color: green;    
}

.small_input{
    width:80px;
    text-align: center;
}

.small_button{
    border: solid thin green;
    padding-bottom: 0px;
    padding-top: 0px;
    margin:2px;
}



#popup_already_email input{
    margin:4px;
}

.txt_center{
    text-align: center;
}

#popup_voucher{
    z-index: 6890 !important;
}



#popup_cookies{
    position: fixed;
    bottom: 0;
    left: 0;
    right:0;
    
    z-index: 6895 !important;
}


/*------------------- ANIMATIONS -------------------*/
/*---------https://daneden.github.io/animate.css/----*/


.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}


@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(3, 3, 3);
    transform: scale3d(3, 3, 3);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(2, 2, 2);
    transform: scale3d(2, 2, 2);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

.large_field{
    width:300px;
}


.popup_error{
    
}


.popups input[type="text"], .popups input[type="email"], .popups input[type="url"], .popups input[type="password"], .popups input[type="search"], .popups textarea,  .popups select {
    max-width: 100%;
    padding: 0.3em 0.6em;
    color: #666;
    border: 1px solid #ddd;
}

/*
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"] {
     width:300px;
}
*/




/*--------------------------------------------------------------

## 14.2 - Desktop Medium ( < 1040px )

--------------------------------------------------------------*/

@media only screen and (max-width: 65em) {
    
    #div_identity{
        top: -50px;
        width: 250px !important;
}
    
    
}