.result{
    padding: 30px 0;
    h4{
        text-align: center;
        font-size: 24px;
        color: $black;
    }
}

.result_serach_wrappper{
    height: 90px;
    width: 90%;
    background-color: rgb(255, 255, 255);
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 20px;
    .custom_dropper{
        .form_control{
            width: 100%;
            height: 50px;
            background-color: rgba(207, 215, 227, 0.39);
            border: none;
            padding: 10px;
            font-size: 15px;
            border-radius: 8px;
            color: $text;
            &:focus{
                outline: 0;
            }
        }
    }
    .search_btn{
        height: 50px;
        width: 100%;
        background-color: #d65737;
        color: $white;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        cursor: pointer;
        &:hover{
           background-color: #b73e20;
        }
        i{
            margin:0 10px;
            font-size: 16px;
        }
    }
}


.result_show {
    width: 70%;
    margin: 50px auto;
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid rgba(195, 195, 195, .568627451);
    background-color: #fff;
    .student_info h4 {
        font-size: 20px;
        font-weight: 600;
        color: rgba(0, 0, 0, .9019607843);
        padding-bottom: 20px;
        text-align: center;
    }
    .student_info_item {
        border-bottom: 1px dashed rgba(195, 195, 195, .6196078431);
        padding: 8px 10px;
        font-size: 15px;
        font-weight: 400;
        color: #565454;
        margin-top: 10px;
         span {
            font-weight: 500;
            color: rgba(0, 0, 0, .9019607843);
            padding-left: 10px;
            font-size: 16px;
        }
    }
  .grade_sheet {
        padding-top: 35px;
       h4 {
            font-size: 18px;
            font-weight: 600;
            color: rgba(0, 0, 0, .9019607843);
            padding-bottom: 10px;
            text-align: center;
        }
       .grade_sheet_wrapper {
            width: 90%;
            margin: 0 auto;
            border: 1px solid rgba(195, 195, 195, 0.64);
           .grade_heading {
                background-color: rgba(7, 25, 90, 0.17);
                padding: 10px;
               .head_text {
                    font-size: 16px;
                    font-weight: 500;
                    color: rgba(0, 0, 0, .9019607843);
                    padding-left: 25px;
                }
            }
            .grade_item_wrraper{
                 .grade_item {
                    background-color: #f3f3f3;
                    padding: 8px 12px;
                    &:nth-child(odd){
                        background-color: #fff;
                    }
                    .item_text {
                        padding-left: 30px;
                        font-size: 15px;
                        font-weight: 400;
                    }
                }
            }
        }
    }
}