.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-link {
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
  background: #202020;
  font-family: "amazonember";
}
.nav-link.active {
  text-decoration-color: var(--primary) !important;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  background: var(--background);
}
.nav-link:hover{
  color: white;
  text-decoration-color: var(--primary) !important;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}
/* Tab Panes */
.tab-content {
  height: calc(100% - 37px);
}
.tab-pane {
  height: 100%;
}
@media all and (orientation: portrait) {
  .tab-content {
    height: var(--chat-height);
  }
}
@media only screen and (min-width: 1920px) {
  .nav-link {
    font-size: 17px !important;
  }
}
@media only screen and (min-width: 2800px) {
  .nav-link {
    font-size: 30px !important;
    padding: 18px !important;
  }

  .nav-link.active {
    text-decoration-thickness: 5px !important;
  }
}
@media only screen and (min-width: 3800px) {
  .nav-link {
    font-size: 45px !important;
    padding: 18px !important;
  }

  .nav-link.active {
    text-decoration-thickness: 8px !important;
  }
}