:root {
  --text-color: #8ea5a9;
  --accent-color: #3dc2c3;
  --background-color: #040f1c;
  --highlight-color: #fcfbfa;
  --accent-color-bright: #21e2f6;
  --accent-color-dark: #34b2b4;
  --accent-color-darker: #266b85;
  --text-color-dark: #4e5b5d;
  --old-accent-color: #00aeef;
  --footbote-colour: #2a2a2a;
}



.pdp-flex {
  align-items: stretch;
  display: flex;
}


/* SLEEP SOLUTION - Desktop */

.sleep-solution-contain {
	background-image: url('../../images/lavender/uDream-Pro-Lavender-Well-Being-Chair-Sleep-Solution-Bg.webp');
	background-repeat: no-repeat;
	background-size: cover;
    background-position: 50%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
	margin-top: 114px;
	padding: 114px 0;
  position: relative;
}

.sleep-solution-content {
	width: 94%;
/*
  padding-top: 114px;
  padding-bottom: 114px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%);
*/
}

.cols2-sleep-solution-text {
  width: 42%;
  padding-right: 6%;
}

.cols2-sleep-solution-text > h2 { -webkit-text-fill-color: var(--highlight-color) !important; }
.cols2-sleep-solution-text > p { color: var(--highlight-color); } 

.cols2-sleep-data-img {
display: block;
margin: 0 auto;	
}

.pdp-flex.m-stack.sleep-prog {
  grid-column-gap: 8%;
  grid-row-gap: 8%;
}

.sleep-2cols_custom {
  margin-top: 60px;
}

.short-cols2-sleep-solution {
  grid-column-gap: 10%;
  grid-row-gap: 10px;
  text-align: center;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 25px;
  display: flex;
}

.short-cols2-single-sleep {
  width: 42%;
}

.cols2-custom {
  width: 20%;
  height: 100%;
  display: block;
}

.cols2-custom-text {
  flex-flow: column;
  justify-content: center;
  width: 80%;
  padding-left: 15px;
  display: block;
}

.pdp .p-sleep-icon-text {
  color: var(--highlight-color);
  margin-top: 10px;
}

.cols2-equal-text {
  flex-flow: column;
  justify-content: center;
  width: 46%;
  display: block;
}

