/**
 * 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.
 */
::-ms-tooltip {
  display: none; }

.tooltip-icon[data-custom-tooltip]:hover {
  text-decoration: none; }

.tooltip-icon[data-custom-tooltip] span.tooltip-content {
  display: none;
  font-size: 1rem;
  line-height: 1.5rem;
  position: fixed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  border-radius: 6px 6px 0 0;
  z-index: 9999;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #001928;
  text-align: left;
  padding: 24px 56px 24px 32px; }
  .tooltip-icon[data-custom-tooltip] span.tooltip-content:before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    content: "";
    top: 50%; }
  .tooltip-icon[data-custom-tooltip] span.tooltip-content:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    content: "";
    top: 50%; }
  .tooltip-icon[data-custom-tooltip] span.tooltip-content .close {
    color: #929BA9;
    font-size: 2rem;
    text-align: right;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 16px;
    width: 16px;
    position: absolute;
    top: 16px;
    right: 16px; }

@media screen and (min-width: 40em) {
  .tooltip-icon[data-custom-tooltip][data-mobile-tooltip-at=small] {
    position: relative; } }

@media screen and (min-width: 40em) {
  .tooltip-icon[data-custom-tooltip][data-mobile-tooltip-at=small] span.tooltip-content {
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 310px;
    max-width: 310px;
    -webkit-transform: translateY(calc(50% - 12px));
            transform: translateY(calc(50% - 12px)); } }

@media screen and (min-width: 64em) {
  .tooltip-icon[data-custom-tooltip][data-mobile-tooltip-at=medium] {
    position: relative; } }

@media screen and (min-width: 64em) {
  .tooltip-icon[data-custom-tooltip][data-mobile-tooltip-at=medium] span.tooltip-content {
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 310px;
    max-width: 310px;
    -webkit-transform: translateY(calc(50% - 12px));
            transform: translateY(calc(50% - 12px)); } }

.tooltip-icon.left[data-custom-tooltip] span.tooltip-content:before {
  border-width: 11px;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999; }

.tooltip-icon.left[data-custom-tooltip] span.tooltip-content:after {
  border-width: 10px;
  right: -10px;
  margin-top: -10px;
  border-right-width: 0;
  border-left-color: #fff; }

@media screen and (min-width: 40em) {
  .tooltip-icon.left[data-custom-tooltip][data-mobile-tooltip-at=small] span.tooltip-content {
    left: -330px; } }

@media screen and (min-width: 64em) {
  .tooltip-icon.left[data-custom-tooltip][data-mobile-tooltip-at=medium] span.tooltip-content {
    left: -330px; } }

.tooltip-icon.right[data-custom-tooltip] span.tooltip-content:before {
  border-width: 11px;
  left: -11px;
  margin-top: -11px;
  border-left-width: 0;
  border-right-color: #999; }

.tooltip-icon.right[data-custom-tooltip] span.tooltip-content:after {
  border-width: 10px;
  left: -10px;
  margin-top: -10px;
  border-left-width: 0;
  border-right-color: #fff; }

@media screen and (min-width: 40em) {
  .tooltip-icon.right[data-custom-tooltip][data-mobile-tooltip-at=small] span.tooltip-content {
    left: 35px; } }

@media screen and (min-width: 64em) {
  .tooltip-icon.right[data-custom-tooltip][data-mobile-tooltip-at=medium] span.tooltip-content {
    left: 35px; } }

.products .tabs-carousel {
  width: 100%;
  overflow: hidden; }
  .products .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;
    -webkit-transition: left 0.4s;
    transition: left 0.4s;
    font-size: 0;
    width: 400%;
    left: 24px;
    /*this fixes phantom space between li*/ }
    @media screen and (min-width: 64em) {
      .products .tabs-carousel .tabs-header {
        padding: 0;
        left: 0% !important;
        text-align: center;
        width: auto; } }
    .products .tabs-carousel .tabs-header .tab-item a {
      color: #646c76; }
    .products .tabs-carousel .tabs-header .tab-item.active a {
      color: #001928; }
    .products .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; }
      .products .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) {
          .products .tabs-carousel .tabs-header .tab-item .section-title {
            padding-top: 1rem;
            padding-bottom: 1rem;
            width: 100%; } }
        .products .tabs-carousel .tabs-header .tab-item .section-title:hover {
          cursor: pointer; }
    .products .tabs-carousel .tabs-header .tab-item::after {
      content: "";
      height: 4px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: #cacaca; }
    .products .tabs-carousel .tabs-header .tab-item:first-child::after {
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px; }
    .products .tabs-carousel .tabs-header .tab-item:last-child::after {
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px; }
    .products .tabs-carousel .tabs-header .tab-item.active {
      color: #001928; }
      .products .tabs-carousel .tabs-header .tab-item.active::after {
        background-color: #0079c1;
        border-radius: 4px;
        margin-left: -2px;
        margin-right: -2px;
        z-index: 3; }

.products .blue-text-circle {
  display: inline-block;
  line-height: 28px;
  border-radius: 28px;
  height: 28px;
  width: 28px;
  position: relative;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #73C3EB; }

.products .border-right {
  display: inline-block;
  border-right: 1px solid #d9dce1; }

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