/* 

.navbar-fixed {
  display: none;
  position: relative;
  width: 100%;
  z-index: 99;
}

.navbar-fixed__top {
  padding: 20px 0;
  width: 100%;
  background: #1B6313;
}

.navbar-fixed__top,
.navbar-fixed__bottom {
  position: relative;
  width: 100%;
}

.navbar-fixed__wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 216px;
  align-items: center;
  position: relative;
  height: 100%;
  max-width: 1178px;
  margin: 0 auto;
}

.navbar-fixed__left,
.navbar-fixed__center,
.navbar-fixed__right {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  height: 100%;
}

.navbar-fixed__left {
  justify-content: flex-start;
  margin-left: 20px;
}

.navbar-fixed__right {
  justify-content: flex-end;
  margin-right: 20px;
}

.navbar-fixed__center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.navbar-fixed__bottom .navbar-fixed__right {
  margin-right: 5px;
}

.navbar-fixed__logo {
  height: 76px;
}

.navbar-fixed__logo img {
  display: block;
}

.navbar-fixed__logo svg {
  display: block;
  height: 100%;
}

.nav-button{
display: flex;
height: 40px;
padding: 0px 16px !important;
justify-content: center;
align-items: center;
gap: 4px;
width: fit-content;
border-radius: 4px;
background:  #FFF;
color:#1670C0!important;
text-align: center;
font-size:  14px;
font-style: normal;
font-weight: 600;
line-height: 100%; 
margin-left: 40px;
}


.navbar-fixed__menu {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0;
  width: 250px;
  height: 100vh;
  margin: 0;
  list-style-type: none;
  transform: translateX(100%);
  transition: transform 320ms ease;
}

.navbar-fixed__menu.is-open {
  transform: translateX(0%);
}

.navbar-fixed__menu li {
  position: relative;
  width: 225px;
}

.navbar-fixed__menu li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.navbar-fixed__menu a {
  display: block;
  position: relative;
  padding: 15px 14px 15px 0;
  color: rgba(255, 255, 255, 1);
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  text-decoration: none;
  transition: all 160ms ease-out;
}

.navbar-fixed__menu b {
  font-weight: 600;
}

.navbar-fixed__logo-sistema {
  display: none;
}

@media screen and (min-width: 375px) {
  .navbar-fixed__logo-sistema {
    display: block;
    height: 24px;
  }

 
}

@media only screen and (min-width: 425px) {
  .navbar-fixed__logo-sistema {
    height: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.1);
    transition: all 160ms ease;
  }

  .navbar-fixed__top {
    padding: 0;
    height: 75px;
  }

  .navbar-fixed__bottom {
    display: none;
  }

  .navbar-fixed__left {
    margin-left: 0;
  }

  .navbar-fixed__right {
    margin-right: 0;
  }

  .navbar-fixed__logo {
    height: 76px;
  }

  .navbar-fixed__menu {
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items:center;
    position: relative;
    top: initial;
    right: initial;
    width: auto;
    height: auto;
    background-color: transparent;
    transform: none;
  }

  .navbar-fixed__menu li {
    width: auto;
  }

  .navbar-fixed__menu li:not(:last-child) {
    margin-right: 25px;
  }

  .navbar-fixed__menu li:not(:last-child)::after {
    content: none;
  }

  .navbar-fixed__menu a::before {
    content: none;
  }

  .navbar-fixed__menu a {
    display: flex;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }

 

  .navbar-fixed__logo-sistema {
    display: none;
    height: 32px;
    margin-left: 70px;
  }

  .navbar-fixed--visible {
  }
} */
