#createques{
    .listOptions{
        table{
            thead{
                tr{
                    th{
                        white-space: nowrap;
                    }
                }
            }
            tbody{
                .actionbtns{
                    display: flex;
                    text-align: center;
                    align-items: center;
                    .btns {
                        border: none;
                        background: none;
                        font-size: 18px;
                        &.add-btn {
                            color: $st-sixth-bg;
                            font-size: 18px;
                        }
                        &.remove-btn {
                            color: #e91616; 
                        }
                    }
                    // .add-btn{
                    //     background: $st-sixth-bg;
                    //     border: 0;
                    //     color: #ffff;
                    //     font-size: 12px;
                    //     border-radius: 5px;
                    //     margin-right: 10px;
                    // }
                    // .remove-btn{
                    //     background: #e91616;
                    //     border: 0;
                    //     color: #ffff;
                    //     font-size: 12px;
                    //     border-radius: 5px;
                    // }
                }
                .testPaperList {
                    width: 250px;
                }
                .attachDocument{
                    input[type=file] {
                        // width: 100%;
                        // max-width: 100%;
                        width: 190px;
                        // color: #444;
                        color: transparent;
                        // padding: 15px;
                        padding: 0;
                        //background: #fff;
                        // border-radius: 0.375rem;
                        // border:1px solid #ced4da;
                        // min-height: 90px;
                        @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;
                            }
                        }
                    }
                }
            }
        }
    }
   .submitwrap{
       display: flex;
       .submitbtn{
           margin-right: 20px;
       }
   }
   .table-responsive {
        overflow-x:auto!important;
        .react-select__menu{
            position: relative;
            z-index: 1;
        }
        @media #{$small} {
            overflow-x: scroll!important;
        } 
    }
  
}