/*notificattion*/
@import url('/fonts/roboto.css');


html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
 /* El contenido ocupa todo el espacio restante */
main {
  flex: 1;
}

/* Estilo del footer */
footer {
  font-family: roboto !important;
  text-align: center;
  padding: 1rem;
}
footer div {
  cursor: pointer;
  display: flex;
  align-items: center;
}
footer span {
  color: #0000008a;
  text-decoration: none;
  cursor: pointer;
}


/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.img_intercom {
  margin-right: 0.4rem;
  height: 35px;
  width: 35px;
  background-color: #4050b5; /* Color de fondo del círculo */
  border-radius: 50%;        /* Hace que los bordes sean redondeados */
  display: flex;             /* Centra el contenido si es necesario */
  justify-content: center;   /* Centra horizontalmente */
  align-items: center;
}
.static_message_alliance{
  max-width: 12.5rem;
}
.progress-bar {
  width: 100%;
  max-width: 37.5rem; /* Ancho máximo de la barra */
  background-color: #4174B91A;
  border-radius: 10px;
  margin: 20px auto; /* Centra la barra horizontalmente */
  overflow: hidden;
}
.progress-bar-inner {
  height: 5px;
  background-color: #4174B9;
  border-radius: 10px;
}
.counter-bar{
  margin-left: 0.4rem;
}

.open-modal {
  font-weight: bold ;
  background: #4174B9 ;
  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: 2rem;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;

}

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


.modal_update-dialog {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  width: 35.5rem;
  color: #0000008A;
  border-radius: 20px;
  background: #FAFAFA;
  padding: 40px 24px 40px 24px;
  text-align :center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal_update-dialog.is-error {
  background: #E742430F;
}

.modal_update-dialog > * {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
}
.modal_update-span-message{
  border-radius: '4px';
  align-self: center;
  background: #FAFAFA ;
  margin-top: '0.5rem';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.25px;
}
.modal_update-header,
.modal_update-footer {
    background: #FAFAFA ;
    margin-top: auto;
    display: flex;
    align-items: center;
}
.modal_update-header.is-error {
  background: #fff5f4;
}
.modal_update-footer.is-error {
  background: #fff5f4;
}
.container-messages {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.msg-load{
 color: green;
}

.modal_update-header {
  margin: 2rem;
  display: flex ;
  align-items: center ;
  justify-content: center ;
}
.modal_update-content {
  text-align: start;
  padding-left: 2rem;
  flex-grow: 1;
  overflow-y: auto;
}

.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: #4174B9 ;
  color: #fff ;
  border: none ;
  outline: none ;
  font-size: inherit ;
}


#snackbar {
  font-family: 'Roboto', sans-serif;
  visibility: hidden;
  min-width: 250px;
  height: 55px;
  background-color: #4174B9;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  font-size: 13px;
  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;
  }
}
