.separator {
  width: 100%;
  height: 3px;
  border-top: 3px solid #08007b;
  border-bottom: 3px solid #f71622;
  margin-bottom: 10px;
}
.outer-separator {
  max-width: 896px;
  margin: 20px auto 0;
}

.bottom {
  text-decoration: none;
  font-family: tahoma,verdana,arial,helvetica,sans-serif;
  font-size: 8pt;
  color: #555;
}

.da_ntable {
  margin: auto;
}

/* desktop - 4 columns */
.header--mobile {
  display: none;
}

.products {
  max-width: 896px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.product {
  display: block;
  width: 25%;
  min-width: 224px;
  padding: 8px 0px;
}

.item-content .item-copy {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.item-content .item-copy a {
  text-align: center;
}
.item-content .item-actions {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.item-content .item-actions a {
  text-decoration: none;
}

/* item page - product component */
.item-product {
  max-width: 896px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  font-family: Verdana, Arial, Helvetica;
}
.item-product .item-product--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  min-width: 120px;
}
.item-product .item-product--content .item-product--attribute {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.item-product .item-product--content .item-product--attribute.item-product--attribute__single {
  justify-content: center;
}
.item-product .item-product--content .item-product--data {
  display: inline-flex;
  min-width: 80px;
  align-items: flex-start;
}
.item-product .item-product--content .item-product--data.item-product--data__highlighted {
  color:#900;
}
.item-product .item-product--video {
  margin-top: 20px;
}

/* item page - suggestions component */
.suggestions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}
.suggestions .suggestions-item {
  margin: 4px 10px;
}

/* footer */
.footer {
  max-width: 896px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Verdana, Arial, Helvetica;
  color: #555;
}
.footer .links {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: tahoma,verdana,arial,helvetica,sans-serif;
  font-size: 12pt;
  color: #555;
  margin: 15px 0;
}
.footer .links a:hover {
  color: #fff;
  background-color: #00f;
}
.footer .comments {
  font-size: 16px;
}
.footer .disclaimer {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 20px auto 10px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #000;
  background-color: #ffc;
}
.footer .disclaimer .disclaimer--title {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.footer .disclaimer .disclaimer--text {
  text-align: center;
}
.footer .footer--warning {
  color: rgb(204, 0, 0);
  font-size: x-small;
  margin: 10px 0 20px;
}
.footer .stamps {
  display: flex;
  justify-content: space-between;
  min-width: 320px;
  margin-top: 20px;
}

/* small - 1 column */
@media (max-width: 480px) {
  .header {
    display: none;
  }
  
  .products {
    max-width: 400px;
  }
  .product {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0px 32px;
  }

  .item-content .item-copy {
    min-height: unset;
  }
  .item-content .item-actions {
    justify-content: center;
  }
  .item-content .item-actions a {
    margin: auto 4px;
  }

  /* navigation menu */
  .header--mobile {
    display: flex;
    flex-direction: column;
  }
  .header--mobile a {
    text-decoration: none;
    font-size: 1.2em;
    display: block;
  }
  .topnav {
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .topnav .menu-icon {
    display: block;
    padding: 0 10px;
  }
  .topnav .logo {
    padding: 10px 0;
  }
  .topnav .social-medias {
    display: flex;
  }
  .toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .toolbar .search-mobile {
    display: flex;
  }
  .toolbar .search-mobile .search-button {
    margin-left: 10px;
  }
  .toolbar .cart {
    display: flex;
  }
  .toolbar .cart .cart-icon {
    margin-right: 10px;
  }
  #menu {
    display: none;
    padding: 0 0 10px;
  }
  #menu.menu--opened {
    display: flex;
    flex-direction: column;
  }

  /* fixes */
  .main-table {
    width: 100% !important;
  }
  .da_ntable {
    width: 100% !important;
  }
}

/* medium - 2 columns */
@media (min-width: 481px) and (max-width: 702px) {
  .products {
    max-width: 448px;
  }
  .product {
    width: 50%;
  }
}

/* large - 3 columns */
@media (min-width: 703px) and (max-width: 926px) {
  .products {
    max-width: 672px;
  }
  .product {
    width: 33%;
  }
}