/* HOMEPAGE REDESIGN PHASE 2021 */
.myHmpg__headline {
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-transform: uppercase;
}
.myHmpg__uppercase {
    text-transform: uppercase;
}

/* TOP CONTENT - Products slideout and carousel container */
.myHmpg__container--top {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 215px 1fr;
    -ms-grid-columns: 215px 1fr;
    grid-template-rows: auto;
    -ms-grid-rows: auto;
    margin-bottom:30px;
    box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
}
.myHmpg-products__container {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 1;
}
.myHmpg-carousel__container {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 1;
    overflow: hidden;
}
.myHmpg-ctas__container {
    display: none;
    grid-column-start: none;
    grid-column-end: none;
    grid-row-start: none;
    grid-row-end: none;
}

/* TOP CONTENT - Products slideout */
.myHmpg-products__container {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    box-sizing: border-box;
    border-radius: 0.5rem 0 0 0.5rem;
    border: 0;
    box-shadow: none;
}
    .rtl .myHmpg-products__container {
        border-radius: 0 0.5rem 0.5rem 0;
    }
.myHmpg-products__container.hmpg-prod-nav--open {
    box-shadow: none;
}
.myHmpg-products__container .myHmpg-products__header {
    display: block;
    margin: 0 0 10px;
    padding: 0 20px;
}
.myHmpg-products__container .myHmpg-products__header .myHmpg__headline {
    display: inline-block;
    vertical-align: middle;
    cursor: default;
}
.myHmpg-products__container .myHmpg-products__header a {
    display: inline-block;
    vertical-align: middle;
    padding: 0 7px;
    font-size: 11px;
    text-transform: uppercase;
}
.myHmpg-products__container .myHmpg-products__list {
    display: block;
    padding: 0 0 0 10px;
}
    .rtl .myHmpg-products__container .myHmpg-products__list {
        display: block;
        padding: 0 10px 0 0;
    }
.myHmpg-products__container .myHmpg-products__list > ul, 
.myHmpg-products__container .myHmpg-products__list > ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}
.myHmpg-products__container .myHmpg-products__list > ul li {
    display: block;
    padding: 0 10px;
    line-height: 1.1;
}
.myHmpg-products__container .myHmpg-products__list > ul li:hover, 
.myHmpg-products__container .myHmpg-products__list > ul li.menu__open {
    padding-left: 7px;
    border-left: 3px solid var(--red);
    color: var(--red);
}
.rtl .myHmpg-products__container .myHmpg-products__list > ul li:hover, 
.rtl .myHmpg-products__container .myHmpg-products__list > ul li.menu__open {
    padding-right: 7px;
    border-left:none;
    border-right: 3px solid var(--red);
}
.myHmpg-products__container .myHmpg-products__list > ul li:hover > h3 a, 
.myHmpg-products__container .myHmpg-products__list > ul li:hover > a, 
.myHmpg-products__container .myHmpg-products__list > ul li.menu__open > a {
    color: var(--red);
}
.myHmpg-products__container .myHmpg-products__list > ul li > a, 
.myHmpg-products__container .myHmpg-products__list > ul li > h3 a {
    font-size: 13px;
    font-weight: bold;
    color: var(--text-color);
    line-height: auto;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}
.myHmpg-products__container .myHmpg-products__list > ul li > a:hover {
    color: var(--red);
}

.myHmpg-resTools__header h2.myHmpg__headline, 
.myHmpg-products__header h2.myHmpg__headline, 
.myHmpg-products__container .myHmpg-products__list > ul li > h3, 
.myHmpg-resTools__list > ul li > h3 {
    margin: 0;
    padding: 0;
}

/* PRODUCT SLIDEOUT - Hidden product list panel */
.myHmpg-products__container .myHmpg-products__list > ul li > div {
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
    min-width: 1115px;
    width: auto;
    height: calc(100% + 2px);
    padding: 5px 20px 5px 255px;
    background: var(--bg-color--card);
    border: 1px solid var(--border-color--card);
    box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
    box-sizing: border-box;
    clear: both;
}
    .rtl .myHmpg-products__container .myHmpg-products__list > ul li > div {
        left:auto;
        right:0px;
        padding: 5px 255px 5px 20px;
    }
