.login-page .row,
.reset-page .row,
.register-page .row {
  align-items: center;
}
.login-page .row .logo,
.reset-page .row .logo,
.register-page .row .logo {
  width: 640px;
  max-width: 100%;
  height: 220px;
  opacity: .1;
}
.login-page .row .logo img,
.reset-page .row .logo img,
.register-page .row .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.login-page .controls a,
.reset-page .controls a,
.register-page .controls a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin: 0 .5rem;
  text-decoration: none;
  color: var(--color-text-primary);
  opacity: .8;
  transition: var(--transition);
}
.login-page .controls a:first-child,
.reset-page .controls a:first-child,
.register-page .controls a:first-child {
  margin-left: 0;
}
.login-page .controls a:hover,
.reset-page .controls a:hover,
.register-page .controls a:hover {
  opacity: 1;
  color: var(--color-2)
}
.login-page blockquote,
.reset-page blockquote,
.register-page blockquote {
  display: block;
  margin: 1rem 0;
  padding: .75rem;
  border: 1px solid rgba(6,6,6,.2);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5em;
}
.login-page blockquote ul,
.reset-page blockquote ul,
.register-page blockquote ul {
  margin: .5rem 0;
  padding: 0 0 0 1.15rem;
}
.login-page blockquote ul:last-child,
.reset-page blockquote ul:last-child,
.register-page blockquote ul:last-child {
  margin-bottom: 0;
}
.login-page blockquote ul li,
.reset-page blockquote ul li,
.register-page blockquote ul li {
  font-size: 12px;
  line-height: 1.5rem;
}

.account-nav {
  margin: 2rem 0;
}
.nav-link {
  opacity: .6;
  transition: var(--transition);
}
.nav-link.active,
.nav-link:hover {
  opacity: 1;
}
.account-nav span {
  display: block;
  text-align: center;
  font-size: .85rem;
  line-height: .85rem;
  font-weight: 600;
/*  text-transform: uppercase;*/
  color: var(--color-text-primary);
}
.account-nav .icon {
  display: block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  margin: 0 auto .5rem;
}

.myorders .order-item {
  padding: .75rem;
  background: #fafafa;
  border-radius: 0 0 8px 8px;
  border-bottom: 4px solid #eaeaea;
}
.myorders .order-item .status span {
  font-size: .75rem;
  line-height: .75rem;
  padding: .25rem .5rem;
  background: #eaeaea;
}
.myorders .order-item a.order-link {
  font-size: .9rem;
  color: var(--color-text-yellow);
  line-height: .9rem;
  text-decoration: none;
}
.myorders .order-item a span {
  text-decoration: underline;
}
.myorders .order-item a strong {
  font-weight: 600;
}
.myorders .products {
  margin: 1rem 0;
}
.myorders .products .image {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}
.myorders .products .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.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 .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;
}

@media screen and ( max-width: 991px ) {
  .login-page .row .logo,
  .reset-page .row .logo,
  .register-page .row .logo {
    display: none;
  }
}

@media screen and ( max-width: 575px ) {
  .account-nav .nav-item {
    flex: 0 0 50%;
    margin: 1rem 0;
  }
}