
//aditional settings tab
.ect-additional-settings{
    max-width: 600px;
    width: 100%;
    .ect-single-setting-item{
        margin-bottom: 35px;
        &.submit_container{
            margin-bottom: 0;
        }
        .ect-settings-control {
            .theme_container {
                display: flex;
                align-items: flex-start;
                justify-content: flex-start;
                flex-direction: column;
                width: 100%;
                .swptls-title {
                    margin-bottom: 20px;
                    h6{
                        margin: 0;
                    }
                }
                .theme_options{
                    display: flex;
                    align-items: flex-start;
                    justify-content: flex-start;
                    flex-direction: column;
                    max-width: 350px;
                    width: 100%;
                    .radio_container{
                        margin-bottom: 15px;
                        &:last-child{
                            margin-bottom: 0;
                        }
                    }
                }
            }
            input[type=text]{
                max-width: 400px;
                width: 100%;
                background: #F7F7F7;
                border: 1px solid #E4E4E4;
                border-radius: 4px;
                &::placeholder{
                    font-style: italic;
                    font-weight: 400;
                    font-size: 14px;
                    line-height: 1;
                    color: #9E9E9E;
                }
            }
            button[type=submit] {
                background: #3A89FF;
                color: white;
                transition: all 0.3s ease;
                &:hover{
                    background: darken($color: #3A89FF, $amount: 10%);
                }
            }
            
        }
        p.ect-settings-desc{
            font-weight: 400;
            font-size: 13px;
            line-height: 1;
            color: #737373;
            margin: 10px 0 0 0;
        }
        
    }
    
}