.accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.accordion .a-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 5px;
}
.accordion .a-container .a-btn {
  margin: 0;
  position: relative;
  padding: 15px 30px;
  width: 100%;
  color: #bdbdbd;
  font-weight: 400;
  display: block;
  font-weight: 500;
  background-color: #262626;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1) !important;
}
.accordion .a-container .a-btn span {
  display: block;
  position: absolute;
  height: 14px;
  width: 14px;
  right: 20px;
  top: 18px;
}
.accordion .a-container .a-btn span:after {
  content: "";
  width: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  top: 6px;
}
.accordion .a-container .a-btn span:before {
  content: "";
  width: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  top: 6px;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.accordion .a-container .a-panel {
  width: 100%;
  color: #262626;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  height: auto;
  max-height: 0;
  overflow: hidden;
  padding: 0px 10px;
}
.accordion .a-container.active .a-btn {
  color: #fff;
}
.accordion .a-container.active .a-btn span::before {
  transform: rotate(0deg);
}
.accordion .a-container.active .a-panel {
  padding: 15px 10px 10px 10px;
  opacity: 1;
  max-height: 500px;
}

/** Navigation */

.widget-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
.widget-menu .menu-item-has-children {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 5px;
}
.widget-menu .menu-item-has-children > a {
  margin: 0;
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.widget-menu .menu-item-has-children > a:after {
  content: "";
  width: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #444444;
  position: absolute;
  top: 14px;
  right: 20px;
}
.widget-menu .menu-item-has-children > a:before {
  content: "";
  width: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #444444;
  position: absolute;
  top: 14px;
  right: 20px;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.widget-menu .menu-item-has-children .sub-menu {
  width: 100%;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  height: auto;
  max-height: 0;
  overflow: hidden;
  padding: 0px 10px;
}
.widget-menu .menu-item-has-children.active > a {
  color: #444444;
}
.widget-menu .menu-item-has-children.active > a::before {
  transform: rotate(0deg);
}
.widget-menu .menu-item-has-children.active .sub-menu {
  padding: 15px 10px 10px 10px;
  opacity: 1;
  max-height: 500px;
}