/* Tab Heading */
.tab-heading {
  border-color: rgba(0,0,0,.1);
  border-radius: .5rem .5rem 0 0;
  background-color: #F2F7FF;
  color: #545454;
  line-height: 120%!important;
  display: flex
}
@media screen and (min-width: 767px) {
  .tab-heading {
    display: block;
  }
}

.tab-heading span {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tab-heading.active {
  border-color: rgba(0,0,0,.2);
  font-weight: bold;
  border-bottom: none;
  background-color: white;
  color: rgba(0,0,0,1);
}

/* Tab Content */

.tab-content {
  border-color: rgba(0,0,0,.2);
  display: none;
  border-top: none;
  border-radius: 0 0 .5rem .5rem;
}

.tab-content p {
  font-size: 1.25rem;
  margin-bottom: .75rem;
}

.tab-content p:last-child {
  margin-bottom: 0;
}

.tab-content.active {
  display: block;
}

.clear {
  clear: left;
  display: block;
}
