/* +++++++++++++++++++++++++++++++ *\
          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 0.3s both;
}

.app_overlay[aria-hidden="true"] {
  animation-name: fadeOut;
}

.app_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fefefe;
  max-width: 80%;
  max-height: 70vh;
  width: calc(100% - 20px);
  height: 70vh;
  padding: 0;
  overflow: hidden;
  border-radius: 4px;

  box-shadow: rgba(60, 64, 67, 0.3) 0px 0px 4px 2px;

  animation: slideFromTop 0.3s both 0.1s;
  translate: -50% -50%;
}

.app_overlay[aria-hidden="true"] .app_modal {
  animation-name: slideToBottom;
}

.app_modal *:focus {
  border-bottom: 1px solid rgba(0, 0, 0);
}

.button_close {
  position: absolute;
  top: 10px;
  right: 5%;
  background: red;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
  z-index: 1001;
  border-radius: 100%;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.button_close:hover,
.button_close:focus {
  background-color: hsl(0, 100%, 40%);
  
}
