@import '../../../scss/base';
.rts-tab-advance{
    .nav{
        background: #F6F6F6;
        padding: 12px 6px;
        margin: 0;
        margin-top: 35px;
        li{
            button{
                border: none;
                background: transparent;
                border-radius: 100px;
                padding: 8px 25px;
                color: var(--titleColor);
                font-size: 18px;
                font-weight: 600;
                font-family: var(--titleFont);
                position: relative;
            }
        }
    }    
  }
  .tab-custom-nav{
    .nav{
        float: right;
        position: relative;
        bottom: 102px;
        z-index: 1;
    }
    .tab-content{
        clear: both;
    }
  }

  
// Horizontal Advanced Tabs
.horizontal_advanced_tabs  {
    .rts-tab-advance {
        display: block;
        .nav {
            display: flex;
            flex-wrap: inherit;
            align-items: center;
            justify-content: center;
            margin: auto;
            width: max-content;
            border-radius: 30px;
            padding: 10px;
            margin-bottom: 35px;
            li {
                margin-right: 10px;
                button {
                    min-width: auto;
                    width: max-content;
                    padding: 8px 23px;
                    background: #D6D6FF;
                    margin: 0px;
                    display: flex;
                    align-items: center;
                    .button_content {
                        text-align: center;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 24px;
                        color: var(--primaryColor);
                    }
                    .icon {
                        background: var(--primaryColor);
                        color: #fff;
                        border-radius: 50%;
                        width: 35px;
                        height: 35px;
                        min-width: auto;
                        text-align: center;
                        line-height: 35px;
                        margin-right: 15px;
                    }
                }
                .nav-link.active {
                    background: var(--primaryColor);
                    color: var(--whiteColor);
                    .button_content {
                        color: var(--whiteColor);
                    }
                    .icon {
                        background: #fbf1eb;
                        i {
                            color: var(--whiteColor);
                        }
                    }
                }
                &:last-child {
                    margin-right: 0;
                }
            }
            
        }
    }
    
}

//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%;
        }
    }
}