.rts-tab-advance{
    .nav{
        background: #F6F6F6;
        padding: 10px 0 0 6px;
        margin: 0;
        border-bottom: 1px solid #dee2e6;
        li{
            button{
                border: none;
                background: transparent;
                padding: 15px 25px;
                color: var(--titleColor);
                font-size: 18px;
                font-weight: 500;
                font-family: var(--titleFont);
                position: relative;
                display: flex;
                margin-bottom: -1px;
                i {
                    margin-right: 7px;
                }
                &.active {
                    background: #fff;
                    border: 1px solid #dee2e6;
                    border-bottom: none;
                }
            }
        }
    }    
  }


  
// Horizontal Advanced Tabs
.rts-tab-advance  {
    .horizontal_advanced_tabs {
        display: block;
        .tab-content {
            margin-top: 40px;
            padding: 0 30px;
            border-radius: 6px;
            border: 1px solid #DDD8F9;
        }
    }
}

//Vertical Advanced Tabs
.vertical_advanced_tabs {
    .rts-tab-advance {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-flow: row-reverse;
        .nav {
            background: transparent;
            padding: 0; 
            margin: 0;
            margin-top: 0;
            justify-content: end;
            flex-basis: 37%;
            li {
                margin-bottom: 30px;
                button {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: linear-gradient(90deg, #E6E6FF 0%, rgba(255, 255, 255, 0) 97.93%);
                    border: 1px solid #BCBCFF;                    
                    padding: 12px 40px;
                    width: 305px ;
                    .icon {
                        margin-right: 20px;
                    }
                    .button_content {
                        font-weight: 700;
                        font-size: 22px;
                        line-height: 32px;
                    }
                }
                .nav-link.active {
                    background: var(--primaryColor);
                    color: var(--whiteColor);
                    border-color: transparent;
                    .button_content {
                        color: var(--whiteColor);
                    }
                    .icon {
                        background: transparent;
                        i {
                           color: #fff;
                        }
                        svg {
                            path {
                                fill: #fff;
                            }
                        }
                    }
                }
                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
        .tab-content {
            flex-basis: 63%;
        }
    } 
}
.horizontal_advanced_tabs.style2 .rts-tab-advance .nav li button {
    background: transparent;
}
.rts-tab-advance span.pricing-save-text {
    background: #E6E5FF;
    padding: 3px 18px;
    border-radius: 20px;
    display: block;
    color: var(--primaryColor);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

/* Pricing Style3 */
.horizontal_advanced_tabs.style3 {
    .rts-tab-advance {
      .nav {
        background: #D4F7EC;
        li {
          button {
            background: #fff;
            .button_content {
              color: #33b89f;
            }
          }
        }
      } 
    }
}

//Advanced tab Style4 Css 
.vertical_advanced_tabs.style4 {
    .rts-tab-advance { 
        display: flex;
        align-items: flex-start;
        .nav {
            flex-basis: 30% !important;
            li {
                button {
                    background: #FFFFFF;
                    border-radius: 10px;
                    border: 1px solid #E6E5FF;
                    text-align: left;
                    padding: 37px 40px;
                    .button_content {
                        font-weight: 600;
                        font-size: 18px;
                        line-height: 28px;
                        color: var(--titleColor);
                        .subtitle {
                            font-size: 16px;
                            font-weight: 400;
                            margin: 8px 0 0;
                            line-height: 22px;
                            color: #497696;
                        }
                    }
                }
                .nav-link.active.active {
                    background: #fff;
                    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.04);
                    border: 1px solid transparent;
                    position: relative;
                    .button_content {
                        color: var(--titleColor);
                    }
                    &::before {
                        position: absolute;
                        content: "";
                        left: 0;
                        top: 0;
                        height: 100%;
                        width: 6px;
                        background: var(--primaryColor);
                        border-radius: 10px 0 0 10px;
                    }
                }
            }
        }
        .tab-content {
            flex-basis: 70%;
        }
    }
}