@import "/css/web-beauty.css";

/* Navigation */
.navigation {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: var(--badge-online-hover);
}
.navigation .primary {
  font-weight: normal;
}

.navigation .secondary {
  font-weight: bolder;
}

/* Header */
.docs-header {
  display: none;
}

/* Container */
.container {
  flex-direction: row;
  margin: 0;
  padding: 1rem;
  width: 100%;
  height: max-content;
}

/* Sidebar */
.drawer {
  position: sticky;
  top: 6rem;
  height: 80vh;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  padding: 0.5rem;
  text-align: center;
  width: 20%;
}

.drawer .list {
  flex-direction: column;
}

.drawer .list-item {
  padding: 0.5rem;
}

.list-item:hover {
  text-decoration: underline;
}

.list-item .link {
  text-decoration: none;
  color: var(--default);
}

.drawer .list-item .link:active {
  text-decoration: underline;
}

/* Main Content */
.main-content {
  font-size: 1rem;
  width: 80%;
  padding: 1rem;
}

.order-list {
  padding: 1rem;
}

.avatar {
  flex-wrap: wrap;
  margin: auto;
}

.navi {
  width: 100%;
}

.border {
  width: 100%;
  padding: 0.5rem 0.5rem;
  text-align: center;
  border: 1px solid var(--badge-offline);
}

.align .border {
  width: 70rem;
}

.card {
  font-size: 0.7rem;
  margin: auto;
}

.card .btn {
  padding: 0;
}

.text-overlay .header .brand {
  position: absolute;
  top: 6rem;
}

.text-overlay .header .price {
  position: absolute;
  top: 7.5rem;
}

.normal-list {
  text-decoration: none;
}

.normal-list .normal-list-item,
.stacked-list .list-item {
  color: var(--default);
}

.stacked-list {
  margin: auto;
  text-align: center;
  border: 1px solid var(--default);
  width: 10rem;
}

.stacked-list .list-item {
  margin: 0;
  display: block;
  color: var(--white-section);
  border-bottom: 1px solid var(--default);
}

.simple-navigation {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  background-color: var(--badge-offline);
  font-size: 1rem;
}

.simple-navigation .navigation-list {
  margin-top: 0.8rem;
}

h1 {
  font-size: 2em;
}

.simple-navigation .navigation-list-item {
  margin: 0 0.5rem;
  text-decoration: none;
  color: var(--default);
}

.modal,
.toast {
  margin: auto;
}

.modal .btn {
  border: none;
}

.toast .main-content {
  width: 100%;
}

.center-items {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-2,
.grid-3 {
  margin: auto;
}

/* Footer */
.footer {
  display: block;
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
  iframe {
    display: none;
  }
}

/* Mobile and tab responsive */
@media screen and (max-width: 786px) {
  .hamburger {
    padding-top: 0.8rem;
  }
  .main-content {
    width: 100%;
  }
  .docs-header {
    display: block;
    cursor: pointer;
    padding-left: 5px;
    background-color: var(--white-section-hover);
  }
  .drawer {
    position: absolute;
    left: -100%;
    width: 100%;
    background-color: var(--white-section);
    z-index: 50000;
  }
  .list .list-item {
    margin: auto;
  }
  .list-item:hover {
    background-color: var(--white-section-hover);
  }
  .drawer.active {
    left: 0;
  }
  .heading,
  .item0 {
    display: none;
  }
  .main-content {
    padding: 0;
  }
}
