.dashboard {
    &__body {
        &--content {
            padding: 0 5.5rem;
            margin-top: 3.5rem;

            @media only screen and (max-width: 600px){
                padding: 3.5rem 1.6rem 0 1.6rem;
            }

            &-dropdown {
                max-width: 23rem;
                width: 100%;
                display: inline-block;
                height: 5.2rem;
                background-color: $white;
                border-radius: 27px;
                padding: 0 1.5rem;

                select {
                    border: none;
                    width: 100%;
                    height: 100%;
                    font-size: 1.7rem;
                    font-weight: 600;
                    outline: none;
                }
            }

            .top-bar {
                background: #2a2a2a;
                width: 100%;
                height: 7.3rem;
                border-radius: 16px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 2rem;

                &__box {
                    label {
                        display: flex;
                        align-items: center;
                        gap: 1rem;
                        color: $white;
                        font-weight: 600;
                        font-size: 1.8rem;
                        text-align: left;

                        .check {
                            width: 2rem;
                            height: 2rem;
                            background-color: $white;
                            display: block;
                            border-radius: 4px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            height: 100%;

                            i {
                                color: $black;
                                font-size: 2.3rem;
                                opacity: 0;
                                visibility: hidden;
                            }
                        }

                    }

                    input {
                        display: none;
                    }

                    input[type='checkbox']:checked+label .check i {
                        color: $black;
                        opacity: 1;
                        visibility: visible;
                    }
                }

                .download {
                    font-weight: 600;
                    font-size: 1.8rem;
                    text-align: left;
                    color: #fff;

                }

            }

            .table {
                &__input {
                    display: flex;
                    justify-content: space-between;
                    height: 7rem;
                    background-color: $white;
                    border-radius: 9px;
                    padding: 0 2rem;
                    align-items: center;
                    margin-top: 1.4rem;

                    &--box {
                        .input-check {
                            display: none;
                        }
                     

                        label {
                            display: flex;
                            align-items: center;
                            gap: 1.6rem;

                            .tick {
                                width: 2.5rem;
                                height: 2.5rem;
                                background-color: $white;
                                border: 1px solid #707070;
                                border-radius: 4px;
                                font-size: 2.7rem;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                i{
                                    opacity: 0;
                                    visibility: hidden;
                                }
                            }

                            img {
                                width: 4rem;
                                height: 3rem;
                                object-fit: contain;
                            }
                            
                      
                            .text {
                                font-weight: 600;
                                font-size: 1.7rem;
                                text-align: left;
                                color: #000;
                            }
                        }
                        .input-check[type='checkbox']:checked +label .tick i{
                            opacity: 1;
                            visibility: visible;
                        }
                    }

                    .date {
                        font-weight: 400;
                        font-size: 1.7rem;
                        line-height: 5.4rem;
                        text-align: left;
                        color: #000;

                    }
                }
            }
        }
    }
}

@media only screen and (max-width: 600px){
    html{
        font-size: 50% !important;
    }
}