/*-- -------------------------- -->
<---           Products          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  .show {
    display: flex !important;
  }
  .show-msg {
    display: block !important;
  }
  #no-results {
    display: none;
    margin-bottom: 3.75em;
  }
  #no-results .no-results-msg h2 {
    color: #004b6c;
    text-align: center;
  }
  .show-sub-buttons {
    display: block !important;
  }
  .filter-button-container {
    padding: 1.875em 1.125em 1.25em 1.875em;
    margin: auto;
  }
  .filter-button-container h3 {
    color: #004b6c;
    text-align: left;
  }
  .filter-button-sub-container {
    padding: 0em 1.125em 1.25em 1.875em;
    margin: auto;
    display: none;
  }
  .filter-button-sub-container h3 {
    color: #004b6c;
    text-align: left;
  }
  .filter-button,
  .filter-button-sub {
    border: none;
    border-radius: 0.3125em;
    outline: none;
    margin-top: 10px;
    padding: 6px 9px 6px 9px;
    background-color: #004b6c;
    color: #ffffff;
    font-size: 0.875em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: auto;
    cursor: pointer;
  }
  .filter-button:hover,
  .filter-button-sub:hover,
  .filter-button:active,
  .filter-button-sub:active {
    background-color: #bdc92e;
    color: #004b6c;
  }
  .chosen {
    background-color: #bdc92e !important;
    color: #004b6c !important;
  }
  #products {
    padding-top: 1.875em;
    padding-bottom: 3.125em;
    margin: auto;
  }
  #products .container {
    width: 96%;
    max-width: 82.5em;
  }
  #products .product {
    padding: 1.875em 1.125em 1.875em 1.125em;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 25.625em;
    margin: auto;
    margin-bottom: 1.875em;
    border-radius: 0.3125em;
    position: relative;
    background: #eeeeee;
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  #products .product:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  }
  #products .product:last-of-type {
    margin-bottom: 0;
  }
  #products .product .thumbnail {
    object-fit: cover;
    object-position: center;
    height: 300px;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.875em;
    border-radius: 0.3125em;
  }
  #products .product p {
    line-height: 1.33333333;
    margin-bottom: 1.55555556em;
    text-align: left;
  }
  #products .product .details {
    border-top: 1px solid #E7E7E7;
    padding-top: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: auto;
  }
  #products .product .details .name {
    color: #004b6c;
    line-height: 1.33333333em;
    text-align: left;
    font-weight: bold;
    display: block;
    padding-right: 10px;
  }
  #products .product .details .price {
    color: #004b6c;
    font-weight: 400;
    display: block;
  }
  #products .product .details .detail-button {
    display: block;
    margin: 0;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #products {
    padding-top: 1.875em;
    padding-bottom: 3.125em;
  }
  #products .container {
    font-size: min(1.4vw, 1em);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    column-gap: 1.875em;
  }
  #products .product {
    margin: 0;
    margin-bottom: 1.875em;
  }
  #products .product:last-of-type {
    margin-bottom: 1.875em;
  }
  #products .product .thumbnail {
    height: 280px;
    width: 100%;
  }
}
