/**
* 2007-2023 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2023 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

a.accordion-link:hover, a.accordion-link:focus {
  text-decoration: none;
}


.footer-info-links .footer-header {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 18px;
  margin-top: 30px;
  color: #fff;
  display: block;
  cursor: default;
  text-decoration: none;
}

.footer-info-links ul {
  margin-bottom: 20px;
}

.footer-info-links ul li {
  display:block;
}

.footer-info-links ul li a {
  display: block;
  color: #fff;
  font-size: 13px;
  padding: 5px 0;
  font-family:"Open Sans", sans-serif;
  text-decoration: none;
  line-height: 17px;
}

.footer-info-links ul li a:hover { color: #d7a3a3; }
.footer-info-links ul li:first-child a { padding: 0 0 5px 0; }

.footer-info-links li.icon-link:before {
  display: inline-block;
  float: left;
  margin-top: 7px;
}
.footer-info-links li.icon-link a {
  padding-left: 25px !important;
}
.footer-info-links li.icon-link.location:before {
  content: "\f3c5";
  font-family: "FontAwesome";
}
.footer-info-links li.icon-link.mail:before {
  content: "\f0e0";
  font-family: "FontAwesome";
}
.footer-info-links li.icon-link.phone:before {
  content: "\f095";
  font-family: "FontAwesome";
}
.footer-info-links li.icon-link.whatsapp:before {
  content: "\f232";
  font-family: "FontAwesomeBrands";
}

@media (max-width: 767px) {
  .footer-info-links {
    clear: both;
  }

  .footer-info-links .footer-header:before {
    content: "\f067";
    font-family: "FontAwesome";
    font-weight: 100;
    margin-right: 10px;
    font-size: 12px;
    vertical-align: top;
  }
  .footer-info-links .footer-header.active:before {
    content: "\f068";
  }

  .footer-info-links .footer-header {
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 0;
    margin-bottom: 0;
    border-top: solid 1px #4e4e4e;
    cursor: pointer;
  }
  .footer-info-links div.content {
    max-height: 0;
    overflow: hidden;
    position: relative;
    transition: max-height 650ms;
  }

  .footer-info-links div.content[visible="yes"] {
    max-height: 20rem;
  }
}