

.jsAlert {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.6);

  overflow-x: hidden;
  transition: 0.5s;
}

.jsAlert-content {
  position: relative;
  background-color:white;
  top: 25%;
  padding:5%;
  width: 80%;
  margin-left:auto;
  margin-right:auto;
  font-size:1.2em;
    color: #818181;
  text-align: center;
  margin-top: 30px;
}

.jsAlert a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.jsAlert a:hover, .jsAlert a:focus {
  color: #f1f1f1;
}

.jsAlert .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .jsAlert a {font-size: 20px}
  .jsAlert .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}

.hidden {
  display:none; 
}
.not_visible {
  visibility:hidden;
}
.inline {
  display:inline-block;
}

/* ipad input writable */
/* ipad input focusable + writable */
input, textarea  {
    -webkit-user-select: auto !important;
    -khtml-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    -o-user-select: auto !important;
    user-select: auto !important;  
}

div.gallery_overlay {

  position: fixed; /* Sit on top of the page content */
  display: block; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  min-height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
  overflow:scroll;

}
div.gallery_overlay_content {
  position:fixed;
  top:10vh;
  left:5vh;
  right:5vh;
  min-height:80vh;
  background-color:white;
  text-align:center;
  overflow:scroll;
  z-index:22;
}

.noscroll { 
  overflow: hidden;
}

