body {
  min-height: 100vh;
  margin: 0;
  font-family: proxima-nova, sans-serif;
  touch-action: auto !important;
  user-select: none;
  /*
    After mdBottomSheet is hidden touch-action: pan-x;
    is not removed from parent element (ie body) preventing vertical scrolling on mobile devices.
    https://gitmemory.com/issue/angular/material/11147/540960622
    https://github.com/angular/material/issues/11147
  */
}
.usp-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}
.logo {
  height: 56px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.logo img {
  width: 150px;
}
.brand {
  background-image: url("https://healthifyme-public.s3-ap-southeast-1.amazonaws.com/static/images/studio/hmestudio-placeholder-half.png");
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 176px;
  background-position-y: -55px;
}
.intro {
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
180deg,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 0.99) 100%,
rgba(0, 0, 0, 1) 100%
  );
  display: flex;
  flex-direction: column-reverse;
  min-height: 175px;
}
.description {
  padding: 0 32px;
  text-align: center;
  color: white;
  height: 56px;
  font-size: 20px;
}
.usp {
  padding: 16px;
  padding-bottom: 0px;
}
.usp-tile {
  background-color: rgba(246, 246, 246, 1);
  border-radius: 8px;
  min-height: 184px;
  display: flex;
  align-items: center;
  padding: 16px;
}
.session-title {
  height: 48px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #121212;
  font-weight: 500;
}

.landing-book-sessions.sessions {
  padding-top: 0;
}
.landing-book-sessions .session-title {
  padding: 0 16px;
}
.workout-types {
  padding-top: 10px;
}
.workout-types,
.horizontal-grid-scroll {
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1px repeat(3, 104px) 1px;
  grid-template-rows: minmax(62px, 1fr);
  grid-auto-flow: column;
  overflow-x: scroll;
  scroll-snap-type: x proximity;
  grid-column: 1 / -1;
}

.landing-meet-coaches {
  grid-template-columns: 2px;
  grid-auto-columns: 96px;
}

.workout-kind-workout {
  background-color: #4980E5;
}

.workout-kind-yoga{
  background-color: #14C6A4;
}

.workout-kind-specials {
  background-color:  #E46F80
}

.meet-coaches-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 96px;
}

.meet-coaches-each {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.meet-coaches-name{
  text-align: center;
  font-size: 14px;
  margin-top: 8px;
  color: #333333;
}

.meet-coaches-section {
  margin-top: 16px;
}

.meet-coaches-title {
  margin-bottom: 8px;
}

.workout-tile {
  border-radius: 8px;
  position: relative;
  width: 72px;
  height: 80px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.workout-tile-tag {
  position: absolute;
  top: -8px;
  right: 10px;
  border-radius: 8px;
  color: white;
  font-size: 12px;
  min-width: 35px;
  text-align: center;
  padding: 1px 6px;
  font-weight: 600;
}
.workout-tile img {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 8px;
}

.workout-link {
  text-decoration: none;
}

.sessions {
  padding: 16px 0;
}
.session-name {
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 0;
}

.session-name > p {
  margin: 0;
  margin-top: 8px;
  font-size: 12px;
}
div.scrollmenu {
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a:hover {
  background-color: #777;
}

.md-button {
  border-radius: 20px;
}

.sessions-header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background-color: white;
}
.header-nav {
  display: flex;
  align-items: center;
}
.back img {
  margin-right: 12px;
}
.back {
  display: flex;
  align-items: center;
}
.title {
  color: #121212;
  font-weight: 500;
  font-size: 20px;
}
.session-header-title {
  color: #121212;
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
}
.header-container {
  box-shadow: 0px 3px 6px #00000029;
}
.header-filter {
  color: #121212;
  font-weight: 500;
  font-size: 14px;
}
.day-filter {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex-wrap: nowrap;
  overflow: auto;
}
.pill {
  background-color: #f6f6f6;
  border-radius: 16px;
  color: #717171;
  font-size: 12px;
  text-align: center;
  padding: 10px 0px;
  min-width: 72px;
  margin-right: 8px;
  outline: none;
  text-transform: capitalize;
}
.pill.active {
  background-color: #333333;
  color: white;
}
.sessions-container {
  background-color: #f6f6f6;
}
.timeslot-container .md-tab.md-active {
  color:#333;
  font-weight: 600;
}
.timeslot-container md-tabs.md-default-theme md-ink-bar, md-tabs md-ink-bar {
    color: #333;
    background: #333;
}
.timeslot-container md-content.md-default-theme, md-content{
  background-color: transparent;
}
.timeslot-container .md-tab {
  text-transform: capitalize;
  font-size: 14px;
}
.timeslot-container md-tabs-wrapper {
  background-color: white;
  box-shadow:  3px 6px #00000029;
}
.session-slot-wrapper {
  background-color: white;
}
.session-slots-active-filter {
    justify-content: space-between;
    font-weight: 600;
    background: white;
    padding: 0 16px;
}
.timeslot {
  height: 48px;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 20px;
  font-weight: 600;
  padding:0 16px;
  justify-content: space-between
}
.timeslot--timezone {
  font-weight: 500;
  font-size: 12px;
  margin: 4px 0px;
  color: #717171;
  display: flex;
  align-items: center
}
.session-workout, .session-yoga {
  padding: 16px;
  position: relative;
  overflow: hidden;
  outline: none;
  display: flex;
  align-items: center;
}
.session-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-right: 1px solid #dedddd;
  min-width: 85px;
}

.session-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  color: #333333;
}
.session-details-info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 16px;
  height: 76px;
}
.remove-margin {
  margin: 0 !important;
}
.remove-padding{
  padding: 0 !important
}

