/* +++++++++++++++++++++++++++++++ *\
          BOITE MODAL
\* +++++++++++++++++++++++++++++++ */
.app_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    animation: fadeIn .3s both;
}
  
.app_overlay[aria-hidden="true"] {
    animation-name: fadeOut;
}
  
.app_modal {
    background-color: #fefefe;
    max-width: 992px;
    max-height: 80vh;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    padding: 30px;
    overflow: auto;
    border-radius: 4px;
  
    box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 4px 2px;
  
    animation: slideFromTop .3s both 0.1s;
}

.app_overlay[aria-hidden="true"] .app_modal {
    animation-name: slideToBottom;
}
  
.app_modal *:focus {
    border-bottom: 1px solid rgba(0, 0, 0);
}