/**
 * @file
 * Visual styles for Corporate+'s accordions.
 */

/*Style 1*/
.collapse-group {
  margin: 0 0 25px 0;
  border-width: 1px;
  border-style: solid;
  border-color: #eaeaea;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.collapse-group .card {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border-width: 0 0 1px 0;
  border-color: #eaeaea;
  background-color: transparent;
  box-shadow: none;
}
.collapse-group .card:last-child {
  border-bottom: none;
}
.collapse-group .card + .card {
  margin: 0;
}
.card-header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}
.card-title {
  margin-bottom: 0;
}
.card-title a {
  font-weight: 600;
  font-size: 12px;
  padding: 20px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  display: inline-block;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #eaeaea;
  color: #333333;
  border-radius: 0;
  background-color: #f4f4f4;
}
.card-title a:hover,
.card-title a:focus {
  background-color: #f4f4f4;
}
.headings-wide-spacing-enabled .card-title a {
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.card-title a.collapsed {
  border-bottom-color: transparent;
  background-color: #ffffff;
}
.card:last-child .card-title a:not(.collapsed) {
  border-radius: 0;
}
.card:first-child .card-title a {
  border-radius: 5px 5px 0 0;
}
.card:last-child .card-title a {
  border-radius: 0 0 5px 5px;
}
.card-title a i {
  padding-right: 5px;
}
.card-header--trigger-icon .card-title a {
  position: relative;
  padding-right: 65px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  font-weight: 600;
}
.card-header--trigger-icon .card-title a:hover,
.card-header--trigger-icon .card-title a:focus {
  color: #333333;
}
.card-header--trigger-icon .card-title a:after {
  position: absolute;
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  color: #ffffff;
  top: 50%;
  right: 30px;
  margin-top: -15px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  border-radius: 100%;
  background-color: transparent;
  color: inherit;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 30px;
  content: "\f106";
  -webkit-transition: background-color 0.2s ease-in-out;
  -moz-transition: background-color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.headings-wide-spacing-enabled .card-header--trigger-icon .card-title a:after {
  letter-spacing: 0;
}
.card-header--trigger-icon .card-title a.collapsed:after {
  content: "\f107";
}
.card-title span {
  display: inline-block;
  padding-right: 5px;
}
.card-body {
  padding: 20px;
  background-color: #fff;
  color: #2d2d2d;
  border-top: 1px solid #eaeaea;
}
.card-body p:last-child {
  padding-bottom: 0;
}
.card:last-child .card-body {
  border-radius: 0 0 5px 5px;
}
