@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-height: 100%;
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*@font-face {
  font-family: "3MCircular";
  font-weight: normal;
  src: url("./inc/fonts/Rasha Yunis - 3MCircularTT-Book.ttf") format("truetype");
}
@font-face {
  font-family: "3MCircular";
  font-weight: bold;
  src: url("./inc/fonts/Rasha Yunis - 3MCircularTT-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "3MCircular";
  font-weight: 300;
  src: url("./inc/fonts/Rasha Yunis - 3MCircularTT-Light.ttf") format("truetype");
}*/
@font-face {
  font-family: "Solve-Pro";
  font-weight: normal;
  src: url("./inc/fonts/Solve-Pro-Regular.otf") format("truetype");
}
@font-face {
  font-family: "Solve-Pro";
  font-weight: bold;
  src: url("./inc/fonts/Solve-Pro-Bold.otf") format("truetype");
}
@font-face {
  font-family: "Solve-Pro";
  font-weight: 300;
  src: url("./inc/fonts/Solve-Pro-Light.otf") format("truetype");
}

.grid-container {
  display: flex;
}
@supports (display: grid) {
  .grid-container {
    display: grid;
    grid-template-columns: minmax(1.25rem, 1fr) repeat(12, minmax(0, 5.625rem)) minmax(1.25rem, 1fr);
  }
  @media (min-width: 640px) {
    .grid-container {
      grid-column-gap: 1.25rem;
      grid-template-columns: minmax(4.375rem, 1fr) repeat(12, minmax(0, 5.625rem)) minmax(4.375rem, 1fr);
    }
  }
}

.grid-full-width {
  grid-column: 1/15;
}

.grid-1 {
  grid-column: 2/14;
}
@media (min-width: 1100px) {
  .grid-1 {
    grid-column: span 1;
  }
}

.grid-3 {
  grid-column: 2/14;
}
@media (min-width: 1100px) {
  .grid-3 {
    grid-column: span 3;
  }
}

.grid-4 {
  grid-column: 2/14;
}
@media (min-width: 1100px) {
  .grid-4 {
    grid-column: span 4;
  }
}

.grid-5 {
  grid-column: 2/14;
}
@media (min-width: 1100px) {
  .grid-5 {
    grid-column: span 5;
  }
}

.grid-9 {
  grid-column: 2/14;
}
@media (min-width: 1100px) {
  .grid-9 {
    grid-column: span 9;
  }
}

.grid-inner {
  grid-column: 2/14;
}
@supports (display: grid) {
  .grid-inner {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 5.625rem));
  }
  @media (min-width: 640px) {
    .grid-inner {
      grid-column-gap: 1.25rem;
    }
  }
}
.grid-inner .grid-full-width {
  grid-column: span 12;
}
.grid-inner .grid-one-half {
  grid-column: span 12;
}
@media (min-width: 1100px) {
  .grid-inner .grid-one-half {
    grid-column: span 6;
  }
}
.grid-inner .grid-one-third {
  grid-column: span 12;
}
@media (min-width: 640px) {
  .grid-inner .grid-one-third {
    grid-column: span 6;
  }
}
@media (min-width: 1100px) {
  .grid-inner .grid-one-third {
    grid-column: span 4;
  }
  .site-header .grid-inner .grid-one-third {
    grid-column: span 3;
  }
}
.grid-inner .grid-two-thirds {
  grid-column: span 12;
}
@media (min-width: 640px) {
  .grid-inner .grid-two-thirds {
    grid-column: span 6;
  }
}
@media (min-width: 1100px) {
  .grid-inner .grid-two-thirds {
    grid-column: span 8;
  }
}

@media (min-width: 1100px) {
  .h1 {
    font-size: 3.25rem;
    font-weight: bold;
    line-height: 3.875rem;
  }
}
.h1 sup {
  font-size: 1.0625rem;
}

body {
  font-family: "Solve-Pro", sans-serif;
  color: #3c3e3f;
}

.text-center, .button {
  text-align: center;
}
.alert-item .content{
  text-align: left;
}

