/** =======================
 * Contenedor Principal
 ===========================*/
.weda-accordion {
  width: 100%;
  max-width: 360px;
  margin: 10px auto 20px;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 0;
}

.weda-accordion .weda-link {
  cursor: pointer;
  display: block;
  padding: 10px 10px;
  color: #4D4D4D;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #e2e2e2;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* background-color: #F1F1F1;
  margin-bottom: 1px;*/
}

.weda-accordion li {list-style: none;}
.weda-accordion li:last-child .weda-link { border-bottom: 0; }

.weda-accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.weda-accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}

.weda-accordion li.open .weda-link { color: #b63b4d; }

.weda-accordion li.open i { color: #b63b4d; }

.weda-accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/


.weda-submenu {
  display: none;
  border: 1px solid #f1f1f1;
  font-size: 15px;
  font-weight: 400;
  padding-left: 0;
}

/* .submenu li { border-bottom: 1px solid #4b4a5e; } */

.weda-submenu a {
  display: block;
  text-decoration: none;
  color: #d9d9d9;
  padding: 5px;
  padding-left: 10px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.weda-submenu a:hover {
  background: #F2F2F2;
  color: #FFF;
}

.weda-submenu .current a span {
  font-weight: 700;
}

.weda-submenu .expanding-archive-count { float: right; }


