/**
 * This module helps merchant to social media links of facebook,googleplus,linkedin,twitter,pinterest,tumblr in side menu on home screen 
 *
 * NOTICE OF LICENSE
 * 
 * Each copy of the software must be used for only one production website, it may be used on additional
 * test servers. You are not permitted to make copies of the software without first purchasing the
 * appropriate additional licenses. This license does not grant any reseller privileges.
 * 
 * @author    Shahab
 * @copyright 2007-2025 Shahab-FK Enterprises
 * @license   Prestashop Commercial Module License
 */
.sfkaccordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .sfkaccordion:hover {
  background-color: #ccc;
}

.sfkaccordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.sfkpanel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