.myHmpg-products__container .myHmpg-products__list > ul li > div .myHmpg-nav-border {
    display: block;
    position: absolute;
    top: 20px;
    left: 215px;
    width: 2px;
    height: calc(100% - 40px);
    background: var(--blurple-blue);
}
    .rtl .myHmpg-products__container .myHmpg-products__list > ul li > div .myHmpg-nav-border {
        left: auto;
        right:215px;
    }
.myHmpg-products__container .myHmpg-products__list > ul li > div .myHmpg-products__list--header {
    display: block;
}
.myHmpg-products__container .myHmpg-products__list > ul li > div .myHmpg-products__list--header p {
    display: inline-block;
    vertical-align: middle;
    cursor: default;
}
.myHmpg-products__container .myHmpg-products__list > ul li > div .myHmpg-products__list--header a {
    display: inline-block;
    vertical-align: middle;
    padding: 0 7px;
    font-size: 11px;
    text-transform: uppercase;
}
.myHmpg-products__container .myHmpg-products__list > ul li > div ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: wrap column;
    flex-flow: wrap column;
    max-height: 340px;
}
.myHmpg-products__container .myHmpg-products__list > ul li > div ul li a {
    font-size: 12px;
    font-weight: normal;
}
.myHmpg-products__container .myHmpg-products__list ul li > div {
    visibility: hidden;
    transition: 0.2s 0.25s;
}
.myHmpg-products__container .myHmpg-products__list ul li:hover > div {
    visibility: visible;
    transition-delay: 0.25s;
}

/* TOP CONTENT - Carousel */
    .myHmpg-carousel__container {
    position: relative;
    height: 100%;
    min-height: 413px;
    overflow: hidden;
    border-radius: 0 0.5rem 0.5rem 0;
}
    .rtl .myHmpg-carousel__container {
        border-radius: 0.5rem 0 0 0.5rem;
    }
.myHmpg-carousel__container .dk-carousel__container {
    display: block;
    height: 100%;
}
.myHmpg-carousel__container .myHmp-carousel-features {
    height: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 0 0.5rem 0.5rem 0;
}
    .rtl .myHmpg-carousel__container .myHmp-carousel-features {
        border-radius: 0.5rem 0 0 0.5rem;
    }
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide {
    height: 100%;
    min-height: 413px;
    display: table;
    position: relative;
}
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content {
    height: 100%;
    vertical-align: top;
    display: table-cell;
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: right;
    padding: 30px 45px;
}
    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content {
        background-position: left;
    }

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content[class*='Hmpg-'] {
    background-position: left;
}

    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content[class*='Hmpg-'] {
        background-position: right;
    }

/* CAROUSEL TEMPLATE - White box on left theme  */
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content > * {
    max-width:345px;
    z-index: 2;
    position: relative;
    color: var(--text-color);
}

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__white-box:before,
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__double-white-box:before {
    content:"";
    background-color:#fff;
    height:100%;
    max-height:calc(100% - 48px);
    width:100%;
    max-width:401px;
    display:block;
    opacity:0.85;
    position:absolute;
    left:24px;
    top:24px;
}
    .dkdk .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content:before {
        background-color: #222;
    }
    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content:before {
        left:auto;
        right:24px;
    }

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__double-white-box:after {
    content:"";
    background-color:#fff;
    height:100%;
    max-height:100%;
    width:100%;
    max-width:449px;
    display:block;
    opacity:0.5;
    position:absolute;
    left:0px;
    top:0px;
}

    .dkdk .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__double-white-box:after {
        background-color:#222;
    }


    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__double-white-box:after {
        left:auto;
        right:0px;
    }

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content h1,
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content h2 {
    display: block;
    margin: 0;
    padding: 1rem 0 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--red);
}
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content h1 .shipping-subtitle,
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content h2 .shipping-subtitle {
    display: block;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.5;
}
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content p {
    margin: 1.5rem 0;
    padding: 0;
    font-size: 18px;
    line-height: 23px;
}

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content ul {
    padding:.5rem 2rem;
    line-height: 2rem;
    font-size:16px;
}

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content ul li {

}

/*remove in april*/
.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .registernow {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: auto; 
    width: 100%; 
    height: auto;
}
    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .registernow {
        right: 0; 
        left: auto;
    }