.button {
  background: #ffffff;
  border: 2px solid #0a7b6b;
  border-radius: 1.875rem;
  /*box-shadow: 0 0 15px 0 rgba(30, 30, 150, 0.25);*/
  color: #0a7b6b;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.6rem 0 0.4rem;
  text-decoration: none;
  width: 9.6875rem;
  margin-bottom: 1.275rem;
}
.button.alert {
  margin-top: 5.125rem;
  width: 12.5rem;
}
.button.back {
  width: 12.5rem;
}
@media (min-width: 1100px) {
  .button.back {
    margin-top: 3.75rem;
    margin-left: 3.1rem;
  }
}
@media (max-width: 640px) {
  .alert-item .button {
    margin-bottom: 2.7rem;
  }
}

.back-arrow {
  color: #0a7b6b;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.625rem;
  text-decoration: none;
}
@media (min-width: 1100px) {
  .back-arrow {
    padding: 0 3.175rem;;
  }
}

img {
  font-family: "3MCircular", sans-serif;
}

.alert-grid {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 1.875rem;
  padding: 0 3.125rem 1.875rem;
  column-gap: 5rem;
}
@media (max-width: 640px) {
  .alert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
	padding: 0;
  }
}
.alert-grid.p125 {
  margin-top: 1.875rem;
}

.alert-item {
  align-items: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.alert-item .button {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: auto;
}
.alert-item .content {
  margin: 1.25rem 0;
}
.alert-item .content a {
  color: #000000;
  text-decoration: none;
}
.alert-item figure {
  align-items: flex-end;
  display: flex;
  height: 6.875rem;
}
.alert-item h2 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2.5rem;
  color: #01332b;
}
.alert-item p {
  font-size: 1rem;
  line-height: 1.375rem;
  color:#3c3e3f;
}
.alert-item.p125 figure {
  height: 6.25rem;
}
.alert-item.p125-plus .content {
  flex: 1;
}
@media (max-width: 640px) {
  .alert-item h2{
    line-height:2rem !important;
  }
}


.body-grid {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.body-grid .not-sure{
  grid-column:span 3;	
}
@media (max-width: 640px) {
  .body-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .body-grid.plus{
	grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .body-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0.9rem 3.75rem 0 2.3rem;
  }
}

.dressing-grid {
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .dressing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 2.5rem 2.5rem;
  }
}
.dressing-grid .not-sure {
  grid-column: span 2;
}

.dressing-note {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.75rem;
  margin-left: 3.75rem;
  color:#01332b;
}
@media (max-width: 640px) {
  .dressing-note {
	margin-left: 0 !important;
	margin-bottom:2.3rem !important;
  }
}

.site-header {
  /*background-image: linear-gradient(to right, #8228B4 0, #003CE6 126%);*/
  background:#01332b;
  padding: 0.625rem;
}
.site-header .grid-two-thirds {
  align-self: center;
}
.site-header .grid-two-thirds p {
  color: #FFF;
  text-align:left;
  font-weight:700;
  padding-left:3.06rem;
}
@media (max-width: 1099px) {
  .site-header .grid-two-thirds {
    display: none;
  }
}
@media (max-width: 640px) {
  .site-header {
    padding: 1.5rem 0.4rem;
  }
}


.site-header .logo {
  max-width: 15.625rem;
}
@media (min-width: 640px) {
  .site-header {
    padding: 1.25rem 0;
  }
}

