#indicators-table {
    td {
        font-weight: 500;
        border: 1px solid #b4afaf !important;
    }
}

.toggle-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;

    @media screen and (min-width: 768px) {
        align-items: stretch;
    }

    &.mobile {
        padding: 0 20px;
        gap: 5px;

        img {
            margin-bottom: 20px;
        }

        @media screen and (min-width: 576px) {
            padding: 0 40px;
        }
    }


}

.toggle-card {
    border-radius: 12px;
    background: #eee;
    display: flex;
    padding: 30px 15px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: .6s;
    text-align: center;
    width: 100%;

    @media screen and (min-width: 768px) {
        min-width: 180px;
        flex: 1;
    }



    & .title {
        font-weight: 600;
        line-height: 1.2;
        margin: 0 0 1.25rem;
        margin-bottom: 1.25rem;
        font-size: 20px;
    }

    & .description {
        font-size: 15px;
    }

    &.active {
        background: #3C75D5;
        transition: background .6s;

        & .title {
            color: #fff;
        }

        & .description {
            color: rgba(255, 255, 255, 0.6);
        }
    }
}

#tranding-view-indicator-image {
    object-fit: contain;
}