/* Hide bottom bar above 768px  */
@media only screen and (min-width: 768px) {
  #portal-bottomBar {
    display: none;
  }
}

/* Mobile only */
@media only screen and (max-width: 768px) {
  #portal-bottomBar {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 50px;
    width: 100%;
    background-color: white;
    z-index: 9999;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #portal-bottomBar .portal-bottomBar__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 100%;
    border-top: 1px solid #707070;
  }

  #portal-bottomBar .portal-bottomBar__list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
    position: relative;
    height: 50px;
    width: 100%;
  }

  #portal-bottomBar
    .portal-bottomBar__list-item:not(.active) {
    border-left: 1px solid #707070;
  }

  #portal-bottomBar .portal-bottomBar__list-item.active {
    background-color: var(--bottomBar-active-bg);
    position: relative;
  }

  #portal-bottomBar .portal-bottomBar__list-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--sidebar-active-color);
    border-radius: 5px 5px 5px 5px;
    transition: 0.2s ease-in-out;
    opacity: 0;
  }

  #portal-bottomBar
    .portal-bottomBar__list-item.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background-color: var(--sidebar-active-color);
    border-radius: 5px 5px 5px 0;
    opacity: 1;
  }

  #portal-bottomBar
    .portal-bottomBar__list-item.active
    .portal-bottomBar__list-link {
    color: var(--sidebar-active-color);
  }

  #portal-bottomBar
    .portal-bottomBar__list-item.active
    .portal-bottomBar__list-icon {
    margin-left: 10px;
  }

  #portal-bottomBar .portal-bottomBar__list-icon {
    width: 24px;
    height: 24px;
  }

  #portal-bottomBar a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #portal-bottomBar .portal-bottomBar__list-link {
    text-decoration: none;
    color: var(--sidebar-color-primary);
    font-size: 14px;
    white-space: nowrap;
    padding: 0 10px;
  }

  #portal-bottomBar .portal-bottomBar__footer {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #portal-bottomBar .portal-bottomBar__search-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }

  #portal-bottomBar
    .portal-bottomBar__search-form
    .portal-bottomBar__search-input {
    width: 200px;
    padding: 10px;
    border: 1px var(--btn-color-primary) solid;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
  }
}
