/* #Media Queries
================================================== */

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  .footer-links-bottom .link-wrapper {
    display: block;
  }
  
  .footer-links-bottom .link-wrapper:first-of-type::after {
    display: none;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  .page-template-page-bulkorder .product-title .tiered-pricing ul {
    flex-direction: column;
  }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 576px) {

}