
.nav-hover:hover {
    background-color: #0168b5 !important;
    color:#fff !important;
    transition: 0.3s;
  }

  .dropdown-menu{
      border:none;
  }

  .img-hover:hover{
      opacity: 0.8;
      transition: 0.3s;
      cursor: pointer;
  }

/* SIDEBAR POSITION */
@media (max-width: 700px) {
.sidebar {
  background-color: #f1f1f1;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -300px;
  min-width: 300px;
}
.sidebar__content {
}
/* SIDEBAR HIDDEN STATE */
.sidebar[aria-hidden="true"] {
  transition: 200ms;
  transform: translateX(0%);
}
/* SIDEBAR VISIBLE STATE */
.sidebar:not([aria-hidden]),
.sidebar[aria-hidden="false"] {
  transition: 200ms;
  transform: translateX(100%);
}
}

.row-flex {
  display: flex;
  flex-wrap: wrap;
}