.home h1 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  color:#01332b;
}
@media (min-width: 640px) {
  .home h1 {
    font-size: 3.25rem;
    line-height: 3.875rem;
  }
}
.home h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight:300;
  color: #01332b;
  padding: 1.5rem 0 2rem;
}
@media (max-width: 640px) {
  .home h2 {
    font-size: 1.25rem;
    line-height: 1.8rem;
    padding-top: 1.5rem;
    padding-bottom: 2.3125rem;
  }
}
.home .lower-content {
  font-size: 1rem;
  line-height: 1.375rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .home .lower-content {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}
.home .main-content {
  padding-top: 1.875rem;
}
@media (min-width: 1100px) {
  .home .main-content {
    /*background-image: linear-gradient(to bottom, #dcf 10%, #fefefe);*/
    padding-top: 3rem;
	background:#ffffff;
  }
}
.home .unit-select {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1100px) {
  .home .unit-select {
    flex-direction: row;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 640px) {
  .home .unit-select  figure{
    max-width:9.5rem !important;
  }
}
.home .unit-1 {
  align-items: center;
  border-bottom: 1px solid #9c88c2;
  display: flex;
  flex-direction: row-reverse;
}
.home .unit-1 figure {
  margin: 2.5rem 0;
  max-width: 15.875rem;
}
@media (max-width: 640px) {
  .home .unit-1 figure {
    max-width: 10.9375rem;
  }
  .home .unit-1 {
    border-bottom: 1px solid #cbcbcb;
  }
}
@media (min-width: 1100px) {
  .home .unit-1 {
    border-bottom: none;
    border-right: 1px solid #cbcbcb;
    flex-direction: row;
  }
  .home .unit-1 figure {
    margin: 0 1.875rem;
  }
}
.home .unit-2 {
  align-items: center;
  display: flex;
  flex-direction: row;
}
.home .unit-2 figure {
  margin: 2.5rem 0;
  max-width: 6.875rem;
}
@media (min-width: 640px) {
  .home .unit-2 figure {
    max-width: 18.75rem;
  }
}
@media (min-width: 1100px) {
  .home .unit-2 figure {
    margin: 0 1.875rem;
  }
}
.home .unit-2 .unit-content p:not(.small) {
  margin-bottom: 1.25rem;
}
.home .unit-content {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.home .unit-content p {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.75rem;
  margin-bottom: 1.25rem;
  color: #01332b;
}
@media (max-width: 640px) {
  .home .unit-content p {
    font-size: 1.25rem;
    line-height: 1.7rem;
	text-align:left;
  }
  .home .unit-content {
    align-items: normal !important;
	padding-left:0.8rem !important;
  }
}
.home .unit-content p.small {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.125rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 640px) {
  .home .unit-content p.small {
    font-size: 1rem;
    line-height: 1.375rem;
  }
  .primary-content h1{
	margin: 1.5rem 0 2.5rem 0 !important;
  }
}
.not-sure {
  color: #000000;
  padding: 0 1.25rem;
}
.not-sure h2 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  color:#01332b;
}
.not-sure p {
  font-size: 0.875rem;
  line-height: 1rem;
  color:#3c3e3f;
}
.not-sure a {
  color: #000000;
}
.pre-125-not-sure{
  padding-left:3.4rem;
  padding-top: 1rem;
}
@media (max-width: 640px) {
  .not-sure {
    padding: 1rem 0 2.5rem;
  }
}


.primary-content h1 {
  font-size: 2rem;
  line-height: 2.25rem;
  border-bottom: 2px solid #05dd4d;
  margin: 10px 50px;
  padding-bottom: 5px;
  color: #01332b;
  font-weight: 500;
}

.select-alert .main-content {
	background-image: linear-gradient(to bottom, #f5f5f5 100%, #ffffff);
	background-repeat: no-repeat;
    background-size: 50%;
}
@media (max-width: 640px) {
  .select-alert .main-content{
    background: #ffffff;
  }
}

@media (max-width: 1099px) {
  .select-alert .main-content {
    background-size: 100% 25rem;
    background-repeat: no-repeat;
  }
}
.select-alert .primary-content {
  padding-top: 1.875rem;
  background:#ffffff;
}

@media (max-width: 640px) {
  .select-alert .primary-content {
   padding-top:0.5rem;
  }
}


@media (max-width: 1099px) {
  .select-anatomy .sidebar-content, .select-anatomy .grid-1 {
    display: none;
  }
}

@media (max-width: 1099px) {
  .select-dressing .sidebar-content, .select-dressing .grid-1 {
    display: none;
  }
}

@media (min-width: 1100px) {
  .select-anatomy .main-content, .select-dressing .main-content, .single-video .main-content {
    background-image: linear-gradient(to bottom, #f5f5f5 100%, #ffffff);
    background-repeat: no-repeat;
    background-size: 50%;
  }
}
.select-anatomy .primary-content, .select-dressing .primary-content, .single-video .primary-content {
  background-color: #fff;
  padding-top: 1.875rem;
}
.select-anatomy .video-container, .select-anatomy .video-transcript, .select-dressing .video-container, .select-dressing .video-transcript, .single-video .video-container, .single-video .video-transcript {
  background-color: #fff;
  padding-top: 1.875rem;
}

.sidebar-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: 2.5rem;
}
.sidebar-content h2 {
  font-weight: bold;
  color:#01332b;
  text-align:left;
}
@media (min-width: 640px) {
  .sidebar-content h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}
@media (max-width: 640px) {
  /*.sidebar-content figure {
    max-width: 11.875rem;
  }*/
  .sidebar-content .current-unit p:not(.small) {
	display: block !important;
    max-width: 9.5rem;
  }
}
.sidebar-content .current-unit {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.sidebar-content .current-unit p:not(.small) {
  display: none;
}
@media (max-width: 1099px) {
  .sidebar-content .current-unit {
    border-bottom: 1px solid #cbcbcb;
    flex-direction: row-reverse;
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
  }
  .sidebar-content .current-unit h2 {
    text-align: left !important;
  }
  .sidebar-content .current-unit p {
    display: block;
  }
}
.sidebar-content .model-name {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.75rem;
  margin: 0 0 1.25rem;
  color:#01332b;
}
@media (max-width: 640px) {
  .sidebar-content.plus figure {
    max-width: 17.5rem;
  }
  .sidebar-content .current-unit {
    margin-bottom: 0 !important;
  }
}
.sidebar-content .switch-text {
  color: #0a7b6b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75rem;
}
.sidebar-content .switch-unit {
  align-items: center;
  border-top: 1px solid #cbcbcb;
  display: flex;
  padding-top: 1.875rem;
  margin-top: 1.875rem;
}
@media (max-width: 1099px) {
  .sidebar-content .switch-unit {
    display: none;
  }
}

.single-video .heading-container {
  align-items: center;
  border-bottom: 2px solid #05dd4d;
  padding-bottom: 0.875rem;
  margin-bottom: 1.875rem; 
}
.single-video .heading-container h1 {
  margin: 1.25rem 0 0.625rem;
  color: #01332b;
  font-weight: 500;
}
@media (max-width: 1099px) {
  .single-video .sidebar-content, .single-video .grid-1 {
    display: none;
  }
}
.single-video .video-transcript p {
  margin-bottom: 1.25rem;
}
.single-video .video-transcript .heading-container p {
  margin-bottom: 0;
}
.single-video .video-transcript ul {
  list-style: none;
  padding-left: 0.625rem;
}
.single-video .video-transcript ul li {
  margin-bottom: 0.9375rem;
  padding-left: 1.25rem;
  position: relative;
}
.single-video .video-transcript ul li::before {
  content: "•";
  display: block;
  font-size: 1.125rem;
  left: 0;
  line-height: 0.875rem;
  position: absolute;
  top: 0.3125rem;
  color:#05dd4d;
}
.single-video.p125 .heading-container figure {
  max-width: 6.25rem;
}

.support-content {
  display: flex;
  /*flex-direction: column;*/
  font-size: 0.875rem;
  justify-content: space-between;
  line-height: 1.125rem;
  margin: 0.9375rem 0;
}
.support-content a {
  color: #FFF;
  font-weight: bold;
  margin-right:15px;
}
.support-content p{
  font-weight:bold;
}
@media (max-width: 640px) {
  .flex-direction: column;
  .support-content p, .support-content a{
    text-align: center;
    font-weight: normal;
  }

}

.site-footer {
  background-color: #0a7b6b;
  color: #FFF;
  /*margin-top: 1.875rem;*/
}
@media (min-width: 640px) {
  .site-footer {
    /*margin-top: 2.5rem;*/
  }
}

@media (min-width: 1100px) {
  .video-container {
    padding: 1.875rem 1.25rem;
  }
}

a[href="#cmp-revoke-consent"] {
	display: inline-flex;
	gap: 0.25rem;
	vertical-align: top
}

a[href="#cmp-revoke-consent"]::before {
	content: url('./inc/images/preferences.svg'); 
	display: block;
	width: 2rem;
	height: 1rem;
}
