@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@700&family=Roboto&display=swap");
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
:root {
    --primary-cimu: #015a92;
    --secondary-cimu: #01446d;
    --text-cimu: #000;
    --bg-color-cimu: #fafafa;
    --h4-cimu: #151515;
    --btn-background-cimu: #fff;
    --btn-border-cimu: #015a92;
    --btn-color-cimu: #01446d;
    --nav-color: #015a92;
}
.dark-mode:root {
    --primary-cimu: #000;
    --secondary-cimu: #000;
    --text-cimu: #fff;
    --bg-color-cimu: #000;
    --h4-cimu: #fff;
    --btn-background-cimu: #000;
    --btn-color-cimu: #fff;
    --nav-color: #000;
}
* {
      margin: 0;
      padding: 0;
      font-family: "Open Sans", sans-serif;
}
body 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:var(--bg-color-cimu);
    color: var(--text-cimu)
}
h1, h2, h3, h4, h5
{
    color:var(--text-cimu);
}
.navbar-background-2 {
    background-color: var(--nav-color) !important;
}
.public-header-container
{
    background-color: var(--primary-cimu);
    /*background: #015a92;*/
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
  
}
.public-header-main
{
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 15px 20px;
}
.public-title-cimu
{
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 48px;
}
.public-header-img-container
{
    width: 300px;
}
.public-header-img-container > img
{
    width: 260px;
}
.public-header-main-acessibilidade-container
{
    justify-content: center;
    flex-direction: column;
    align-items: center;
    display: flex;
    width: 300px;
}
.public-header-main-acessibilidade
{
    list-style: none;
    display: flex;
    margin: 0;
    padding: 10px 0;
}
.public-header-main-acessibilidade li span
{
    margin: 0 3px;
    color: #fff;
}
.public-header-main-acessibilidade li a
{
    text-decoration: none;
    color: #E5E5E5;
    font-size: 0.75em;
}
.public-header-button
{
    width: auto;
}
.public-header-button div
{
    background-color: var(--secondary-cimu);
    color: #fff;
    padding: 6px 20px;
    border-radius: 4px;
    border: 0;
    width: auto;
}

.public-header-button div:hover {
    cursor: pointer;
}

.public-header-button div:active {
    border: 0;
}


.modal-body form
{
    width: 100%;
}
.container-input
{
    display: flex;
    align-items: center;
    border: 1px solid #E5E5E5;
    height: auto;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px 0;
}
.container-input i
{
    margin: 10px;
    color: #ccc;
}
.container-input input {
    border: 0;
    flex: 1;
    height: 50px;
}
.container-input input:focus {
    outline: none;
}
.container-input input::-ms-reveal,
.container-input input::-ms-clear
{
    display: none;
}
.container-input-forgot {
    margin-top: -10px;
}
/** Modal Login Style  */
.login-container {
    width: 100%;
    height: 320px;
    display: flex;
}

.login-container-item-bottom {
    width: 50%;
    height: 100%;
    background-color: #015a92;
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-direction: column;
}

.login-container-item {
    width: 100%;
    height: 100%;
    background-color: var(--color);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.login-container-img {
    width: 50%;
    margin-top: 50px;
}

.login-cotainer-cimu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
}

.login-cimu-title {
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 40px;
}

.login-cotainer-cimu p {
    font-family: 'PT Sans', sans-serif;
    color: #fff;
}

.login-container-item h3 {
    font-family: 'PT Sans', sans-serif;
    color: #000;
}

.container-input-row {
    border-bottom: 2px solid #cccccc50;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
    display: flex;
    margin: 10px 0;
    width:90%;
}

.container-input-row p {
    font-family: 'PT Sans', sans-serif;
    color: var(--primary-cimu);
    margin: 0;
    padding:0;
}

.icon-input {
    width: 25px;
    height: 25px;
    filter: invert(83%) sepia(0%) saturate(1959%) hue-rotate(54deg) brightness(97%) contrast(97%);
}

.input-style {
    margin-left: 10px;
    border: 0;
    width: 100%;
    height: 30px;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
}

.input-style:focus {
    outline: none;
}

.input-style::-ms-reveal,
.input-style::-ms-clear {
    display: none;
}

.container-input-row:focus-within {
    border-bottom: 2px solid var(--primary-cimu);
}

.icon-lock {
    width: 25px;
    height: 25px;
    filter: invert(83%) sepia(0%) saturate(1959%) hue-rotate(54deg) brightness(97%) contrast(97%);
}

.icon-lock:hover {
    cursor: pointer;
}

.login-container-item button[type=submit] {
    background-color: var(--primary-cimu);
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    padding: 10px 50px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    margin-top: 40px;
}


.login-container-item button[type=submit]:hover {
    cursor: pointer;
}

