* {
  box-sizing: border-box;
}

html {
  font-family: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif';
  font-size: 16px;
  height: 100%;
  line-height: 1.5;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--milkshake__background);
}

@media only screen and (max-width: 639px) {
  body {
    background: white;
  }
}

.js-app-shell {
  height: 100%;
}

/*
Set normal default weight on headings so boldness can be
controlled on a per-font basis by the global FONT classes
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

/* Minimal margin reset to ensure we're not accidentally relying on browser defaults */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.milkshake__root {
  height: 100%;
  width: 100%;
  position: relative;
}

.milkshake__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.swiper-container {
  height: 100%;
  width: 100%;
}

.milkshake-card__wrapper {
  height: 100%;
}

.swiper-slide {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.milkshake-nav-bar {
  position: absolute;
  width: 100%;
  height: 60px;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.milkshake-button-prev,
.milkshake-button-next {
  transition: opacity 0.4s;
  outline: none;
  z-index: 1;
  padding: 10px 20px;
}

.milkshake-button {
  width: 60px;
  height: 40px;
  border-radius: 30px;
  background-color: #fda1a2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.swiper-pagination-wrapper {
  background-color: rgba(0, 0, 0, 0.12);
  height: 40px;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 20px;
}

.swiper-pagination-wrapper .swiper-pagination {
  position: relative;
  width: auto;
}

.swiper-pagination-wrapper .swiper-pagination-bullet {
  margin: 0 4px;
  width: 8px;
  height: 8px;
  background-color: black;
  opacity: 0.2;
}

.swiper-pagination-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: white;
}

.milkshake__desktop-button-wrapper {
  display: none;
}

@media only screen and (min-width: 640px) {
  .milkshake__desktop-button-wrapper {
    cursor: pointer;
    text-decoration: none;
    max-width: 288px;
    width: 100%;
    display: flex;
    padding: 0 4px;
    transition: opacity 0.4s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }

  .milkshake__desktop-button-disabled {
    opacity: 0;
    pointer-events: none;
  }

  .milkshake-nav-bar {
    display: none;
  }

  .milkshake__desktop-button-wrapper:last-child {
    justify-content: flex-end;
  }

  .milkshake__desktop-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fda1a2;
    font-size: 16px;
    width: 100%;
    max-width: 212px;
    height: 54px;
    border-radius: 28px;
    text-transform: uppercase;
    color: white;
    font-family: sans-serif;
  }

  .milkshake__root {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .milkshake__wrapper .swiper-container {
    margin: 0;
    width: 413px;
    min-width: 413px;
    height: 654px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  }
}

.milkshake__landscape-detection {
  display: none;
}

@media screen and (max-device-width: 767px) and (min-device-width: 320px) and (orientation: landscape) {
  .milkshake__landscape-detection {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1;
    font-family: sans-serif;
    text-transform: uppercase;
    padding: 32px;
    text-align: center;
  }

  .milkshake__landscape-detection-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 310px;
  }

  .milkshake__landscape-detection-image {
    margin-bottom: 20px;
  }
}