/**/

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .registernow .dk-btn__primary {
    position: absolute; 
    bottom: 50px; 
    right: auto; 
    left: 45px; 
    z-index: 2; 
    font-size: 18px; 
    font-weight: normal; 
    border-radius: 4px;
}
    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .registernow .dk-btn__primary {
        left: auto; 
        right: 45px;
    }

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .dk-slide__button-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right:0;
}

.myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .dk-slide__button-wrapper .dk-btn__primary {
    position: absolute;
    bottom: 40px;
    left: 45px;
    font-size: 18px;
    border-radius: 4px;
}
    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .dk-slide__button-wrapper .dk-btn__primary {
        left: auto;
        right: 45px;
    }

/* BANNER CAROUSEL NAVIGATION STYLING */
.myHmpg-carousel__container .dk-carousel__navigation {
    position: absolute !important;
    bottom: 0;
    width: 100%;
}
.myHmpg-carousel__container .dk-carousel__navigation .dk-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
}
.myHmpg-carousel__container .dk-carousel__navigation .dk-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #cccccc !important;
    border: 2px solid #1a1552;
    opacity: 1;
}
.myHmpg-carousel__container .dk-carousel__navigation .dk-pagination .swiper-pagination-bullet-active {
    background: var(--red) !important;
    border: 2px solid #1a1552;
}
.myHmpg-carousel__container .dk-carousel__navigation .dk-next-arrow, 
.myHmpg-carousel__container .dk-carousel__navigation .dk-prev-arrow {
    visibility: hidden;
}
#carousel-wrapper {
    visibility: hidden;
    width: 0;
    height: 0;
}
#carousel-wrapper {
    background: transparent;
    border: 0;
}
#carousel-wrapper #promo-panel-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}
#carousel-wrapper #promo-panel-wrapper .slide {
    -webkit-box-flex: 1;
    width: auto;
    -webkit-flex: 1 1 25%;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: var(--bg-color--card);
    border: 1px solid var(--border-color--card);
    box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
}

#carousel-wrapper #pager {
    display: none;
}

/* CAROUSEL PAGE LOAD HACKS */
/* ******** SWIPER HACKS (Generic) ******** */
.myHmp-carousel-features:not(.swiper-container-initialized) {
    display: flex;
}
.myHmp-carousel-features .dk-slide:not(.swiper-slide) {
    flex-shrink: 0;
}

/* ******** SWIPER HACKS (Specific) ******** */
.myHmp-carousel-features .dk-slide:not(.swiper-slide) {
    width: 100%;
}

