form.search {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}


form.search button {
  /* width: 0px !important;
  height: 0px !important; */
  outline: none;
  position: absolute;
  right: 0px;
  /* background: #212529; */
  color: #212529;
}


form.search button:active,
form.search button:focus {
  /* width: 0px !important;
  height: 0px !important; */
  outline: none;

}


.category-sticky .category-itens  {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.category-sticky .category-itens a {
  border-radius: 16px;
  border: 2px solid whitesmoke;
  color: whitesmoke;
  
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  padding: 4px;
  margin: 4px;
  font-size: small;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Adiciona uma transição suave para transformação e sombra */
}


.category-sticky .category-itens a:hover {
  border: 2px solid whitesmoke;
  background-color: whitesmoke;
  color: #212529;
  
  transform: scale(1.05);
}



.social {
  display: table;
  margin: 15px auto 0 auto;
  list-style-type: none;
}

.social li {
  padding: 3px 0;
  padding-bottom: 25px;
  float: center;
}

.social li a {
  color: #CCC;
  font-size: 20px;
}

.social li i {
  width: 25px;
  height: 25px;
  text-align: center;
}

.social li a i {
  -webkit-transition: .5s all ease;
  -moz-transition: .5s all ease;
  transition: .5s all ease;
}

.social li:hover a i {
  font-size: 30px;
  margin-top: -20px;
  padding: 8px;
  padding-bottom: 35px;
  padding-right: 35px;
  border-radius: 50%;
  color: white;
}


#side_nav_oculter {
  margin-left: -15rem;
  z-index: 10;
  min-width: 15rem;
  width: 15rem;
  height: 100vh;
  position: fixed;
  /* background: rgba(0, 0, 0, 0.4); */
  /* min-width: 250px;
    max-width: 250px; */
}

#side_nav {

  min-width: 15rem;
  width: 15rem;
  height: 100vh;
  position: fixed;
  background: var(--bg-color);
  /* min-width: 250px;
    max-width: 250px; */
  transition: all 0.4s;
}

.content {
  min-height: 20rem;
  width: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1em;
  /* width: calc(100% - 17rem);
margin-left: 17rem; */
  transition: all 0.4s;

}


.sidebar li.active {
  background: whitesmoke;
  border-radius: 8px;
  /* border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px; */
}

.sidebar li.active a {
  color: #000;
  font-weight: 600;
  font-size: 14pt;
}

.sidebar li.active a:hover {
  color: #fff;
}

.sidebar li a {
  color: #fff;
}


.sidebar.active {
  /* margin-left: -15rem; */
}

.content.active {
  /* width: 100%; */
  margin: 0;

  /* width: calc(100% - 4rem);
  margin-left: 4rem; */
}





















.sidebar ul li {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  /* Forma inicial */
  transition: transform 0.5s ease-in-out, clip-path 0.5s ease-in-out;
  /* Adiciona transição em transform e clip-path */
  transform: scale(0.95);
  /* Começa menor para dar o efeito de colagem */
  opacity: 0.7;
  /* Começa com menor opacidade */
  margin-bottom: 4px;
  border: 2px solid transparent;
}

.sidebar ul li.active {
  position: relative;
  transition: clip-path 0.5s ease-in-out;
  /* Transição suave */
  clip-path: polygon(0 0, 91% 0, 100% 35%, 100% 100%, 9% 100%, 0 65%);

  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  border: 2px solid white;
  border-radius: 8px;
  transform: scale(1);
  /* Expande para o tamanho completo */
  opacity: 1;
  /* Opacidade total para parecer colado */
}

.sidebar ul li.active:before {
  content: "";
  display: block;
  width: 9%;
  height: 45%;
  bottom: -4px;
  left: -3px;
  background-color: transparent;
  border-top-right-radius: 8px;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid white;
  border-top: 2px solid white;
  position: absolute;

  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 3px 2px;
}


.sidebar ul li.active:after {
  content: "";
  display: block;
  width: 9%;
  height: 45%;
  top: -4px;
  right: -3px;
  background-color: transparent;
  border-bottom-left-radius: 8px;
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  border-right: 2px solid transparent;
  border-top: 2px solid transparent;
  position: absolute;

  box-shadow: rgba(0, 0, 0, 0.2) -2px 3px 3px -1px;
}




.sidebar ul li:hover {
  position: relative;
  transition: clip-path 0.5s ease-in-out;
  /* Transição suave */
  clip-path: polygon(0 0, 91% 0, 100% 35%, 100% 100%, 9% 100%, 0 65%);

  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  /* transform: scale(1); */
  /* Expande para o tamanho completo */
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  /* Opacidade total para parecer colado */
}

.sidebar ul li:hover:before {
  content: "";
  display: block;
  width: 9%;
  height: 45%;
  bottom: -4px;
  left: -3px;
  background-color: transparent;
  border-top-right-radius: 8px;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  position: absolute;

  box-shadow: rgba(0, 0, 0, 0.2) 3px 3px 3px 2px;
}


.sidebar ul li:hover:after {
  content: "";
  display: block;
  width: 9%;
  height: 45%;
  top: -4px;
  right: -3px;
  background-color: transparent;
  border-bottom-left-radius: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  border-right: 2px solid transparent;
  border-top: 2px solid transparent;
  position: absolute;

  box-shadow: rgba(0, 0, 0, 0.2) -2px 3px 3px -1px;
}















@media (max-width: 768px) {
  .sidebar {
    margin-left: -20rem;
  }

  .sidebar.active {
    margin-left: 0;
  }

  .content {
    width: 100%;
    margin: 0;
    margin-left: 0rem;
  }

  .content.active {
    margin-left: 5rem;
    width: calc(100% - 5rem);
  }

}

#sidebarCollapse {
  border-radius: 12px;
  border: 2px solid #eee;
}

.content h1,
p {
  color: #212529;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  margin: 12px;
  display: none;
}

.burger-menu>button {
  border-radius: 8px;
  border: 2px solid #eee;
}