.container-forgot {
    width: 100%;
    margin-top: -20px;
    justify-content: end;
    display: flex;
    margin-bottom: 40px;
}

    .container-forgot a:link, .container-forgot a:visited {
        font-family: 'PT Sans', sans-serif;
    }

    .container-forgot a:hover {
        text-decoration: underline;
    }

/* Modal style fim */
.nav-title {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    margin-top: 2px;
}
.main-title {
    font-size: 1.5rem;
}
.subtitle {
    font-size: 0.8rem;
    margin-top: -20px;
}
.logo-section {
    margin-top: 10px;
    margin-left: 200px;
}
.logo-section > img {
    width: 200px;
}
.menu {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.menu-acessibilidade > ul {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    padding-left: 130px;
    padding-right: 2px;
}
.menu-acessibilidade > ul > li {
    list-style: none;
    font-size: 0.7rem;
}
.menu-acessibilidade > ul > li > a {
    text-decoration: none;
    color: #E5E5E5;
}
.separador {
    margin: 0 3px;
    color: #fff;
}
.btn-acesso {
    margin-left: 140px;
 
}
.btn-acesso > button {
    background-color: var(--secondary-cimu);
    color: #fff;
    border: 1px solid var(--text-cimu);
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.btn-acesso > button:hover {
    background-color: var(--secondary-cimu);
    color: #fff;
    transition: 0.5s;
    border: 1px solid var(--text-cimu)
}
.menu-mobile {
    display: none;
}
.login-modal {
    position: absolute;
    z-index: 20000000;
    left: 950px;
    bottom: 320px;
    width: 300px;
    height: 240px;
    background-color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 4px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.button {
  margin-right: 80px;
  background-color: #015a92;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px -1px 4px rgba(0, 0, 0, 0.25);
  border: none;
}

.button:hover {
  cursor: pointer;
  background-color: #01446d;
}

.button span {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  letter-spacing: -0.02em;
}

#carouselExampleControls {
  height: 420px;
}

.carousel-item {
  height: 420px;
}

.carousel-item img {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.carousel-btn {
  width: 64px;
  height: 64px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: rgba(84, 84, 84, 0.2);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.carousel-btn-prev {
  left: 48px;
}

.carousel-btn-next {
  right: 48px;
}

.carousel-btn-prev span img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.carousel-item-info {
  width: 100%;
  height: 112px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(21, 21, 21, 0.7);
  display: flex;
  justify-content: center;
}

.carousel-item-info h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #ffffff;
}

.carousel-item-info p {
  padding: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #ffffff;
  overflow: hidden; /* remove o estouro do elemento */
  text-overflow: ellipsis; /* adiciona “...” no final */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* quantidade de linhas */
  -webkit-box-orient: vertical;
}
.text-container {
  padding: 0 10px;
}
.container-grid {
  max-width: 1040px;
  width: 100%;
}
.container-grid h4 {
  margin-bottom: 40px;
}
.container-nav {
  margin: 40px 0;
  display: flex;
  width: 100%;
  justify-content: center;
}
.card-img {
  width: 325px;
  height: 189px;
}
.card-container {
  width: 325px;
  height: 270px;
}
.card-body-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.card-body-container h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #151515;
  padding: 0;
  margin: 0;
}
.container-grid-nav {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 325px));

  object-fit: cover;
  justify-content: start;
}
.fooder-container {
    background-color: var(--primary-cimu);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 146px;
}
.fooder-container.portal {
    min-height: 50px;
}
.footer-container-main {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-container p {
    margin: 0;
    color: #ffF;
    font-family: 'PT Sans', sans-serif;
}
.by-power {
    align-items: center;
    flex-direction: column;
    display: flex;
    color: white;
}
.footer-img-container {
    width: 400px;
    display: flex;
    justify-content: end;
}
.footer-img-container-gov {
    width: 100%;
}
.footer-img-container-proderj {
    width: 100px;
}
.fooder-text-little {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin: 0;
}
.fooder-text-big {
    font-size: 19px;
    font-family: "Arimo", sans-serif;
    margin: 0;
    color:#fff;
}

.modal-body-container {
    display: flex;
    align-content: center;
}

@media screen and (min-width: 619px) and (max-width: 920px) {
    .nav-publico ul {
        max-width:619px;
        overflow:auto;
        display: flex;
        flex-direction:row;
    }
    .text-container {
        padding: 0 50px;
    }

    .h4 {
        text-align: center;
    }
    .head-container {
        height: auto;
        display: block;
        position: relative;
    }

    .img-log {
        width: 75%;
    }

    .title-container {
        position: inherit;
        top: inherit;
        left: inherit;
        transform: inherit;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: -13px;
        padding-bottom: 40px;
    }

    .title-container h3 {
        font-size: 39px;
        line-height: 65px;
    }

    .title-container p {
        font-size: 17px;
        line-height: 19px;
    }

    .img-container-log {
        width: 100%;
        display: flex;
        justify-content: center;
        height: 115px;
    }

    .button {
        position: absolute;
        right: -50px;
        top: 140px;
    }
    .public-header-main {
        justify-content: space-around; 
    }

    .public-header-button {
        display: none;
    }

    .public-header-img-container {
        width: auto;
    }

    .footer-container-main {
        justify-content: space-around;
    }

    .footer-img-container{
        width: auto;
    }
}

@media screen and (max-width: 620px) {
    .head-container {
        height: auto;
        display: block;
    }

    .img-log {
        width: 90%;
    }

    .title-container {
        position: inherit;
        top: inherit;
        left: inherit;
        transform: inherit;
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: -25px;
        padding-bottom: 40px;
    }

    .button {
        display: none;
    }

    .img-container-log {
        width: 100%;
        display: flex;
        justify-content: center;
        height: 115px;
    }

    .title-container h3 {
        font-weight: 600;
        font-size: 30px;
        line-height: 65px;
        margin: 0;
    }

    .title-container p {
        font-weight: 400;
        font-size: 17px;
        line-height: 20px;
        margin: 0;
    }

    .carousel-btn {
        display: none;
    }

    .carousel-item-info h5 {
        line-height: 25px;
        font-size: 20px;
    }

    .carousel-item-info p {
        font-size: 17px;
        line-height: 20px;
        margin: 0;
    }

    .container-grid {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .container-grid h4 {
        margin-bottom: 40px;
    }

    .h4 {
        font-size: 25px;
        line-height: 25px;
    }
    .public-header-main {
        justify-content: space-around;
    }
    .public-header-button {
        display: none;
    }
/*    .public-header-main-acessibilidade-container {
        margin-top: 10px;
    }*/
    .public-header-img-container {
        width: auto;
    }
    .public-header-img-container > img {
        width: 200px
    }
    .footer-container-main {
        justify-content: center;
        flex-direction: column
    }
    .footer-img-container {
        width: auto;
        margin-top: 20px;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@700&family=Roboto&display=swap");

* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}
.head-container {
    position: relative;
    width: 100%;
    height: 110px;
    background-color: #015a92;
    align-items: center;
    justify-content: space-between;
    display: flex;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.password-icon {
    position: relative;
    top:1px;
    left: 28px;
    margin: 0;
}
.fa-eye {
    position: relative;
    top:-31px;
    left: 235px;
    cursor: pointer;
}
.btn-entrar {
    width: 100%;
    background-color: #015a92;
    border-radius: 2px;
    color: white;
    border: none;
    text-transform: uppercase;
    padding: 4px;
    margin-top: -50px;
}
.btn-entrar:hover{
    background-color: #01446d;
}
.img-log {
    width: 320px;
    height: 115px;
    background-image: url("../images/logo-gov.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.title-container {
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.title-container h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 65px;
  margin: 0;
}

.title-container p {
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  margin: 0;
}

.button {
  margin-right: 80px;
  background-color: #015a92;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px -1px 4px rgba(0, 0, 0, 0.25);
  border: none;
}

.button:hover {
  cursor: pointer;
  background-color: #01446d;
}

.button span {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  letter-spacing: -0.02em;
}

#carouselExampleControls {
  height: 420px;
}

.carousel-item {
  height: 420px;
}

.carousel-item img {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.carousel-btn {
  width: 64px;
  height: 64px;
  top: 50%;
  transform: translate(0, -50%);
  background-color: rgba(84, 84, 84, 0.2);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.carousel-btn-prev {
  left: 48px;
}

.carousel-btn-next {
  right: 48px;
}

.carousel-btn-prev span img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.carousel-item-info {
  width: 100%;
  height: 112px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(21, 21, 21, 0.7);
  display: flex;
  justify-content: center;
}

.carousel-item-info h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: #ffffff;
}

.carousel-item-info p {
  padding: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #ffffff;
  overflow: hidden; /* remove o estouro do elemento */
  text-overflow: ellipsis; /* adiciona “...” no final */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* quantidade de linhas */
  -webkit-box-orient: vertical;
}

.text-container {
  padding: 0 10px;
}

.container-grid {
  max-width: 1040px;
  width: 100%;
}

.h4 {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  letter-spacing: 0.25px;
  color: #151515;
}

.container-grid h4 {
  margin-bottom: 40px;
}

.container-nav {
  margin: 40px 0;
  display: flex;
  width: 100%;
  justify-content: center;
}

.card-img {
  width: 325px;
  height: 189px;
}

.card-container {
  width: 325px;
  height: 270px;
}

.card-body-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color:var(--bg-color-cimu);
  color:var(--text-cimu)
}

.card-body-container h5 {
  text-align: center;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  color: var(--text-cimu);
  padding: 0;
  margin: 0;
}

.container-grid-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    flex-wrap: wrap;
}


.fooder-text-little {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  margin: 0;
}

.fooder-text-big {
  font-size: 19px;
  font-family: "Arimo", sans-serif;
  margin: 0;
}



@media screen and (min-width: 619px) and (max-width: 920px) {
    .text-container {
    padding: 0 50px;
  }

  .h4 {
    text-align: center;
  }
  .head-container {
    height: auto;
    display: block;
    position: relative;
  }

  .img-log {
    width: 75%;
  }

  .title-container {
    position: inherit;
    top: inherit;
    left: inherit;
    transform: inherit;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: -13px;
    padding-bottom: 40px;
  }

  .title-container h3 {
    font-size: 39px;
    line-height: 65px;
  }

  .title-container p {
    font-size: 17px;
    line-height: 19px;
  }

  .img-container-log {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 115px;
  }

  .button {
    position: absolute;
    right: -50px;
    top: 140px;
  }
}

@media screen and (max-width: 620px) {
  .head-container {
    height: auto;
    display: block;
  }

  .img-log {
    width: 90%;
  }

  .title-container {
    position: inherit;
    top: inherit;
    left: inherit;
    transform: inherit;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: -25px;
    padding-bottom: 40px;
  }

  .button {
    display: none;
  }

  .img-container-log {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 115px;
  }

  .title-container h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 65px;
    margin: 0;
  }

  .title-container p {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    margin: 0;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-item-info h5 {
    line-height: 25px;
    font-size: 20px;
  }

  .carousel-item-info p {
    font-size: 17px;
    line-height: 20px;
    margin: 0;
  }

  .container-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .container-grid h4 {
    margin-bottom: 40px;
  }

  .h4 {
    font-size: 25px;
    line-height: 25px;
  }
}
@media(max-width:600px) {

    .nav-publico {
        background-color: var(--primary-cimu);
        padding: 40px 10px 10px 10px;
      
    }
       
            .nav-publico ul li {
               display:inline;
               font-size: 0.5rem;
            }



            nav {
                display: flex;
                flex-direction: column;
                background-color: var(--primary-cimu) !important;
                color: #fff;
                font-family: 'Inter', sans-serif;
                width: 100%;
            }

    .main-title {
        font-size: 1.3rem;
        margin-left: 80px;
    }

    .subtitle {
        font-size: 0.6rem;
        margin-top: -20px;
        margin-left: 50px;
    }

    .logo-section {
        margin-top: 5px;
        margin-left: 130px;
    }

        .logo-section > img {
            width: 150px;
        }

    .menu-acessibilidade {
        display: none;
    }

    .btn-acesso {
        display: none;
    }

    .menu-mobile {
        display: block;
        margin-left: 167px;
        padding: 5px;
    }

        .menu-mobile > a {
            text-decoration: none;
            color: #fff;
        }

    .menu-mobile-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .menu-mobile-section > a {
            text-decoration: none;
            color: #E5E5E5;
            padding: 8px;
        }

    .public-header-container {
        background-color: var(--primary-cimu);
        /*background: #015a92;*/
        justify-content: center;
        display: flex;
        width: 100%;
        flex-direction:row;
/*        padding-bottom:60px;*/
    }
    
}
@media(max-width:768px) {
    .menu-acessibilidade > ul {
        display: flex;
        justify-content: space-between;
        margin-top: 4px;
        padding-right: 2px;
    }
}

.modal-container.open {
    display: block;
}

.modal-container {
    display: none;
}

.modal-menu {
    right: 0;
    position: absolute;
    top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    min-width: 200px;
    border: 0;
    border-radius: 6px;
    padding: 20px;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0px 0px 23px 2px rgba(0,0,0,0.30);
    -webkit-box-shadow: 0px 0px 23px 2px rgba(0,0,0,0.30);
    -moz-box-shadow: 0px 0px 23px 2px rgba(0,0,0,0.30);
}

.modal-menu .container-img {
    width: 100px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin: 20px 0;
}

.modal-menu .container-img img {
    width: 100%;
}
.modal-menu > p
{
    margin: 5px;
    font-weight: 600;
    color: var(--primary-cimu);
}
.modal-menu button:hover
{
    cursor: pointer;
}
.modal-menu button:active
{
    opacity: 0.7;
}
.modal-menu button:not(.close)
{
    border: 1px solid var(--primary-cimu);
    background-color: white;
    padding: 10px;
    color: var(--primary-cimu);
    width: 100%;
    border-radius: 5px;
    margin: 5px 0;
}
.modal-menu button.logout
{
    background-color: var(--primary-cimu);
    color: white;
}
.modal-menu button.close
{
    border: 0;
    padding: 10px;
    color: black;
    background-color: white;
    position: absolute;
    top: 0;
    right: 0;
}

