@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
.sticky_quote:before {
  color: #ccc;
  content: "“";
  font-size: 64px;
  line-height: 0;
  margin-right: 5px;
  position: relative;
  bottom: -30px;
}

.sticky_quote * {
  display: inline;
}

.sticky_quote {
  border-left: 7px solid #ccc;
  padding-left: 5px;
}

.quote:before {
  color: #ccc;
  content: "“";
  font-size: 64px;
  line-height: 0;
  margin-right: 5px;
  position: relative;
  bottom: -30px;
}

.quote * {
  display: inline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #222;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 13px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.terms {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.terms label {
  cursor: pointer;
}
.terms input[type=checkbox] {
  margin-top: 2px;
  margin-left: 0px;
  cursor: pointer;
  flex-shrink: 0;
}
.terms a {
  color: #7f919e;
  text-decoration: underline;
}
.terms .terms-error {
  color: #e70000;
  font-size: 14px;
  margin: 8px 0;
  display: none;
}
.terms .terms-error.show {
  display: block;
}

.clause {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}
.clause a {
  color: #7f919e;
  text-decoration: underline;
}
.clause a:hover {
  color: #7f919e;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}

div.picture-error,
p.picture-error,
div.error-text,
p.error-text {
  margin-bottom: 0;
  font-size: 14px;
  margin-top: 8px;
  color: #e70000;
  display: none;
}
div.picture-error.show,
p.picture-error.show,
div.error-text.show,
p.error-text.show {
  display: block;
}

div.picture-error,
p.picture-error {
  display: block;
}

.images-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 500px) {
  .images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    justify-items: center;
  }
}
@media (min-width: 1000px) {
  .images-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}

.image-item img {
  width: 158px;
  min-width: 158px;
  display: block;
  margin: 0 auto;
  height: auto;
}
.image-item p {
  padding: 4px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 32px;
}

.arrows-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .arrows-wrapper {
    padding-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .arrows-wrapper {
    padding-bottom: 48px;
  }
}
.arrows-wrapper img {
  z-index: 1;
  width: 38%;
  height: auto;
  position: relative;
  display: block;
  margin: 0 auto;
}
.arrows-wrapper p {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 238px;
  color: #f4951f;
  position: absolute;
  z-index: 2;
}
@media (min-width: 360px) {
  .arrows-wrapper p {
    font-size: clamp(14px, 4vw, 28px);
  }
}
@media (min-width: 768px) {
  .arrows-wrapper p {
    font-size: clamp(20px, 2.7956989247vw, 32px);
  }
}

.arrows-wrapper p.arrows-text-top-left {
  left: 7%;
  top: 0;
}

.arrows-wrapper p.arrows-text-top-right {
  right: 9%;
  top: 0;
  color: #e72428;
}

.arrows-wrapper p.arrows-text-bottom-right {
  color: #eb6a54;
  bottom: 25%;
  right: 5%;
}

.arrows-wrapper p.arrows-text-bottom {
  bottom: 0;
  left: 47%;
  transform: translateX(-50%);
}

.arrows-wrapper p.arrows-text-bottom-left {
  bottom: 35%;
  left: 3%;
  color: #168e4a;
}

.video {
  margin-bottom: 32px;
  position: relative;
}
.video video {
  position: relative;
  z-index: 1;
}
.video .video-text {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4.1666666667vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100vmax;
  background: #fff;
  padding: 8px 16px;
  font-weight: 700;
  line-height: 150%; /* 33px */
  color: #000;
  display: none;
}
@media (min-width: 500px) {
  .video .video-text {
    padding: 12px 24px;
    font-size: clamp(18px, 1.8333333333vw, 22px);
    display: block;
  }
}

.sleep-position-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.sleep-position-item {
  max-width: 243px;
  width: 100%;
  height: auto;
}
.sleep-position-item img {
  width: 100%;
  height: auto;
}
.sleep-position-item p {
  padding: 16px 4px;
  background: #25549d;
  text-align: center;
  color: #fff;
  width: 100%;
  line-height: 1;
  font-weight: 600;
  font-size: 16px;
}

.phone-image-wrapper {
  padding: 0 clamp(24px, 2.6666666667vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
@media (min-width: 550px) {
  .phone-image-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.phone-image-item {
  max-width: 345px;
  width: 100%;
  height: auto;
}
.phone-image-item img {
  width: 100%;
  height: auto;
}
.phone-image-item p {
  font-weight: 700;
  text-align: center;
  color: #000;
  line-height: 1;
  margin-bottom: 10px;
  font-size: clamp(24px, 2.6666666667vw, 32px);
}

.footer-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
@media (min-width: 1000px) {
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .footer-links a {
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
    margin: 0 auto 0 0;
  }
}
@media (min-width: 1000px) {
  .footer-links a {
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
  }
}

.banner-image {
  width: 100%;
}

.banner-image-2 {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  display: block;
}

body {
  position: relative;
}/*# sourceMappingURL=style.css.map */