/**
 * @file
 * Visual styles for Confea Theme's accordions.
 */
.panel-group {
  margin: 25px 0;
}
.panel-group .panel {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.panel-default > .panel-heading {
  background: transparent;
  color: #000000;
  font-size: 12px;
  padding: 0;
  outline: none;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  width: 100%;
}
.panel-heading:hover {
  text-decoration: none;
  background: #3f3f3f;
  color: #fff;
}
.panel-title a {
  font-weight: 400;
  padding: 15px;
  display: inline-block;
  width: 100%;
}
.panel-title a.collapsed {
  color: #1e1e1e !important;
}
.panel-title a:hover {
  color: #fff !important;
  text-decoration: none;
}
.panel-title a i {
  padding-right: 10px;
  font-size: 20px;
}

/*accordions @colored regions*/
.colored-region .panel {
  background-color: transparent;
  color: #ffffff;
}
.colored-region .panel-title a,
.colored-region .panel-title a.collapsed {
  text-decoration: none;
  color: #ffffff!important;
}
.colored-region .panel-heading:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* CKEditor Accordion */
.ckeditor-accordion-container > dl dt > a {
  background-color: #e8e8e8;
  color: #1e1e1e;
  font-size: 1.14rem;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #bbb;

}
.ckeditor-accordion-container > dl dt > a:hover {
  background-color: #ccc;
  color: #1e1e1e;
}
.ckeditor-accordion-container > dl {
  border: 1px solid #999;
}
.ckeditor-accordion-container > dl dt > .ckeditor-accordion-toggle {
  display: none;
}
.ckeditor-accordion-container > dl dd {
  padding: 10px 15px 0px 15px;
}
