/* Style the tab */
.tab {
  overflow: visible;
  background-color: transparent;
  gap: 10px !important;
  padding: 4px 10px;
  margin: 10px;
  position: sticky;
  top: 0px;
  /* border: 1px solid #aaa; */
  border-radius: 0px;
  
  width: auto !important;
}

.tablinks__list {
  background-color: #3d3d3d97;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.tab .btn {
  width: 100% !important;
  border: none;
  margin: 0px;
  font-weight: 100;
  border-radius: 0px;
  background-color: transparent;
  transition: 300ms;
}

.btn.selected {
  border-radius: 0x;
  background-color: #3d3d3d;
}

.btn--invisible {
  visibility: hidden !;
  display: none !important;
}
/* Style the tab content */
.tabcontent {
  display: none;
}

.bottom-panel {
  position: fixed;
  background-color: #3d3d3d97;
  height: 80px;
  width: 100%;
  z-index: 1;
  gap: 25px;
  bottom: 0px;
  align-content: center;
}

.bottom-panel ul {
  background-color: transparent;
  height: 100%;
  justify-content: space-around;

  li {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    color: #ddd;
    font-size: 1.5rem;
    letter-spacing: 1.2px;
    font-weight: 300;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    transition: 500ms;
  }

  li:hover {
    border-bottom: 15px solid #ddd;
  }
}

aside {
  left: 30px;
  top: 0px;
  width: 30px !important;
  position: fixed;
  height: 100%;
}

aside nav {
  background-color: var(--color-light);
  width: 100%;
  padding: 20px;
  height: min-content;
  gap: 20px;
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0px 0px 11px 4px rgba(219, 219, 219, 1);
  -webkit-box-shadow: 0px 0px 11px 4px rgba(219, 219, 219, 1);
  -moz-box-shadow: 0px 0px 11px 4px rgba(219, 219, 219, 1);
  li {
    background-color: transparent;

    button {
      padding: 15px;
      background-color: var(--background-light);
      border: 2px solid var(--color-brand);
    }
  }

  img {
    width: 25px;
    height: 25px;
  }
}


@media(max-width: 586px) {
  .bottom-panel {

    li {
      font-size: 1.2rem !important;
    }
  }
}

@media(max-width: 400px) {
  .bottom-panel {

    li {
      font-size: 1rem !important;
    }
  }
}