/* ==========================================================================
Layout
========================================================================== */

/**
* Sets global header height
*/
.head#hd {
    /*min-height: 110px; without promo banner */
    min-height: 158px; /* with promo banner */
}
@media (min-width: 768px){
    .head#hd {
        /*min-height: 130px; without promo banner */
        min-height: 184px; /* with promo banner */
    }
}

/**
* Hide in-store returns banner
*/
.at-store-banner { display:none; }

/**
* Hide DM's bottom menu
*/
#pnt-bottom-menu { display:none; }

/**
* Content Layout Shift (CLS) image classes. Wrap the 
* img-wrap class around the figure element when using in
* your code for the homepage.
*
* You will need to figure out your ratio by dividing the
* height by the width of the image and assigning the value
* as your padding-top in-order to make this work.
* (E.g. a 100x100 image equals padding-top: 100%)
*
* HTML example for a square image
* (You will need to calculate ratio per creative for now)
*
* <div class="d--block mx--auto">
    <figure style="padding-top: 100%;">
        <img class="lazyload" data-src="{image path here}" alt="" width="100" height="100">
    </figure>
* </div>
*/

/**
* Centered content (EOL)
*/
.center-all {
    width: 100%;
    max-width: 100%;
    position: absolute !important;
    margin: auto;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    padding: 15px;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}
.top-left-all,
.top-center-all,
.top-right-all,
.left-all,
.center-all,
.center-all-m,
.center-all-bg,
.right-all,
.bottom-left-all,
.bottom-center-all,
.bottom-right-all {
    z-index: 2;
}

/* ==========================================================================
Typography
========================================================================== */

sup { font-size: 50%; }
.text--red { color: #e82547; }

/**
* Large headlines (EOL)
*/
h2.headline-lg { margin: 0 auto 5px; }
@media (min-width: 375px) {
    h1.headline-lg { font-size: 3em !important; }
    h2.headline-lg { font-size: 2em !important; }
}
@media(min-width: 768px){
    h1.headline-lg { font-size: 4em !important; }
    h2.headline-lg { 
        font-size: 3em !important; 
        margin: 0 auto 10px;
    }
}
@media(min-width: 992px){
    h1.headline-lg { font-size: 5em !important; }
    h2.headline-lg { font-size: 3.5em !important; }
}
@media(min-width: 1201px){
    h1.headline-lg { font-size: 6em !important; }
    h2.headline-lg { font-size: 4em !important; }
}

/* ==========================================================================
Buttons and links
========================================================================== */

.body a, 
.body a:hover,
.body a:focus { text-decoration: none; }
.body a.text--underline,
.body a.text--underline:hover { text-decoration: underline; }

/* Hyperlink elements
========================================================================== */

.body .btn {
    /*margin: 0.75em 0.5em 0;
    padding: 0 12px;
    text-transform: uppercase;
    line-height: 1.1;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: inherit;
    width: auto;
    max-width: 100%;*/
    font-size: 14px !important; /* override global button styles temporarily */
}
/*.body a.btn.w--100 { 
    width: 100%; 
}
.body a.btn.m--0 { 
    margin: 0;
}*/
@media (min-width: 768px) {
    /*.body a.btn { height: 45px; }*/
}
@media (min-width: 992px){
    .body .btn { 
        /*height: 50px;*/
        font-size: var(--space_2) !important; /* override global button styles temporarily */
    }
}

/* ==========================================================================
Splide
========================================================================== */

.splide__cls--wrap {
	display: block;
	position: relative;
	margin: var(--space_2) auto var(--space_1);
    max-width: calc(100% - 80px);
}
.splide__cls--position {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	max-width: 100%;
	width: 100%;
	height: 100%;
}
button.splide__arrow--prev, 
button.splide__arrow--next {
	position: absolute;
	-webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
	top: 50%;
	bottom: auto;
	font-size: var(--space_4);
	cursor: pointer;
	border: 0;
	user-select: none;
	outline: 0;
	background: 0 0;
	z-index: 2;
	text-decoration: none;
	opacity: 1;
	line-height: 1;
	transition: opacity .15s ease-in;
}
button.splide__arrow--prev { right: 100%; }
button.splide__arrow--next { left: 100%; }
button.splide__arrow--prev[disabled],
button.splide__arrow--next[disabled] { opacity: 0; }
.splide__slide a { text-decoration: none; }
.splide__slide a:hover { text-decoration: underline; }
.splide p { line-height: 1.25; }

@media (min-width: 768px) {
	.splide__cls--wrap { 
		max-width: 90%;
		margin: var(--space_4) auto var(--space_2); 
	}
}

@media (min-width: 992px) {
	.splide__cls--wrap { padding-top: 30%; }
	button.splide__arrow--prev, 
	button.splide__arrow--next {
		font-size: var(--space_5);
	}
}