.usn_cmp_banner {
    display: none !important;
}

.member-benefits {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 15px;
}

.categories-section {
    width: 100%;
    padding: 20px 2.5em;
}

.categories-inner {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
}

.category-header {
    color: #CE1308;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.15);
}

.category-span {
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    font-size: 20px;
}

    .category-span:hover {
        opacity: 0.5;
    }

.benefits-section {
    width: 100%;
    padding: 0 0.5rem;
}

.category {
    flex-direction: column;
}

.benefit {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: 0.5rem 0 0 0;
    background: white;
    transition: transform 0.4s ease-in-out;
    border-radius: 15px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15), 0 6px 4px 0px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

    .benefit:hover {
        transform: translateY(-20px);
    }

.benefit-left {
    height: 150px;
    width: 150px;
    padding: 15px;
    border-radius: 15px 0 0 15px;
    border-right: 1px solid lightgray;
    flex-shrink: 0;
    flex-grow: 0;
}

.benefit-text {
    font-size: 12px;
    color: gray;
}

.benefit-summary {
    display: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 500px;
}

.img {
    height: 100%;
    width: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.benefit-name {
    font-size: 16px;
}

.benefit-content {
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.5rem;
}

.pager-button {
    cursor: pointer;
}

    .pager-button:hover {
        color: gray;
    }

.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    /*transition: all 0.3s ease;*/
    top: 0;
    left: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.m-dialog {
    width: 100%;
}

.modal-content {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15), 0 6px 4px 0px rgba(0, 0, 0, 0.08);
}

.modal-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.modal-img-title {
    display: flex;
    flex-direction: row;
}

.modal-img {
    height: 200px;
    width: 120px;
    margin: 15px;
    border-right: 1px solid lightgray;
}

.modal-title {
    font-size: 16px;
}

.modal-body {
    padding: 10px;
}

.close-btn {
    font-size: 32px;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
}

    .close-btn:hover {
        color: gray;
    }

@media (min-width: 500px) {
    .modal {
        align-items: center;
    }

    .m-dialog {
        width: 90%;
    }

    .benefit-name {
        font-size: 30px;
    }

    .benefit-summary {
        display: inline-block;
    }

    @media (min-width: 950px) {
        .usn_cmp_banner {
            display: block !important;
        }
        .member-benefits {
            flex-direction: row;
            margin-top: 65px;
        }

        .categories-section {
            width: 25%;
        }

        .category-span {
            font-size: 16px;
        }

        .benefits-section {
            width: 75%;
            padding: 0 2.5rem;
        }

        .benefit-content {
            padding: 0 2.5rem;
        }

        .benefit {
            margin: 2.5rem 0 0 0;
        }

            .benefit:hover {
                transform: translateY(-20px);
            }

        .benefit-text {
            font-size: 16px;
        }

        .benefit-left {
            height: 200px;
            width: 400px;
        }

        .m-dialog {
            width: 60%;
        }

        .modal-img {
            height: 200px;
            width: 200px;
            margin: 15px;
            border-right: 1px solid lightgray;
        }

        .modal-title {
            font-size: 26px;
        }

        .modal-body {
            padding: 30px;
        }

        .close-btn {
            font-size: 32px;
            width: 32px;
            height: 32px;
            margin: 0;
            padding: 0;
        }
    }