.session-details-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: #333333;
  width: 100%;
  height: 72px;
}
.session-details-info:nth-child(2)  {
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
}

.session-tile-wrapper {
  border-radius: 8px;
  background-color:white;
  margin-bottom: 16px;
}
.workout-no-sessions {
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-a {
  background-color: #e46f80;
}
.color-b {
  background-color: #4980e5;
}
.color-c {
  background-color: #5bc7be;
}
.workout-header {
  display: flex;
  justify-content: space-between;
}
.workout-footer {
  display: flex;
  justify-content: space-between;
}
.workout-title {
  font-size: 16px;
  font-weight: 600;
}
.workout-time {
  font-size: 14px;
  font-weight: 500;
}
.workout-slots {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    border-radius: 12px;
    padding: 4px 4px;
    margin-top: 8px;
    max-width: 53px;
}
.workout-type-yoga {
  background-color: #E1E8D7;
  border-color: #E1E8D7;
  color:#688B3B;
}
.workout-type-workouts, .workout-type-workout {
  background-color: #DAE6FA;
  border-color: #DAE6FA;
  color: #4980E5;
}
.workout-type-specials, .workout-type-special {
  background-color: #e8f9f6;
  border-color: #e8f9f6;
  color: #14C6A4
}

.workout-slots-sold {
  font-weight: 500;
  color: white !important;
  background-color: #717171 !important;
  border-color: #717171;
}
.workout-slots-booked {
  font-weight: 500;
  color: white !important;
  background-color: #333333 !important;
  border-color: #333333;
}
.workout-session-sold {
  background-color: #EEEEEE;
  color: #9D9D9D !important;
}
.workout-duration {
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid #ffffff;
  padding: 5px 10px;
}
.workout-coach {
  font-weight: 500;
  font-size: 12px;
  margin: 4px 0px;
  color:#717171;
}
.workout-info {
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.circles::before {
  position: absolute;
  content: " ";
  bottom: -57px;
  right: -55px;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background-color: #ffffff1f;
}
.circles::after {
  position: absolute;
  content: " ";
  bottom: -36px;
  right: -34px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #ffffff29;
}
.square::before {
  position: absolute;
  content: " ";
  bottom: -15px;
  right: -9px;
  height: 70px;
  width: 70px;
  background-color: #ffffff1f;
}
.square::after {
  position: absolute;
  content: " ";
  bottom: -20px;
  right: -12px;
  height: 56px;
  width: 56px;
  background-color: #ffffff29;
}
.square-rotated::before {
  position: absolute;
  border-radius: 8px;
  content: " ";
  bottom: -15px;
  right: -18px;
  height: 70px;
  width: 70px;
  background-color: #ffffff1f;
  transform: rotate(-20deg);
}
.square-rotated::after {
  transform: rotate(-20deg);
  position: absolute;
  border-radius: 8px;
  content: " ";
  bottom: -14px;
  right: -22px;
  height: 56px;
  width: 56px;
  background-color: #ffffff29;
}
.workout-info-header {
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 16px;
  margin-bottom: 16px;
  position: relative;
  justify-content: space-between;
  overflow: hidden;
  background-size:100%;
  background-repeat: no-repeat;
  object-fit:cover;
}
.workout-info-header-image-container {
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  margin-bottom: 16px;
  position: relative;
  justify-content: space-between;
  overflow: hidden;
  background-size:100%;
  background-repeat: no-repeat;
  object-fit:cover;
}
.wokrout-info-header-back{
  padding: 24px 16px;
}
.workout-info-session-details {
    min-height: 100px;
    display: flex;
    align-items: flex-end;
    padding: 0 16px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.99) 100%,
        rgba(0, 0, 0, 1) 100%
     );
}
.instructor-showcase {
    display:flex;
    flex-wrap:nowrap;
    overflow:auto;
    padding: 24px 16px;
}
.instructor-showcase-tile {
    height:168px;
    width:112px;
    object-fit:cover;
    border-radius: 8px;
    margin-right: 16px;
}
.instructor-showcase-tile-image {
    height:168px;
    width:112px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 16px;
}
.instructor-action-more {
    display: flex;
    flex-direction: row-reverse;
    padding-top: 14px;
}
.instructor-action-more span {
    text-decoration: none;
    text-transform: uppercase;
    color: #121212;
    font-weight: 600;
}
.circles-after::before {
  position: absolute;
  content: " ";
  bottom: -100px;
  right: -110px;
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background-color: #ffffff1f;
}
.circles-after::after {
  position: absolute;
  content: " ";
  bottom: -70px;
  right: -80px;
  height: 180px;
  width: 180px;
  border-radius: 50%;
  background-color: #ffffff29;
}

