@use "../../../../styles/abstracts/variables";
@use "../../../../styles/abstracts/mixins" as *;  

.home-chart{
    @include dashPageComponent;

    &__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 1rem;
        @media only screen and (max-width: 1000px){
            flex-direction: column;
        }

        select {
            @include formSelect;
            width: 30%;
            border: 1px solid #2B2B2B !important;
            color: #FFF !important;
            font-size: .85rem;

            @media only screen and (max-width: 1000px){
                width: 100%;
            }
        }
    }
}