

/* =======================================
    SIDE-NAV-START
  ======================================== */


.side-nav {
  list-style: none;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0.3rem;
  padding: 0;
  width: 100%;
}

.side-nav-item {
  padding: 5px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  font-size: .7rem;
  color: #666;
}

.side-nav-item-active {
  background-color: #999;
  color: #EEE;
}

.side-nav-item > i:first-child {
  margin-right: 5px;
}

.side-nav-content {
  position: relative;
}

.side-nav-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* float: left; */
  margin-right: 20px;
  /* margin-bottom: 10px; */
}

.side-nav-content {
  display: none;
  width: 0;
  height: 0;
  transition: width 300ms ease, height 300ms ease;
}

.side-nav-content-active {
  display: block;
  width: auto;
  height: auto;
  transition: width 300ms ease, height 300ms ease;
}

@media (min-width: 0px) {
  .side-nav-section .rv-divider-dark-full {
    border-width: 0;
  }

  .side-nav-section .margin-left-2x {
    margin-left: 0;
  }

  .side-nav-section .margin-right-2x {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .side-nav-section .rv-divider-dark-full {
    border-width: 1px;
  }

  .side-nav-section .margin-left-2x {
    margin-left: 2rem;
  }

  .side-nav-section .margin-right-2x {
    margin-right: 2rem;
  }
}


/* =======================================
    SIDE-NAV-END
  ======================================== */
