/**
 * A mixin for creating a chevron on the given element.
 * This should be used within the pseudo `::before` or `::after`
 * But can be used anywhere.
 * @param  {String} $direction:    down           The direction of the chevron
 * @param  {Color}  $color:        $color-primary The color of the chevron.
 * @param  {Number} $size:         .5em           The size of the chevron (width, height).
 * @param  {Number} $border-width: rem-calc(2)    The border with of the chevron.
 *                                                 This makes it thicker/thinner.
 */
.insurance-concepts .tabs-carousel {
  text-align: center; }
  .insurance-concepts .tabs-carousel .tabs-header {
    margin: 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    font-size: 0; }
    @media screen and (min-width: 64em) {
      .insurance-concepts .tabs-carousel .tabs-header {
        padding: 0;
        text-align: center;
        width: auto; } }
    .insurance-concepts .tabs-carousel .tabs-header .tab-item a {
      color: #646c76; }
    .insurance-concepts .tabs-carousel .tabs-header .tab-item.active a {
      color: #001928; }
    .insurance-concepts .tabs-carousel .tabs-header .tab-item {
      outline: none;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      color: #646c76;
      position: relative;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 5rem; }
      .insurance-concepts .tabs-carousel .tabs-header .tab-item .section-title {
        position: relative;
        /*18px*/
        line-height: 1.5rem;
        /*as per design*/
        padding-right: 0;
        text-align: center;
        padding-left: 2rem;
        padding-right: 2rem; }
        @media screen and (min-width: 64em) {
          .insurance-concepts .tabs-carousel .tabs-header .tab-item .section-title {
            padding-top: 1rem;
            padding-bottom: 1rem;
            width: 100%; } }
        .insurance-concepts .tabs-carousel .tabs-header .tab-item .section-title:hover {
          cursor: pointer; }
    .insurance-concepts .tabs-carousel .tabs-header .tab-item::after {
      content: "";
      height: 4px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #cacaca; }
    .insurance-concepts .tabs-carousel .tabs-header .tab-item:first-child::after {
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px; }
    .insurance-concepts .tabs-carousel .tabs-header .tab-item:last-child::after {
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px; }
    .insurance-concepts .tabs-carousel .tabs-header .tab-item.active {
      color: #001928; }
      .insurance-concepts .tabs-carousel .tabs-header .tab-item.active::after {
        background-color: #0079c1;
        border-radius: 4px;
        margin-left: -2px;
        margin-right: -2px;
        z-index: 3; }

.insurance-concepts .section-content {
  display: none; }
  .insurance-concepts .section-content.is-active {
    display: block; }

.insurance-concepts-video iframe {
  width: 100%; }
