/*notificattion*/
body {
  font-family: sans-serif !important;
}

/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.open-modal {
  font-weight: bold ;
  background: #013d6d ;
  color: #fff ;
  padding: 0.75rem 1.75rem ;
  margin-bottom: 1rem ;
  border-radius: 5px ;
}

.modal_update {
  position: fixed  ; 
  top: 0 ;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background:#000000cc;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.modal_update.is-visible {
  visibility: visible ;
  opacity: 1;
}

.modal_update-dialog {
  position: relative;
  max-width: 800px;
  max-height: 80vh;
  border-radius: 5px;
  background: #ffff;
  overflow: auto;
  cursor: default;
}

.modal_update-dialog > * {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.modal_update-header,
.modal_update-footer {
  background: #fff ;
}

.modal_update-header {
  display: flex ;
  align-items: center ;
  justify-content: space-between ;
  padding-top: 1rem ;
  margin-top: 1rem ;
}

.modal_update-header .close-modal {
  font-size: 1.8rem ;
}

.modal_update p + p {
  margin-top: 1rem ;
}
.modal_btn-group {
  text-align: center ;
}
.modal_update-button {
  cursor: pointer ;
  background: #013d6d ;
  color: #fff ;
  border: none ;
  outline: none ;
  font-size: inherit ;
}


#snackbar {
  visibility: hidden;
  min-width: 250px;
  height: 55px;
  background-color: #013d6d;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: bold;
  padding: 16px;
  position: fixed;
  right: 0%;
  bottom: 30px;
}
#span-message {
  margin-left: 5px;
}
#reload {
  padding: 11px;
  border-radius: 5px;
  background : #99999933
}
#reload.hidden {
  display: none;
}
#reload-btn.hidden {
  display: none;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
