.ca-accordion {
  .panel {
    margin-bottom: 0;
    .border-radius(0);
    background-color: @black010;
    border: none;
    border-bottom: 1px solid @black060;
  }
  .panel-heading {
    background-color: @black040;
    padding: 0;
    border: none;

    .border-radius(0);
    > a {
      display: block;
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-decoration: none;
      font-weight: bold;
      font-family: Arial;
      .font-size(12);
      padding: 0 13px;
      height: 34px;
      line-height: 34px;
      .fa {
        display: inline-block;
        width: 9px;
        margin: 0 10px 0 0;
        vertical-align: top;
        height: 100%;
        line-height: 34px;
      }
    }
  }
  .panel-body {
    padding: 15px;
    color: @black080;
    > p {
      &:last-child {
        margin-bottom: 0;
      }
    }
  }
  .navigation-content & {
    margin: -12px;
  }
}

@media @desktop{
  .ca-accordion {
    .panel-heading{
      > a {
        height: 42px;
        line-height: 42px;
        .fa {
          line-height: 42px;
        }
      }
    }
  }
}