.nav-bar {
  background: #0053e2;
  padding: 12px 24px 12px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.offcanvas{
  background: #0053e2;
}
.menu-txt{
  color: white;
  font-family: var(--fontfamily-bogle, "EverydaySans-Regular", sans-serif);
  font-weight: 400;
  position: relative;
}
.grid-img{
  width: 24px;
  position: relative;
  overflow: visible;
}
.user-img{
  position: relative;
  overflow: visible;
}
.sso{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}
.sso-txt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.sesion-txt{
  text-align: center;
  font-family: var(--fontfamily-everydaysans, "EverydaySans-Regular", sans-serif);
  font-size: 12px;
  font-weight: 400;
  position: relative;
}
.cuenta-txt{
  font-family: var(--fontfamily-everydaysans, "EverydaySans-Bold", sans-serif);
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.listHeader{
  border: unset;
  border-radius: unset;
  box-shadow: unset !important;
}
.listHeader img {
    width: 32px;
}
.banner-activa{
  background: #ffc220;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: sticky;
  top: 83px;
  z-index: 1019;
  padding: 0 1rem;
  text-align: center;
  font-weight: 500;
}
.banner-content{
  padding: 16px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}
.banner-txt{
  color: #2e2f32;
  text-align: center;
  font-family: var(--fontfamily-everydaysans, "-", sans-serif);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  width: 100%;
}
.banner-close{
  padding: 11px 0px;
  width: 30px;
}
.desktop {
  display: none;
}
.mobile {
  display: block;
}
.footer__copyright {
    background-color: #00225a;
    font-size: 15px;
    color: #F6F6F6;
    text-align: center;
    padding: 16px 0;
}
.footer__copyright img{
    width: 50px;
    position: relative;
    top: -3px;
}
footer{
    background-color: #e2eefa;
    padding: 20px 0px 0px 0px;
    text-align: center;
}
.text-blue {
  color: #0053e2;
}
.form-control.error{
    border: 2px solid red;
}
.form-select.error{
    border: 2px solid red;
}
.form-check-input.error{
    border: 2px solid red;
}
.form-label.error {
    color: red;
}
@media screen and (min-width: 1000px) {
  .desktop {
    display: block;
  }
  .mobile {
    display: none;
  }
  .banner-activa{
    top: 98px;
  }
}
.pointer{
    cursor: pointer;
}