.account-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.account-sidebar ul li {
  margin: 0 0 .5rem;
  padding: 0;
}
.account-sidebar li span,
.account-sidebar li a {
  display: block;
  padding: 1rem 1.25rem;
  text-decoration: none;
  font-size: .875rem;
  line-height: 100%;
  border: 1px solid #eee;
  border-radius: .125rem;
  color: var(--color-text-primary);
  transition: .2s ease-in-out;
}
.account-sidebar li a:hover {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
}
.account-sidebar li span {
  background: var(--color-blue);
  color: white;
}
.account .blockquote {
  --bs-border-color: var(--color-blue);
}
.account .remember {
  font-size: .875rem;
  line-height: 120%;
  text-decoration: none;
  color: var(--color-text-primary);
  border: 0;
}
.account .remember:hover {
  color: var(--color-text-blue);
  border: 0;
}


.myorder h1 {
  font-size: 1.5rem;
  line-height: 1.25rem;
  font-weight: 500;
  margin: 0 0 2rem;
}
.myorder h2 {
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 500;
  margin: 2rem 0;
}
.myorder .details {}
.myorder .details * {
  font-size: 1rem;
  line-height: 1.25rem;
}
.myorder .details strong {
  font-weight: 500;
}

.myorder .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #eee;
  padding: .5rem 0;
}
.myorder .item a {
  border: 0 !important;
}
.myorder .item .image {
  display: block;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  margin-right: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.myorder .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.myorder .item .info {
  flex: 1;
  margin: 0 10px;
}
.myorder .item .info a {
  font-size: 1rem;
  font-weight: 500;
  display: block;
  text-decoration: none;
  color: var(--color-text-primary);
}
.myorder .item .info .attribs {
  font-size: .75rem;
}
.myorder .item .info .ean {
  font-size: .75rem;
}
.myorder .item .total {
  flex: 0 0 120px;
  margin-left: 10px;
  text-align: right;
}
.myorder .item .total .price {
  display: block;
  text-align: right;
  font-size: 1.25rem;
  line-height: 1.25rem;
}
.myorder .item .total .quantity {
  display: block;
  text-align: right;
  font-size: .75rem;
  line-height: 1rem;
  color: #666;
}
.myorder .totals p {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 1em;
}
.myorder .totals p span {
  flex: 0 0 120px;
  margin-left: 10px;
  text-align: right;
  font-weight: 500;
}