.contentBrowse {
    .tabs {
        border-bottom: 1px solid $tabBorderColor;

        & dd {
            border: 1px solid $tabBorderColor;
        }
        & dd.active {
            border-bottom: 1px solid $activeTabBorderColor;
        }
        p {
            margin-bottom: 0;
        }
    }

    .tabs-content {
        .content {
            width: 100%;
            th {
                .sort-arrow {
                    display: inline-block;
                    float: right;

                    font-size: 10px;

                    transform: rotate(0deg);

                    transition: transform 0.2s ease, color 0.2s ease;

                    color: $darkGray;

                    &.active-down {
                        transform: rotate(180deg);
                        color: $lightBlue;
                    }

                    &.active-up {
                        transform: rotate(0deg);
                        color: $lightBlue;
                    }

                    &:hover {
                        color: $lightBlue;
                    }
                }
            }
        }
    }

    #panel2-1 {
        position: relative;
        padding-bottom: 1.5rem;
    }
}
