html {
  margin: 0;
  font-size: 10px;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
}

@media screen and (max-width: 750px) {
  .desktop {
    display: none !important;
  }
}

@media screen and (min-width: 751px) {
  .mobile {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .desktop_tablet {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .tablet {
    display: none !important;
  }
}

.marilyn .top-bar-banner {
  background-color: #d2ecc2;
  padding: 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.8rem;
  justify-content: center;
}
@media screen and (max-width: 550px) {
  .marilyn .top-bar-banner {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 350px) {
  .marilyn .top-bar-banner {
    font-size: 1.3rem;
  }
}
.marilyn .top-bar-banner-pre {
  text-align: center;
}
.marilyn .top-bar-banner-after {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.marilyn .top-bar-banner-after-black-box {
  background-color: black;
  color: white;
  padding: 0.5rem 2.4rem;
  font-weight: bold;
  border-radius: 0.8rem;
  margin: 0 0.8rem;
}
.marilyn .top-bar-text {
  font-size: 1.6rem;
  color: white;
  background-color: #002f28;
  text-align: center;
  line-height: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 350px) {
  .marilyn .top-bar-text {
    font-size: 1.2rem;
  }
}
.marilyn .menu {
  padding: 1.2rem 0;
  background-color: white;
  box-shadow: 0 0.3rem 0.8rem 0 #bbbbbb;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 15;
}
.marilyn .menu-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.marilyn .menu-container-logo img {
  max-width: 14rem;
}
.marilyn .menu-container-selection {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10rem;
  margin-right: 2rem;
}
.marilyn .menu-container-selection-static {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.5rem;
  gap: 4rem;
}
.marilyn .menu-container-selection-static a {
  color: #002f28;
  text-decoration: none;
}
.marilyn .menu-container-selection-button {
  border-radius: 4rem;
  border: 1px solid;
}
.marilyn .menu-container-selection-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
  line-height: 2.1rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .menu-container-selection-button a svg {
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .marilyn .menu-container-selection-button {
    display: none;
  }
}
.marilyn .menu-container-burger button {
  border: none;
  background-color: white;
}
.marilyn .menu-container-dropdown {
  transform: translate(0, -100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
}
.marilyn .menu-container-dropdown-static {
  font-size: 1.8rem;
  font-weight: 700;
  background-color: white;
}
.marilyn .menu-container-dropdown-static-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #002e27;
  padding: 1rem 2.5rem;
}
.marilyn .menu-container-dropdown-static-logo img {
  max-width: 19.6rem;
}
.marilyn .menu-container-dropdown-static-logo button {
  background-color: #002e27;
  border: none;
}
.marilyn .menu-container-dropdown-static-logo button svg {
  color: white !important;
}
.marilyn .menu-container-dropdown-static-features {
  border-bottom: 1px solid rgb(214, 214, 214);
  padding: 2rem 2.5rem;
}
.marilyn .menu-container-dropdown-static-features a {
  color: rgb(0, 47, 40);
  text-decoration: none;
}
.marilyn .menu-container-dropdown-static-reviews {
  border-bottom: 1px solid rgb(214, 214, 214);
  padding: 2rem 2.5rem;
}
.marilyn .menu-container-dropdown-static-reviews a {
  color: rgb(0, 47, 40);
  text-decoration: none;
}
.marilyn .mobile-menu.open ~ .menu-container-dropdown {
  transform: translate(0);
}
.marilyn .hero-container {
  background-color: #fbfbfa;
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 7.2rem 3rem 4.4rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.marilyn .hero-container-left {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left {
    padding-right: 0;
  }
}
.marilyn .hero-container-left-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-stars {
    display: none;
  }
}
.marilyn .hero-container-left-stars p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-title {
    display: none;
  }
}
.marilyn .hero-container-left-title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: rgb(0, 47, 40);
  margin: 0 0 2rem;
  padding-right: 3rem;
  line-height: 5.7rem;
}
.marilyn .hero-container-left-checkmarks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-checkmarks {
    margin-top: 2rem;
  }
}
.marilyn .hero-container-left-checkmarks-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.3rem;
  padding: 0 0 1.5rem;
}
.marilyn .hero-container-left-checkmarks-text p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .marilyn .hero-container-left-checkmarks-text p {
    font-size: 1.5rem;
  }
}
.marilyn .hero-container-left-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
  margin-top: 1.6rem;
}
.marilyn .hero-container-left-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .hero-container-left-button a svg {
  border-radius: 50%;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-button {
    display: none;
  }
}
.marilyn .hero-container-left-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-left-stock {
    display: none;
  }
}
.marilyn .hero-container-left-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .hero-container-left-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .hero-container-left-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .hero-container-left-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .hero-container-left-review {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 1.6rem;
  gap: 2.2rem;
}
.marilyn .hero-container-left-review-image img {
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
}
.marilyn .hero-container-left-review-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.marilyn .hero-container-left-review-text-article {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.marilyn .hero-container-left-review-text-article p {
  margin: 0.7rem 0;
}
.marilyn .hero-container-left-review-text-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.marilyn .hero-container-left-review-text-name p.verified {
  color: #1bba86;
  margin: 0;
}
.marilyn .hero-container-slideshow {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 1.7rem auto;
  width: 54rem;
  margin-right: 3rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow {
    width: 100%;
    margin: 0;
  }
}
.marilyn .hero-container-slideshow:before {
  content: "";
  position: absolute;
  background-color: #d2ecc2;
  border-radius: 35px;
  width: calc(100% - 16px);
  height: calc(100% - 120px);
  top: -12px;
  right: -15px;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow:before {
    display: none;
  }
}
.marilyn .hero-container-slideshow-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-container {
    border-radius: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-container {
    border-radius: 0.6rem;
  }
}
.marilyn .hero-container-slideshow-container .slides {
  display: none;
  width: 100%;
  height: auto;
}
.marilyn .hero-container-slideshow-container img {
  max-width: 100%;
  height: auto;
  border: 1px solid #5b7d45;
  border-radius: 1.2rem;
}
@media screen and (min-width: 1001px) {
  .marilyn .hero-container-slideshow-container img {
    min-width: 54rem;
    width: 54rem;
    height: 54rem;
    object-fit: cover;
  }
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-container img {
    border-radius: 0.8rem;
    aspect-ratio: 1;
  }
}
.marilyn .hero-container-slideshow-thumbnails {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails {
    margin-top: 0.6rem;
    padding: 0 0.5rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails img {
  max-width: 5.5rem;
  height: 5.5rem;
  border: 1px solid #5b7d45;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails img {
    max-width: 4.5rem;
    height: 4.5rem;
    border-radius: 6px;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails img {
    max-width: 3.5rem;
    height: 3.5rem;
    border-radius: 4px;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-slideshow-thumbnails img {
    max-width: 3rem;
    height: 3rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails .active {
  opacity: 1;
  border-color: #5b7d45;
}
.marilyn .hero-container-slideshow-thumbnails-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails-bar {
    gap: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails-bar {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-slideshow-thumbnails-bar {
    gap: 0.4rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails .prev,
.marilyn .hero-container-slideshow-thumbnails .next {
  cursor: pointer;
  font-size: 2rem;
  user-select: none;
  z-index: 10;
  margin: 0 1rem;
  height: 3.6rem;
  width: 3.6rem;
  border-radius: 50%;
  color: #5b7d45;
  border: 1px solid #5b7d45;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails .prev,
  .marilyn .hero-container-slideshow-thumbnails .next {
    font-size: 1.8rem;
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-slideshow-thumbnails .prev,
  .marilyn .hero-container-slideshow-thumbnails .next {
    font-size: 1.6rem;
    width: 2.8rem;
    height: 2.8rem;
    margin: 0 0.5rem;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-slideshow-thumbnails .prev,
  .marilyn .hero-container-slideshow-thumbnails .next {
    font-size: 1.4rem;
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 0.3rem;
  }
}
.marilyn .hero-container-slideshow-thumbnails .prev:hover,
.marilyn .hero-container-slideshow-thumbnails .next:hover {
  color: #fff;
  background-color: #5b7d45;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-slideshow-thumbnails .prev:active,
  .marilyn .hero-container-slideshow-thumbnails .next:active {
    transform: scale(0.95);
  }
}
.marilyn .hero-container-slideshow .guarantee {
  position: absolute;
  top: -2rem;
  right: 47rem;
  max-width: 12rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow .guarantee {
    top: -1.5rem;
    right: 89%;
  }
}
@media screen and (max-width: 800px) {
  .marilyn .hero-container-slideshow .guarantee {
    max-width: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .marilyn .hero-container-slideshow .guarantee {
    top: -1.5rem;
    right: 87%;
    max-width: 8rem;
  }
}
@media screen and (max-width: 440px) {
  .marilyn .hero-container-slideshow .guarantee {
    top: 0.5rem;
    right: 80%;
    max-width: 6rem;
  }
}
.marilyn .hero-container-slideshow .recommended-by {
  position: absolute;
  bottom: 10rem;
  left: 40rem;
  max-width: 12rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-slideshow .recommended-by {
    bottom: 10%;
    left: 86%;
  }
}
@media screen and (max-width: 800px) {
  .marilyn .hero-container-slideshow .recommended-by {
    max-width: 10rem;
  }
}
@media screen and (max-width: 600px) {
  .marilyn .hero-container-slideshow .recommended-by {
    bottom: 14%;
    left: 80%;
    max-width: 8rem;
  }
}
@media screen and (max-width: 440px) {
  .marilyn .hero-container-slideshow .recommended-by {
    bottom: 12%;
    left: 78%;
    max-width: 6rem;
  }
}
.marilyn .hero-container-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1001px) {
  .marilyn .hero-container-mobile {
    display: none;
  }
}
.marilyn .hero-container-mobile-left {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .marilyn .hero-container-mobile-left {
    padding-right: 0;
  }
}
.marilyn .hero-container-mobile-left-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-stars {
    gap: 0.8rem;
    margin-bottom: 1rem;
  }
}
.marilyn .hero-container-mobile-left-stars img {
  max-width: 9rem;
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-stars img {
    max-width: 7rem;
  }
}
.marilyn .hero-container-mobile-left-stars p {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-stars p {
    font-size: 1.2rem;
  }
}
.marilyn .hero-container-mobile-left-title h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: rgb(0, 47, 40);
  margin: 0 0 2rem;
  line-height: 5.7rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .hero-container-mobile-left-title h1 {
    text-align: center;
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .hero-container-mobile-left-title h1 {
    text-align: center;
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}
@media screen and (max-width: 480px) {
  .marilyn .hero-container-mobile-left-title h1 {
    font-size: 2.4rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 360px) {
  .marilyn .hero-container-mobile-left-title h1 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.marilyn .highlights {
  background-color: white;
}
.marilyn .highlights-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  padding: 4rem 3rem 6rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  background-color: white;
  justify-content: center;
  gap: 1.4rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .highlights-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.marilyn .highlights-container-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.marilyn .highlights-container-item-icon img {
  max-width: 8rem;
}
.marilyn .highlights-container-item-text {
  text-align: center;
  line-height: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #002f28;
}
.marilyn .infinite_scroll_gallery {
  background-color: white;
  padding: 4rem 0 6rem;
}
@media screen and (max-width: 750px) {
  .marilyn .infinite_scroll_gallery {
    padding-bottom: 4rem;
  }
}
.marilyn .infinite_scroll_gallery-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .infinite_scroll_gallery-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.marilyn .infinite_scroll_gallery-container-title h2 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  margin: 1.6rem 0 4rem;
}
@media screen and (max-width: 750px) {
  .marilyn .infinite_scroll_gallery-container-title h2 {
    font-size: 2.6rem;
    line-height: 3.6rem;
    margin-bottom: 1.7rem;
  }
}
.marilyn .infinite_scroll_gallery-container-scroller {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.marilyn .infinite_scroll_gallery-container-scroller-track {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
}
.marilyn .infinite_scroll_gallery-container-scroller-track img {
  height: 30rem;
  width: 22rem;
  margin-right: 20px;
  border-radius: 8px;
}
.marilyn .main_content {
  background-color: white;
}
.marilyn .main_content-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .main_content-container {
    padding: 0 2rem;
  }
}
.marilyn .main_content-container-title_article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3.5rem;
}
.marilyn .main_content-container-title_article-title {
  text-align: center;
}
.marilyn .main_content-container-title_article-title h2 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-title_article-title h2 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.marilyn .main_content-container-title_article-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
  max-width: 61.5rem;
  margin: auto;
  text-align: center;
}
.marilyn .main_content-container-main_content {
  display: flex;
  align-items: center;
  max-width: 952px;
  margin: 1rem auto 4.5rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .main_content-container-main_content {
    flex-direction: column-reverse !important;
  }
}
.marilyn .main_content-container-main_content .highlight::before {
  content: "";
  position: absolute;
  background-color: #d2ecc2;
  border-radius: 2rem;
  width: calc(100% - 100px);
  height: calc(100% - 200px);
  top: 215px;
  right: -15px;
  z-index: 0;
}
.marilyn .main_content-container-main_content-image {
  position: relative;
}
.marilyn .main_content-container-main_content-image img {
  width: 49rem;
  height: 50rem;
  border-radius: 2rem;
  border: 1px solid #5b7d45;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .marilyn .main_content-container-main_content-image img {
    max-width: 100%;
  }
}
.marilyn .main_content-container-main_content-wrapper {
  padding: 0 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .marilyn .main_content-container-main_content-wrapper {
    padding: 0;
  }
}
.marilyn .main_content-container-main_content-wrapper-title h3 {
  font-size: 3.6rem;
  line-height: 4rem;
  color: #002f28;
  margin: 0;
}
.marilyn .main_content-container-main_content-wrapper-article {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .main_content-container-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
  margin-top: 1.6rem;
  width: fit-content;
}
.marilyn .main_content-container-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .main_content-container-button a svg {
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-button {
    margin-top: 0;
  }
}
.marilyn .main_content-container-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.marilyn .main_content-container-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .main_content-container-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .main_content-container-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .main_content-container-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .main_content-container-centralized_box {
  margin-bottom: 4.5rem;
}
.marilyn .main_content-container-centralized_box-container {
  max-width: 87.4rem;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5.5rem;
  border: 2px solid #000000;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-centralized_box-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
}
.marilyn .main_content-container-centralized_box-container-image {
  position: relative;
  flex: 1;
}
.marilyn .main_content-container-centralized_box-container-image img {
  border-radius: 0.8rem;
  max-width: 100%;
}
.marilyn .main_content-container-centralized_box-container-wrapper {
  flex: 1.2;
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-centralized_box-container-wrapper {
    margin-bottom: 0;
  }
}
.marilyn .main_content-container-centralized_box-container-wrapper p {
  margin-top: 0;
}
.marilyn .main_content-container-centralized_box-container-wrapper p:last-child {
  margin-bottom: 0;
}
.marilyn .main_content-container-centralized_box-container-wrapper h3 {
  font-size: 2.6rem;
  line-height: 4rem;
  margin-bottom: 0.6rem;
  color: rgb(0, 47, 40);
}
@media screen and (max-width: 750px) {
  .marilyn .main_content-container-centralized_box-container-wrapper h3 {
    margin-top: 0;
    font-size: 2.2rem;
    line-height: 2.8rem;
  }
}
.marilyn .main_content-container-centralized_box-container .recommended-by {
  position: absolute;
  top: 65%;
  left: 75%;
  max-width: 12rem;
}
@media screen and (max-width: 550px) {
  .marilyn .main_content-container-centralized_box-container .recommended-by {
    top: 75%;
    left: 85%;
    max-width: 6rem;
  }
}
.marilyn .key_features {
  background-color: white;
}
.marilyn .key_features-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container {
    padding: 0 2rem;
  }
}
.marilyn .key_features-container-title h2 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  text-align: center;
  margin: 0 0 4.4rem;
  padding-top: 1rem;
}
@media screen and (max-width: 750px) {
  .marilyn .key_features-container-title h2 {
    font-size: 2.6rem;
    line-height: 3.4rem;
    margin-bottom: 1rem;
  }
}
.marilyn .key_features-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    align-items: flex-start;
  }
}
.marilyn .key_features-container-wrapper-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.4rem;
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper-left {
    gap: 2.5rem;
    align-items: flex-start;
  }
}
.marilyn .key_features-container-wrapper-left-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-left-item {
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
.marilyn .key_features-container-wrapper-left-item-icon img {
  max-width: 7rem;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-left-item-icon img {
    max-width: 10rem;
  }
}
.marilyn .key_features-container-wrapper-left-item-title h3 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 3.5rem;
  color: #002f28;
}
.marilyn .key_features-container-wrapper-left-item-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .key_features-container-wrapper-left-item-article p:first-child {
  margin-top: 1.4rem;
}
.marilyn .key_features-container-wrapper-left-item-article p:last-child {
  margin-bottom: 0;
}
.marilyn .key_features-container-wrapper-centralized_image {
  padding: 0 4rem;
  text-align: center;
  flex: 0.8;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper-centralized_image {
    padding: 0rem;
  }
}
.marilyn .key_features-container-wrapper-centralized_image img {
  max-width: 100%;
}
.marilyn .key_features-container-wrapper-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4.4rem;
  flex: 1;
}
@media screen and (max-width: 1000px) {
  .marilyn .key_features-container-wrapper-right {
    gap: 2.5rem;
    align-items: flex-start;
  }
}
.marilyn .key_features-container-wrapper-right-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-right-item {
    text-align: center;
    align-items: center;
    width: 100%;
  }
}
.marilyn .key_features-container-wrapper-right-item-icon img {
  max-width: 7rem;
}
@media screen and (max-width: 550px) {
  .marilyn .key_features-container-wrapper-right-item-icon img {
    max-width: 10rem;
  }
}
.marilyn .key_features-container-wrapper-right-item-title h3 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 3.5rem;
  color: #002f28;
}
.marilyn .key_features-container-wrapper-right-item-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .key_features-container-wrapper-right-item-article p:first-child {
  margin-top: 1.4rem;
}
.marilyn .key_features-container-wrapper-right-item-article p:last-child {
  margin-bottom: 0;
}
.marilyn .full_width_images {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 9rem;
  background-color: white;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .marilyn .full_width_images {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
  }
}
.marilyn .full_width_images img {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .marilyn .full_width_images img {
    width: 100%;
  }
}
.marilyn .colored_section {
  background-color: #d2ecc2;
  padding: 4.4rem 0 4.8rem;
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section {
    padding: 4rem 2.5rem 2rem;
  }
}
.marilyn .colored_section-container {
  max-width: 70rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container {
    flex-direction: column;
    justify-content: center;
  }
}
.marilyn .colored_section-container-wrapper {
  flex: 1;
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container-wrapper-title {
    text-align: center;
  }
}
.marilyn .colored_section-container-wrapper-title h3 {
  font-size: 2.6rem;
  line-height: 3.5rem;
  color: #002f28;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .marilyn .colored_section-container-wrapper-title h3 {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
.marilyn .colored_section-container-wrapper-article {
  font-size: 1.6rem;
  margin-top: 1.2rem;
}
.marilyn .colored_section-container-wrapper-article p:first-child {
  margin-top: 0;
}
.marilyn .colored_section-container-wrapper-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
  width: fit-content;
}
.marilyn .colored_section-container-wrapper-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .colored_section-container-wrapper-button a svg {
  border-radius: 50%;
}
.marilyn .colored_section-container-wrapper-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
  padding-bottom: 1.6rem;
}
.marilyn .colored_section-container-wrapper-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .colored_section-container-wrapper-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .colored_section-container-wrapper-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .colored_section-container-wrapper-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .colored_section-container-image {
  max-width: 15rem;
}
.marilyn .colored_section-container-image img {
  max-width: 100%;
}
.marilyn .testimonials {
  background-color: white;
}
.marilyn .testimonials-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 4.4rem;
  padding-bottom: 4.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.marilyn .testimonials-container-title h3 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  color: #002f28;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .marilyn .testimonials-container-title h3 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.marilyn .testimonials-container-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 93rem;
  margin: 3.4rem auto 0;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .marilyn .testimonials-container-wrapper {
    gap: 4.4rem;
    margin: 2.8rem auto 0;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .testimonials-container-wrapper {
    flex-direction: column;
  }
}
.marilyn .testimonials-container-wrapper-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 calc(33.333% - 1.6rem);
}
@media screen and (max-width: 1000px) {
  .marilyn .testimonials-container-wrapper-item {
    flex: 0 0 calc(49% - 5.5rem);
  }
}
@media screen and (max-width: 750px) {
  .marilyn .testimonials-container-wrapper-item {
    max-width: 29rem;
  }
}
.marilyn .testimonials-container-wrapper-item-image {
  text-align: center;
  width: 100%;
}
.marilyn .testimonials-container-wrapper-item-image img {
  max-width: 100%;
  border-radius: 0.8rem;
}
.marilyn .testimonials-container-wrapper-item-trustpilot {
  margin: 1.8rem 0 0.8rem;
}
.marilyn .testimonials-container-wrapper-item-trustpilot img {
  max-width: 8rem;
}
.marilyn .testimonials-container-wrapper-item-title h4 {
  margin: 0.4rem 0;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .testimonials-container-wrapper-item-article {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.marilyn .testimonials-container-wrapper-item-article p {
  margin: 0.4rem 0;
}
.marilyn .testimonials-container-wrapper-item-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  line-height: 2.2rem;
}
.marilyn .testimonials-container-wrapper-item-name p.verified {
  color: #1bba86;
  margin: 0;
}
.marilyn .offer_banner {
  position: relative;
  background-color: white;
}
.marilyn .offer_banner-container {
  min-height: 49rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  justify-content: center;
  padding: 0 3rem;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container {
    align-items: center;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .offer_banner-container {
    padding: 0 2.5rem;
  }
}
.marilyn .offer_banner-container-image img {
  position: absolute;
  left: 50%;
  width: 50%;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-image img {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-top: 2rem;
  }
}
.marilyn .offer_banner-container-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.marilyn .offer_banner-container-stars p {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.marilyn .offer_banner-container-title {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-title {
    max-width: 100%;
  }
}
.marilyn .offer_banner-container-title h4 {
  margin: 0;
  padding-right: 0.5rem;
  font-size: 4.8rem;
  line-height: 5.7rem;
  color: #002f28;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-title h4 {
    font-size: 4.6rem;
    line-height: 5.2rem;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .marilyn .offer_banner-container-title h4 {
    font-size: 2.8rem;
    line-height: 3.4rem;
    text-align: center;
  }
}
.marilyn .offer_banner-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1000px) {
  .marilyn .offer_banner-container-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }
}
.marilyn .offer_banner-container-wrapper-checkmarks {
  width: 100%;
}
.marilyn .offer_banner-container-wrapper-checkmarks-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.3rem;
  padding: 0 0 1.5rem;
}
.marilyn .offer_banner-container-wrapper-checkmarks-item p {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.marilyn .offer_banner-container-wrapper-button_low_column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.marilyn .offer_banner-container-wrapper-button_low_column-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
  margin-top: 1.6rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .offer_banner-container-wrapper-button_low_column-button a svg {
  border-radius: 50%;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .offer_banner-container-wrapper-button_low_column-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .faqs {
  background-color: #fbfbfa;
}
.marilyn .faqs-container {
  max-width: 117rem;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 4.4rem;
}
.marilyn .faqs-container-title {
  text-align: center;
}
.marilyn .faqs-container-title h3 {
  font-size: 4.2rem;
  line-height: 5.4rem;
  margin: 0;
  color: #002f28;
}
@media screen and (max-width: 750px) {
  .marilyn .faqs-container-title h3 {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
.marilyn .faqs-container-faqs {
  border-radius: 0.8rem;
  overflow: hidden;
  padding: 2.5rem 0 3rem;
}
.marilyn .faqs-container-faqs-row {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  background-color: #fff;
}
.marilyn .faqs-container-faqs-row:last-child {
  border-bottom: none;
}
.marilyn .faqs-container-faqs-row-question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  cursor: pointer;
  transition: background-color 0.4s;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1100px) {
  .marilyn .faqs-container-faqs-row-question {
    font-size: 1.8rem;
  }
}
.marilyn .faqs-container-faqs-row-question .faq-arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.marilyn .faqs-container-faqs-row-question .faq-arrow.rotated {
  transform: rotate(180deg);
}
.marilyn .faqs-container-faqs-row-answer {
  max-height: 0;
  font-size: 1.6rem;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
}
@media screen and (max-width: 1100px) {
  .marilyn .faqs-container-faqs-row-answer {
    font-size: 1.8rem;
  }
}
.marilyn .faqs-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.marilyn .faqs-container-wrapper-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
  margin-top: 1.6rem;
  width: fit-content;
}
.marilyn .faqs-container-wrapper-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .faqs-container-wrapper-button a svg {
  border-radius: 50%;
}
.marilyn .faqs-container-wrapper-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1.2rem;
}
.marilyn .faqs-container-wrapper-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .faqs-container-wrapper-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .faqs-container-wrapper-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .faqs-container-wrapper-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}
.marilyn .sticky_cta {
  box-shadow: 0px -3px 8px 0px #bbbbbb;
  background-color: #ffffff;
  position: fixed;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 15;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.marilyn .sticky_cta-container-button {
  border-radius: 4rem;
  border: 1px solid;
  box-shadow: -1px 5px 0px 1px #ced2cb;
  transform: scale(0.9);
  animation: pulseCTAButton 1.5s infinite;
  margin: 1.6rem 0;
  width: fit-content;
}
.marilyn .sticky_cta-container-button a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 700;
  padding: 0.8rem 0.9rem;
  border-radius: 4rem;
  text-decoration: none;
  transition: background-color 0.4s;
}
.marilyn .sticky_cta-container-button a svg {
  border-radius: 50%;
}
@media screen and (min-width: 1000px) {
  .marilyn .sticky_cta-container-button {
    display: none;
  }
}
.marilyn .sticky_cta-container-stock {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 1.2rem 0;
}
@media screen and (min-width: 1000px) {
  .marilyn .sticky_cta-container-stock {
    display: none;
  }
}
.marilyn .sticky_cta-container-stock-pulse {
  height: 7px;
  width: 7px;
  background-color: #95df89;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 2px #adf4a1;
  animation: pulseCtaShip 1.725s forwards infinite ease-out;
  opacity: 0.5;
}
.marilyn .sticky_cta-container-stock-image {
  margin: 0 0.7rem 0 0.5rem;
}
.marilyn .sticky_cta-container-stock-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6rem;
}
.marilyn .sticky_cta-container-stock-low {
  font-size: 1.2rem;
  color: #ea4701;
  font-weight: 700;
}

@keyframes pulseCTAButton {
  50% {
    transform: scale(1);
  }
}
@keyframes pulseCtaShip {
  45% {
    box-shadow: 0 0 0 5px #adf4a1;
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}/*# sourceMappingURL=marilyn.css.map */