// ------------  [general classes]  ------------
.wrapper {
    .dashboard {
        background-color: #f9f9f9;
        .bg-primary {
            background-color: $primary;

        }

        &__body {
            .nav-white {

                background-color: $white;
            }
            .nav-black{
                background-color: #212121;
                color: $white;
             

            }

            .box-white {
                background-color: $white;

                .today {

                    p {

                        color: $black;
                    }

                    h2 {
                        color: $black;

                    }
                }
            }

            &__container {
                &--content {
                    &-overview {
                        .user-heading {
                            font-weight: 600;
                            font-size: 2rem;
                            text-align: left;
                            color: $primary;

                        }

                        .nathan {
                            margin-top: 2rem;
                            &:not(:last-child){
                                border-bottom: 1px dotted ;
                                padding-bottom: .5rem;
                                
                            }
                            &__box {
                                h1 {
                                    font-weight: 600;
                                    font-size: 1.8rem;
                                    margin-bottom: .4rem;
                                    text-align: left;

                                }

                                p {
                                    font-weight: 500;
                                    font-size:1.5rem;
                                    text-align: left;
                                    color: #6e6e6e;

                                }
                            }
                        }
                    }
                }
            }

        }

    }
}