
#createQuestionBank {
    .form-label {
        color: #000000;
        font-weight: 400;
    }
    .backbtn{
        display: flex;
        justify-content:flex-end;
    }
    .sec-main{
        .duplicatetable{
            padding: 30px 0;
            border-top:1px solid #dadada;
           
        }
        .uploadwrap{
            display: flex;
            justify-content: space-between;
            .uploadbtn{
                margin: 0 0 10px 0;
            }

        }
    
        .attachDocument{
            display: flex;
            justify-content: center;
            input[type=file] {               
                width: 210px;
              
                color: transparent;
                 
                padding: 0;
             
                @media #{$small} {
                    min-height: 68px;
                  }
       
                &::file-selector-button {
                    width: 60%;
                    margin-right: 20px;
                    border: none;
                    background: #084cdf;
                    padding: 10px 20px;
                    border-radius: 10px;
                    color: #fff;
                    cursor: pointer;
                    transition: background .2s ease-in-out;
                    // display: flex;
                    // flex-direction: row;
                    // justify-content: center;
                    @media #{$small} {
                         width: 80%;
                        
                      }
           
                    &:hover {
                        background: #0d45a5;
                    }
                }
            }
      
        }
        .previewRecords {
            overflow-x: auto;
            max-width: 1020px;
            .table {
                td {
                    text-wrap: nowrap;
                }
            }
        }
    }
    .questionWrapper{
        // margin-top: 20px;
        overflow: hidden;
        clear: both;
        border-bottom: 2px solid #eaeaea;
        padding: 20px 10px;
        .ques {
            display: flex;
            justify-content: space-between;
            .delQuestion {
                svg {
                    color: red;
                    cursor:pointer;
                    //font-size: 20px;
                }
            }
        }
        .actBtn {
            display: flex;
            .delOptions {
                position: relative;
                top: 37px;
                margin-right: 12px;
                svg {
                    color: red;
                    cursor: pointer;
                }
            }
            .addOptions {
                position: relative;
                top: 37px;
                svg {
                    color: green;
                    cursor: pointer;
                }
            }
        }
    }
    .submitwrap{
        display: flex;
        margin-top: 20px;
        .submitbtn{
            .btn{
                background:$st-sixth-bg;
                margin-right: 10px;
                color: #fff;
                font-size: 14px;
                text-transform: none;
            }
        }
        .cancelbtn{
            .btn{
                background: $st-text-thirteen;
                color: #fff;
                font-size: 14px;
                text-transform: none;
            }
        }
    }       
    .btnWrap{
        Button{
            background: $st-sixth-bg;
            // width: 136px;
            // height: 42px;
            border-radius: 5px;
            font-size: $st-font14;
            text-transform: none;
            padding: 12px;
            svg{
                width: 17px;
                height: 18px;
                position: relative;
                bottom: 1px;
            }
        }
        .submitbtn{
            Button{
                background: $st-sixth-bg;
            }  
        }
    }
}

