/* Reset CSS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  font-size: 1.25rem;
}

/* .header-container .wrapper {
  border-bottom: solid;
  border-bottom-color: #e3e3e3;
  border-bottom-width: 1px;
  background-color: var(--color-white);
} */

.wrapper {
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
  padding: 4px 48px;
  background-color: #fff;
}

.menu-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

sl-button.menu-button::part(base),
sl-button.cart-button::part(base) {
  border: none;
  background-color: #fff;
  outline: none;
}

sl-button.menu-button::part(base):hover {
  border: none;
  background-color: #fff;
}

sl-drawer.menu-drawer::part(panel) {
  background-color: rgba(0, 0, 0, 0.88);
  color: #fff;
}

sl-drawer.menu-drawer .sidebar {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-left: 10px;
}

sl-drawer::part(header) {
  font-weight: 600;
}

sl-drawer::part(body) {
  padding: 0;
}

.moreInformation,
.mainContent {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 100%;
}

.moreInformation > a,
.mainContent > a {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  color: #fff;
}

.moreInformation > a {
  font-size: 14px;
  opacity: 0.5;
}

.header-quantity {
  position: absolute;
  top: -8px;
  right: 8px;
  padding: 0px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  border: 1px solid white;
  font-weight: 700;
  display: none;
  justify-content: center;
  align-items: center;
}

.cart-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.tip {
  padding: 8px;
}

sl-input.tip::part(form-control-label) {
  font-size: 16px;
  font-weight: 600;
}
