
/* colors */
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */

.fancy-tabs {
  left: 50%;
  transform: translateX(-50%);
  position: relative;
  background: #FFF;
  padding: 50px;
  padding-bottom: 80px;
  width: 90%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-radius: 5px;
  min-width: 240px; 
}
  .fancy-tabs input[name="tab-control"] {
    display: none; }
  .fancy-tabs .content section h2,
  .fancy-tabs ul li label {
    font-family: Montserrat, Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: #7366BD; }
  .fancy-tabs ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap; }
    .fancy-tabs ul li {
      box-sizing: border-box;
      flex: 1;
      width: 25%;
      padding: 0 10px;
      text-align: center; }
      .fancy-tabs ul li label {
        transition: all 0.3s ease-in-out;
        color: #929daf;
        padding: 5px auto;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        white-space: nowrap;
        -webkit-touch-callout: none; }
        .fancy-tabs ul li label br {
          display: none; }
        .fancy-tabs ul li label svg {
          fill: #929daf;
          height: 1.2em;
          vertical-align: bottom;
          margin-right: 0.2em;
          transition: all 0.2s ease-in-out; }
        .fancy-tabs ul li label:hover, .fancy-tabs ul li label:focus, .fancy-tabs ul li label:active {
          outline: 0;
          color: #bec5cf; }
          .fancy-tabs ul li label:hover svg, .fancy-tabs ul li label:focus svg, .fancy-tabs ul li label:active svg {
            fill: #bec5cf; }
  .fancy-tabs .slider {
    position: relative;
    width: 25%;
    transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07); }
    .fancy-tabs .slider .indicator {
      position: relative;
      width: 50px;
      max-width: 100%;
      margin: 0 auto;
      height: 4px;
      background: #7366BD;
      border-radius: 1px; }
  .fancy-tabs .content {
    margin-top: 30px; }
    .fancy-tabs .content section {
      display: none;
      animation-name: content;
      animation-direction: normal;
      animation-duration: 0.3s;
      animation-timing-function: ease-in-out;
      animation-iteration-count: 1;
      line-height: 1.4; }
      .fancy-tabs .content section h2 {
        color: #7366BD;
        display: none; }
        .fancy-tabs .content section h2::after {
          content: "";
          position: relative;
          display: block;
          width: 30px;
          height: 3px;
          background: #7366BD;
          margin-top: 5px;
          left: 1px; }
  .fancy-tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    cursor: default;
    color: #7366BD; }
    .fancy-tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg {
      fill: #7366BD; }
    @media (max-width: 600px) {
      .fancy-tabs input[name="tab-control"]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
        background: rgba(0, 0, 0, 0.08); } }
  .fancy-tabs input[name="tab-control"]:nth-of-type(1):checked ~ .slider {
    transform: translateX(0%); }
  .fancy-tabs input[name="tab-control"]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
    display: block; }
  .fancy-tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    cursor: default;
    color: #7366BD; }
    .fancy-tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg {
      fill: #7366BD; }
    @media (max-width: 600px) {
      .fancy-tabs input[name="tab-control"]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
        background: rgba(0, 0, 0, 0.08); } }
  .fancy-tabs input[name="tab-control"]:nth-of-type(2):checked ~ .slider {
    transform: translateX(100%); }
  .fancy-tabs input[name="tab-control"]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
    display: block; }
  .fancy-tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    cursor: default;
    color: #7366BD; }
    .fancy-tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg {
      fill: #7366BD; }
    @media (max-width: 600px) {
      .fancy-tabs input[name="tab-control"]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
        background: rgba(0, 0, 0, 0.08); } }
  .fancy-tabs input[name="tab-control"]:nth-of-type(3):checked ~ .slider {
    transform: translateX(200%); }
  .fancy-tabs input[name="tab-control"]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
    display: block; }
  .fancy-tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    cursor: default;
    color: #7366BD; }
    .fancy-tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg {
      fill: #7366BD; }
    @media (max-width: 600px) {
      .fancy-tabs input[name="tab-control"]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
        background: rgba(0, 0, 0, 0.08); } }
  .fancy-tabs input[name="tab-control"]:nth-of-type(4):checked ~ .slider {
    transform: translateX(300%); }
  .fancy-tabs input[name="tab-control"]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
    display: block; }
@keyframes content {
  from {
    opacity: 0;
    transform: translateY(5%); }
  to {
    opacity: 1;
    transform: translateY(0%); } }
  @media (max-width: 1000px) {
    .fancy-tabs ul li label {
      white-space: initial; }
      .fancy-tabs ul li label br {
        display: initial; }
      .fancy-tabs ul li label svg {
        height: 1.5em; } }
  @media (max-width: 600px) {
    .fancy-tabs ul li label {
      padding: 5px;
      border-radius: 5px; }
      .fancy-tabs ul li label span {
        display: none; }
    .fancy-tabs .slider {
      display: none; }
    .fancy-tabs .content {
      margin-top: 20px; }
      .fancy-tabs .content section h2 {
        display: block; } 
}

.tab-features {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 24px -8px -12px;
}

.tab-features li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin: 0;
    padding: 0 8px 12px;
    width: 50%;
}

.tab-features li div {
    padding-left: 36px;
    position: relative;
}

.tab-links {
    border-top: 1px solid #f3f4f6;
    margin-top: 34px;
    padding-top: 34px;
}

.links-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -6px -12px;
}

.link-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    padding: 0 6px 12px;
    width: 33.33%;
}

.tab-link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 4px;
    color: #1F4E79;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 21px;
    padding: 16px 24px;
    white-space: nowrap;
}

.tab-link .icon {
    -webkit-box-flex: 0;
    background-color: #000c3f;
    display: block;
	position: relative!important;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    height: 24px;
    margin-right: 8px;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 24px 24px;
    mask-size: 24px 24px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    width: 24px;
}

@media (max-width: 991.98px) {
    .link-wrapper {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
    }
}

.tab-features li div:before {
    background-image: url("https://rpii.org/img/master-icons/checkmark-hexagon.png");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    content: "";
    height: 24px;
    left: 0;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    width: 24px;
}

@media (max-width: 991.98px) {
   .tab-features {
        margin-bottom: -16px;
    }
}

@media (max-width: 767.98px) {
   .tab-content {
        height: auto;
    }
}
@media (max-width: 991.98px) {
    .tab-content {
        padding: 32px 16px;
    }
}

@media (max-width: 991.98px) {
  .tab-features li {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        font-size: 16px;
        margin-bottom: 16px;
        width: 100%;
    }
}

.tab-link span {
    overflow: hidden;
    text-overflow: ellipsis;
}