.ShowFamilies {

    &-cards {
        display: grid;
        grid-gap: 25px;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        margin-bottom: 30px;
    }

    &-card {
        border-radius: 8px;
        box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
        cursor: pointer;
    }

    &-info-section {
        width: 88%;
    }

    &-card:hover {
        box-shadow: 0 2px 14px 0 rgb(0 0 0 / 50%);
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    &-header-text {
        color: var(--gray-900);
        font-size: 24px;
        margin-bottom: 10px;
    }

    &-img {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        width: 100%;
    }

    &-img-container {
        position: relative;
    }

    &-img-hover {
        display: none;
    }

    &-card:hover &-img-hover {
        align-items: center;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

    &-card:hover &-img-modal {
        background-color: var(--black);
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        bottom: 0;
        left: 0;
        opacity: 0.8;
        position: absolute;
        right: 0;
        top: 0;
    }

    &-num-episodes-text {
        color: var(--white);
        font-size: 24px;
        margin-bottom: 20px;
    }

    &-title {
        color: var(--gray-900);
        font-size: 18px;
        font-weight: 500;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 10px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    &-network {
        color: var(--gray-900);
        font-size: 12px;
        margin: 10px;
        margin-top: 2px;
        opacity: 0.5;
    }

    &-bottom-section {
        align-items: center;
        background-color: var(--white);
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
    }

    &-edit-show {
        background-color: var(--gray-100);
        border-radius: 15px;
        display: none;
        height: 30px;
        margin-right: 10px;
        width: 30px;
    }

    &-edit-show:hover {
        background-color: var(--gray-200);
    }

    &-card:hover &-edit-show {
        align-items: center;
        display: flex;
        justify-content: center;

        .Edit {
            fill: var(--gray-700);
        }
    }

    &-no-show-families-container {
        align-items: center;
        background-color: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 2px;
        display: flex;
        flex-direction: column;
        height: 450px;
        justify-content: center;
        width: 100%;
    }

    &-no-show-families-text {
        color: var(--gray-700);
        font-size: 32px;
        margin-bottom: 30px;
        opacity: 0.8;
    }

    &-no-show-families-icon {
        @include circle(140px);

        margin-bottom: 30px;
    }

    &-pagination-container {
        display: flex;
        justify-content: flex-end;
    }

    &-header-section {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    &-header-left {
        display: flex;
    }

    &-filter-networks {
        width: 250px !important;
    }

    &-filter-group-label {
        font-size: 14px;
        text-transform: capitalize;
    }

    &-filter-option-label {
        padding-left: 10px;
    }
}
