

.large_im {
    max-height: 300px;
    max-width: 300px;
}


.bound_medium_im{
  max-height: 200px;
  max-width: 200px;
}

.bound_large_im{
  max-height: 600px;
  max-width: 600px;
}

.medium_im {
    height: 200px;
    width: 200px;
}

.small_im {
    max-height: 100px;
    max-width: 100px;
}

.show_im {
  max-width: 85vw;
  max-height: 70vh;
  margin: auto;
}

.modalDialog {
    position: fixed;
    z-index: 99998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    text-align: center;
    vertical-align: middle;
    //line-height: 90px;
}

.modalDialog:target {
    opacity: 1;
    pointer-events: auto;
}

.modalDialog > div {
    position: relative;
    margin: 5%auto;
    border-radius: 2px;
}



.show_im {
  z-index: 1;
    position: relative;
}
.mask {
  z-index: 2;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Set rules to fill background */
   min-height: 100%;
   min-width: 100%;

}


// for button close in modal dialogs3
/*.close {
    font-size: 2vw;
    background: #606061;
    color: #000000;
}*/


.close:hover {
    //font-size: 2vw;
    background: #606061;
    color: #111111;
}


// style des puces
ol {counter-reset: repas;} /* on initialise et nomme un compteur */
ol > li {
    list-style-type: none;
    counter-increment: repas; /* on incrémente le compteur à chaque nouveau li */
    margin-bottom: 10px;
}
ol > li:before {
    content: counter(repas); /* on affiche le compteur */
    padding: 0 20px 6px;
    margin-right: 8px;
    vertical-align: top;
    font-weight: bold;
    font-size: 0.9em;

}