.sleep-expand-v {
  z-index: 4;
  width: 100%;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.expand-v-toggle {
  border: 2px solid var(--highlight-color);
  text-align: center;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s all ease;
}

.expand-v-toggle a {
    color: var(--highlight-color);
}

.expand-v-toggle svg {
    /* stroke: var(--accent); */
    width: 100%;
    height: 100%;
    fill: none;
    stroke-width: var(--icon-svg-thickness);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.expand-v-toggle.ve-active {
	transform: rotateZ(45deg);
}

.expand-v-contain {
	max-height: 0;
    background-color: var(--expand-v-bg);
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.pdp-svg-color {
  color: var(--highlight-color);
}

.expand-v-bg {
  background-color: var(--pdp-bg);
}

/*.sleep-expand-v h2 { text-align: left !important; }*/
.sleep-expand-v h3 { color: var(--text-color); }

/*
.expand-v-content {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 120px;
}

.expand-v-single {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 114px;
}
*/




.senses-expand-2cols {
    width: 80%;
    margin-left: 13%;
    margin-top: 30px;
}

.touch-contain {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}
	
.touch-col-single {
    width: 48%;
    align-self: center;
    color: #4e5b5d;
}

ol.touch-col-list {
    color: var(--accent-color-dark);
    /* font-size: 2.1rem; */
    margin-left: 20px;
    font-weight: 400;
}

.touch-col-list p {
    color: #4e5b5d;
    font-weight: 300;
}	

.touch-col-list p.touch-col-header {
    color: var(--accent-color-dark);
    margin-bottom: 0;
    font-weight: 400;
}

.vertical-expand {
  background-color: unset;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  outline: none;
/*  transition: 0.4s;*/
}

button.vertical-expand:focus {
    outline: 0;
}

.vertical-expand:after {
/*  content: '\002B';*/
  content: '+';
	display: block;
  color: #fdfbf9;
  font-size: 40px;
	font-weight: 300;
	line-height: 1;
	transform: rotateZ(0deg);
	transform-origin: center;
	transition: 0.5s all ease;
	border: 2px solid #fdfbf9;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	margin: 0 auto;
}

.ve-active:after {
/*  content: "\2212";*/
	transform: rotateZ(45deg);
	
}

.vertical-expand-content {
  padding: 0;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}



.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-slider-nav-invert > div.w-active,
.w-slider-nav-invert > div{
	background-color: var(--background-color) !important;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.pdp {
	color: var(--text-color);
	background-color: var(--background-color);
/*
  font-family: Fs Albert, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.375;
*/
}

.pdp h2 {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(55deg, #0f6e86 18%, #3cffee 60%);
  -webkit-background-clip: text;
  background-clip: text;
/*  margin-top: 0;*/
/*  margin-bottom: 20px;*/
	padding-bottom: 15px;
/*
  font-family: Fs Albert, sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.05;
*/
}

/*
.pdp h3 {
  color: #8ea5a9;
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Fs Albert, sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.2;
}
*/

/*
.pdp h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}
*/

/*
.pdp p {
  color: var(--text-color);
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: Fs Albert, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.375;
}
*/

/*
.pdp a {
  text-decoration: underline;
}
*/

.pdp a:hover {
    color: var(--accent-color);
}

.pdp ol[class] li, 
.pdp ul[class] li {
    list-style: auto;
}

/*
.section-testimonial blockquote{
	padding: 10px 20px;
}
*/

.pdp-link{
	text-decoration: underline !important;
	cursor: pointer;
}

.video-text {
  text-align: center;
  letter-spacing: 5px;
  text-shadow: -2px 2px 12px #00aeef;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
/*
  font-family: Fs Albert, sans-serif;
  font-size: 18px;
  font-weight: 300;
*/
}

.video-title {
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  letter-spacing: 8px;
  text-shadow: -2px 2px 12px rgba(0, 174, 239, .82);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  outline: 3px #fff;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: center;
  margin-bottom: auto;
/*
  font-family: Fs Albert, sans-serif;
  font-size: 40px;
  font-weight: 400;
*/
}

.hero-vid {
/*
  width: 80%;
  height: 80vh;
*/
	width: auto;
    height: calc(100vh - 186px);
	aspect-ratio: 16/9;
  flex-flow: column wrap;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
/*  box-shadow: inset -1px 1px 30px 40px #040f1c;*/
	z-index: 0;
}

/*
.video-cta-text {
  color: var(--accent-color);
  flex-direction: column;
  justify-content: flex-end;
  align-self: center;
  align-items: flex-start;
  margin-bottom: 0;
  display: flex;
}
*/

.video-icon {
/*
  text-align: left;
  flex: 0 auto;
  align-self: flex-start;
  margin-left: 0;
  margin-right: 0;
  display: block;
*/
	margin-right: 15px;
}

.hero-vid-cta {
/*
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  display: flex;
*/
  position: absolute;
  top: auto;
  bottom: 4%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 2;
}

.hero-vid-text {
  align-self: center;
  display: none;
  position: static;
}

.section-programs {
/*
  background-image: linear-gradient(#040f1c, #040f1c);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;
*/
  position: relative;
}

.section-awards {
/*
  color: #fff;
  background-color: #040f1c;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;
*/
	padding-top: 114px;
}

.tab-menu-single {
  color: var(--text-color);
  background-color: #000;
  flex: none;
}

.tab-menu-single.w--current {
  color: var(--accent-color);
  background-color: #000;
}

.section-safety {
/*
  background-color: #040f1c;
  flex-direction: row;
  justify-content: space-around;
  display: flex;
*/
	padding-top: 114px;
	padding-bottom: 114px;
}

.tab-title {
  text-align: center;
  letter-spacing: 1.2px;
/*  font-family: Fs Albert, sans-serif;*/
  font-size: 16px;
}

.tab-menu {
  background-color: #000;
  flex-direction: row;
  align-items: center;
  display: flex;
  overflow: auto;
}

.tab-pane-tab-1 {
  height: 100%;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.tab-content {
  height: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.tabs {
  height: 75vh;
  max-height: 630px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.programs-new {
  width: 60px;
  outline-offset: 0px;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  background-color: #1cc2d3;
  background-image: linear-gradient(to top, rgba(15, 110, 134, .79) 33%, rgba(60, 255, 238, .18));
  border-radius: 6px;
  outline: 3px #21e2f6;
  align-self: auto;
  padding-left: 8px;
  padding-right: 6px;
/*  font-family: Fs Albert, sans-serif;*/
  font-size: 18px;
  font-weight: 600;
}

.tab-pane-tab-4 {
  height: 100%;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  position: relative;
}

.tab-pane-tab-3, .tab-pane-tab-5 {
  height: 100%;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.tab-pane-tab-6 {
  height: 100%;
  background-image: url('../../images/udream-pro-well-being-chair-programs-ai-background.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.section-content-1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.section-content-3 {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
/*
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
*/
}

.section-content-4 {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.section-key-features {
  background-image: url('../../images/udream-pro-well-being-chair-summary-background.webp');
  background-position: 50% 0;
  background-size: auto;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-bottom: 20px;
}

.key-feature-overline {
  color: var(--text-color);
  text-align: center;
  letter-spacing: 7px;
  text-transform: uppercase;
/*  font-family: Fs Albert, sans-serif;*/
  font-size: 18px;
  font-weight: 300;
  line-height: 1.25;
}

.para {
  direction: ltr;
  color: #758287;
  text-align: left;
  letter-spacing: 1px;
  word-break: normal;
  overflow-wrap: normal;
/*  font-family: Fs Albert, sans-serif;*/
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
}

.para.pdp-centre {
  color: var(--text-color);
}

.safety-logos {
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: ". CE CE RoHS RoHS ISO ISO ."
                       "Backrest Backrest Footrest Footrest Anti-Heating Anti-Heating Airbag Airbag";
}

.safety-single {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.section-expert {
  margin-bottom: 40px;
  padding-top: 114px;
}

.expert-intro {
    text-align: center;
}

.expert-content{
	width: 70%;
    align-items: center;
	justify-content: center;
	margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

/*
.container-5 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}
*/

/*
.text-span {
  color: #3dc2c3;
  -webkit-text-stroke-color: #333;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}
*/

.expert-name {
  font-size: 20px;
  color: var(--accent-color);
}

/*
.container-6 {
  max-width: 70%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}
*/

/*
.column-12 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
*/

.pdp .expert-blockquote {
	max-width: 400px;
	margin-left: 20px;
	border-left: 1px solid var(--text-color);
/*
  direction: ltr;
  border-left-width: 1px;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: Fs Albert, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
*/
}

/*
.columns-8 {
  text-align: left;
  margin-top: 0;
}

.column-13 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}
*/

.safety-intro {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.safety-intro.pdp-centre {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.awards-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: "Area Area-2"
                 "Area Area-3"
                 "Area Area-4"
                 / 65% 35%;
}

.awards-image{ width: 100%; }

.image-safety-row2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-award-icon {
  width: 45%;
  height: 50px;
  display: flex;
}

.div-award-icon.padding {
  justify-content: center;
  padding-left: 0;
}

.div-block-30 {
  display: flex;
}

.section-stress-reduction {
/*
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 120px;
*/
  position: relative;
}

.heading-stress {
  color: #eee;
/*  font-family: Fs Albert, sans-serif;*/
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
}

.heading-stress.drop-shadow-blue {
  margin-bottom: 0;
}

.stats-percentage {
  font-size: 25px;
  line-height: 0;
}

.stress-reduction-text {
  height: 150px;
  max-width: 375px;
}

.pdp-accent {
  color: var(--accent-color) !important;
}

.div-block-33 {
  width: 330px;
  align-items: flex-end;
  display: flex;
}

.stress-reduction-badge {
  width: 40%;
  max-width: 232px;
  flex-wrap: wrap;
  flex: 1;
  align-content: stretch;
  padding-right: 20px;
  display: flex;
}

.stress-reduction-stats {
  flex-flow: wrap;
  align-content: space-between;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 10px;
}

.stress-reduction-grid {
  grid-template: "Image ." minmax(5%, auto)
                 "Image Header" 28%
                 "Image Paragraph" 22%
                 "Image Percentage" 20%
                 "Image Stress-Link" 4%
                 "Image ." minmax(5%, auto)
                 / 1.5fr 1fr;
}

.section-design {
/*
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 80px;
*/
	padding-top: 114px;
}

.pdp .stress-h2, 
.pdp .awards-h2 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}

.pdp .pdp-overline {
  text-align: left;
  margin-bottom: 5px;
  font-size: 26px;
  line-height: 1.2;
}

.pdp .programs-h2 {
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.pdp-centre {
  text-align: center;
}

.section-testimonial {
/*
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
*/
  margin-bottom: 40px;
	padding-top: 114px;
}

.section-content-2 {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.pdp-gallery-block {
  width: 33%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 5%;
  padding-left: 40px;
  display: flex;
}

.gallery-slide-nav {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 25px;
  display: none;
}

.gallery-slider-right {
  width: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  right: -50px;
}

.gallery-slider-right:focus-visible {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.gallery-slider-right[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.gallery-image {
  width: 100%;
  border-radius: 20px 20px 60px;
  margin-top: 20px;
  margin-bottom: 20px;
  position: static;
  box-shadow: 0 0 10px 5px rgba(27, 124, 149, .5);
}

.gallery-slider-left {
  width: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  left: -50px;
}

.gallery-slider-left:focus-visible {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.gallery-slider-left[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.pdp-gallery-slide {
  width: 67%;
  height: auto;
  background-color: var(--background-color);
  background-image: radial-gradient(circle closest-side at 50% 40%, #1a5b96, #060f1c);
}

.gallery-slide-wrapper {
  max-width: 48%;
  margin-right: 2%;
  padding-left: 20px;
}

.pdp-gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.gallery-slide-content {
  position: relative;
}

/*
.gallery-text {
  border-style: none none none solid;
  border-width: 1px;
  border-color: var(--highlight-color) var(--highlight-color) var(--text-color) var(--text-color);
  opacity: 1;
}
*/

.image-40 {
  margin-bottom: 10px;
}

.star-single, .image-42, .image-43, .image-44 {
  margin-bottom: 10px;
  margin-left: 5px;
}

.tile-img-text-bot {
  width: 100%;
  min-height: 30%;
  background-image: linear-gradient(to top, #040f1c 30%, rgba(4, 15, 28, .7) 59%, rgba(4, 15, 28, 0));
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.tile-arrow {
  position: absolute;
  top: auto;
  bottom: 8%;
  left: auto;
  right: 10%;
}

.tile-text {
  width: 77%;
  color: var(--text-color);
  padding-bottom: 5px;
  padding-left: 15px;
  font-size: 18px;
  line-height: 1.1;
}

.tile-text.new:before{
	content: '';
    background-image: url('../../images/TC/uDreamPro-well-being-chair-USP-speciality-programs-new-icon.webp');
        background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	width: 48px;
    height: 48px;
    position: absolute;
    top: -45px;
    left: 6px;
}

.tile-img {
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
/*  box-shadow: 0 0 5px rgba(39, 112, 156, .7);*/
}

.mmm-tiles {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  align-items: stretch;
  margin-top: 30px;
}

.tile {
  border-radius: 15px 15px 65px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 3px rgba(39, 112, 156, .7);
}

.tile.tile-w67 {
  width: 67%;
  /* height: 35vh;
  max-height: 300px; */
}

.tile.tile-mmm {
  width: 33.33%;
  height: 50vh;
  max-height: 367px;
}

.tile.tile-w25 {
  width: 25%;
  /* height: 35vh;
  max-height: 300px; */
}

.tile.tile-w50 {
  width: 50%;
  /* height: 35vh;
  max-height: 300px; */
}

.tile.tile-w33 {
  width: 33.33%;
  /* height: 35vh;
  max-height: 300px; */
}

.pdp .pdp-overline-mmm {
  text-align: center;
  margin-bottom: 5px;
  font-size: 26px;
  line-height: 1.2;
}

.pdp .key-feature-text {
  line-height: 1.1;
}

.div-block-51 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-52 {
  flex-flow: wrap;
  align-content: space-around;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.programs-pro-text {
  width: 60%;
  padding-right: 2%;
}

.programs-content-padding {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.programs-pro-row {
  max-width: 620px;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template: "Area Area"
                 "Area-2 Area-3"
                 "Area-2 Area-3"
                 "Area-4 Area-5"
                 "Area-4 Area-5"
                 "Area-6 Area-6"
                 "Area-7 Area-8"
                 "Area-7 Area-8"
                 "Area-9 Area-10"
                 "Area-9 Area-10"
                 / 1.5fr 1.75fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: space-around;
  align-self: flex-end;
  align-items: flex-start;
  justify-items: center;
  padding-bottom: 20px;
  display: flex;
}

.pdp .reviews-h2 {
  text-align: left;
  background-image: linear-gradient(55deg, #0f6e86 18%, #3cffee 60%);
}

.stress-reduction-media {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.otp-button-image {
  width: 70px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.otp-vr-text {
  width: 60%;
}

.otp-button-text {
  color: #eee !important;
	font-size: 15px !important;
}

.otp-button-text.drop-shadow-blue {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.otp-image-pentagons {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.otp-scenes {
  z-index: 0;
  max-width: 1160px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.otp-grid {
  grid-column-gap: 0px;
  grid-template: "Title Chair-Image" minmax(0, auto)
                 "Copy Chair-Image" minmax(0, auto)
                 "Scene-Buttons Chair-Image" minmax(0, auto)
                 "VR-headset Chair-Image" minmax(auto, 1fr)
                 / 39% 61%;
  margin-left: 100px;
  padding-top: 114px;
  position: relative;
	 z-index: 1;
}

.otp-button-aurora {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.otp-vr-image {
  width: 40%;
}

.otp-button-nature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.otp-buttons {
  width: 100%;
  justify-content: space-between;
}

.otp-button-sunset {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.otp-image-chair {
  z-index: 2;
  position: relative;
}

.otp-scene-aurora {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.otp-image {
  position: relative;
}

.otp-vr {
  align-items: center;
  display: flex;
}

.section-one-touch {
  max-width: 1920px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.pdp .otp-h2 {
  text-align: left;
  margin-bottom: 10px;
}

.stress-reduction-video {
  width: 77%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pdp .highlight {
  color: var(--text-color);
  font-size: 21px;
  line-height: 1.3;
}

.tile-img-invisible {
  opacity: 0;
}

.tile-bg-vid {
  z-index: 0;
  width: 100%;
  height: 100%;
}

.tile-img-text-bot-single {
  width: 100%;
  background-image: linear-gradient(to top, #040f1c 30%, rgba(4, 15, 28, .7) 59%, rgba(4, 15, 28, 0));
  flex-direction: column;
  justify-content: flex-start;
  align-self: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.tile-bg-vid-small {
  z-index: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.pdp .mmm-h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

.expand-arrow {
  position: absolute;
  top: auto;
  bottom: 8%;
  left: auto;
  right: 10%;
}

.mmm-text {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.key-features-tiles {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  align-items: stretch;
  margin-top: 25px;
}

.tile-img-small {
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  box-shadow: 0 0 5px rgba(39, 112, 156, .7);
}

.key-features-intro {
  padding-top: 60px;
}

.programs-pro-single {
  width: 25%;
  text-align: center;
}

.programs-otp-text {
  width: 50%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.programs-otp-media {
  z-index: 0;
}

.programs-otp-media-small {
  z-index: 0;
  width: 50%;
  display: none;
  position: relative;
}

.programs-text {
  width: 50%;
  padding-right: 5%;
}

.programs-manual-list {
  flex-wrap: wrap;
  display: flex;
}

.programs-manual-list-single {
  width: 100%;
}

.pdp-list li {
	margin-left: 20px;
	padding-left: 10px;
}

.programs-media {
  width: 40%;
  text-align: center;
}

.pdp .mmm-expand-h2 {
  max-width: 200px;
  text-align: left;
  margin-bottom: 0;
}

.mmm-expand-single {
  flex: none;
  margin-left: 3%;
  margin-right: 3%;
}

.mmm-expand-single.monitor-expand-1 {
  width: 35%;
}

/* .mmm-expand-single.manage-expand-1 */
.mmm-expand-single.stress-expand-1, .mmm-expand-single.measure-expand-1 {
  width: 50%;
}

.mmm-expand-single.manage-expand-1{
	width: 25%;
    margin-right: 0%;
}

.pdp .tile-title {
  color: var(--accent-color-bright);
  margin-bottom: 5px;
  padding-bottom: 0;
}

.otp-pentagon-aurora {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.otp-scene-nature {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.tile-vid {
  z-index: 0;
	height: 100%;
}

.section-senses {
/*  background-color: #040f1c;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;*/
	padding-top: 114px;
/*
  font-size: 12px;
  display: flex;
*/
}

/*
.senses-text {
  max-width: 700px;
  text-align: center;
}
*/

.senses-intro {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.tile-vid-small {
  z-index: 0;
}

.otp-image-pentagon-contain {
  position: relative;
}

.otp-pentagon-nature {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}


/*.otp-scene-nature-mobile,*/
.otp-scene-aurora-mobile, .otp-scene-sunset-mobile {
  display: none;
}

.section-interactive {
/*  margin-bottom: 120px;*/
	padding-top: 114px;
}

.interactive-intro {
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  display: block;
  position: static;
  bottom: -60px;
}

.interactive-text {
  color: var(--text-color);
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 1.375;
}

.interactive-slide {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
}

.testimonial-slider-two {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.interactive-copy {
  color: #eee;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 35px;
  padding-left: 35px;
  padding-right: 35px;
/*  font-family: Fs Albert, sans-serif;*/
  font-weight: 300;
  display: flex;
}

.testimonial-slider-arrow {
  display: block;
}

.interactive-image {
  width: 100%;
  min-height: 290px;
  object-fit: cover;
}

.interactive-content {
  display: flex;
}

.interactive-hotspot {
  width: 67%;
  aspect-ratio: 1.5 / 1;
  text-align: center;
  background-image: url('../../images/udream-pro-well-being-chair-comprehensive-massage-background.webp');
  background-position: 0 0;
  background-size: auto;
  position: relative;
  overflow: hidden;
}

/*
.interactive-hotspot-panel {
	overflow: hidden;
}
*/

.interactive-slider {
  width: 33%;
}

.interactive-title {
  color: var(--accent-color);
  padding-bottom: 10px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
}

.interactive-video {
  max-height: 290px;
  aspect-ratio: 1.3 / 1;
}

.otp-button-text-contain {
  margin-top: 10px;
  position: relative;
}

.senses-expand {
  z-index: 2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.senses-single {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.senses-single-full {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}

.senses-expand-icon {
  width: 16%;
  padding-right: 3%;
}

.senses-expand-text {
  width: 34%;
  padding-top: 20px;
  padding-right: 3%;
}

.senses-expand-text-full {
  width: 60%;
  padding-top: 20px;
  padding-right: 3%;
}

.senses-expand-media {
  width: 50%;
  padding-right: 3%;
}

.senses-expand-media-full {
  width: 84%;
  margin-left: 9%;
}

.senses-touch-video {
	height: 100%;
    width: 100%;
    aspect-ratio: 446 / 382;
}

.pdp .senses-overline {
  color: var(--accent-color-darker);
/*  text-align: left;*/
  letter-spacing: 0;
  margin-bottom: 5px;
  font-size: 21px;
  font-weight: 600;
	letter-spacing: 0px;
/*
  line-height: 1.3;
	z-index: 1;
*/
}

.pdp .senses-expand-h3 {
  color: var(--accent-color-dark);
  margin-bottom: 20px;
/*	z-index: 1;*/
}

.senses-expand-content {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
}

.senses-expand-bg {
  background-color: #fff;
}

.senses-expand-contain {
  margin-top: 20px;
  display: block;
  position: static;
}

.senses-expand-toggle {
  width: 50%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: block;
}

.image-58 {
  display: none;
}

.background-video-2 {
  z-index: 0;
}

.pdp .senses-p {
  color: var(--text-color-dark);
}

/*
.touch-link {
  color: var(--accent-color-dark);
}
*/

.pdp .touch {
  color: #fff;
  background-color: #fff;
  background-image: none;
  font-size: 34px;
  line-height: 1.2;
  position: absolute;
  top: auto;
  bottom: 21%;
  left: auto;
  right: 0%;
}

.senses-animation {
  width: 700px;
  position: relative;
	margin: 0 auto;
}

.chair-border, .pentagon-border {
  position: absolute;
}

.div-block-2 {
  text-align: center;
}

.pdp .sight {
  color: #fff;
  background-color: #fff;
  background-image: none;
  font-size: 34px;
  line-height: 1.2;
  position: absolute;
  top: 15%;
  bottom: auto;
  left: 9%;
  right: auto;
}

.pdp .taste {
  color: #fff;
  background-color: #fff;
  background-image: none;
  font-size: 34px;
  line-height: 1.2;
  position: absolute;
  top: auto;
  bottom: 6%;
  left: 15%;
  right: auto;
}

.pdp .smell {
  color: #fff;
  background-color: #fff;
  background-image: none;
  font-size: 34px;
  line-height: 1.2;
  position: absolute;
  top: 48%;
  left: -5%;
}

.pdp .smell::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -50px;
    width: 40px;
    height: 40px;
    background: url('https://prod-cdn.omc.osim.com/-/jssmedia/project/osim/osim-pdp/hk_pdp/2025/uDream-Pro/images/uDream-Pro-Well-Being-Chair-SG60-Edition-Icon.webp') no-repeat 50%;
    background-size: cover;
}

.pdp .hear {
  color: #fff;
  background-color: #fff;
  background-image: none;
  font-size: 34px;
  line-height: 1.2;
  position: absolute;
  top: 27%;
  bottom: auto;
  left: auto;
  right: 6%;
}

.interactive-hotspot-contain {
  position: relative;
}

.interactive-hotspot-points {
/*
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
*/
}

.interactive-hotspot-point {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.interactive-hotspot-point.nth-of-type-1 {
  top: 2%;
  left: 37%;
}

.interactive-hotspot-point.nth-of-type-2 {
  top: 10%;
  left: 39%;
}

.interactive-hotspot-point.nth-of-type-3 {
  top: 18%;
  right: 36%;
}

.interactive-hotspot-point.nth-of-type-4 {
  top: 20%;
  right: 25%;
}

.interactive-hotspot-point.nth-of-type-5 {
  top: 28%;
  left: 23%;
}

.interactive-hotspot-point.nth-of-type-6 {
  top: 32%;
  left: 25%;
}

.interactive-hotspot-point.nth-of-type-7 {
  top: 35%;
  left: 36%;
}

.interactive-hotspot-point.point-active {
  width: 40px;
  height: 40px;
}

.interactive-hotspot-point.nth-of-type-8 {
  top: 33%;
  right: 37%;
}

.interactive-hotspot-point.nth-of-type-9 {
  top: 39%;
  left: 21%;
}

.interactive-hotspot-point.nth-of-type-10 {
  top: 44%;
  left: 25%;
}

.interactive-hotspot-point.nth-of-type-11 {
  top: 44%;
  right: 30%;
}

.interactive-hotspot-point.nth-of-type-12 {
  top: 53%;
  right: 22%;
}

.interactive-hotspot-point.nth-of-type-13 {
  top: 48%;
  right: 34%;
}

.interactive-hotspot-point.nth-of-type-14 {
  top: 65%;
  right: 25%;
}

.interactive-hotspot-point.nth-of-type-15 {
  top: 65%;
  left: 35%;
}

.interactive-hotspot-point.nth-of-type-16 {
  top: 70%;
  right: 47%;
}

.point-centre {
  width: 40%;
  height: 40%;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
}

.point-ring {
  width: 100%;
  height: 100%;
  background-color: var(--old-accent-color);
  border-radius: 50%;
}

.body-tension-vid, .customized-vid {
  z-index: 1;
}

.senses-smell-scents {
  width: 10%;
  flex-direction: column;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.pdp .smell-p {
  text-align: center;
  padding-top: 5px;
  font-size: 16px;
  color: #266b85;
}

.smell-subtext {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: #8ea5a9;
    }

.senses-smell-scent {
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.gallery-ratings {
  margin-bottom: 10px;
}

.programs-content {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
}

.image-67 {
  width: 80px;
}

.video-z {
  z-index: 0;
}

.programs-otp-video {
  z-index: 0;
  width: 65%;
  margin-left: auto;
}

.mmm-expand-open {
  height: 100%;
  align-items: center;
  padding-left: 40px;
  display: flex;
  overflow: auto;
}

.pdp .expert-p {
  align-items: center;
  margin-bottom: 0;
  margin-left: 20px;
  display: flex;
}

.measure-chart {
  width: 100%;
}

.mmm-measure {
  width: 100%;
  flex-flow: column wrap;
  align-content: space-around;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.measure-image {
  width: 160px;
}

.monitor-expand {
  width: 100%;
  height: 100%;
  background-color: #040e1b;
  background-image: linear-gradient(to right, #040e1b, #082f3f 52%, #040e1b);
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.monitor-grid-content {
  width: 900px;
  height: 550px;
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  grid-template: "Area Area Area"
                 "Area-2 Area-2 Area-2"
                 "Area-3 Area-4 Area-5"
                 / 1fr 1fr 1fr;
}

.measure-image-content.measure-padding-top {
  padding-bottom: 10px;
}

.expert-image {
  width: 25%;
}

.measure-expand-2 {
  height: 100%;
  max-width: 1000px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: 3%;
  margin-right: 3%;
  display: flex;
  overflow: hidden;
}

.expert-para-content {
  width: 75%;
  align-self: center;
}

.mmm-expand-close {
  z-index: 21;
  position: absolute;
  top: 5%;
  bottom: auto;
  left: auto;
  right: 5%;
}

.mmm-measure-section {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.pdp .mmm-expand-h3 {
  color: var(--text-color);
  margin-bottom: 40px;
}

.expand-content-bot {
  display: flex;
}

.mmm-expert {
  margin-left: 10px;
  padding-top: 10px;
  padding-left: 20px;
  display: flex;
}

.pdp .mmm-expand-text {
  color: var(--text-color);
}

.measure-content {
  width: 300px;
  height: 394px;
  flex-direction: column;
  flex: none;
  margin-left: 3%;
  margin-right: 3%;
}

.measure-content.measure-padding {
  height: 470px;
}

.measure-content.measure-guided-breathing {
  width: 380px;
  height: 419px;
  margin-top: 15px;
}

.pdp .measure-p {
  width: 470px;
}

.pdp .expand-paragraph-text {
  margin-top: 10px;
  display: flex;
}

.pdp .mmm-expand-title {
  color: var(--accent-color);
}

.expand-content-top {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.measure-expand {
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.mmm-expand-double-stretch {
  height: 100%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: 3%;
  margin-right: 6%;
  display: flex;
}

.expand-title {
  color: #46e2c3;
  align-items: flex-end;
  font-size: 22px;
}

.expand-title.measure-padding {
  color: var(--accent-color);
  margin-bottom: 0;
}

.measure-expert {
  border-radius: 15px;
}

.section-mmm {
/*
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;
*/
	padding-top: 114px;
  position: relative;
}

.mmm-expand-content {
  height: 100%;
  align-items: center;
  position: relative;
}

.manage-expand {
  width: 100%;
  height: 100%;
  background-color: #040e1b;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.otp-button-border {
  width: 85px;
  height: 85px;
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-arrow-left {
  transform: rotate(90deg);
}

/*
.superscript, 
.superscript-2, 
.superscript-3 {
  color: var(--text-color);
}
*/

.hotspot-arrow-right {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.hotspot-arrow-left {
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
  transform: rotate(180deg);
}

.pdp .stress-expand-h2 {
  text-align: left;
}

.mmm-expand-single-stretch {
  height: 100%;
  flex-direction: column;
  flex: none;
  justify-content: flex-end;
  align-items: center;
  margin-left: 3%;
  margin-right: 3%;
  display: flex;
}

.mmm-expand-single-stretch.monitor-expand-2 {
  width: 60%;
  max-width: 940px;
}

.mmm-expand-single-stretch.manage-expand-2 {
  width: 70%;
}

.design-intro {
  max-width: 850px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.stress-expand {
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  background-image: url('../../images/udream-pro-well-being-chair-stress-background.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.stress-expand-2 {
  display: flex;
	align-items: center;
}

.mmm-expand-arrow {
  display: none;
}

.pdp-accent-dark {
  color: var(--accent-color-dark) !important;
}

@media screen and (min-width: 1440px) {
  .tab-pane-tab-2 {
    background-position: 50% 100%;
  }

  .tab-pane-tab-6 {
    background-position: -50%;
  }

/*
  .section-content-1, .section-key-features {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
*/

/*
  .container-5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .block-quote {
    max-width: 400px;
  }
*/

  .section-stress-reduction {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .heading-stress.drop-shadow-blue {
/*
    font-family: Fs Albert, sans-serif;
    font-weight: 300;
*/
  }

  .stress-reduction-text {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .flex-block-13 {
    max-width: 800px;
/*    font-family: Fs Albert, sans-serif;*/
  }

  .image-39 {
    max-width: 270px;
  }

  .div-block-33 {
/*    width: 330px;*/
    display: flex;
  }

  .stress-reduction-stats {
    flex-direction: row;
    align-content: flex-start;
    justify-content: space-between;
    align-items: flex-start;
  }

  .stress-reduction-grid {
/*    grid-template-rows: 100px 150px 130px auto auto;*/
	grid-template-rows: minmax(5%, auto) 25% 25% 20% 4% minmax(5%, auto);
    grid-template-areas: "Image uDream"
                         "Image Header"
                         "Image Paragraph"
                         "Image Percentage"
                         "Image Stress-link";
  }

  .section-content-2 {
    max-width: 1160px;
  }

  .pdp-gallery-block {
    width: 33%;
    padding-left: 40px;
  }

  .gallery-slide-nav {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .gallery-slider-right {
    width: 35px;
  }

  .pdp-gallery-slide {
    width: 67%;
  }

  .pdp-gallery-wrapper {
    display: flex;
  }

  .image-40, .star-single {
    padding-bottom: 10px;
  }

  .image-42, .image-43, .image-44 {
    margin-left: 5px;
    padding-bottom: 10px;
  }

  .tile-img, .tile-img-small {
    text-align: center;
  }

  .tile-vid, .tile-vid-small {
    height: 100%;
  }

  .expand-img-stretch {
    width: 100%;
  }

  .stress-expand-2 {
    height: 80%;
  }
}

@media screen and (max-width: 991px) {
/*
  .pdp h2 {
    font-size: 37px;
  }

  .pdp p {
    line-height: 1.4;
  }
*/

  .hero-vid {
    width: 100%;
  }

  .tab-menu {
    height: 100%;
  }

  .tabs {
    height: auto;
  }

  .section-content-1 {
    max-width: 90%;
  }
	
  .section-content-2 {
    max-width: 90%;
  }

  .key-feature-overline {
    font-size: 17px;
    line-height: 1.4;
  }

  .para {
    text-align: center;
  }

/*
  .block-quote {
    margin-top: 10px;
  }
*/
	
	.expert-content {
		width: 90%;
	}

  .awards-grid {
    grid-template: "Area-2"
                   "Area-3"
                   "Area"
                   "Area-4"
                   / 1fr;
  }

  .image-35 {
    min-width: 150px;
  }

  .div-award-icon {
    width: 20%;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    display: flex;
  }

  .div-award-icon.padding {
    padding-left: 0;
  }

/*
  .section-stress-reduction {
    margin-bottom: 100px;
  }
*/

  .heading-stress {
    font-size: 36px;
  }

  .stress-reduction-text {
    height: auto;
    max-width: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }

  .div-block-33 {
    width: 100%;
    justify-content: center;
  }

  .stress-reduction-badge {
    padding-right: 6%;
  }

  .stress-reduction-grid {
    grid-column-gap: 20px;
    grid-template: "Image ." 3%
                   "Image Header" minmax(23%, auto)
                   "Image Paragraph" minmax(20%, auto)
                   "Image Percentage" minmax(20%, auto)
                   "Image Stress-Link" minmax(5%, auto)
                   / 50% 47%;
    align-items: center;
  }

  .pdp .pdp-overline,
  .pdp .pdp-overline-mmm{
    font-size: 17px;
  }

  .pdp .programs-h2 {
    text-align: left;
  }

  

  .pdp-gallery-block {
    width: 100%;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .pdp-gallery-slide {
    width: 100%;
  }

  .pdp-gallery-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column-reverse;
    grid-template-columns: 1fr 1fr;
  }

  .tile-arrow {
    right: 5%;
  }

  .tile-text {
    width: 77%;
  }

  .div-block-51, .div-block-52 {
    justify-content: center;
  }

  .programs-pro-text {
    order: 0;
  }

  .programs-content-padding {
    align-content: flex-start;
  }

  .pdp .reviews-h2 {
    text-align: center;
  }

  .stress-reduction-media {
    align-items: center;
    display: flex;
  }

  .otp-grid {
    margin-left: 0;
  }

  .section-one-touch {
    margin-bottom: 60px;
  }

  .stress-reduction-video {
    width: 100%;
    height: 90%;
    align-items: center;
    display: flex;
  }

  .programs-otp-text {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .programs-otp-media {
    flex-direction: row;
    flex: 0 auto;
  }

  .programs-otp-media-small {
    width: 50%;
    flex-direction: row;
    align-items: center;
  }

  .mmm-expand-single.measure-expand-1 {
    width: 90%;
  }

  .interactive-text {
    font-size: 17px;
    line-height: 1.4;
    overflow: visible;
  }

  .interactive-title {
    font-size: 26px;
    overflow: visible;
  }

  .senses-expand {
    margin-top: 0;
  }

/*
  .pdp .senses-overline {
    font-size: 17px;
  }
*/

  .senses-expand-content {
    max-width: 100%;
  }

  .touch {
    right: 6%;
  }

  .sight {
    left: 16%;
  }

  .taste {
    left: 25%;
  }

  .smell {
    left: 7%;
  }

  .hear {
    right: 12%;
  }

  .senses-smell-scents {
    padding-left: 10px;
    padding-right: 10px;
  }

  .programs-content {
    flex-flow: row;
    align-content: flex-start;
    align-items: center;
    display: block;
  }

  .programs-otp-video {
    width: 75%;
    flex-direction: row;
  }

  .manage-expand {
    display: none;
  }

  .mmm-expand-single-stretch.monitor-expand-2 {
    width: 80%;
  }

  .stress-expand {
    background-position: 50%;
  }
}

@media screen and (max-width: 767px) {
	
/*
	.pdp {
  		font-size: 17px;
	}
*/
	
/*
  .pdp p {
    text-align: center;
  }
*/
	
	
	
	
  .pdp-flex.m-stack {
    flex-flow: column;
  }

/* SLEEP SOLUTION - Mobile Landscape */	
	
	.tile-text.new:before{
		width: 44px;
		height: 44px;
		top: -2px;
	}
	
	.tile-text.new {
		padding-top: 26px;
	}
	
	.sleep-expand-v p { text-align: left } 
	
  .sleep-solution-contain {
	background-image: url('../../images/lavender/uDream-Pro-Lavender-Well-Being-Chair-Sleep-Solution-Bg-mobile.webp');
	  min-height: 900px;
	}
	
  .pdp .h2-sleep{
    text-align: left;
    margin-bottom: 0;
  }
 	
  .sleep-2cols_custom {
    margin-top: 30px;
  }

  .pdp-flex.m-stack.sleep-prog {
    grid-column-gap: 0%;
    grid-row-gap: 0%;
  }

  .short-cols2-single-sleep {
    width: 49%;
  }

  .cols2-custom {
    text-align: center;
    width: 20%;
  }

  .cols2-custom-text {
    margin-bottom: 15px;
    padding-left: 5%;
  }

  .pdp .p-sleep-icon-text {
    font-size: 15px;
  }

  .cols2-equal-text {
    width: 100%;
    margin-bottom: 45px;
  }

  .cols2-sleep-solution-text {
    width: 100%;
    padding-right: 0%;
  }
	
	.cols2-sleep-solution-text > p{
		text-align: left;
	}

  .short-cols2-sleep-solution {
    grid-column-gap: 2%;
    grid-row-gap: 0px;
  }
	
	
	
	
	.senses-expand-2cols {
		width: 100%;
		margin-left: 0%;
	}
	.touch-col-single { width: 90%; margin: 0 auto; }
	.touch-col-list p { text-align: left; }
	ol.touch-col-list { margin-top: 20px; }


	/* mobile list 2 cols */	
	ol.touch-col-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	ol.touch-col-list li { width: 40%; }
	
	.section-content-1 {
		max-width: 375px;
	}
	
	.section-content-2{
		max-width: 375px;
	}
	
	
	.key-features-intro {
    max-width: 275px;
    margin-left: auto;
    margin-right: auto;
  }
	
	
	.pdp .key-feature-text{
		text-align: left;
		margin-bottom: 0;
	}
	
	.testimonial-slider-nav {
		display: none;
	}
	
	.hero-vid {
    width: 100%;
	  height: auto;
    aspect-ratio: 1/1.3;
  }
	
  /* .section-programs {
    margin-bottom: 100px;
  } */

  .tabs {
    max-height: 100%;
  }

  .programs-new {
    margin-left: auto;
    margin-right: auto;
  }

  .section-key-features {
    background-image: none;
    background-position: 0 0;
    background-size: auto;
  }

  .para {
    text-align: center;
  }
	
	
	.expert-content {
		flex-direction: column;
		margin-top: 10px;
	}
	
	.expert-blockquote {
		margin-left: 0;
	}
	
	.pdp .awards-h2, .pdp .programs-h2 {
    text-align: center;
  }
	
	
  .safety-logos {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template: "CE CE RoHS RoHS"
                   "ISO ISO Footrest Footrest"
                   "Backrest Backrest Anti-Heating Anti-Heating"
                   ". Airbag Airbag ."
                   / 1fr 1fr 1fr 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }

  .safety-single.align-centre {
    justify-content: center;
  }

  .columns-8 {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .image-35 {
    min-width: 118px;
  }

  .div-award-icon {
    height: 35px;
  }

  .div-award-icon.red-dot {
    min-width: 118px;
  }

  .div-award-icon.padding {
    padding-left: 0;
  }

  .heading-stress {
    margin-left: auto;
    margin-right: auto;
  }

  .stress-reduction-text {
    max-width: 550px;
  }

  .stress-reduction-badge {
    padding-left: 5%;
    padding-right: 5%;
  }

  .stress-reduction-grid {
    width: 100%;
    grid-row-gap: 8px;
/*    grid-template-rows: minmax(15%, auto) minmax(52%, auto) minmax(11%, auto) minmax(14%, auto) minmax(4%, auto);*/
	  grid-template-rows: minmax(15%, auto) minmax(48%, auto) minmax(16%, auto) minmax(14%, auto) minmax(4%, auto);
    grid-template-areas: "Header Header"
                         "Image Image"
                         "Paragraph Paragraph"
                         "Percentage Percentage"
                         "Stress-Link Stress-Link";
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .pdp .stress-h2 {
    text-align: center;
  }

  .pdp .pdp-overline {
    text-align: center;
    margin-bottom: 5px;
  }

  .programs-h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .pdp-gallery-block {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .pdp-gallery-slide {
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .tile-img-text-bot {
    width: 55%;
    height: 100%;
    background-image: none;
    justify-content: center;
  }

  .tile-gradient-m {
    background-image: linear-gradient(to right, #442d3a 30%, rgba(4, 15, 28, .7) 59%, rgb(4 15 28 / 0%));
}

  .tile-arrow {
    width: 8%;
    margin-right: 2%;
/*    display: flex;*/
    top: 40%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .tile-text {
    padding-bottom: 0;
  }

  .tile-img {
/*
    justify-content: flex-end;
    display: none;
*/
  }
	.tile-img picture { height: 100%; }
	.tile-img img{
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
	

  .mmm-tiles {
    flex-direction: column;
  }

  .tile {
    margin-left: auto;
    margin-right: auto;
  }

  .tile.tile-w67 {
    width: 387px;
    height: 133px;
    min-height: auto;
  }

  .tile.tile-mmm, .tile.tile-w25, .tile.tile-w50, .tile.tile-w33 {
    width: 100%;
    height: 133px;
  }

  .programs-pro-text {
    width: 90%;
    max-width: 100%;
    order: 0;
    align-self: center;
    padding-right: 0%;
  }

  .programs-content-padding {
    flex-flow: column-reverse;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
	  padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .programs-pro-row {
    max-width: 100%;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: row;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 5fr 5fr;
    grid-auto-columns: 1fr;
    align-self: center;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
	
	
	.tab-pane-tab-6 {
  background-image: url('../../images/udream-pro-well-being-chair-programs-ai-background-mobile.webp');
	}
	
	

  .paragraph-25, .pdp .reviews-h2 {
    text-align: center;
  }

  .stress-reduction-media {
    margin-left: auto;
    margin-right: auto;
  }

  .otp-scenes {
    width: 100%;
    height: 100%;
  }

  .otp-grid {
	  position: relative;
    width: 100%;
    grid-template-rows: minmax(0, auto) minmax(0, auto) minmax(0, auto) minmax(auto, 1fr) minmax(0, auto);
    grid-template-areas: "Title Title"
                         "Scene-Buttons Scene-Buttons"
                         "Chair-Image Chair-Image"
                         "Copy Copy"
                         "VR-headset VR-headset";
    margin-left: auto;
    margin-right: auto;
/*    padding-top: 10%;*/
  }

  .otp-buttons {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .otp-vr {
/*    width: 75%;*/
    margin-left: auto;
    margin-right: auto;
  }

  .section-one-touch {
    position: relative;
  }

  .pdp .otp-h2 {
    text-align: center;
	  /* max-width: 200px; */
	  margin: 0 auto;
  }

  .stress-reduction-video {
    width: 100%;
	  height: auto;
	  aspect-ratio: 1/1.16;
/*    height: 100%;*/
    margin-bottom: 40px;
/*
    padding-top: 160px;
    padding-bottom: 160px;
*/
  }

  .tile-bg-vid {
    display: none;
  }

  .tile-img-text-bot-single {
    width: 50%;
    height: 100%;
    background-image: none;
    justify-content: center;
  }

  .tile-bg-vid-small {
    display: block;
  }

  .expand-arrow {
    width: 8%;
    margin-right: 2%;
/*    display: flex;*/
    top: 40%;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .key-features-tiles {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .tile-img-small {
    justify-content: flex-end;
    display: block;
  }

  .programs-otp-text {
    width: 90%;
    height: auto;
    justify-content: flex-end;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    top: 0;
    bottom: 10%;
    left: 0%;
    right: 0%;
  }

  .programs-otp-media-small {
    width: 100%;
  }

  .programs-text {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0%;
  }

  .programs-manual-list-text {
    text-align: left;
  }

  .programs-media {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 430px;
  }

  .mmm-expand-single.monitor-expand-1 {
    width: 50%;
  }

  .mmm-expand-single.stress-expand-1 {
    width: 90%;
  }

  .mmm-expand-single.manage-expand-1 {
    width: 85%;
  }

  .otp-scene-aurora, .otp-scene-nature, .otp-scene-sunset {
    height: 100%;
/*	  width: 70%;*/
	  position: absolute;
  }
	
  .otp-scene-aurora img,
	.otp-scene-nature img,
	.otp-scene-sunset img{
    width: 100%;
		height: 100%;
		object-fit: cover;
  }
	
	
  .tile-vid {
/*    display: none;*/
	  height: 100%;
  }

/*
  .tile-vid-small {
    height: 100%;
  }
*/

	
/*
	.otp-scene-aurora, 
	.otp-scene-nature,
	.otp-scene-sunset{
		 width: 100%;
    	display: block;
	}
*/
	
/*
  .otp-scene-aurora-mobile {
    width: 100%;
    display: block;
  }

  .otp-scene-aurora-desktop, .otp-scene-nature-desktop {
    display: none;
  }

  .otp-scene-nature-mobile {
    width: 100%;
    display: block;
  }

  .otp-scene-sunset-desktop {
    display: none;
  }

  .otp-scene-sunset-mobile {
    width: 100%;
    display: block;
  }
*/

  .testimonial-slider-nav {
    width: 50%;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .interactive-slide {
/*
    flex-direction: row;
    align-items: stretch;
    display: flex;
*/
  }

  .interactive-copy {
/*    width: 50%;*/
    max-width: none;
    margin-bottom: 40px;
    margin-right: 0;
  }

/*
  .testimonial-slider-arrow {
    margin-left: 50%;
  }
*/

/*
  .interactive-image {
    width: 50%;
    max-height: 290px;
  }
*/

/*
  .interactive-content {
    flex-direction: column;
  }
*/

  .interactive-hotspot {
/*
    width: 100%;
    height: 35vh;
*/
	  display: none;
  }

  .interactive-slider {
    width: 100%;
  }

.interactive-video {
  width: 100%;
  height: auto;
	max-height: unset;
}

  .senses-single,
	.senses-single-full {
    flex-wrap: wrap;
	justify-content: center;
	max-width: 479px;
    margin: 0 auto;
  }

  .senses-expand-icon {
    width: 20%;
    text-align: center;
	  padding-right: 0%;
  }

  .senses-expand-text,
  .senses-expand-text-full{
/*    width: 80%;*/
	width: 90%;
    padding-top: 0;
    padding-right: 0%;
	  text-align: center;
  }
	
	.senses-expand-text-full .w-layout-hflex{
		justify-content: center;
	}

  .senses-expand-media {
    width: 100%;
    text-align: center;
    margin-left: auto;
    padding-right: 0%;
  }
	
	.senses-expand-media-full {
		width: 100%;
		text-align: center;
		margin-left: auto;
		padding-left: 0%;
	}
	
	.senses-touch-video { 
		aspect-ratio: 388 / 288;
	}

  .senses-overline {
    margin-bottom: 5px;
  }
	
  .senses-overline, .senses-expand-title {
    text-align: center;
  }


  .senses-expand-content {
    flex-direction: column-reverse;
  }

  .background-video-2 {
    text-align: center;
	  height: 400px;
  }

  .pdp .senses-p {
    text-align: center;
  }

  .udream-chair {
    width: 398px;
  }

  .pdp .touch {
    font-size: 24px;
    right: 11%;
  }

  .touch.drop-shadow-blue {
    right: 0%;
  }

  .senses-animation {
    width: 375px;
  }

  .chair-border, .pentagon-border {
    width: 398px;
  }

  .pdp .sight {
    font-size: 24px;
/*    left: 15%;*/
	  top: 10%;
  }

  .sight.drop-shadow-blue {
    left: 7%;
  }

  .pdp .taste {
    font-size: 24px;
    bottom: 8%;
    left: 23%;
  }

  .taste.drop-shadow-blue {
/*
    bottom: 10%;
    left: 27%;
*/
  }

  .pdp .smell {
    font-size: 24px;
    top: 47%;
/*    left: 7%;*/
  }

  .pdp .smell::after {
    top: -32px;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
}

  .smell.drop-shadow-blue {
/*
    top: 48%;
    left: 15%;
*/
  }

  .pdp .hear {
    font-size: 24px;
    right: 5%;
  }

  .hear.drop-shadow-blue {
/*
    top: 31%;
    right: 20%;
*/
  }

  .senses-smell-scents {
    width: 100%;
    flex-direction: row;
    align-content: flex-end;
    align-items: flex-start;
    margin-top: 20px;
  }

  .senses-smell-scent {
    width: 25%;
  }

  .programs-content {
    width: 100%;
    flex-flow: column-reverse;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 35%;
    padding-left: 0;
    position: relative;
  }

  .programs-otp-video {
    width: 100%;
    aspect-ratio: 1/1.16;
    height: auto;
  }

  .mmm-expand-open {
    padding-left: 10px;
  }

  .pdp .expert-p {
    text-align: left;
  }

  .mmm-measure {
    width: 200vw;
    flex-flow: row;
    grid-template: "Area Area-2"
                   "Area Area-2"
                   "Area Area-4"
                   "Area Area-4"
                   / 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .monitor-grid-content {
    width: 100%;
	text-align: center;
    grid-row-gap: 0px;
    grid-template: "Area"
                   "Area-2"
                   "Area-3"
                   "Area-5"
                   "Area-4"
                   / 1fr;
  }

  .measure-expand-2 {
    max-width: none;
    flex-flow: wrap;
  }

  .mmm-measure-section {
    width: 100%;
  }

  .expand-content-bot {
    width: 100vw;
    flex-direction: column;
  }

  .pdp .mmm-expand-text {
    text-align: left;
  }

  .measure-content.measure-guided-breathing {
    width: 300px;
  }

  .pdp .measure-p {
    width: 100%;
    text-align: left;
/*    font-size: 17px;*/
  }

  .measure-graph {
    width: 100%;
  }

  .pdp .expand-paragraph-text, .pdp .mmm-expand-title {
    text-align: left;
  }

  .expand-content-top {
    width: 100vw;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  }

  .measure-expand {
    display: none;
  }

  .mmm-expand-double-stretch {
    width: 90%;
  }

  .expand-title {
    text-align: left;
  }

  /* .list {
    width: 90%;
  } */

  .expand-stretch-img {
    height: 100%;
  }

  .mmm-expand-single-stretch {
    height: 80%;
    align-self: flex-end;
  }

  .mmm-expand-single-stretch.monitor-expand-2, .mmm-expand-single-stretch.manage-expand-2 {
    width: auto;
  }

  .stress-expand {
    background-position: 30%;
  }

  .stress-expand-2 {
    flex: none;
  }

  .pdp .stress-expand-p {
    text-align: left;
  }

  .mmm-expand-arrow {
    text-align: right;
    display: block;
  }
	
	.stress-expand{
		background-image: url('../../images/udream-pro-well-being-chair-stress-background-mobile.webp');
	}
	
	.footnote-content {
		max-width: 100%;
    	margin: 0 5% 0 10%;
	}
}

@media screen and (max-width: 479px) {
	
	/* SLEEP SOLUTION - Mobile Portrait */
	
  .sleep-2cols_custom {
    padding-top: 15px;
  }

  .expand-v-single {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: flex;
  }

  .sleep-solution-content {
    width: 90%;
  }
	
	.programs-ai-download-img{ width: 100%; object-fit: cover; }
	
  .video-text, .video-title {
    line-height: 1.25;
  }

  .hero-vid:after {
    box-shadow: none !important;
  }

  .hero-vid-cta {
    width: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--background-color) 70%);
    padding-top: 20px;
    padding-bottom: 20px;
    bottom: 0%;
  }

  .tab-menu {
    width: 100%;
  }

  .tab-pane-tab-4 {
    background-position: 50% 0;
  }
	
	.section-content-1 {
		width: 90%;
	}
	
	.section-content-2{
		width: 90%;
	}
	
  .section-content-3 {
    max-width: 100%;
    position: static;
  }

  .interactive-image {
    min-height: unset;
    aspect-ratio: 1.3 / 1;
  }
	
  .safety-logos {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-areas: "CE CE RoHS RoHS"
                         "ISO ISO Footrest Footrest"
                         "Backrest Backrest Anti-Heating Anti-Heating"
                         "Backrest Backrest Anti-Heating Anti-Heating"
                         ". Airbag Airbag ."
                         ". Airbag Airbag .";
    align-content: center;
    justify-content: center;
    align-items: end;
    justify-items: center;
  }

  .safety-single {
    height: 140px;
  }

  .safety-single.align-centre {
    padding-top: 45px;
  }

  .columns-8 {
    flex-direction: column;
  }

  .image-35 {
    min-width: 100px;
  }

  .image-36 {
    padding-right: 10px;
  }

  .image-37 {
    max-width: 60px;
  }

  .image-38 {
    min-width: 55px;
  }
	
	
  .image-safety-row1.drop-shadow-blue {
    margin-bottom: 20px;
  }
	
  .div-award-icon {
    width: 20%;
    height: 30px;
  }

  .div-award-icon.red-dot {
    min-width: 100px;
  }

  .div-award-icon.padding {
    padding-left: 10px;
  }

  .stress-reduction-text {
    padding-bottom: 20px;
	  max-width: 90%;
  }

  .div-block-33 {
    width: 100%;
  }

  .stress-reduction-badge {
    padding-left: 2%;
    padding-right: 2%;
  }

/*
  .stress-reduction-grid {
    grid-template-rows: minmax(15%, auto) minmax(48%, auto) minmax(16%, auto) minmax(14%, auto) minmax(4%, auto);
  }
*/

/*
  .section-design {
    margin-top: 100px;
  }
*/

  .pdp .stress-h2 {
    margin-bottom: 0;
  }

/*
  .section-content-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
*/

  .pdp-gallery-block {
    flex-direction: column;
    padding-top: 0%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .gallery-slide-nav {
    padding-top: 40px;
  }

  .gallery-slider-right {
    width: 30px;
    right: -20px;
  }

  .gallery-slider-left {
    width: 30px;
    left: -20px;
  }

  .pdp-gallery-slide {
    flex-direction: column-reverse;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .pdp-gallery-wrapper {
    max-width: 90%;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .image-40, .star-single {
    margin-bottom: 5px;
  }

  .image-42, .image-43, .image-44 {
    margin-bottom: 5px;
    margin-left: 5px;
  }

  .tile-text {
/*
    width: 100%;
    max-width: 100%;
*/
  }

  .tile-img {
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .mmm-tiles {
    flex-direction: column;
  }

/*
  .tile.tile-w67, .tile.tile-mmm, .tile.tile-w25, .tile.tile-w50, .tile.tile-w33 {
    width: 288px;
  }
*/

  .mmm-intro {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-13 {
    font-size: 37px;
  }

  .div-block-52 {
    justify-content: center;
  }

  .programs-pro-text {
    width: 100%;
    text-align: center;
    flex: 1;
    align-self: center;
    padding-left: 20px;
    padding-right: 20px;
  }

/*
  .programs-content-padding {
    flex-direction: column-reverse;
    align-content: center;
  }
*/

  .programs-pro-row {
    max-width: 100%;
    align-self: center;
  }

  .paragraph-25 {
    flex-direction: row;
    align-items: center;
    display: block;
  }

/*
  .stress-reduction-media {
    width: 324px;
  }
*/

  .otp-image-pentagons {
    height: 150%;
  }

  .otp-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .otp-buttons {
    justify-content: space-around;
  }

  .otp-image {
    height: 100%;
  }

/*
  .otp-vr {
    width: 100%;
  }
*/

  .pdp .otp-h2 {
    margin-bottom: 20px;
  }

/*
  .stress-reduction-video {
    width: 100%;
    margin-bottom: 0;
    padding-top: 140px;
    padding-bottom: 140px;
  }
*/

  .stress-reduction-text-mobile {
    margin-bottom: 0;
  }

  .mmm-text {
    padding-left: 0;
    padding-right: 0;
  }

  .key-features-tiles {
    flex-direction: column;
  }

  .tile-img-small {
    object-fit: cover;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .programs-otp-media {
    width: 100%;
  }

  .programs-otp-media-small {
    height: 100%;
    flex-direction: row-reverse;
    order: -1;
    align-items: flex-start;
  }

  .programs-media {
    width: 100%;
  }

  .mmm-expand-single.monitor-expand-1 {
    width: 90%;
    margin-left: 0%;
  }

/*
  .section-interactive {
    margin-top: 100px;
  }
*/

  .interactive-intro {
    width: 90%;
  }

  .interactive-copy {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

/*
  .interactive-hotspot {
    max-height: 240px;
  }
*/

  .interactive-title {
    font-size: 24px;
  }

  .interactive-video {
/*    max-height: 240px;*/
  }

  .senses-expand {
    margin-top: 10px;
  }

  .senses-single, 
  .senses-single-full {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
/*    flex-direction: column;*/
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .senses-expand-icon {
    width: 30%;
    padding-right: 0%;
  }

/*
  .senses-expand-text {
    width: 90%;
    padding-top: 0;
    padding-right: 0%;
  }
*/

  .senses-expand-media,
  .senses-expand-media-full{
    width: 100%;
  }


  .senses-expand-contain {
    background-color: rgba(0, 0, 0, 0);
  }

  .pdp .senses-p {
    text-align: center;
  }

  .udream-chair {
    width: 263px;
  }

  .pdp .touch {
    font-size: 22px;
    right: 7%;
  }

  .touch.drop-shadow-blue {
    bottom: 16%;
/*    right: 26%;*/
  }

  .chair-border {
    width: 263px;
  }

  .pentagon-border {
    width: 263px;
    height: auto;
  }

  .pdp .sight {
    font-size: 22px;
    left: 11%;
  }

  .sight.drop-shadow-blue {
    top: 7%;
    left: 15%;
  }

  .pdp .taste {
    font-size: 22px;
    left: 21%;
  }

  .taste.drop-shadow-blue {
    bottom: 2%;
/*    left: 37%;*/
  }

  .pdp .smell {
    font-size: 22px;
    top: 43%;
    left: 5%;
  }

  .smell.drop-shadow-blue {
    top: 44%;
/*    left: 26%;*/
  }

  .pdp .hear {
    font-size: 22px;
    top: 22%;
    right: 11%;
  }

  .hear.drop-shadow-blue {
/*
    top: 26%;
    right: 30%;
*/
  }

  .interactive-hotspot-image {
    transform: translate(0, -10%);
  }

  .senses-smell-scents {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .senses-smell-scent {
    width: 23%;
    margin-left: 1%;
    margin-right: 1%;
  }

  .programs-content {
    align-content: center;
  }

  .programs-otp-video {
    width: 100%;
  }

  .monitor-grid-content {
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "Area-2"
                         "Area"
                         "Area-3"
                         "Area-5"
                         "Area-4";
    padding-left: 3%;
    padding-right: 3%;
  }

  .expand-content-bot {
    width: 90vw;
  }

  .measure-content {
    margin-left: 6%;
    margin-right: 6%;
  }

  .expand-content-top, .mmm-expand-double-stretch {
    width: 90vw;
  }

  .section-mmm {
    flex-direction: column;
    display: block;
  }

  .background-video-8 {
    flex-direction: row;
    align-items: flex-start;
    display: block;
    position: relative;
  }

  /* .list {
    width: 90%;
  } */
}

@media screen and (max-width: 427px) {
/*	.programs-content-padding{ padding-top: 0; }*/
	.stress-reduction-text { max-width: 324px; }
}

#w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f0b-322e9048 {
  grid-area: Title;
}

#w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f0d-322e9048 {
  grid-area: Copy;
}

#w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f13-322e9048 {
  grid-area: Scene-Buttons;
}

#w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f23-322e9048 {
  grid-area: VR-headset;
}

#w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f29-322e9048 {
  grid-area: Chair-Image;
}

#w-node-ba27b533-2cb3-e3d3-73de-cc1d37296fcc-322e9048 {
  grid-area: Header;
}

#w-node-c6ccb746-a00f-e0d9-ab66-e61dbae5b7c2-322e9048 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7026a415-3b8b-9565-2561-e59494bbad97-322e9048, #w-node-_393d9354-c114-a1d8-0d2a-5151c3d12293-322e9048 {
  grid-area: Paragraph;
}

#w-node-_3bbe1d3b-1b48-37b3-b88f-e4558ac0a610-322e9048 {
  grid-area: Percentage;
  align-self: start;
}

#w-node-d705d9ba-6916-07f1-034a-cc222c6d9322-322e9048 {
  grid-area: Stress-Link;
}

#w-node-c44346e7-fc20-e08e-98db-945ccb310214-322e9048 {
  grid-area: Image;
  align-self: center;
}

#w-node-_53ff2894-5997-a7e9-bb35-44bdd878ea96-322e9048 {
  grid-area: Area-4;
}

#w-node-_53ff2894-5997-a7e9-bb35-44bdd878ea98-322e9048 {
  grid-area: Area-5;
}

#w-node-_53ff2894-5997-a7e9-bb35-44bdd878ea9a-322e9048 {
  grid-area: Area-3;
}

#w-node-_53ff2894-5997-a7e9-bb35-44bdd878ea9c-322e9048 {
  grid-area: Area-2;
}

#w-node-_53ff2894-5997-a7e9-bb35-44bdd878ea9e-322e9048 {
  grid-area: Area;
}

#w-node-_886418f5-eafc-d1e4-a600-a33446ef62cc-322e9048 {
  grid-area: Area1;
  align-self: center;
  justify-self: start;
}

#w-node-_18ab7251-7adc-9253-fe98-96729f28bf93-322e9048 {
  grid-area: Area-2;
}

#w-node-_7d0a22d7-96ea-a9a5-ed02-040dbea08e3e-322e9048, #w-node-_63664d7f-b781-9a6e-d54a-af3c1988480a-322e9048 {
  grid-area: Area-4;
  align-self: center;
  justify-self: center;
}

#w-node-_5d07625f-ab1f-45da-60a0-54cac051ba22-322e9048, #w-node-_89d0e84e-053f-ad5f-b521-04a502d56cd8-322e9048 {
  grid-area: Area-3;
}

#w-node-a38f6da4-74db-a268-823a-e4dcc1bf332f-322e9048 {
  grid-area: Area;
}

#w-node-_7fe56d5b-f60e-efbf-6d6c-ef08a210b690-322e9048 {
  grid-area: Area-2;
}

#w-node-_22802a79-3927-9aa7-9fbe-d4716a65a2a9-322e9048 {
  grid-area: Area-4;
}

#w-node-_92d92207-d7c4-6820-f329-0b6fdde6c5a7-322e9048, #w-node-_92d92207-d7c4-6820-f329-0b6fdde6c5a8-322e9048 {
  grid-area: RedDot;
}

#w-node-_92d92207-d7c4-6820-f329-0b6fdde6c5aa-322e9048 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92d92207-d7c4-6820-f329-0b6fdde6c5ab-322e9048, #w-node-_92d92207-d7c4-6820-f329-0b6fdde6c5ac-322e9048 {
  grid-area: Merit;
}

#w-node-_92d92207-d7c4-6820-f329-0b6fdde6c5ad-322e9048, #w-node-_92d92207-d7c4-6820-f329-0b6fdde6c5ae-322e9048 {
  grid-area: Smart;
}

#w-node-_5b0c7b80-3981-ecf7-853b-06135d14a372-322e9048 {
  grid-area: ISO;
}

#w-node-c532242e-4f1c-bf3a-f983-67e0fdb9bc80-322e9048 {
  grid-area: Airbag;
}

#w-node-_0fb06c2a-d034-b035-ed2a-f2a50a78abcf-322e9048 {
  grid-area: Backrest;
}

#w-node-fa9f5c55-5035-996a-e094-53b8a8ff9456-322e9048 {
  grid-area: Footrest;
}

#w-node-_62897e2b-5a0e-d564-37a0-517ad99ed2cd-322e9048 {
  grid-area: Anti-Heating;
}

#w-node-_19b17597-00da-d40c-35d2-dc6b9db59517-322e9048 {
  grid-area: CE;
}

#w-node-_0a002339-8398-d0e2-4f26-c846ae108b6a-322e9048 {
  grid-area: RoHS;
}

@media screen and (min-width: 1440px) {
  #w-node-ba27b533-2cb3-e3d3-73de-cc1d37296fcc-322e9048 {
    grid-area: Header;
  }

  #w-node-_7026a415-3b8b-9565-2561-e59494bbad97-322e9048 {
    grid-area: Paragraph;
    align-self: start;
  }

  #w-node-_3bbe1d3b-1b48-37b3-b88f-e4558ac0a610-322e9048 {
    grid-area: Percentage;
    align-self: start;
  }

  #w-node-d705d9ba-6916-07f1-034a-cc222c6d9322-322e9048 {
    grid-area: Stress-link;
  }

  #w-node-_7fe56d5b-f60e-efbf-6d6c-ef08a210b690-322e9048 {
    grid-area: Area-2;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f0b-322e9048 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f0d-322e9048 {
    grid-area: Copy;
  }

  #w-node-_7026a415-3b8b-9565-2561-e59494bbad97-322e9048 {
    grid-area: Paragraph;
  }

  #w-node-d705d9ba-6916-07f1-034a-cc222c6d9322-322e9048 {
    grid-area: Stress-Link;
  }

  #w-node-_89d0e84e-053f-ad5f-b521-04a502d56cd8-322e9048 {
    grid-area: paragraph;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f0b-322e9048 {
    grid-area: Title;
  }

  #w-node-_259efd8d-d67c-bf01-f7b0-cf68b7493809-322e9048 {
    grid-area: Area;
    align-self: center;
  }

  #w-node-_259efd8d-d67c-bf01-f7b0-cf68b749380e-322e9048 {
    grid-area: Area-2;
  }

  #w-node-_259efd8d-d67c-bf01-f7b0-cf68b7493813-322e9048 {
    grid-area: Area-4;
  }

  #w-node-_89d0e84e-053f-ad5f-b521-04a502d56cd8-322e9048 {
    grid-area: paragraph;
  }

  #w-node-c532242e-4f1c-bf3a-f983-67e0fdb9bc80-322e9048 {
    grid-area: Airbag;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f0b-322e9048 {
    grid-area: Title;
  }

  #w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f0d-322e9048 {
    grid-area: Copy;
  }

  #w-node-_1ef0478f-aeca-becf-6d65-9a66523d1f13-322e9048 {
    grid-area: Scene-Buttons;
  }

  #w-node-d705d9ba-6916-07f1-034a-cc222c6d9322-322e9048 {
    grid-area: Stress-Link;
  }

  #w-node-_5b0c7b80-3981-ecf7-853b-06135d14a372-322e9048 {
    grid-area: ISO;
  }

  #w-node-c532242e-4f1c-bf3a-f983-67e0fdb9bc80-322e9048 {
    grid-area: Airbag;
  }

  #w-node-_4506102a-84f1-3228-fdb6-3ba387e5323d-322e9048 {
    grid-area: RoHS;
  }
}


/*
@font-face {
  font-family: 'Fs Albert';
  src: url('../fonts/FS-Albert.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fs Albert';
  src: url('../fonts/FS-Albert-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fs Albert';
  src: url('../fonts/FS-Albert-ExtraBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fs Albert';
  src: url('../fonts/FS-Albert-Bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fs Albert';
  src: url('../fonts/FS-Albert.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}*/
