/*-----------------
* palette
* ----------------
*
*/

/******** Footer *******/

footer {
  font-size: 14px;

  h3 {
    color: #fff;
    font-size: 20px;
    padding-bottom: 15px;
  }

  .menu {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
      margin: 10px 0 0;
    }
  }

  .menu-col--lower {
    margin-top: 30px;
  }

  a {
    color: #fff;
    font-weight: 200;
  }

  a:hover {
    color: #25731E;
  }

}

.credits {
  padding: 30px 0;
}

.credits .copyright {
  display: flex;
  justify-content: center;
  padding: 15px 0 0;
}

.accreditation {
  margin: 0;
}

.credit-details {
  display: flex;
  align-items: center;
  justify-content: center;

  span {
    margin: 0 7.5px;
  }

  a {
    color: #212529;
    font-weight: 700;
  }
}


.footer-content {
  margin-top: 15px;
}

.footer-details {
  list-style: none;
  padding: 0;
  margin: 15px 0;

  li:nth-child(2) {
    margin: 10px 0;
  }

  a {
    font-weight: 700;
  }
}

.footer-social {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 20px 0 0 0;

  li {
    margin-right: 10px;
  }

  svg {
    width: 25.5px;
    height: 25.5px;
    fill: #fff;
  }

  svg:hover {
    fill: #25731E;
  }
}

ul#menu-footer-info {
  display: flex;
  justify-content: flex-start;
  width: 100%;

  li {
    margin: 0 13.5px;
    position: relative;
  }

  li:after {
    content: "";
    border-left: 1px solid #fff;
    position: absolute;
    height: 10px;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
  }

  li:first-child {
    margin-left: 0px;
  }

  li:first-child:after {
    display: none;
  }
}

ul#menu-legal {
  display: flex;
  justify-content: center;
  width: 100%;

  li {
    margin: 0 13.5px;
    position: relative;
  }

  a {
    color: #212529;
  }

  a:hover {
    color: #25731E;
  }

  li:after {
    content: "";
    border-left: 1px solid #212529;
    position: absolute;
    height: 10px;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
  }

  li:first-child:after {
    display: none;
  }
}

/******** Responsive ***********/

/* XXL > 1400 */

/* XL */
@media (max-width: 1400px) {}

/* L */
@media (max-width: 1200px) {}

/* M */
@media (max-width: 992px) {}

/* S */
@media (max-width: 768px) {
  .col-margin-sm {
    margin-top: 30px;
  }

  .category-content-bottom {
    margin: 15px 0 0px;
  }

  .filters-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 100%;
    padding: 0 15px;
}
}

/* XS */
@media (max-width: 576px) {
  .col-margin-xs {
    margin-top: 30px;
  }

  ul#menu-legal {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  ul#menu-legal {
    li:after {
      display: none;
    }

    li {
      margin-top: 10px;
    }
  }

  .credit-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    span {
      display: none;
    }
  }
}