.workout-instructor {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}
.date-time {
  display: flex;
}
.video {
  margin-right: 16px;
}
.session-details {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.session-info-title {
  font-size: 20px;
}
.session-info-label {
  font-size: 12px;
  color: #333333;
}
.instructor {
  padding: 16px;
}
.instructor-tile {
  background-color: #efdcb9;
  border-radius: 8px;
  padding: 16px;
}

.instructor-basic {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  outline: none;
}
.instructor-profile {
  display: flex;
}
.instructor-avatar {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
}
.instructor-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}
.instructor-name {
  font-size: 16px;
}
.instructor-desg {
  font-size: 12px;
}
.instructor-intro {
  font-size: 14px;
  margin-top: 16px;
}
.instuctor-intro-hidden {
  display: none;
}
.workout-about {
  padding: 0 16px;
}
.space-for-sticky-button {
  height: 50px;
}
.workout-page-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}

.workout-info-title {
  color: #121212;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  height: 48px;
}
.workout-details {
  color: #717171;
  margin-bottom: 16px;
}

.workout-details > ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
}

.workout-routine-duration {
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}
.focus-tiles {
  display: flex;
  align-items: center;
}
.focus-area {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 80px;
  min-width: 80px;
  align-items: center;
}
.focus-area-name {
  font-size: 12px;
  text-align: center;
}
.focus-avatar {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.workout-routine {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  color: #333333
}
.workout-routine-name {
  font-size: 14px;
  font-weight: 400;
}
.workout-routine-name {
  font-size: 14px;
}
.book-class-btn {
  background-color: #688B3B;
  padding: 16px;
  text-align: center;
  outline: none;
  border:none;
  width: 100vw;
  color:white;
  font-size: 14px;
  font-weight: 500;
  min-width: 50%;
  max-width: 50%;
  -webkit-backface-visibility: hidden;
  margin:0;
}
.book-class-btn-alt:disabled {
  background-color: gray;
  cursor:not-allowed;
}
.book-session-btn-container {
  display: flex;
  position: fixed;
  bottom: 0;
  left:0;
  right: 0;
  z-index:9999;
  box-shadow: 3px 0px 6px #00000029;
}

.session-booked-already{
  display: flex;
  align-items: center;
}
.book-session-view-other {
  min-width: 50%;
  max-width: 50%;
  display: flex;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #333333;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  text-align: center
}
.book-session-main-cta {
     padding: 16px 0;
}

.success-container {
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.success {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.success-text {
color:#333333;
font-weight: 500;
text-align: center;
padding: 0 18px;
height: 48px;
font-size: 20px;
margin-bottom: 16px;
}
.success-text p {
margin: 0;
}
.zoom-card {
border-radius: 8px;
box-shadow: 0px 3px 6px #00000029;
padding-bottom: 22px;
}
.steps {
display: flex;
align-items: center;
height: 48px;
color: #EF4437;
font-size: 16px;
padding: 0 16px;
font-weight: 500;
}

.header-logo {
  width: 120px;
  padding-left: 16px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
}

.promo-header {
  display: flex;
  align-items: center;
  padding: 16px;
}

.promo-banner-img {
  width: 100%;
}
.zoom-download {
display: flex;
align-items: center;
height: 64px;
color:#333333;
font-size: 16px;
padding: 0 16px;
font-weight: 500;
}
.zoom-download img {
width:40px;
margin-right: 16px;
}
.zoom-download-text {
display: flex;
align-items: center;
height: 64px;
color:#717171;
font-size: 12px;
padding: 0 16px;
font-weight: 400;
}
.zoom-download-btn {
display: flex;
align-items: center;
padding: 0 16px;
}
.zoom-btn {
width: 100%;
outline: none;
padding: 10px;
color:white;
text-decoration: none;
border-radius: 18px;
background-color: #48A7F9;
text-align: center;
}

.skeleton-wrapper {
  height: 80px;
}
.skeleton-wrapper .skeleton-line {
  height: 16px;
  margin-top: 12px;
  border-radius: 7px;
  background-image: linear-gradient(90deg, #F4F4F4 0%, rgba(229, 229, 229, 0.8) 40%, #F4F4F4 80%);
  background-size: 600px;
  animation: shine-lines 2s infinite ease-in-out;
}
.skeleton-wrapper .skeleton-line ~ .skeleton-line {
  background-color: #ddd;
}

@keyframes shine-lines {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

.workout-solution-info {
  color: #717171;
  font-size: 14px;
}

.workout-solution {
  padding: 0 16px;
}
.workout-solution li {
  display: flex;
  align-items: center;
  margin: 16px 0;
}

.workout-solution ul {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.workout-solution img {
  margin-right: 16px;
  width: 24px;
  height: 24px;
}

.workout-solution p {
  margin: 0;
}

.landing-user-outer {
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 2px;
  grid-template-rows: minmax(72px, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: calc(80% - 16px);
  overflow-x: scroll;
  scroll-snap-type: x proximity;
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.landing-user-outer:after,
.landing-user-outer:before {
  width: 1px;
}


.landing-user-love .testimonial {
  display: flex;
  align-items: flex-start;
  color: #717171;
  font-size: 12px;
  border-radius: 8px;
  border: 1px solid #DFDFDF;
  padding: 16px;
}

.landing-user-love .session-title {
  padding: 0 16px;
 }

 .landing-user-love .media-preview-container {
  z-index: 2;
 }

.testmonial-thumb-wrap{
  margin: 16px;
  margin-top: 0;
 }

.user-love-testimonial-thumb {
  width: 100%;
}

.landing-user-love .testimonial-user-avatar {
  min-width: 40px;
  min-height: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

.landing-user-love .testimonial-user-name {
  margin: 0;
  text-align: right;
  color: #333333;
}


.landing-user-love .testimonial-rating-img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  object-fit: cover;
}

.landing-user-love .testimonial-rating-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.landing-faq {
  padding: 0 16px;
  margin-bottom: 64px;
}

.faq-wrap {
  font-size: 14px;
  margin: 16px 0;
  padding: 8px 16px;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
}

.faq-answer-text {
  color: #717171;
}

.faq-title {
  color: #121212;
  font-weight: 600;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-download-zoom {
  padding: 16px;
  border: 1px solid #DFDFDF;
  margin: 0 16px;
  margin-top: 16px;
  border-radius: 8px;
}

.landing-download-wrap {
  display: flex;
  align-items: center;
}

.landing-download-text {
  font-weight: 600;
}

.landing-download-image {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.landing-download-desc{
  font-size: 12px;
  color: #717171;
}

.landing-download-cta-wrap {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 24px;
  justify-content: end;
}

.landing-download-cta-wrap .have-zoom {
  color: #333333;
  font-weight: 600;
  font-size: 14px;
}

.landing-download-cta-wrap .download-zoom {
  font-size: 14px;
  color: #48A7F9;
  font-weight: 600;
}


.landing-upcoming-session {
  position: relative;
  margin: 16px;
  background-color: #DAE6FA;
  padding: 16px;
  border-radius: 8px;
  padding-top: 8px;
}

.landing-upcoming-session .upcoming-card {
  display: flex;
  flex-direction: column;
}

.landing-upcoming-session .upcoming-info {
  display: flex;
  align-items: flex-start;
  /* padding-bottom: 48px; */
}

.landing-upcoming-session .upcoming-image{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  object-fit: cover;
}

.landing-upcoming-session .upcoming-schedule{
  display: flex;
  flex-direction: column;
  color: #333333;
  font-weight: 500;
}

.landing-page-fixed-cta {
  position: fixed;
  font-weight: 600;
  bottom: 0;
  width: 100%;
  background-color: #EF4437;
  height: 48px;
  color: white;
  align-items: center;
  display: flex;
  justify-content: center;
  z-index: 3;
  text-decoration: none;
}
.ios-book-cta {
  height: 60px;
}

.landing-bottom-sheet {
  position: fixed;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.landing-sheet-title {
  padding-top: 20px;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.landing-sheet-image{
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
}

.landing-sheet-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  outline: none;
}

.landing-sheet-desc {
  display: flex;
  align-items: center;
}

.landing-sheet-label{
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.landing-sheet-note {
  font-size: 12px;
  font-weight: 600;
  color: #717171;
  margin: 0;
}

.landing-sheet-info{
  margin-left: 16px;
}

.landing-video {
  height: 70vh;
  width: 100vw;
  object-fit: cover;
}
@media only screen and (min-width: 482px) {
  .landing-video {
    max-width: 414px;
  }
}

.landing-video-wrap {
  position: relative;
}

.landing-video-section {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.landing-manage-booking {
  display: flex;
  margin: 0 16px;
  margin-top: 16px;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  background-color:#333;
  color:white;
  min-height: 20px;
}

.landing-manage-title {
  font-size: 16px;
  font-weight: 600;
  color:white;
  width: 80%;
}

.landing-manage-action {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  outline: none;
}

.upcoming-schedule .schedule-time {
  font-size: 14px;
}

.landing-upcoming-session .upcoming-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #C4CFE2;
  width: 100%;
  height: 48px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.landing-upcoming-session .invite-user {
  font-size: 14px;
  font-weight: 500;
  margin-right: 16px;
}
.alert-wrapper {
  padding: 16px;
  background: #ffe1ab;
  border-radius: 8px;
  margin-bottom: 16px;
}
.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.bg-workout {
  background-color: #4980E5;
}
.bg-workout-light {
  background-color: #DAE6FA;
}
.bg-yoga {
  background-color: #688B3B;
}
.bg-yoga-light {
  background-color: #E1E8D7;
}
.bg-specials {
   background-color: #E46F80;
}
.bg-specials-light {
   background-color: #E5CDD1;
}

.booked-session {
  width: 100%;
  margin-top:16px;
}

.booked-coach {
  border-radius: 8px;
  padding: 16px;
  color: white;

}
.booked-coach-profile {
  display: flex;
}
.booked-coach-avatar {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
}
.booked-coach-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booked-coach-name {
  font-size: 16px;
}
.booked-coach-desg {
  font-size: 12px;
}

.remaining-sessions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color:#121212;
  font-size: 16px;
  font-weight: 600;
  height:48px;
  padding: 0 16px;
  padding-top: 16px;
}
.memebership-info {
  font-size: 14px;
  height:72px;
  padding: 0 16px;
  color:#717171;
  display: flex;
  align-items: center;
}
.membership-by-sessions {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  color:#EF4437;
  font-size: 14px;
  font-weight: 600;
  height:48px;
  border-top: 1px solid #DFDFDF;
  padding: 0 16px
}
.empty-space {
  background-color:#F6F6F6;
  width: 100%;
  height:16px;
}
.membership-booked-session, .membership-history {
  padding: 0 16px;
}
.memebership-title {
  color:#121212;
  font-size: 16px;
  font-weight: 600;
  height:48px;
  display: flex;
  align-items: center;

}
.upcoming-sessions {
  border-radius: 8px;
  background-color: #DAE6FA;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.share-upcomming-sessions {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  background-color: #aeb8c8;
  color:#333333;
  padding:16px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.upcoming-sessions-tile {
  display: flex;
  align-items: center;
  padding:24px;
  justify-content: space-between;
}
.upcoming-sessions-coach-avatar {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
}
.upcoming-sessions-coach-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.upcoming-sessions-with-coach {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.upcoming-sessions-coach-name {
  font-size: 16px;
  font-weight: 500;
}
.upcoming-sessions-coach-desg {
  font-size: 12px;
}
.upcoming-sessions-card-menu-item {
  padding: 8px;
  justify-content: flex-start !important;
}
.upcoming-sessions-cancel-session-disabled-item {
  color: rgba(0,0,0,0.38);
}
.upcoming-session-menu-item-icon {
 width: 16px;
 margin-right: 4px;
}
.history-sessions-tile {
  display: flex;
  margin-bottom: 24px;
  color: #333333;
}

.payment-bottom-sheet {
  position: fixed;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  max-height: 100vh;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-title {
  font-size: 20px;
  font-weight: 600;
  color: #EF4437;
  margin: 0;
}

.payment-header {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #121212;
  font-weight: 600;
  padding: 0 16px;
  margin-top: 16px;
}
.payment-header-title {
  margin-bottom: 16px;
}

.payment-price {
  font-size: 20px;
  font-weight: 600;
  color: #EF4437;
  margin: 0;
}

.payment-desc {
  font-size: 14px;
  color: #717171;
  font-weight: 600;
}


.payment-extra-discount {
  font-size: 12px;
  font-weight: 600;
  background-color: #EF4437;
  width: 100%;
  padding: 8px 16px;
  color: white;
}
.strike {
  text-decoration: line-through;
}

.font-black {
  color: #333333;
}

.discount-banner {
  position: absolute;
  width: 200px;
  padding: 4px;
  background-color: #EF4437;
  color: #fff;
  text-align: center;
  transform: rotate(45deg) translate(31%, -40px);
  right: 0;
  top: 0;
  font-size: 14px;
  font-weight: 500;
}

.manage-booking-meeting {
  padding: 0 24px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
}

.zoom-meeting-id {
  color: #2A7EF9;
}
.payment-card {
  outline: none;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .30);
  padding: 0;
  margin: 16px;
  margin-bottom: 24px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.payment-strike-through {
  color: #717171;
  text-decoration: line-through;
  margin-right: 8px;
}

.payment-free-trial {
  background-color: #333333;
  display: grid;
  grid-template-columns: 3fr 1fr;
  padding: 16px;
  align-items: center;
  margin: 0 16px;
  border-radius: 8px;
  box-shadow: 0px 3px 6px #00000029;
  margin-bottom: 10px
}

.payment-ft-cta {
    max-height: 36px;
    background-color: #333333;
    padding: 8px 16px;
    border-radius: 18px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 8px;
}

.payment-ft-wrap {
  display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.payment-ft-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
}
.payment-view-btn {
  color: #EF4437;
}

.payment-more-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #121212;
  font-weight: 600;
  padding: 0 16px;
  outline: none;
  padding-bottom: 16px;
}

.payment-discount-img {
  width: 100%;
}
.divider {
  min-height: 16px;
  background-color: #eeeeee;
}

.payment-ft-img-wrap {
  text-align: right;
}
.payment-ft-desc {
  margin-bottom: 0;
  color:white;
  margin-top: 10px;
}
.no-sessions {
  display: flex;
  align-items: center;
  background-color: white;
}
.no-session-title {
  font-weight: 600;
  height: 48px;
  display: flex;
  align-items: center;
  color: #717171;
  padding: 16px 0px;
  text-align: left;
  font-size: 14px;
}
.no-img-session {
  width: 40px;
  padding: 0 24px;
}
.workout-session-booked {
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #F6F6F6;
  font-weight: 500;
}
.workout-session-booked-icon {
  width:20px;
  height:20px;
  margin-left: 8px;
  margin-right: 8px;
}
.booked-go-home {
    color: #EF4437;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 48px;
    justify-content: center;
    padding-top: 16px;
}
.memebership-details{
  color:#717171;
  font-weight: 600;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.session-difficulty {
  display: block;
  height: 8px;
  width: 8px;
  background-color: gray;
  margin-right: 8px;
  border-radius: 2px;
}
.session-intermediate {
  background-color: #FBC934;
}
.session-beginner {
  background-color: #8BC249;
}
.session-advanced {
  background-color: #EF4437;
}
.payment-failure-container {
  display: flex;
  height: 90vh;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  justify-content: center;
}
 @media only screen and (max-width: 482px) {
    .payment-failure-container {
      max-width: 100vh
    }
  }
.payment-failure-icon {
  width:80px;
}
.payment-failure-message {
  color:#333333;
  font-weight: 600;
  font-weight: 16px;
  display: flex;
  align-items: center;
  height:48px;
}
.payment-failure-payment {
  color:#717171;
  font-size: 14px;
  height: 48px;
  font-weight: 600;
  padding: 0 32px;
  text-align: center;
  display: flex;
  align-items: center;
}
.payment-failure-retry {
  text-align: center;
  display: flex;
  height: 72px;
  align-items: center;
}
.payment-failure-retry-btn {
  border: none;
  background-color: #EF4437;
  border-radius: 18px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  width: 120px;
  height: 36px;
}
.payment-failure-support {
  color:#333333;
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.margin-bottom-16 {
  margin-bottom: 16px;
}

body md-toast {
  position: fixed !important;
  z-index: 99999999;
}
.payment-bottom-sheet-info {
  width:100%;
  padding: 16px;
}


.bottom-sheet-prefetch .landing-bottom-sheet,
.bottom-sheet-prefetch .account-modal-wrapper
{
  height: 1px;
  width: 1px;
  overflow: hidden;
  padding: 0;
}
.remove-outline {
  outline: none;
}
.relative-container {
    position: relative
}
.play-icon-container {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   outline: none;
}
.media-preview-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000ed;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-preview-header {
    display: flex;
    flex-direction: row-reverse;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.media-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (min-width: 482px) {
  .media-preview-image img {
    width: 70%;
  }
}
.media-preview-video {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}
.media-preview-video video {
    outline:none;
    width :100%
}
@media only screen and (min-width: 482px) {
  .media-preview-video video {
    width :70%
  }
}
.trainer-page-trainer-name {
    font-size:24px;
    font-weight:700;
    padding:16px;
    padding-top:0;
}
.trainer-page-trainer-info {
    font-size:14px;
    color:#717171;
    padding: 16px;
    padding-top:0;
}
.trainer-page-container {
    background-color: #F6F6F6
}
.trainer-page-trainer-upcoming {
    height:48px;
    font-weight:600;
    color:#333333;
    font-size:20px;
    display:flex;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
}
.play-icon-white {
    width:48px;
}
.back {
    outline:none
}
.close-icon {
    width: 24px;
    height: 24px;
}

.md-primary.md-cancel-button.md-button {
  color:#717171;
}

.md-button.md-confirm-button.md-primary {
  color: #EF4437;
}

.ft-activated {
  background-color: #8bc249;

}

.spinner {
  -webkit-animation: rotate 2s linear infinite;
          animation: rotate 2s linear infinite;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 20px;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.spinner .path {
  stroke: #ffffff;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}


.checkmark {
  position: absolute;
  top: 5px;
  left: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #8bc249;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #8bc249;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #8bc249;
  }
}
video::-webkit-media-controls-panel {
    display: flex !important;
    opacity: 1 !important;
}
.testomonial-rating img {
  width: 12px;
  height: 12px;
}

.faq-cta-wrapper {
  height: 48px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.faq-cta-action {
  color: #77463A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.text-container {
  height: 48px;
  display: flex;
  align-items: center;
}
.lading-upcoming-title {
  font-size: 16px;
  color:#121212;
  font-weight: 600;
  display: block;
  padding: 0 16px;
}
.remove-text-decoration {
  text-decoration: none;
  color:inherit;
}
.flex-justify-betweem {
  justify-content: space-between;
}
.landing-page-upcoming-sessions {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ladning-upcoming-sessions-grid{
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  display: grid;
  grid-gap: 16px;
  grid-auto-columns: 256px;
  grid-auto-rows: 120px;
  grid-auto-flow: column;
  overflow-x: scroll;
  grid-column: 1 / -1;
  padding: 8px 16px;
}
.landing-upcoming-session-tile {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 3px 6px #00000029;
}
.landing-upcoming-session-info{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.landing-upcoming-session-title{
  font-size: 16px;
  font-weight: 600;
}
.landing-upcoming-session-time {
  font-size: 14px;
  font-weight: 600;
}
.landing-upcoming-session-coach {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.landing-upcoming-session-coach img {
  height: 64px;
  width: 64px;
  border-radius: 50%;
  object-fit: cover
}
.landing-upcoming-session-view-all {
  margin: 8px 0px;
}
.theme-workout-primary {
  background-color: #6BC0CE;
}
.theme-workout-secondary {
  background-color: #D6F2F2;
}
.theme-workout-tertiary {
  background-color: #34888C;
}
.theme-workout-tertiary-text {
  color: #34888C;
}

.theme-yoga-primary {
  background-color: #75BF7A;
}
.theme-yoga-secondary {
  background-color: #DCF4DD;
}
.theme-yoga-tertiary {
  background-color: #417F41;
}
.theme-yoga-tertiary-text {
  color: #417F41;
}

.theme-specials-primary {
  background-color: #9E86B7;
}
.theme-specials-secondary {
  background-color: #E9E4F7;
}
.theme-specials-tertiary {
  background-color: #794C84;
}
.theme-specials-tertiary-text {
  color: #794C84;
}

.theme-masterclass-primary {
  background-color: #333333;
}
.theme-masterclass-secondary {
  background-color: #FFFABC;
}
.theme-masterclasss-tertiary {
  background-color: #333333;
}
.theme-masterclasss-tertiary-text {
  color: #333333;
}



.theme-workout.md-checked .md-thumb {
  background-color: #34888C !important;
}
.theme-workout.md-checked .md-bar {
  background-color: #D6F2F2 !important;
}

.theme-yoga.md-checked .md-thumb {
  background-color: #75BF7A !important;
}
.theme-yoga.md-checked .md-bar {
  background-color: #DCF4DD !important;
}

.theme-specials.md-checked .md-thumb {
  background-color: #794C84 !important;
}
.theme-specials.md-checked .md-bar {
  background-color: #E9E4F7 !important;
}

.theme-masterclass.md-checked .md-thumb {
  background-color: #333333 !important;
}
.theme-masterclass.md-checked .md-bar {
  background-color: #FFFABC !important;
}


.remove-border-radius {
  border-radius: 0;
}

.desktop-banner {
  width: 50%;
  background-color: #0087B1;
  color:white;
}
.desktop-banner-container {
  padding: 100px;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100vh - 200px);
}
.desktop-logo img {
  width: 200px;
}
.desktop-heading {
  font-size:40px;
  text-align: center;
  padding: 0 60px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.desktop-subheading {
  font-size: 20px;
  text-align: center;
  padding: 0 24px;
}
.desktop-input-text {
  margin: 32px 0px;
}
.desktop-input-text input{
  border: 1px solid white;
  background-color: #0087b1;
  color: white;
  padding: 17px;
  border-radius: 8px;
  outline:none;
}
.desktop-input-cc-number {
  width: 40px;
  margin-right: 16px;
}
.desktop-input-phone-number {
  width: 230px;
}
.desktop-input-text input::-webkit-input-placeholder { /* Edge */
  color: white;
}

.desktop-input-text input:-ms-input-placeholder { /* Internet Explorer */
  color: white;
}

.desktop-input-text input::placeholder {
  color: white;
}

.desktop-submit-btn {
  background: white;
  border: none;
  outline: none;
  padding: 8px 20px;
  border-radius: 20px;
  color: #0087b1;
  font-family: proxima-nova, sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.app-container{
  width: 50%;
}
.app-container-box {
  width: 414px;
  overflow: scroll;
  box-shadow: 0px 3px 6px 3px #DBDADA;
  position: relative;
  margin-top: 4px;
  border-radius: 8px;
  height: 800px;
}
.mobile-app {
  position: relative;
}

.flex{
  display: flex
}
.flex--center{
  display: flex;
  justify-content: center;
  align-items: center
}
.flex--justifybetween{
  display: flex;
  justify-content: space-between;
  align-items: center
}

::-webkit-scrollbar {
  width: 2px;
  height: 0px
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px transparent;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ececec;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d2d1d1;
}

.landing-page-account{
  position: relative
}
.landing-page-account img {
  cursor: pointer
}

.landing-page-account-menu {
  position: absolute;
  min-width: max-content;
  right: 0;
  background: white;
  box-shadow: 0px 3px 6px #00000029;
  z-index: 99;
  border-radius: 8px;
 }
 .landing-page-account-menu .child {
   padding: 12px;
   color:#333333;
   font-weight:600;
   font-size: 14px;
   text-decoration: none;
   display: block
 }
 .landing-page-account-menu .child:hover {
   background-color: #f0f0f0;
   cursor:pointer;
   border-radius: inherit;
 }
 .landing-page-account-get-started {
   font-size: 14px;
   color: #EF4437;
   font-weight: 600;
   cursor: pointer
 }

@media only screen and (min-width: 1200px) {
  .book-session-btn-container{
    max-width: 414px;
    margin:auto;
    position: sticky;
    z-index: 0;

  }
  .landing-page-fixed-cta {
    position: sticky;
  }
}
@media only screen and (max-width: 500px) {
  .desktop-banner {
    display: none
  }
  .app-container {
    width: 100%
  }
}

.corporate-banner img {
  width: 100%;
}
