    .discount-level-exclusive {
        display: none
    }

    /* Slideshow container */
    .exclusive {
        max-width: 90%;
        position: relative;
        margin: auto;
    }

    /* Next & previous buttons */
    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 1em;
        margin-top: -2em;
        color: black;
        font-weight: bold;
        font-size: 1em;
        transition: 0.6s ease;
        user-select: none;
    }

    /* Position the "next button" to the right */
    .prev {
        left: -2em;
    }

    .next {
        right: -2em;
    }

    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    /* Fading animation */
    .discount-level-exclusive {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {
            opacity: .4
        }

        to {
            opacity: 1
        }
    }

/* category pages */
.site-category-detail .partner-logo {
    max-width: 100px;
    max-height: 100px;
}

/* List */
.list .favorites-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 10px), 1fr));
    grid-gap: 12px;
    align-items: stretch;
    max-width: 100%;
}

/* Password Reset */

#masthead .main-navigation .menu-primary-container {
    max-width: 55%;
}

/* remove line break */
br.mobile-new-line { 
    display: none;
}