.gt-report{
    padding-block: 20px;
}
.gt-report__container{}
.gt-report__title{}
.gt-report__subtitle{}
.gt-report__group{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gt-report__indication {
    border-radius: 16px;
    padding: 20px;
    background: var(--gt-color-white);
    box-shadow: 0px 2px 5px 0px #00000033;
    color: var(--gt-color-black);
    flex: 1;
}
.gt-report__indication-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 150px;
    flex-wrap: wrap;
}

.gt-report__filter{
    background: var(--gt-color-white);
    box-shadow: 0px 2px 5px 0px #00000033;
    padding: 20px;
    border-radius: 16px;
    color: var(--gt-color-black);
    max-width: 250px;
    min-width: 250px;
}
.gt-report__filter-title{
    font-size: 18px;
    font-weight: 700;
    color: var(--gt-color-primary);
    margin-bottom: 10px;
}
.gt-report__filter .gt-btn{
    width: 100%;
    text-align: left;
}

/* Responsive */

@media (max-width: 768px) {
    .gt-report__group:nth-child(2), .gt-report__indication-wrapper{
        flex-direction: column;
    }
    .gt-report__filter{  max-width: 100%; }
}