@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
body,
button {
  font-family: "Inter", sans-serif;
}
:root {
  --offcanvas-width: 270px;
  --topNavbarHeight: 56px;
  --corPrimária: #252525;
  --corSecundária: #fc3c04;
}
.sidebar-nav {
  width: var(--offcanvas-width);
}
.sidebar-link {
  display: flex;
  align-items: center;
}
.sidebar-link .right-icon {
  display: inline-flex;
}
.sidebar-link[aria-expanded="true"] .right-icon {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  body {
    overflow: auto !important;
  }
  main {
    margin-left: var(--offcanvas-width);
  }
  /* this is to remove the backdrop */
  .offcanvas-backdrop::before {
    display: none;
  }
  .sidebar-nav {
    -webkit-transform: none;
    transform: none;
    visibility: visible !important;
    height: calc(100% - var(--topNavbarHeight));
    top: var(--topNavbarHeight);
  }
}
.bk-dark {
  background-color: var(--corPrimária);
  color: #fff;
}

.centro-tela {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.btn-save {
  background-color: var(--corPrimária);
  border-color: #fff;
  color: #fff;
}

.no-border {
  border: none;
}
/* Estilo para remover a borda entre os itens na lista */
.no-border .list-group-item {
  border: none;
}

.errorWrap {
  padding: 10px;
  margin: 0 0 20px 0;
  background: #dd3d36;
  color: #fff;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
}

.succWrap {
  padding: 10px;
  margin: 0 0 20px 0;
  background: #5cb85c;
  color: #fff;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .1);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.succWrap.show {
  opacity: 1;
}

/* Estilo para o item de menu ativo */
.sidebar-nav a.ativa {
  background-color: var(--corSecundária);
  color: #fff!important;
  font-weight: bold;
}

/* Estilo para destacar o item de menu principal da página atual */
.current-page {
  background-color: var(--corSecundária);
  color: #fff;
  font-weight: bold;
}

/* Estilos para o modal */
.modalCSS {
  display: none;
  position: fixed;
  top: 65%;
  left: 75%;
  transform: translateX(-50%);
  width: 350px;
  background-color: #9b945f;
  border: 2px solid #ccc;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Estilos para o conteúdo do modal */
.modal-contentCSS {
  text-align: center;
  color: #fff;
  font-size: large
}

/* Estilos para o botão de fechar */
.closeCSS {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