/* FEATURED PRODUCTS (AD PLAYER) */
.myHmpg--featuredProds--container {
    display: block;
    clear: both;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer {
    display: block;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide {
    height: auto;
    padding: 10px 14px;
    box-sizing: border-box;
    background: var(--bg-color--card);
    border: 1px solid var(--border-color--card);
    box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .thumb {
    height: 30px;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .thumb img {
    max-height:30px;
    max-width:100%;
    width:auto;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .title, 
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .title a {
    color: var(--text-color);
    text-decoration: none;
}

.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .slide-image-link {
    display: block;
    text-align: center;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .img-responsive {
    max-width: 165px;
}

/* CONTENT STYLING */
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content {
    margin: 1em 0 0;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content, 
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content p, 
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content a, 
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content ul, 
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content ul li {
    font-size: 11px;
    color: var(--text-color);
    text-decoration: none;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content a:hover {
    text-decoration: none;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content ul {
    margin: 0 14px;
    padding: 0;
}
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content ul li {
    margin: 0;
    padding: 0;
}

/* LINK SLIDE */
.myHmpg--featuredProds--container .myHmpg-adPlayer .myHmpg-adPlayer-slide .slide .content a.btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0 !important;
}

/* FEATURED MANUFACTURERS (CAROUSEL) */
.myHmpg--featuredMfrs--container {
    display: block;
    clear: both;
}
.myHmpg--featuredMfrs--container .myHmpg__headline {
    display: inline-block;
    vertical-align: middle;
    cursor: default;
}
.myHmpg--featuredMfrs--container .myHmpg__headline a {
    display: inline-block;
    vertical-align: middle;
    padding: 0 7px;
    font-size: 11px;
    text-transform: uppercase;
}
.myHmpg--featuredMfrs--container .myHmpg-carousel-featured-mfrs div.dk-card {
    display: block;
    height: 50px;
    padding: 4px;
    box-sizing: border-box;
    margin-bottom:5px;
}
.myHmpg--featuredMfrs--container .myHmpg-carousel-featured-mfrs div.dk-card a {
    display: block;
    width: 100%;
    height: 42px;
}
.myHmpg--featuredMfrs--container .myHmpg-carousel-featured-mfrs div.dk-card a img {
    display: block;
    width: 80px;
    height: 40px;
    margin: 0 auto;
}

/* Media Queries */
/* Large Devices - Desktops */
@media screen and (min-width: 1101px) {
    html:lang(de-de) .myHmpg-products__container .myHmpg-products__list > ul li > a,
    html:lang(ja-jp) .myHmpg-products__container .myHmpg-products__list > ul li > a,
    html:lang(es-us) .myHmpg-products__container .myHmpg-products__list > ul li > a {
        font-size: 12px;
    }
}

@media screen and (max-width: 1160px) and (min-width: 1101px) {
    /* TOP PRODUCTS - slideout to keep it from going off the page */
    .myHmpg-products__container .myHmpg-products__list > ul li > div {
        min-width: 1040px;
    }
}

@media screen and (max-width: 1100px) {
    /* TOP CONTENT */
    .myHmpg__container--top {
        grid-template-columns: auto;
        -ms-grid-columns: auto;
        grid-template-rows: auto 20px auto;
        -ms-grid-rows: auto 20px auto;
        box-shadow: none;
    }
    .myHmpg-products__container {
        grid-column-start: 1;
        grid-column-end: 1;
        grid-row-start: 1;
        grid-row-end: 2;
        box-shadow: var(--box-shadow)
    }
    .myHmpg-products__container.hmpg-prod-nav--open {
        box-shadow: var(--box-shadow)
    }
    .myHmpg-carousel__container {
        grid-column-start: 1;
        grid-column-end: 1;
        grid-row-start: 3;
        grid-row-end: 4;
        overflow: hidden;
        box-shadow: var(--box-shadow);
    }

    .myHmpg-ctas__container {
        display: none;
        grid-column-start: none;
        grid-column-end: none;
        grid-row-start: none;
        grid-row-end: none;
    }
    
    /* TOP PRODUCTS */
    .myHmpg-products__container, 
    .rtl .myHmpg-products__container {
        border-radius: 0.5rem;
    }
    .myHmpg-products__container .myHmpg-products__list > ul {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: wrap column;
        flex-flow: wrap column;
        max-height: 190px;
    }
    .myHmpg-products__container .myHmpg-products__list > ul li {
        width: fit-content;
    }
    .myHmpg-products__container .myHmpg-products__list ul li > div {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* TOP SLIDES */
    .myHmpg-carousel__container {
        border-radius: 0.5rem !important;
    }
}

/* Small Devices - landscape phones */
@media screen and (max-width: 768px) {
    .myHmpg__container--top {
        grid-template-columns: auto;
        -ms-grid-columns: auto;
        grid-template-rows: auto 20px auto;
        -ms-grid-rows: auto 20px auto;
    }
    
    .myHmpg-resTools {
        display: block !important;
    }
    .myHmpg-resTools__container {
        width:100%;
        margin-bottom:16px;
    }
}

/* Extra Small Devices - portrait phones */
@media screen and (max-width: 600px) {
    /* TOP PRODUCTS */
    .myHmpg-products__container .myHmpg-products__list > ul {
        max-height: none;
    }
    
    /* TOP SLIDES */
    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content {
        padding:24px 20px;
    }
    
    
    html:not(:lang(en)) .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content > * {
        hyphens: auto !important;
    }



    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content[class*='Hmpg-'] {
        background-position:right;
    }

        .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content[class*='Hmpg-'] {
            background-position:left;
        }

    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content[class*='Hmpg-']:before {
        content:"";
        background-color:#fff;
        display:block;
        position:absolute;
        left:0px;
        right:0px;
        height: 100%;
        max-width:100%;
        top: 0px;
        max-height:100%;
        opacity:0.85
    }
    
    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__white-box:before,
    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__double-white-box:after {
        left:0px;
        right:0px;
        height: 100%;
        max-width:100%;
        top: 0px;
        max-height:100%;
        opacity:0.85
    }
    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content.dk-slide__double-white-box:before {
        display:none;
    } 

    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .registernow,
    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .dk-slide__button-wrapper {
        position:relative;
    }
    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .registernow .dk-btn__primary,
    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .registernow .dk-btn__primary,
    .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .dk-slide__button-wrapper .dk-btn__primary,
    .rtl .myHmpg-carousel__container .myHmp-carousel-features .dk-slide__slide-content .dk-slide__button-wrapper .dk-btn__primary{
        position:relative;
        bottom:auto;
        left:auto;
        right:auto;
        margin-bottom:24px;
    }
}

/* RESOURCES AND TOOLS CARDS */
.myHmpg-resTools {
    display: flex;
    width:100%;
    margin-bottom:30px;
}
.myHmpg-resTools__container {
    flex-grow:1;
    margin-right:8px;
    min-height:220px;
    min-width:calc(33% - 8px);
}
.myHmpg-resTools__container:last-child {
    margin-right:0px;
}
    .rtl .myHmpg-resTools__container {
        margin-right:0px;
        margin-left:8px;
    }
    .rtl .myHmpg-resTools__container:last-child {
        margin-right:0px;
        margin-left:0px;
    }
.myHmpg-resTools__header {
    padding:20px 20px 0px 20px 
}
.myHmpg-resTools__header .myHmpg__headline {
    font-size:18px;
    position: relative;
    z-index: 1;
}
.myHmpg-resTools__image {
    text-align: center;
    float: right;
    position: relative;
}
    .rtl .myHmpg-resTools__image {
        float: left;
    }
.perCards__container .perCards__image img {
    position: absolute;
    top: -30px;
    right: 0px;
    max-height: 75px;
    width: auto!important;
}
    .rtl .perCards__container .perCards__image img {
        top: -30px;
        left:0px;
        right:auto;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
.myHmpg__cardImage {
    position: absolute;
    top: -30px;
    right: 0px;
    max-height: 210px;
    z-index: 0;
}
    .rtl .myHmpg__cardImage {
        top: -30px;
        left:0px;
        right:auto;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }
.myHmpg-resTools__list {
    padding:20px 10px 20px 10px;
    position: relative;
    z-index: 1;
}
.myHmpg-resTools__list ul {
    padding:0px;
    margin:0px;
}
.myHmpg-resTools__list ul li {
    list-style: none;
}
.myHmpg-resTools__list ul li a {
    border-left: solid 3px var(--bg-color--card);
    color: var(--text-color);
    text-decoration: none;
    font-weight:bold;
    display: block;
    padding:7px;
}
.myHmpg-resTools__list ul li a:hover {
    border-left: solid 3px var(--red);
    color: var(--red);
}
    .rtl .myHmpg-resTools__list ul li a {
        border-left: none;
        border-right: solid 3px var(--bg-color--card);
    }
    .rtl .myHmpg-resTools__list ul li a:hover {
        border-left: none;
        border-right: solid 3px var(--red);
    }
img.lazyload:not([src]) {
    visibility: hidden;
}
.homepage-shipping-timer {
    position: absolute;
    z-index: 1;
    bottom: 40px;
    left: 30px;
    background-color: var(--red);
    color: var(--white);
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 3px;
}

/* Homepage Personalized Cards */
.perCards__title {
    margin-bottom: 5px;
}
.perCards__wrapper {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}
.perCards__container {
    margin-right:8px;
    min-height:220px;
    min-width: calc(33% - 8px);
    position: relative;
    display: flex;
    flex-direction: column;
}
.perCards__container:last-child {
    margin-right: 0px;
}
.perCards__container:nth-child(2n) {
    min-width: calc(34.5% - 8px);
}
    .rtl .perCards__container {
        margin-right:0px;
        margin-left:8px;
    }
    .rtl .perCards__container:last-child {
        margin-right: 0px;
        margin-left: 0px;
    }
.perCards__button {
    position: absolute;
    bottom: 10px;
}
.perCards__container .dk-table thead tr, 
.perCards__container .dk-table tbody tr {
    border: 0;
}
.perCards__title h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 16px;
    color: var(--text-color);
}
.perCards__list {
    display: flex;
    flex-flow: column;
    list-style: none;
    flex-direction: row;
}
.perCards__list span {
    padding: 0 10px 5px 0;
}
.perCards__list ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 0;
}
.perCards__list li {
    flex-grow: 1;
    padding-bottom: 5px;
    min-width: calc(33% - 8px);
    list-style: none;
}
.perCards__list ul li a {
    border-left: solid 3px var(--white);
    color: var(--onyx-grey);
    text-decoration: none;
    font-weight:bold;
    display: block;
    padding:0px;
}
.see-all a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
}
.see-all a:hover {
    text-decoration: underline;
}
.perCards__snippet {
    width: 100%;
    max-width: 44%;
    margin-bottom: 20px;
    font-size: 12px;
    line-height: 1.5;
    min-height: 108px;
}
.perCards__image {
    text-align: center;
    float: right;
    position: relative;
}
.perCards__image img {
    max-width: 155px;
    margin-top: 33px;
}
    .rtl .perCards__image {
        text-align: center;
        float: left;
        position: relative;
    }
.perCards__container a {
    text-decoration: none;
}
.perCards__container a:hover:not(.dk-btn__primary.perCards__button) {
    text-decoration: underline;
}
.perCards__container a:not(.dk-btn__primary.perCards__button) {
    color: var(--link-blue);
    flex-wrap: wrap;
    flex-flow: row wrap;
}
.dk-card.p-2.perCards__container tbody tr th {
    white-space: nowrap;
}
.dk-center h2 {
    align-self: flex-end;
}
.perCards__container .dk-center {
    display: flex;
    text-align: center;
    justify-content: center;
}
.perCards__container .dk-center:last-of-type {
    width: 100%;
    height: 39%;
}

@media screen and (max-width: 1000px) {
    .dk-card.p-2.perCards__container {
        min-height: auto;
        position: relative;
    }
    .perCards__container .perCards__image img {
        position: static;
        top: -30px;
        right: unset;
        left: 0;
        max-width: 275px;
        z-index: 0;
        height: auto;
    }
    .perCards__image img {
        margin-top: 0px;
    }
    .perCards__image {
        float: none;
        clear: both;
        position: relative;
        text-align: start;
    }
    .perCards__button {
        position: static;
        bottom: 10px;
    }
    .perCards__snippet {
        max-width: 100%;
        margin-top: 5px;
        min-height: auto;
    }
    .perCards__title, 
    .perCards__image, 
    .perCards__snippet {
        display: flex;
        text-align: center;
        justify-content: center;
    }
    .perCards__wrapper .perCards__container .perCards__image:first-of-type {
        right: 0px;
        margin-bottom: 19px;
    }
}

@media screen and (max-width: 768px) {
    .perCards__container {
        width: calc(45% - 8px);
        margin-bottom: 16px;
        margin-right: 0px;
        margin-left: 0px;
    }
        .rtl .perCards__container {
            margin-right: 0px;
            margin-left: 0px;
        }
    .perCards__wrapper {
        flex-direction: column;
    }
    .perCards__container .perCards__image img {
        position: static;
        top: -30px;
        right: unset;
        left: 0;
        max-width: 336px;
        z-index: 0;
        height: auto;
        max-height: unset;
    }
    .perCards__snippet {
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }
    .perCards__button {
        position: static;
        bottom: 10px;
    }
}

@media screen and (max-width: 768px) {
    .perCards__container {
        margin-right: 0;
    }
    .perCards__list ul {
        display: flex;
        width: 100%;
        display: inline-block;
    }
    .perCards__list li {
        flex-grow: 1;
        min-width: calc(33% - 8px);
    }
    .perCards__list .perCards__title {
        display: none;
    }
    .dk-card.p-2.perCards__container {
        flex: 1;
        margin-right: 0px;
        min-height: 160px;
        min-width: calc(100% - 0px);
        position: relative;
    }
}

/* Modal Scroll perCard Hover */
.dk-card.p-2.perCards__container tr td {
    color: var(--link-blue);
    text-decoration: none;
    font-weight: bold;
    max-width: 198px;
    width: 100%;
    flex-flow: row wrap;
}
.dk-card.p-2.perCards__container tr td:first-of-type:hover {
    cursor: pointer;
    text-decoration: underline;
}
.dk-modal__content.dk-mycart__table {
    display: inline-block;
    width: 100%;
}
.dk-modal__content.dk-mycart__table {
    display: inline-block;
}
.dk-modal__content.dk-mycart__table {
    max-height: 130px;
    height: auto;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 97%;
    margin-top: 5px;
}
.dk-modal.visible table {
    width: 100%;
}
.dk-modal.visible tbody td:first-child, 
.dk-modal.visible thead th:first-child {
    width: 14%;
    text-align: left;
}
.dk-modal.visible tbody td:nth-child(2), 
.dk-modal.visible thead th:nth-child(2) {
    width: 19%;
    text-align: left;
}
.dk-modal.visible tbody td:nth-child(3), 
.dk-modal.visible thead th:nth-child(3) {
width: 33%;
    text-align: left;
}
.dk-modal.visible tbody td:nth-child(4), 
.dk-modal.visible thead th:nth-child(4) {
    width: 5%;
    text-align: left;
}

/* Homepage Personalized Cards */
.perCards__title h2 {
    color: var(--text-color);
}
.perCards__list ul li a {
    border-left: solid 3px var(--white);
    color: var(--text-color);
}
.see-all a {
    color: var(--black);
}

.perCards__wrapper .perCards__container .perCards__image:first-of-type {
    right: -30px;
    margin-bottom: 5px;
}
.perCards__wrapper .perCards__title h2 {
    color: var(--red);
}
.perCards__image {
    display: none;
}
.perCards__container .perCards__snippet {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    font-size: 12px;
    line-height: 1.5;
    min-height: 40px;
}
.perCards__wrapper .perCards__container {
    margin-right: 8px;
    min-height: 149px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.dk-card.p-2.perCards__container .dk-table.dk-table--sm thead {
    display: none;
}
.dk-card.p-2.perCards__container .dk-center {
    display: flex;
    text-align: start;
    justify-content: start;
}

@media screen and (max-width: 1000px) {
    .perCards__wrapper .perCards__container .perCards__image:first-of-type {
        right: -30px;
        margin-bottom: 5px;
    }
    .perCards__wrapper .perCards__title h2 {
        color: var(--red);
    }
    .perCards__container .perCards__image {
        display: none;
    }
    .perCards__container .perCards__snippet {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0px;
        font-size: 12px;
        line-height: 1.5;
        min-height: 40px;
    }
    .perCards__wrapper .perCards__container {
        margin-right: 8px;
        min-height: 149px;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .dk-card.p-2.perCards__container .dk-table.dk-table--sm thead {
        display: none;
    }
    .perCards__container .perCards__title, 
    .perCards__container .perCards__image, 
    .perCards__container .perCards__snippet {
        text-align: start;
        justify-content: start;
    }
    .dk-card.p-2.perCards__container .dk-center {
        display: flex;
        text-align: start;
        justify-content: start;
    }
    .perCards__wrapper .dk-card.p-2.perCards__container .dk-center, 
    .perCards__wrapper .perCards__container div p {
        display: flex;
        text-align: start;
        justify-content: start;
    }
}

.perCards__container a {
    text-decoration: none;
}
.perCards__container a:hover:not(.dk-btn__primary.perCards__button) {
    text-decoration: underline;
}
.perCards__container a:not(.dk-btn__primary.perCards__button) {
    color: var(--link-blue);
    flex-wrap: wrap;
    flex-flow: row wrap;
}
.perCards__wrapper .dk-card.p-2.perCards__container tbody tr th {
    white-space: nowrap;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}
.perCards__wrapper .dk-card.p-2.perCards__container tr td {
    padding-top: 0.4em;
    padding-bottom: 0.4em;
}
.dk-center h2 {
    align-self: flex-end;
}
.perCards__container .dk-center {
    display: flex;
    text-align: center;
    justify-content: center;
}
.perCards__container .dk-center:last-of-type {
    width: 100%;
    height: 39%;
}
.perCards__wrapper .perCards__container .perCards__image:first-of-type {
    right: -30px;
    margin-bottom: 5px;
}

.dk-card.p-2.perCards__container p a {
    font-weight: bold;
    font-size: 14px 
}
.dk-table th {
    padding-inline-start: 0;
}
.perCards__wrapper .perCards__container:last-child {
    margin-right:0px;
}
.perCards__wrapper .perCards__container {
    flex: 1 1 0;
}

.myHmpg-adPlayer-slide .thumb img {
  background-color: var(--white);
  padding: 2px;
}

.myHmpg--featuredMfrs--container .myHmpg-carousel-featured-mfrs div.dk-card {
  background-color: var(--white);
}