/* -------------------- GENERAL  -------------------- */
.hidden {
  display: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.img-link {
  text-decoration: none;
}

/* -------------------- LOADING SCREEN  -------------------- */
.sentient-loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8d8d8d;
  z-index: 100;
}

.sentient-loading-icon {
  position: fixed;
  top: 50%;
  left: 49%;
  transform: translate(-50%, -50%);
  color: #fff;
}

/* -------------------- NAVBAR  -------------------- */

.navbar-collapse-icon {
  display: flex;
  justify-content: center;
  position: relative;
  top: 0.8em;
  transition: 0.5s;
}

@media only screen and (max-width: 768px) {
  .sidebar-burger {
    width: 3.25rem;
    margin-right: auto;
    padding-left: 1em;
    padding-top: 0.8em;
    color: #4a4a4a;
  }
}

#brand-img {
  max-height: fit-content !important;
  width: 60px;
}

@media only screen and (max-width: 768px) {
  .navbar-menu {
    background-color: #64623d !important;
    border-top: 1px solid var(--grey);
  }
}

/* -------------------- ICONS / ROTATIONS  -------------------- */
.rotate180 {
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: 0.5s;
}
