/**
 * GLOBAL FUNCTIONS
 */
/* cookie notification */
/* account popover */
/* minicart popover */
/* cookie notification */
/* Search Results Page */
/*

// 1.1 Desktop
@include media-breakpoint-up(ls) {
    // desktop styles | 1024px and up
}

// 1.2 Mobile
@include media-breakpoint-down(md) {
    // mobile styles | 1023.98px and down
}

//
// 2. Wide mobile view (used in Global Header)
//

// 2.1 Desktop
@include media-breakpoint-up(lg) {
    // desktop styles | 1200px and up
}

// 2.2 Mobile
@include media-breakpoint-down(ls) {
    // mobile styles | 1200px and down
}

*/
/*
 * Set up a screen-wide ::before element behind its parent, to apply a colored background on a block.
 *
 * Usage :
 * .block {
 *    @include full-screen-background;
 *
 *    position: relative;
 * }
 */
/*
Usage

.block {
    @include arrow(right,red,5px,auto,auto,0,0,auto,-5px);

    width: 50px;
    height: 50px;
    position: relative;
}
*/
/*
Usage
    @include ratio-holder(364/300)
    Height/Width
*/
/* Mixin to cut off the rest of one-line text with dots */
/* stylelint-disable */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem; }
  @media (min-width: 768px) {
    .overlay {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      max-width: 28.125rem;
      top: 50%;
      right: 0;
      left: auto;
      bottom: auto;
      transform: translateY(-50%);
      padding: 1.25rem;
      padding-right: 7vw; } }
  @media (min-width: 1024px) {
    .overlay {
      max-width: 40rem;
      min-width: 27rem; } }
  @media (min-width: 1200px) {
    .overlay {
      min-width: 30rem; } }
  .overlay-wrapper {
    border-radius: 0.625rem;
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    white-space: normal;
    padding: 1rem; }
    @media (min-width: 1024px) {
      .overlay-wrapper {
        padding: 1.25rem; } }
  .overlay-body {
    display: none; }
    @media (min-width: 768px) {
      .overlay-body {
        display: block; } }
  .overlay-body-mobile {
    display: block; }
    @media (min-width: 768px) {
      .overlay-body-mobile {
        display: none; } }
  .overlay-button {
    padding: 0.5rem 1rem;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow: hidden; }
    @media (min-width: 768px) {
      .overlay-button {
        width: 70%; } }
  .overlay-button:hover {
    background-color: #000;
    color: #fff; }
  .overlay h2 {
    color: inherit;
    font-size: 1.5em; }
  .overlay p {
    font-size: 1em; }

/*# sourceMappingURL=carouselOverlayBlock.css.map*/