@charset "UTF-8";
/*
 * category: _helper
 * prefix: （none）
 * role:
 * Defining basic color and typography of the project
 * -- Definition of variables used in scss (_variable)
 * -- Definition of mixins used in scss (_mixin)
*/
@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css";
@import 'https://fonts.googleapis.com/css?family=Nunito:300,400,700';
@keyframes tick {
  0% {
    transform: scale(0);
  }
  90% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

/*
 * category: _helper
 * prefix: （none）
 * role:
 * Defining basic color and typography of the project
 * -- Definition of variables used in scss (_variable)
 * -- Definition of mixins used in scss (_mixin)
*/
/*
 * category: _foundation
 * prefix: （none）
 * role:
 * Prerequisite style for giving unique style
 * -- remove browser default style (_reset)
 * -- load web font/icon font (_font)
 * -- Style applied directly to HTML tag as default style (_base)
*/
@font-face {
  font-family: 'SourceSansRegular';
  src: url("../assets/fonts/SourceSansPro-Regular.ttf") format("truetype");
}

@font-face {
  font-family: 'SourceSansSemiBold';
  src: url("../assets/fonts/SourceSansPro-SemiBold.ttf") format("truetype");
}

/*
 * category: _foundation
 * prefix: （none）
 * role:
 * Prerequisite style for giving unique style
 * -- remove browser default style (_reset)
 * -- load web font/icon font (_font)
 * -- Style applied directly to HTML tag as default style (_base)
*/
body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

address {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0 0 0 15px;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  cursor: pointer;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

input {
  background: transparent;
  border: none;
}

dl,
dt,
dd {
  margin: 0;
}

fieldset {
  border: none;
}

figure {
  margin: 0;
  padding: 0;
  border: 0;
}

textarea:focus, input:focus {
  outline: none;
}

/*
 * category: _foundation
 * prefix: （none）
 * role:
 * Prerequisite style for giving unique style
 * -- remove browser default style (_reset)
 * -- load web font/icon font (_font)
 * -- Style applied directly to HTML tag as default style (_base)
*/
body {
  font-family: "SourceSansSemiBold", sans-serif;
}

a {
  text-decoration: none;
  color: #192637;
}

/*
 * category: _layout
 * prefix: l-
 * role:
 * Defines the styles of large common containers such as the header area,
 * main contents area, general section, sidebar and footer
*/
.l-mainContent {
  min-height: 100vh;
}

.l-mainContent.is-font-semibold {
  font-family: "SourceSansSemiBold", sans-serif;
}

.l-mainContent.is-bg-light {
  background: #EEEEEE;
}

.l-mainContent.not-full-height {
  min-height: unset;
}

.l-header {
  background: #FFFFFF;
}

.l-header__body {
  padding: 30px 20px;
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
}

.l-section {
  max-width: 1440px;
  margin: 0 auto 30px auto;
  padding: 30px 20px 30px 20px;
}

.l-section.is-fullwidth {
  max-width: 100%;
}

.l-section.is-bg-light-grey {
  background: #EEEBEE;
}

.l-section.is-bg-white {
  background: #FFFFFF;
}

.l-section__head {
  max-width: 1440px;
  margin: 0 auto;
}

.l-section__body {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 30px;
}

.l-section.is-upcoming .l-section__body {
  display: flex;
}

.l-section.is-upcoming .l-section__body.has-post {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.l-section.is-upcoming .l-section__foot {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.l-section.is-breadcrumb {
  padding: 0 20px;
  margin-bottom: 0;
}

.l-section.is-breadcrumb .l-section__body {
  padding: 17px;
  margin-top: 0;
}

.l-section.is-breadcrumb.is-home .l-section__body {
  padding: 0;
}

.l-section.is-my-account {
  padding-top: 0;
  gap: 30px;
  display: flex;
}

.l-section.is-my-account .l-section__left {
  min-width: 270px;
  padding: 30px 10px;
  background: #FFFFFF;
  height: 599px;
}

.l-section.is-my-account .l-section__left .c-title {
  padding-left: 20px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 500;
}

.l-section.is-my-account .l-section__right {
  min-width: 870px;
  width: 100%;
  background: #FFFFFF;
  padding: 30px;
}

.l-section.is-my-account .l-section__right .c-title {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  margin-bottom: 30px;
}

.l-section.is-my-account .l-section__right .c-title a:hover {
  color: #192637;
}

.l-section.is-singlePanel .l-section__left {
  display: none;
}

.l-section.is-singlePanel .l-section__right {
  width: unset;
  min-height: 600px;
}

.l-section.is-singlePanel .l-section__right p.c-text {
  color: #192637;
}

.l-section.is-searchBox {
  margin: 0 auto;
  padding: 10px 20px;
}

.l-section.is-searchBox .l-section__body {
  margin-top: 0;
}

.l-section.is-product-list {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.l-section.is-product-list .l-section__head {
  background: #FFFFFF;
  width: 290px;
  margin-left: 0;
  margin-right: 30px;
  padding: 30px;
}

.l-section.is-product-list .l-section__body {
  background: #FFFFFF;
  width: 100%;
  margin-top: 0;
  padding: 30px;
}

.l-section.is-product {
  margin: 0 auto;
  padding: 0 20px;
}

.l-section.is-product .l-section__body {
  background: #FFFFFF;
  padding: 30px;
}

.l-section.is-recommendProduct {
  margin: 30px auto;
  padding: 0 20px;
}

.l-section.is-recommendProduct .l-section__head {
  padding: 30px 30px 0;
}

.l-section.is-recommendProduct .l-section__body {
  margin-top: 0;
  padding: 0 30px 30px;
}

.l-section.is-payment {
  margin-top: 0;
  display: flex;
  gap: 30px;
}

.l-section.is-payment .l-section__body {
  margin-top: 0;
  width: 70%;
  margin-left: 0;
  padding: 30px;
  background: #FFFFFF;
}

.l-section.is-payment .l-section__body .appointmentInfo {
  margin-top: 30px;
}

.l-section.is-payment .l-section__body .appointmentInfo h2 {
  font-size: 18px;
}

.l-section.is-payment .l-section__foot {
  background: #FFFFFF;
  padding: 30px;
  width: 30%;
}

.l-section.is-book, .l-section.is-highlights {
  background-color: #FFFFFF;
}

.l-section.is-highlights .l-section__body {
  background: #FFFFFF;
  padding: 0 30px 30px;
}

.l-footer {
  margin-top: 30px;
  background: #FFFFFF;
  padding: 25px 20px 60px 20px;
}

.l-footer__body {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/*
 * category: _object
 * prefix: c-
 * role:
 * Defines small scale modules as patterns for re-use
*/
.c-button {
  font-size: 14px;
  color: #192637;
  padding: 13px 0 14px;
  display: block;
  text-align: center;
  border: 1px solid #EEEEEE;
  text-decoration: none;
}

.c-button.is-white-text {
  color: #FFFFFF;
}

.c-button.is-white-bg {
  background: #FFFFFF;
}

.c-button.is-primary-text {
  color: #ad5e99;
}

.c-button.is-grey-text {
  color: #8F9BA9;
}

.c-button.is-red-text {
  color: #EA6B75;
}

.c-button.is-primary-bg {
  background: #ad5e99;
}

.c-button.is-black-bg {
  background: #000000;
}

.c-button.is-grey-bg {
  background: #8F9BA9;
}

.c-button.is-rounder {
  border-radius: 23px;
}

.c-button.no-border {
  border: none;
}

.c-button.is-red-border {
  border: 1px solid #EA6B75;
}

.c-button.no-hover:hover {
  color: unset;
}

.c-button.has-icon img {
  margin-right: 10px;
}

.c-button.is-primary-border {
  border: 1px solid #ad5e99;
}

.c-button.is-light-grey-border {
  border: 1px solid #8F9BA9;
}

.c-text {
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
}

.c-text.is-primary {
  color: #ad5e99;
}

.c-text.is-sub-text {
  color: #8F9BA9;
}

.c-text.is-white-text {
  color: #FFFFFF;
}

.c-text.is-grey-text {
  color: #8F9BA9;
}

.c-text.is-error {
  color: #EA6B75 !important;
}

.c-text.is-semi-bold {
  font-weight: 600;
}

.c-text.is-bold {
  font-weight: 700;
}

.c-text.is-blue-text {
  color: #192637;
}

.c-text.is-small {
  font-size: 10px !important;
}

.c-text.is-big {
  font-size: 16px;
}

.c-text.is-bigger {
  font-size: 18px;
}

.c-text.no-display {
  display: none;
}

.c-line {
  width: 100%;
  height: 14px;
  border-bottom: 1px solid #EEEEEE;
  text-align: center;
}

.c-line.has-text-center span {
  font-size: 14px;
  background-color: #FFFFFF;
  padding: 0 10px;
}

.c-title {
  font-family: "SourceSansSemiBold", sans-serif;
  color: #192637;
  font-size: 24px;
  font-weight: 600;
}

.c-link.no-hover:hover {
  color: currentColor;
}

/*
 * category: _object
 * prefix: p-
 * role:
 * Define patterns which are unique to the project which consists of
 * several components and other elements
*/
.p-formCard {
  border-radius: 10px;
  background: #FFFFFF;
  padding: 30px;
  width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-formCard__logo {
  display: flex;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.p-formCard__logo img {
  width: 160px;
  height: 54px;
}

.p-formCard__separate {
  margin: 20px 0 30px 0;
}

.p-formCard__social a:not(:last-child) {
  margin-bottom: 10px;
}

.p-formCard__error {
  display: none;
  text-align: center;
}

.p-formCard__text {
  margin-top: 20px;
}

.p-formCard__text.is-resend-otp {
  margin: 30px 0;
}

.p-formCard__text.is-resend-otp a {
  margin-left: 15px;
}

.p-formCard.is-register .p-formCard__logo {
  margin-bottom: 90px;
}

.p-formCard.is-otp .p-formCard__logo {
  margin-bottom: 60px;
}

.p-formCard.has-error .p-formCard__error {
  display: block;
}

.p-formCard.has-error .p-formCard__logo {
  margin-bottom: 30px;
}

.p-formCard.is-information-form .p-formCard__logo {
  margin-bottom: 60px;
}

.p-formCard.is-welcome-screen .p-formCard__logo {
  margin-bottom: 190px;
}

.p-formCard.is-welcome-screen .p-formCard__form {
  margin-bottom: 40px;
}

.p-formCard.is-welcome-screen .p-formCard__form a {
  margin-bottom: 10px;
}

.p-formCard.is-reset-password .p-formCard__logo {
  margin-bottom: 60px;
}

.p-formCard.is-reset-password .p-formCard__text {
  margin-bottom: 35px;
}

.p-formCard.is-reset-success {
  padding-bottom: 120px;
}

.p-formCard.is-reset-success .p-formCard__logo {
  margin-bottom: 120px;
}

.p-formCard.is-reset-success .p-formCard__text {
  margin-bottom: 30px;
}

.p-formCard.is-update-information {
  width: 776px;
  margin: 30px auto;
  top: unset;
  left: unset;
  transform: unset;
}

.p-formCard.is-update-information .p-formCard__logo {
  margin-bottom: 60px;
}

.p-form__group:not(:last-child) {
  margin-bottom: 25px;
}

.p-form__group.is-phone-input {
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid #EEEEEE;
}

.p-form__group.is-otp {
  margin-top: 30px;
}


.p-form__label {
  color: #8F9BA9;
  font-size: 12px;
}

.p-form__input {
  font-size: 14px;
  color: #192637;
  border-radius: 5px !important;
}

.p-form__input.is-email-icon {
  background: url("../assets/images/login/icon-email.svg") no-repeat left center;
}

.p-form__input.is-lock-icon {
  background: url("../assets/images/login/icon-locker.svg") no-repeat left center;
}

.p-form__input.js-input-hidden-password {
  position: absolute;
  width: 100%;
  color: transparent;
  caret-color: black;
}

.p-form__input.js-input-hidden-password:focus {
  color: transparent;
}

.p-form__input.information-input-password {
  font-size: 21px;
  line-height: 14px;
  max-height: 49px;
}

.p-form__error {
  display: none;
  color: #EA6B75;
}

.p-form__description {
  margin-bottom: 30px;
}

.p-form__link {
  font-size: 14px;
}

.p-form__link a {
  text-decoration: none;
}

.p-form__link.is-forgotpwd a {
  color: #ad5e99;
}

.p-form.is-register .p-form__label {
  margin-bottom: 10px;
  opacity: 0;
}

.p-form.is-register .p-form__group.has-content .p-form__label {
  opacity: 1;
}

.p-form.is-otp {
  text-align: center;
}

.p-form.is-otp .p-form__input-wrapper {
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.p-form.is-otp .p-form__input-wrapper input {
  border: none;
  text-align: center;
  width: 35px !important;
  height: 45px !important;
  font-size: 40px !important;
  border-bottom: 2px solid #8F9BA9;
  margin-right: 10px;
  color: #192637;
  font-weight: bold;
}

.p-form.is-otp .p-form__input-wrapper input:focus {
  box-shadow: none;
  outline: none;
  border-color: #ad5e99;
}

.p-form.is-otp .p-form__input-wrapper input::-webkit-outer-spin-button, .p-form.is-otp .p-form__input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.p-form.is-otp .p-form__input-wrapper svg {
  position: relative;
  display: block;
  width: 240px;
  height: 2px;
}

.p-form.has-input-effect .p-form__group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-form.has-input-effect .p-form__group.is-signup a {
  margin-left: 15px;
}

.p-form.has-input-effect .p-form__group:has(> input.has-error) {
  margin-bottom: 40px;
}

.p-form.has-input-effect .p-form__label {
  position: absolute;
  left: 35px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  color: #8F9BA9;
  transition: 0.3s;
  font-size: 14px;
  z-index: -1;
  letter-spacing: 0.5px;
}

.p-form.has-input-effect .p-form__error {
  position: absolute;
  bottom: -16px;
  left: 0;
}

.p-form.has-input-effect .p-form__input {
  padding: 13px 13px 13px 35px;
  position: relative;
  border-bottom: 2px solid #EEEEEE;
  color: #192637;
}

.p-form.has-input-effect .p-form__input.has-error ~ .p-form__label {
  color: #EA6B75 !important;
}

.p-form.has-input-effect .p-form__input.has-error ~ .p-form__inputBorder {
  transition: none !important;
  width: 100% !important;
  background-color: #EA6B75 !important;
}

.p-form.has-input-effect .p-form__input.has-error ~ .p-form__error {
  display: block !important;
}

.p-form.has-input-effect .p-form__input:focus ~ .p-form__inputBorder, .p-form.has-input-effect .p-form__input.has-content ~ .p-form__inputBorder {
  width: 100%;
  transition: 0.4s;
}

.p-form.has-input-effect .p-form__input:focus ~ .p-form__label, .p-form.has-input-effect .p-form__input.has-content ~ .p-form__label {
  top: -5px !important;
  left: 0;
  font-size: 12px;
  transition: 0.3s;
}

.p-form.has-input-effect .p-form__input.has-content ~ .p-form__inputBorder {
  width: 0;
}

.p-form.has-input-effect .p-form__input.js-input-hidden-password {
  position: absolute;
  width: 100%;
  color: transparent;
  caret-color: black;
}

.p-form.has-input-effect .p-form__inputBorder {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ad5e99;
  transition: 0.4s;
}

.p-form.has-input-effect .p-form__submitBtn {
  margin-top: 10px;
}

.p-form.is-information-form .p-form__group:first-child {
  margin-top: 30px;
}

.p-form.is-information-form .p-form__group.has-help-text .p-form__inputBorder {
  bottom: 18px;
}

.p-form.is-information-form .p-form__group.has-help-text .btn-hide-text {
  bottom: 26px;
}

.p-form.is-information-form .p-form__group.has-help-text .p-form__label {
  top: 30%;
  transform: translateY(-30%);
}

.p-card {
  background: white;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 10px;
}

.p-card__title {
  font-size: 16px;
  font-weight: 500;
}

.p-card__time {
  font-size: 14px;
  color: #8F9BA9;
  font-weight: 400;
}

.p-card.is-upcoming {
  display: flex;
  padding-bottom: 40px;
  min-width: 370px;
  position: relative;
}

.p-card.is-upcoming.is-empty {
  width: 370px;
  align-items: center;
  padding-bottom: 20px;
}

.p-card.is-upcoming.is-empty .p-card__information {
  max-width: unset;
}

.p-card.is-upcoming .p-card__img {
  width: 60px;
  height: 70px;
  background: #EFDFEB;
  border-radius: 10px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-card.is-upcoming .p-card__img span {
  font-size: 18px;
  color: #ad5e99;
}

.p-card.is-upcoming .p-card__information {
  font-size: 16px;
  color: #192637;
  font-weight: 600;
  max-width: 220px;
  display: flex;
  flex-direction: column;
}

.p-card.is-upcoming .p-card__arrow {
  position: absolute;
  right: 20px;
  top: 30%;
}

.p-card.is-upcoming .p-card__arrow img {
  width: 24px;
  height: 24px;
}

.p-card.is-upcoming .p-card__button {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.p-card.is-upcoming .p-card__button button {
  border-radius: 15px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
}

.p-card.is-upcoming .p-card__button button img {
  margin-right: 6px;
}

.p-card.is-appointment {
  max-width: 210px;
  width: max-content;
  display: flex;
  /* text-align: center; */
  flex-direction: column;
  align-items: center;
}

.p-card.is-appointment .p-card__img {
  width: 210px;
  height: 120px;
}

.p-card.is-appointment .p-card__img img {
  width: 100%;
  height: 100%;
}

.p-card.is-appointment .p-card__title {
  margin-top: 20px;
  color: #192637;
  font-size: 18px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  font-weight: 400;
}

.p-card.is-appointment .p-card__title span {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.p-card.is-appointment .p-card__title a:hover {
  color: #192637;
}

.p-slide {
  position: relative;
}

.p-slide__information {
  margin-top: 20px;
}

.p-slide__information span {
  color: #192637;
  display: block;
}

.p-slide__title {
  font-size: 18px;
}

.p-slide__description {
  font-size: 14px;
  color: #8F9BA9 !important;
}

.p-slide.is-highlights .owl-prev, .p-slide.is-highlights .owl-next {
  position: absolute;
  top: 30%;
  transform: translateY(-30%);
  display: block;
  width: 24px;
  height: 24px;
}

.p-slide.is-highlights .owl-prev {
  left: -40px;
}

.p-slide.is-highlights .owl-next {
  right: -40px;
}

.p-slide.is-highlights .p-slide__img {
  width: 100%;
  height: 180px;
  background: url("../assets/images/home/rectangle.png");
  background-size: cover;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.p-slide.is-highlights .p-slide__img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #000000, #000000);
  opacity: .6;
}

.p-slide.is-highlights .p-slide__imgBanner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 60px);
  font-size: 30px;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}

.p-slide.is-highlights .p-slide__imgBanner.is-green {
  background: rgba(12, 65, 40, 0.8);
}

.p-slide.is-highlights .p-slide__imgBanner.is-blue {
  background: rgba(54, 164, 177, 0.8);
}

.p-slide.is-highlights .p-slide__imgBanner.is-orange {
  background: rgba(205, 127, 79, 0.8);
}

.p-slide.is-highlights .p-slide__imgBanner.is-pink {
  background: rgba(172, 84, 126, 0.8);
}

.p-menu {
  margin-top: 10px;
}

.p-menu.is-footerMenu {
  margin-bottom: 10px;
}

.p-menu.is-footerMenu .p-menu__link {
  font-size: 12px;
  color: #8F9BA9;
}

.p-breadcrumb__item {
  position: relative;
}

.p-breadcrumb__item:not(:last-child) {
  margin-right: 35px;
}

.p-breadcrumb__item:not(:last-child) .p-breadcrumb__link {
  color: #8F9BA9;
}

.p-breadcrumb__item:not(:last-child):after {
  position: absolute;
  top: 53%;
  right: -27px;
  transform: translateY(-50%);
  content: url("../assets/images/icon/icon-arrow-right-grey.svg");
  display: inline-block;
}

.p-breadcrumb__link {
  font-size: 14px;
}

.p-breadcrumb__link:hover {
  color: unset;
}

.p-navPanel {
  background: #FFFFFF;
  padding: 30px 10px;
}

.p-navPanel__link {
  font-size: 16px;
  margin-bottom: 5px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
}

.p-navPanel__link img {
  margin-right: 15px;
}

.p-navPanel__link:hover, .p-navPanel__link.is-active {
  color: #ad5e99;
  border-radius: 50px;
  background: #EFDFEB;
}

.p-listWallet {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 720px;
  margin-bottom: 30px;
}

.p-listWallet__item {
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  display: flex;
  align-items: start;
  max-width: 343px;
}

.p-listWallet__img {
  width: 44px;
  height: 44px;
}

.p-listWallet__img img {
  width: 100%;
  height: 100%;
}

.p-listWallet__information {
  width: 205px;
  margin: 0 10px 0 20px;
}

.p-listWallet__name {
  font-size: 16px !important;
  color: #192637 !important;
  font-weight: bold !important;
  margin-bottom: 0;
}

.p-listWallet__cardNumber {
  font-size: 14px;
  color: #8F9BA9;
}

.p-listWallet__cardDelete {
  font-size: 12px;
  color: #ad5e99;
  display: block;
  line-height: 16px;
}

.p-listWallet__cardDelete:hover {
  color: #ad5e99;
}

.p-listWallet__button {
  margin-top: 15px;
}

.p-listWallet__switch {
  position: relative;
  appearance: none;
  width: 24px;
  height: 10px;
  background: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.4s;
}

.p-listWallet__switch:checked {
  background: #ad5e99;
}

.p-listWallet__switch:checked:after {
  left: 50%;
}

.p-listWallet__switch:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: -1px;
  left: 0;
  background: #E9E9E9;
  border-radius: 50%;
  transform: scale(1.3);
  transition: 0.4s;
}

.p-walletForm__noti {
  display: flex;
  align-items: flex-start;
}

.p-walletForm__noti img {
  margin-top: 5px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.p-walletForm__noti span {
  color: #8F9BA9;
  font-size: 14px;
}

.p-walletForm__brand {
  background: #EEEEEE;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: end;
  margin: 30px 0;
}

.p-walletForm__brand .p-walletForm__brandTitle {
  font-size: 12px;
  color: #192637;
}

.p-listFamily {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 720px;
  margin-bottom: 30px;
}

.p-listFamily__item {
  padding: 20px;
  border: 1px solid #EEEBEE;
  display: flex;
  align-items: center;
  min-width: 343px;
  justify-content: space-between;
  border-radius: 10px;
}

.p-listFamily__name {
  color: #192637;
  font-size: 16px;
  font-weight: bold;
}

.p-listFamily__age, .p-listFamily__gender {
  color: #8F9BA9;
  font-size: 14px;
}

.p-listFamily__age {
  padding-right: 10px;
  border-right: 2px solid #CACFD3;
}

.p-listFamily__gender {
  padding-left: 10px;
}

.p-listFamily__type span {
  padding: 4px 16px 5px 16px;
  color: #ad5e99;
  font-size: 12px;
  background: #EFDFEB;
  border-radius: 12px;
}

.p-searchBox {
  border: 1px solid #ad5e99;
  background: rgba(239, 223, 235, 0.3);
  border-radius: 22.5px;
  padding: 13px 15px;
  position: relative;
}

.p-searchBox__btn {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
}

.p-searchBox__input {
  width: 90%;
  color: #ad5e99;
  font-size: 14px;
}

.p-searchBox__input::-webkit-input-placeholder {
  /* Edge */
  color: #ad5e99;
}

.p-searchBox__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ad5e99;
}

.p-searchBox__input::placeholder {
  color: #ad5e99;
}

.p-list__item {
  margin-left: -15px;
  margin-bottom: 5px;
}

.p-list__item.is-active .p-list__link {
  color: #ad5e99;
  background: #EFDFEB;
}

.p-list__link {
  width: 250px;
  display: block;
  padding: 10px 15px;
  color: #192637;
  font-size: 16px;
  border-radius: 50px;
}

.p-list__link:hover {
  color: #ad5e99;
  background: #EFDFEB;
}

.p-list__select {
  color: #8F9BA9;
  padding: 6px 40px 6px 10px;
  outline: 1px solid #EEEBEE;
  border: none;
}

.p-productList.is-addons-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 100%));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.p-productList.is-main-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 100%));
  grid-gap: 30px;
  margin-top: 20px;
}

@media only screen and (max-width: 1280px){
  .p-productList.is-addons-list ,
  .p-productList.is-main-list {
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: repeat( auto-fit, minmax(calc(33.333% - 30px), 1fr) );
  }
}

@media only screen and (max-width: 768px){
  .p-productList.is-addons-list ,
  .p-productList.is-main-list {
    grid-template-columns: repeat( auto-fit, minmax(calc(50% - 10px), 1fr) );
    grid-gap: 10px;
  }
}

.p-productList__title {
  margin-top: 20px;
}

.p-productList__title h2 {
  font-size: 18px !important;
  line-height: 1.4 !important;
}

.p-productList__excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.p-productList__img img {
  object-fit: cover;
}

.p-product__general {
  display: flex;
  align-items: start;
}

.p-product__information {
  width: 50%;
}

.p-product__title h1 {
  font-size: 36px;
  color: #192637;
}

.p-product__button {
  margin-top: 30px;
}

.p-product__button a {
  width: 233px;
}

.p-product__price {
  margin: 20px 0;
}

.p-product__price span {
  font-size: 14px;
}

.p-product__price span:first-child {
  font-size: 18px;
}

.p-product__img {
  width: 370px;
  margin-left: 30px;
}

.p-product__img img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.p-product__description {
  border-top: 1px solid #CACFD3;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
}

.p-product__descriptionText {
  width: 50%;
  color: #192637;
}

.p-product__descriptionText:first-child {
  margin-right: 30px;
}

.p-relatedProduct {
  margin-top: 30px;
}

.p-relatedProduct__item {
  margin-right: 30px;
}

.p-relatedProduct__title {
  margin-top: 20px;
}

.p-relatedProduct__title h3 {
  font-size: 18px;
}

.p-relatedProduct__excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.p-relatedProduct__img img {
  width: 100%;
}

.p-appointment__location {
  margin-top: 30px;
  width: 50%;
}

.p-appointment__location label {
  color: #8F9BA9;
  font-size: 12px;
  padding-left: 5px;
}

.p-appointment__location select {
  height: unset;
  font-size: 16px;
  display: block;
  width: 100%;
  max-width: 540px;
  outline: none;
  border: 1px solid #8F9BA9;
  border-style: solid;
  padding: 8px 10px;
  color: #192637;
}

.p-appointment__location select option {
  color: #192637;
}

.p-appointment__datetime {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.p-appointment__calendar {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  background-color: #FFFFFF;
}

.ui-widget-header {
  background: none !important;
}

.p-appointment__calendar .ui-widget.ui-widget-content {
  border-radius: 10px;
  border: 1px solid #8F9BA9;
  padding: 0;
  width: 100%;
}

.p-appointment__calendar .ui-datepicker-header {
  background-color: #FFFFFF;
  color: #192637;
  text-align: center;
  padding: 10px 0;
  height: 44px;
  border-color: #EEEBEE;
  border-width: 0 0 1px 0;
  border-radius: 10px 10px 0 0;
}

.p-appointment__calendar .ui-datepicker-prev,
.p-appointment__calendar .ui-datepicker-next {
  top: 50% !important;
  transform: translateY(-38%);
}

.p-appointment__calendar .ui-datepicker-prev:hover,
.p-appointment__calendar .ui-datepicker-next:hover {
  background: none;
  border: none;
  color: #ad5e99;
}

.p-appointment__calendar .ui-datepicker-prev span,
.p-appointment__calendar .ui-datepicker-next span {
  display: none !important;
}

.p-appointment__calendar .ui-datepicker-prev {
  left: 30% !important;
}

.p-appointment__calendar .ui-datepicker-prev:after {
  content: url("images/left.svg");
  font-size: 1rem;
  cursor: pointer;
}

.p-appointment__calendar .ui-datepicker-next {
  right: 30% !important;
}

.p-appointment__calendar .ui-datepicker-next:after {
  content: url("images/right.svg");
  font-size: 1rem;
  cursor: pointer;
}

.p-appointment__calendar .ui-datepicker-calendar {
  text-align: center;
  margin: 0 auto;
  padding: 15px;
}

.p-appointment__calendar .ui-datepicker-calendar .ui-state-default {
  text-decoration: none;
  border: none;
}

.p-appointment__calendar .ui-datepicker-calendar th {
  padding: 10px;
  color: #192637;
  font-size: 14px;
}

.p-appointment__calendar .ui-datepicker-calendar td {
  padding: 5px 5px;
  font-size: 14px;
  text-align: center;
}

.p-appointment__calendar .ui-datepicker-calendar td a {
  text-align: center;
  background: none;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  color: #8F9BA9;
  border-radius: 9999px;
}

.p-appointment__calendar .ui-datepicker-calendar td a:hover {
  color: #ad5e99;
}

.p-appointment__calendar .ui-datepicker-calendar td a.ui-state-active {
  color: #FFFFFF;
  background: #ad5e99;
}

.p-appointment__calendar .ui-datepicker-calendar td span {
  display: none;
}

.p-appointment__time > div.wrapper {
  padding: 10px 10px 20px 10px;
  background: rgba(238, 235, 238, 0.5);
  border-radius: 10px;
}

.p-appointment__time--title {
  display: flex;
  align-items: start;
}

.p-appointment__time--title span {
  font-size: 16px;
  color: #192637;
  line-height: 20px;
}

.p-appointment__time--title img {
  margin-right: 10px;
  margin-top: 5px;
}

.p-appointment__time--title .time-range {
  color: #8F9BA9;
  font-size: 14px;
  line-height: 18px;
}

.p-appointment__time--slot {
  margin-top: 10px;
}

.p-appointment__time--slot li {
  display: inline-block;
  margin-top: 15px;
  margin-right: 5px;
  margin-bottom: 0;
}

.p-appointment__time--slot li span, .p-appointment__time--slot li b {
  padding: 5px 19px 6px 19px;
  border-radius: 50px;
  border: 1px solid #EEEBEE;
  background: #FFFFFF;
  text-align: center;
  color: #8F9BA9;
  font-size: 14px;
  cursor: pointer;
}

.p-appointment__time--slot li.is-active span {
  background: #ad5e99;
  color: #FFFFFF;
}

.p-appointment__button {
  display: flex;
  justify-content: end;
  gap: 10px;
}

.p-appointment__button button {
  padding: 14px 101px 15px 101px;
}

.p-options .p-option {
  display: flex;
  margin-top: 10px;
  margin-bottom: 20px;
}

.p-options .p-option.is-required .p-option__procedure {
  border-bottom: 1px solid #EEEBEE;
}

.p-options .p-option.is-required .p-option__radiologies {
  border-bottom: 1px solid #EEEBEE;
  width: 48%;
}


.p-options .p-option__procedure {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.p-options .p-option__optionGroup {
  margin-bottom: 10px;
}


.p-options .p-option label {
  display: block;
  position: relative;
  padding-left: 29px;
  margin-bottom: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}



.p-options .p-option label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}


.p-options .p-option label .label-text{
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
}

.p-options .p-option.is-required label .label-text{
  font-size: 18px;
}

.p-options .p-option label .label-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #FFF;
  border: 1px solid #8f9ba9;
  transition: .4s;
}

.p-options .p-option label input[type=checkbox]:checked ~ .label-text::before {
   background-color: #AD5E99;
   border: 1px solid #AD5E99;
}

.p-options .p-option.is-required label input[type=checkbox]:checked ~ .label-text{
  color: #AD5E99;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.p-options .p-option label input[type=checkbox]:disabled ~ .label-text {
  /* opacity: 0.5; */
}

.p-options .p-option label .label-text:after {
  content: "";
  position: absolute;
  display: none;
}

.p-options .p-option label input[type=checkbox]:checked ~ .label-text:after {
  display: block;
}

/* Style the checkmark/indicator */
.p-options .p-option label .label-text:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.p-options .p-option label input[type=checkbox] {
  display: none;
}


.p-options .p-option label input[type=checkbox] + .label-text:hover:after {
  color: #ad5e99;
}


.p-options .p-option h2{
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.p-order {
  margin-top: 30px;
}

.p-order h2 {
  font-size: 18px;
  line-height: 23px;
  color: #192637;
  margin-top: 30px;
}

.p-order__list {
  width: 100%;
  margin-top: 20px;
}

.p-order__list tfoot {
  padding: 20px 0 30px 0;
  border-bottom: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
}

.p-order__list tr {
  margin-bottom: 10px;
}

.p-order__list tr td {
  height: 35px;
  font-family: SourceSansRegular, sans-serif;
}

.p-order__list tr.is-border-top {
  border-top: 1px solid #EEEEEE;
  padding: 20px 0 30px 0;
}

.p-order__list tr.is-border-top td:first-child {
  height: 40px;
  vertical-align: bottom;
  font-family: SourceSansSemiBold, sans-serif;
  font-size: 18px;
}

.p-order__list tr:last-child {
  padding-bottom: 30px;
}

.p-order__list tr td:last-child {
  text-align: right;
}

.p-order__payment {
  margin-top: 40px;
}

.form-wallet__policy {
  margin-top: 30px;
  padding: 30px 0;
  border-color: #EEEEEE;
  border-style: solid;
  border-width: 1px 0;
}

.form-wallet__policyConfirm {
  margin-top: 30px;
}

.form-wallet__policyConfirm label.policy-confirm {
  font-size: 14px;
  color: #192637;
  cursor: pointer;
  display: block;
  margin-bottom: 10px;
}

.form-wallet__policyConfirm label.policy-confirm .label-text {
  font-size: 14px;
  display: flex;
  color: #192637;
  align-items: center;
}

.form-wallet__policyConfirm label.policy-confirm input[type=checkbox] {
  display: none;
}

.form-wallet__policyConfirm label.policy-confirm input[type=checkbox]:checked + .label-text:before {
  content: "\f14a";
  font-family: "fontAwesome";
  color: #ad5e99;
  animation: tick 150ms ease-in;
}

.form-wallet__policyConfirm label.policy-confirm input[type=checkbox]:disabled + .label-text:before {
  content: "\f096";
  font-family: "fontAwesome";
  color: #dddfe6;
  line-height: 1;
  font-size: 24px;
  width: 25px;
  display: inline-block;
  margin-right: 5px;
}

.form-wallet__policyConfirm label.policy-confirm input[type=checkbox] + .label-text:before {
  content: "\f096";
  font-family: "fontAwesome";
  color: #dddfe6;
  line-height: 1;
  font-size: 24px;
  width: 25px;
  display: inline-block;
  margin-right: 5px;
}

.form-wallet__policyConfirm label.policy-confirm input[type=checkbox] + .label-text:hover:after {
  color: #ad5e99;
}

.p-listAddons__item:not(:first-child) {
  margin-top: 0;
}

.p-selectList__title {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 18px;
  color: #192637;
}

.p-selectList__list .p-option__optionGroup {
  margin-bottom: 0;
}

.p-selectList__list .p-option__optionGroup label {
  font-family: SourceSansRegular, sans-serif;
}

.p-upcomingList.is-main-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.p-upcomingList__item {
  position: relative;
  display: grid;
  grid-template-columns: 60px auto;
  grid-gap: 20px;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
}

.p-upcomingList__item.is-no-upcoming {
  align-items: center;
}

.p-upcomingList__item.is-no-upcoming:after {
  display: none;
}

.p-upcomingList__item:after {
  content: url("../assets/images/icon/icon-arrow-right.svg");
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.p-upcomingList__date {
  text-align: center;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  background-color: #EFDFEB;
  font-size: 18px;
  line-height: 23px;
}

.p-upcomingList__title {
  font-size: 16px;
}

.p-upcomingList .is-show-button {
  margin-top: 30px;
  text-align: center;
}

.p-upcomingList__time {
  font-family: 'SourceSansRegular', sans-serif;
}

.p-upcomingList__showBtn {
  background-color: #FFFFFF;
  padding: 8px;
  font-size: 12px;
  font-family: 'SourceSansRegular', sans-serif;
  line-height: 15px;
  border-radius: 15px;
  opacity: 0.4;
  cursor: pointer;
}

.p-upcomingList__showBtn:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.p-bookList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
}

.p-bookList__item {
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  text-align: center;
  min-height: 216px;
  transition: all 400ms ease;
}

.p-bookList__item:hover {
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.15);
}

.p-bookList__item:hover .p-bookList__title {
  color: #AD5E99;
}

.p-bookList__title {
  font-size: 18px;
  line-height: 23px;
  margin-top: 20px;
  padding: 0 20px;
}

.p-highlightsList .slick-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
}

.p-highlightsList .slick-track .slick-slide {
  margin: 0 15px;
}

.p-highlightsList__img {
  border-radius: 10px;
  overflow: hidden;
}

.p-highlightsList__img img {
  width: 100%;
  object-fit: cover;
}

.p-highlightsList__title h3 {
  font-size: 18px;
  font-family: 'SourceSansRegular', sans-serif;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 15px;
}

.p-highlightsList__shortDesc {
  font-family: 'SourceSansRegular', sans-serif;
}

.p-headerNav {
  display: flex;
  align-items: center;
  color: #192637;
  justify-content: space-between;
  width: 100%;
  margin-left: 30px;
}

.p-headerNav__menu {
  display: flex;
}

.p-headerNav__item {
  margin-right: 30px;
}

.p-headerNav__item.is-active .p-headerNav__link {
  color: #ad5e99;
}

.p-headerNav__notification {
  position: relative;
  margin-right: 10px;
}

.p-headerNav__notification .notification-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 10px;
  background: #ad5e99;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}

.p-headerNav__loginBtn {
  margin-left: 30px;
}

.p-headerNav__loginBtn a {
  color: #FFFFFF;
  padding: 10px 34px;
  border-radius: 19px;
  background: #ad5e99;
}

.p-headerNav__link {
  color: #192637;
  font-size: 18px;
}

.p-headerNav__link:hover {
  color: #ad5e99;
}

.p-headerNav__profile {
  border-left: 1px solid #8F9BA9;
  padding-left: 20px;
  position: relative;
}

.p-headerNav__profile.is-normal-item {
  border: none;
  padding-left: 0;
}

.p-headerNav__profile.is-normal-item .p-headerNav__profileBtn:hover ~ .p-headerNav__profilePanel {
  height: fit-content !important;
}

.p-headerNav__profile.is-normal-item .p-headerNav__profilePanel {
  left: 0;
  right: unset;
  transform: translateY(3%);
}

.p-headerNav__profile.is-normal-item .p-headerNav__profilePanel:hover {
  height: fit-content !important;
}

.p-headerNav__profile .p-headerNav__profileBtn {
  display: flex;
  align-items: center;
}

.p-headerNav__profile .p-headerNav__profileBtn > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 20px;
}

.p-headerNav__profile .p-headerNav__profileBtn:hover ~ .p-headerNav__profilePanel {
  height: 110px;
  padding: 10px;
}

.p-headerNav__profile .p-headerNav__arrow {
  transition: transform .5s;
}

.p-headerNav__profile .p-headerNav__profilePanel {
  position: absolute;
  top: 100%;
  transform: translateY(5%);
  right: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  padding: 0 10px;
  background: #FFFFFF;
  border-radius: 10px;
  height: 0;
  overflow: hidden;
  transition: all .5s;
  z-index: 9;
}

.p-headerNav__profile .p-headerNav__profilePanel:hover {
  height: 110px;
  padding: 10px;
}

.p-headerNav__profile .p-headerNav__profilePanel a {
  padding: 8px 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 250px;
  cursor: pointer;
  color: #192637;
  margin-bottom: 5px;
}

.p-headerNav__profile .p-headerNav__profilePanel a img {
  margin-right: 15px;
}

.p-headerNav__profile .p-headerNav__profilePanel a:hover {
  background: #EFDFEB;
  border-radius: 50px;
  color: #ad5e99;
}

.p-mainForm__row {
  display: flex;
  margin-bottom: 30px;
}

.p-mainForm__group {
  position: relative;
  margin-right: 30px;
  width: 345px;
}

.p-mainForm__group.is-disabled > div {
  background: #EEEEEE;
}

.p-mainForm__group.is-disabled > div .p-mainForm__input {
  border-color: #8F9BA9;
}

.p-mainForm__group.is-disabled .iti__flag-container {
  border-width: 0 0 1px 0 !important;
}

.p-mainForm__group.is-disabled .iti__selected-flag {
  background: #EEEEEE !important;
  border-color: #8F9BA9;
  border-width: 0 0 1px 0 !important;
}

.p-mainForm__input {
  display: block;
  padding: 13px 13px 13px 0;
  position: relative;
  border-bottom: 2px solid #EEEEEE;
  color: #192637;
  width: 100%;
  font-size: 14px;
}

.p-mainForm__input.is-selectBox {
  outline: none;
  border-width: 0 0 2px 0;
}

.p-mainForm__input.has-icon-left {
  padding-left: 35px;
  border-color: #0003 !important;
  color: #8F9BA9;
}

.p-mainForm__input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8F9BA9;
  opacity: 1;
  /* Firefox */
}

.p-mainForm__input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #8F9BA9;
}

.p-mainForm__input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #8F9BA9;
}

.p-mainForm__input:focus ~ .p-mainForm__inputBorder {
  width: 100%;
  transition: 0.4s;
}

.p-mainForm__label {
  color: #8F9BA9;
  font-size: 16px !important;
  font-weight: 600;
}

.p-mainForm__label.is-required::after {
  content: '*';
  color: #EA6B75;
}

.p-mainForm__inputBoder {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ad5e99;
  transition: 0.4s;
}

.p-mainForm__tooltip {
  font-size: 10px;
  color: #8F9BA9;
  display: inline-block;
  line-height: 1.5em;
  margin-top: 5px;
}

.p-mainForm__tooltip a {
  color: #ad5e99;
}

.p-mainForm__tooltip a:hover {
  color: #ad5e99;
}

.p-mainForm div:has(> .p-mainForm__radio) {
  margin-top: 23px;
}

.p-mainForm__radio:checked, .p-mainForm__radio:not(:checked) {
  position: absolute;
  left: -9999px;
}

.p-mainForm__radio:checked + label, .p-mainForm__radio:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  font-size: 14px;
  display: inline-block;
  margin-right: 30px;
  color: #192637;
}

.p-mainForm__radio:not(:checked) + label:before {
  content: url("../assets/images/icon/icon-select-unselect.svg");
  position: absolute;
  left: 0;
  top: -2px;
}

.p-mainForm__radio:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.p-mainForm__radio:checked + label:after {
  content: url("../assets/images/icon/icon-select-selected.svg");
  position: absolute;
  top: -2px;
  left: 0;
}

.p-mainForm__radio:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.p-mainForm__imgGroup {
  background: #EEEEEE;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  cursor: pointer;
}

.p-mainForm__imgGroup div.file {
  position: fixed;
  top: -100px;
}

.p-mainForm__imgGroup.no-bg {
  background: #FFFFFF;
  border-bottom: 2px solid #EEEEEE;
}

.p-mainForm__imgGroup .p-mainForm__imgInformation span {
  font-size: 14px;
  color: #8F9BA9;
  margin-left: 10px;
}

.p-mainForm__icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-20%);
}

.p-mainForm__iconLeft {
  right: unset;
  left: 0;
  top: calc(50% + 3.5px);
}

.p-mainForm__tabs {
  position: relative;
  height: 100%;
}

.p-mainForm__navigation {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #EEEEEE;
}

.p-mainForm__btnTab {
  color: #8F9BA9;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  height: 35px;
  margin-right: 30px;
  position: relative;
}

.p-mainForm__btnTab:hover, .p-mainForm__btnTab.active {
  color: #AD5E99;
}

.p-mainForm__btnTab:hover::after, .p-mainForm__btnTab.active::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #AD5E99;
}

.p-mainForm__bodyTab {
  display: none;
}

.p-mainForm__bodyTab.active {
  display: block;
}

/*
 * category: _object
 * prefix: u-
 * role:
 * Define small and simple styles used to adjust minimal style changes
 * that are difficult to or not appropriate to define in the Object modifiers of
 * Component and Project layer.
*/
.btn-hide-text {
  background: url("../assets/images/login/icon-eye-2.svg");
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  bottom: 9px;
  cursor: pointer;
}

.btn-hide-text.is-unhide {
  background: url("../assets/images/login/icon-eye-slash.svg");
}

.font-regular {
  font-family: SourceSansRegular, sans-serif;
}

.c-input.is-checkbox {
  display: block;
  color: #192637;
  padding-left: 35px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  padding-top: 2px;
}

.c-input.is-checkbox::before {
  content: "";
  background: url("../assets/images/login/checkbox-uncheck.svg");
  position: absolute;
  width: 24px;
  height: 24px;
  display: block;
  left: 0;
  top: 5px;
}

.c-input.is-checkbox.is-checked::before {
  background: url("../assets/images/login/checkbox-checked.svg");
}

.c-input.is-checkbox input {
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.u-cursor-pointer {
  cursor: pointer;
}

.u-load-more-btn {
  border: 1px solid #8F9BA9;
  opacity: 40%;
  border-radius: 15px;
  background: #FFFFFF;
  padding: 5px 10px;
  color: #8F9BA9;
  font-size: 12px;
}

.appointmentList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.footerNavList {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

.footerNav .c-title {
  font-size: 14px;
  font-weight: 600;
}

.footerNav__social {
  display: flex;
  align-items: center;
}

.footerNav__social a {
  margin-right: 5px;
}

.app-downloadList {
  display: flex;
  margin-top: 10px;
}

.app-downloadList img {
  width: 152px;
  height: 50px;
}

.app-downloadList img:first-child {
  margin-right: 10px;
}

.pin-code input:last-child {
  margin-right: 0 !important;
}

.modal.is-deleteCard .modal-content span {
  font-family: "SourceSansRegular", sans-serif;
  color: #192637;
}

/* This section used to override lib styles */
.iti {
  width: 100%;
}

.iti__flag-container {
  border-right: 2px solid #CACFD3;
  margin-right: 10px;
}

.iti__selected-flag {
  background: #FFFFFF !important;
}

.iti__selected-dial-code {
  color: #192637;
}

.iti__arrow {
  margin-left: 15px !important;
  margin-bottom: 4px;
  margin-right: 0px;
  border: solid #8F9BA9 !important;
  border-width: 0 2px 2px 0 !important;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.p-mainForm .iti__selected-dial-code {
  font-size: 14px;
}

.p-mainForm .iti__flag-container {
  border-right: none;
  margin-right: 10px;
}

.p-mainForm .iti__flag-container:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  height: 60%;
  width: 2px;
  display: block;
  background: #CACFD3;
}

.page-numbers {
  display: flex;
  align-items: center;
}

.page-numbers li {
  padding: 2px 4.5px;
}

.page-numbers li a {
  font-size: 14px;
  color: #192637;
}

.page-numbers li span {
  font-size: 14px;
  color: #ad5e99;
}

.page-numbers li img {
  margin-top: 5px;
}

.slick-track {
  margin-left: 0 !important;
}

.u-shop-company-name {
  color: #EFDFEB;
  font-size: 12px;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.u-shop-company-name:before {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: #EFDFEB;
  position: absolute;
  top: 0;
  left: -10px;
}

.u-shop-company-name:hover, .u-shop-company-name.is-active {
  color: #ad5e99;
}

.u-shop-company-name.is-active {
  font-weight: bold;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Loader */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #ad5e99;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #ad5e99 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.added_to_cart {
  display: none;
}

.slick-prev.slick-arrow:first-child img {
  position: absolute;
  top: 50%;
  left: -40px;
}

.slick-prev.slick-arrow:last-child img {
  position: absolute;
  top: 50%;
  right: -20px;
}

a[disabled=disabled] {
  opacity: .5;
  pointer-events: none;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fcf;
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}



.button-group .c-button {
  border: 1px solid #8F9BA9;
  border-radius: 25px;
  background-color: #FFFFFF;
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
  font-weight: normal;
  min-width: 243px;
  text-transform: none;
  padding: 10px;
  height: 50px;
  transition: .4s;
  pointer-events: unset;
  cursor: pointer;
  box-shadow: unset;
}

.button-group .c-button.is-primary-btn{
  background-color: #FFFFFF;
  border: 1px solid #AD5E99;

  color: #AD5E99;
}

.button-group .c-button.is-primary-btn:hover{
  /* border: 1px solid #AD5E99;
  background-color: #AD5E99;
  color: #FFF; */
}

.button-group .c-button.is-primary-btn[disabled=disabled],
.button-group .c-button.is-primary-btn:disabled{
  border: 1px solid #8F9BA9;
  background-color: #8F9BA9;
  color: #FFF;
  cursor: no-drop;
}

.woocommerce-breadcrumb {
  padding: 15px 0;
}

.woocommerce-breadcrumb .breadcrumb-link {
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  font-weight: normal;
}

.woocommerce-breadcrumb .breadcrumb-last {
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 30px;
}

.c-title > .c-link {
  display: flex;
  align-items: center;
}


/* Add-ons */
section.l-section.is-product h2.c-title {
  margin-bottom: 30px;
}

.p-productList {
  margin-bottom: 30px;
}
.p-productList__item .p-productList__title {
  margin-bottom: 10px;
  margin-top: 10px;
}

.p-productList__item .p-productList__title h2.c-title {
    color: #333333;
    font-family: "Open Sans";
    font-size: 16px!important;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 17px;
    text-transform: unset!important;
    margin-bottom: 0;
    word-break: break-all;
}

.p-productList__item {}
.p-productList__item .p-productList__img{
  max-width: 100%!important;
}

.p-productList__item .p-productList__price {
    color: #AD5E99;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    display: flex;
    align-items: center;
}

.p-productList__item .p-productList__price span.c-text {
    font-weight: 600;
    font-size: 16px!important;
}
.p-productList__item .p-productList__price span.c-text.is-small {
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 12px!important;
  letter-spacing: 0;
  font-weight: 400;
  margin-left: 5px;
}
.p-productList__item .p-productList__button .c-button {
    width: 102px;
    text-align: center;
    height: 42px;
    color: #FFFFFF;
    font-family: "Open Sans";
    font-size: 18px;
    letter-spacing: 0;
    line-height: 30px;
    font-weight: 400;
    box-shadow: unset;
}

.p-productList__item .p-productList__button .c-button.js-button-remove {
  border: 1px solid #ad5e99;
  color: #ad5e99;
}

.p-productList__item .p-productList__excerpt{
color: #8F9BA9;
font-family: "Open Sans";
font-size: 14px;
letter-spacing: 0;
line-height: 20px;
margin-top: 10px;
}

.shop-content-area .shop-loop-head.is-custom {
flex-direction: column;
align-items: flex-start;
}

.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-woo-breadcrumbs {
flex-direction: column;
align-items: flex-start;
}


.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-shop-tools {
display: flex;
width: 100%;
justify-content: space-between;
}

.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-shop-tools p.woocommerce-result-count{
display: block;
color: #333333;
font-family: "Open Sans";
font-size: 16px;
font-weight: 600;
letter-spacing: 0;
line-height: 17px;
margin-bottom: 0;
}
.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-shop-tools .wd-shop-filter,
.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-shop-tools .wd-shop-result-count{
margin-bottom: 0;
margin-right: 0;
}

.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-shop-tools .wd-shop-filter{
display: flex;
font-family: "Open Sans";
font-size: 16px;
font-weight: 600;
letter-spacing: 0;
}

.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-shop-tools .wd-shop-filter .wd-products-per-page{
margin-right: 10px;
}

.shop-content-area .shop-loop-head.is-custom .wd-shop-tools.woodmart-shop-tools .wd-shop-filter .woocommerce-ordering select{
border-bottom: 1px solid #EEEBEE;
}

.shop-content-area .shop-loop-head:not(.is-custom) .label-orderby{
  display: none;
}

/* BUTTON OVERRIDE */
.elementor-element-65573868 a.elementor-button-link.elementor-button.elementor-size-sm,
.elementor-element-a4db06e a.elementor-button-link.elementor-button.elementor-size-sm,
.elementor-element-a4db06e a.elementor-button-link.elementor-button.elementor-size-sm,
.elementor-element-9c65853 a.elementor-button-link.elementor-button.elementor-size-sm,
.elementor-element-9c65853 a.elementor-button-link.elementor-button.elementor-size-sm,
.p-product__information .p-product__button .c-button, 
.header-menu-login-btn,
.p-appointment__calendar .ui-datepicker-calendar td a.ui-state-active,
.p-appointment__time--slot li.is-active span,
.btn,
.c-button.is-primary-btn:not(:disabled):not(.is-disabled):not([disabled]),
input[type="submit"]:not(:disabled){
  background-color: transparent!important;
  border: 1px solid #AD5E99!important;
  color: #AD5E99!important;
  box-shadow: unset!important;
}


.elementor-button[href="#location"] {
  color: #FFF!important;
}

.page-id-192058 .elementor-button[href="#location"] {
  color: var( --e-global-color-primary )!important;
}

.list-product__item .list-product__button a {
  background-color: transparent!important;
  border: 1px solid #AD5E99!important;
  color: #AD5E99!important;
  box-shadow: unset!important;
  height: 50px;
  color: #333333;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 27px;
  text-align: center;
  border-radius: 25px;
  padding: 10px;
}

.list-product__item .list-product__title h2 {
  color: var(--e-global-color-primary );
}

.list-product .list-product__item .list-product__price {
  text-align: center;
}

.shop-content-area .shop-loop-head .wd-shop-tools.woodmart-shop-tools .wd-products-per-page{
  display: none;
}

/* PAGINATION */
.woocommerce-pagination.wd-pagination {}

.woocommerce-pagination.wd-pagination ul.page-numbers li {
    margin: 0!important;
    padding: 0;
}

.woocommerce-pagination.wd-pagination ul.page-numbers li .page-numbers {
  color: #333333;
  font-family: "Open Sans";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 24px;
  text-align: center;
  font-weight: 400;
  margin: 0;
  padding: 4px;
  border: 0;
  display: flex;
  justify-content: center;
}

.woocommerce-pagination.wd-pagination ul.page-numbers li .page-numbers::before {
  display: none;
}

.woocommerce-pagination.wd-pagination ul.page-numbers li .page-numbers.current {
    color: #FFF;
}
.woocommerce-pagination.wd-pagination ul.page-numbers li .page-numbers:not(.current):hover {
  background: transparent;
}

.p-product .p-product__general .p-product__information .p-product__excerpt {
  display: block;
}

.shop-content-area .shop-loop-head .wd-shop-tools.woodmart-shop-tools .wd-shop-filter form.woocommerce-ordering {
  display: flex;
  align-items: center;
}

.shop-content-area .shop-loop-head .wd-shop-tools.woodmart-shop-tools .wd-shop-filter form.woocommerce-ordering .label-orderby {
  display: flex;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
  top: 0;
  margin-right: 5px;
  white-space: nowrap;
  line-height: 30px;
}


/* PRODUCT DETAIL */

.p-product .p-product__general .p-product__information .p-product__excerpt {
  display: block;
}

.p-product .p-product__general {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}

.p-product .p-product__general .p-product__information {
  width: calc(8/12 * 100%);
}

.p-product .p-product__general .p-product__img {
  width: calc(4/12 * 100%);
  margin-left: 0;
}

.p-product .p-product__general .p-product__information .p-product__title {
  margin-bottom: 20px;
}

.p-product .p-product__general .p-product__information .p-product__title h1 {
  color: #333333;
  font-family: "Open Sans";
  font-size: 50px;
  letter-spacing: 0;
  line-height: 55px;
  font-weight: 400;
  margin: 0;
}

.p-product .p-product__general .p-product__information .p-product__price .c-text {
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 18px!important;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 40px;
}

.p-product .p-product__general .p-product__information .p-product__price {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}

.p-product .p-product__general .p-product__information .p-product__price .c-text.is-primary {
  font-weight: 600;
  font-size: 22px!important;
  color: #AD5E99;
  margin-right: 10px;
}

.p-product .p-product__general .p-product__information .p-product__button {
  margin-top: 0;
}

.p-product .p-product__general .p-product__information .p-product__button .c-button {
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
  min-width: 343px;
  border-radius: 25px;
  padding: 9px 10px;
}

.p-product .p-product__descriptionText {
  color: #333333;
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  width: 100%;
  margin-right: 0;
  column-count: 2;
}

.p-product .p-product__description {
  background-color: #F6F6F6;
  border: 0;
  padding: 30px 0;
  position: relative;
}

.p-product .p-product__description::before {
  content: '';
  background-color: #F6F6F6;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  left: -100%;
}

.p-product .p-product__description::after {
  content: '';
  background-color: #F6F6F6;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  right: -100%;
}

.related-products {}

.related-products h3.title.slider-title {
    color: #333333;
    font-family: "Open Sans";
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.related-products h3.title.slider-title::before {
    display: none;
}

.related-products {}

.related-products h3.title.slider-title {
    color: #333333;
    font-family: "Open Sans";
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.related-products h3.title.slider-title::before {
    display: none;
}

.slide-product .product-wrapper {}

.slide-product .product-wrapper .product-information {
    padding: 0;
}

.slide-product .product-wrapper .product-information h3.wd-entities-title a {
    color: #333333;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 17px;
}

.slide-product .product-wrapper .product-element-top {
    margin-bottom: 10px;
}

.slide-product .product-wrapper .product-information h3.wd-entities-title {
    margin-bottom: 10px;
    text-align: left;
}

.slide-product .product-wrapper .product-information .product-rating-price {
    text-align: left;
}

.slide-product .product-wrapper .product-information .product-rating-price .price {
    color: #AD5E99;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.slide-product .product-wrapper .product-information .product-rating-price .price .woocommerce-price-suffix {
    color: #8F9BA9;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.slide-product .product-wrapper .product-information .product-rating-price .wrapp-product-price {
    text-align: left;
    display: block;
}

.p-product .p-product__description {
  background-color: #F6F6F6;
  border: 0;
  padding: 30px 0;
  position: relative;
}

.p-product .p-product__description::before {
  content: '';
  background-color: #F6F6F6;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  left: -100%;
}

.p-product .p-product__description::after {
  content: '';
  background-color: #F6F6F6;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  right: -100%;
}

.related-products {}

.related-products h3.title.slider-title {
    color: #333333;
    font-family: "Open Sans";
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.related-products h3.title.slider-title::before {
    display: none;
}

.related-products {}

.related-products h3.title.slider-title {
    color: #333333;
    font-family: "Open Sans";
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.related-products h3.title.slider-title::before {
    display: none;
}

.slide-product .product-wrapper {}

.slide-product .product-wrapper .product-information {
    padding: 0;
}

.slide-product .product-wrapper .product-information h3.wd-entities-title a {
    color: #333333;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 17px;
}

.slide-product .product-wrapper .product-element-top {
    margin-bottom: 10px;
}

.slide-product .product-wrapper .product-information h3.wd-entities-title {
    margin-bottom: 10px;
    text-align: left;
}

.slide-product .product-wrapper .product-information .product-rating-price {
    text-align: left;
}

.slide-product .product-wrapper .product-information .product-rating-price .price {
    color: #AD5E99;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
}

.slide-product .product-wrapper .product-information .product-rating-price .price .woocommerce-price-suffix {
    color: #8F9BA9;
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

.slide-product .product-wrapper .product-information .product-rating-price .wrapp-product-price {
    text-align: left;
    display: block;
}

p.product-not-found {
  text-align: center;
}

/* Apointment */
.l-section__body {}

.l-section__body h2.c-title {
    font-family: "Open Sans";
}

.p-appointment {}

.p-appointment .p-appointment__datetime {
  margin-top: 40px;
}

@media only screen and (max-width: 767px){
  .p-appointment .p-appointment__datetime {
    grid-template-columns: 1fr;
  }
}

.p-appointment .p-appointment__datetime .p-appointment__date {}
.p-appointment .p-appointment__datetime .p-appointment__date .p-appointment__calendar{
  height: unset;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {}

.p-appointment .p-appointment__datetime .p-appointment__date .ui-widget-header {
    padding: 10px;
    height: 50px;
}

.p-appointment .p-appointment__datetime .p-appointment__date .ui-widget-header .ui-datepicker-title {
    color: #333333;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 30px;
    text-align: center;
}

.p-appointment .p-appointment__datetime .p-appointment__date .ui-widget-header > a {
    top: 23px!important;
}

.p-appointment .p-appointment__datetime .p-appointment__date table.ui-datepicker-calendar thead th {
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 17px;
  text-align: center;
  padding: 14px;
  font-weight: normal;
}

.p-appointment .p-appointment__datetime .p-appointment__date table.ui-datepicker-calendar tbody {}

.p-appointment .p-appointment__datetime .p-appointment__date table.ui-datepicker-calendar tbody td a {
    color: #8F9BA9;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 17px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.p-appointment .p-appointment__datetime .p-appointment__date table.ui-datepicker-calendar tbody td {}

.p-appointment .p-appointment__datetime .p-appointment__date table.ui-datepicker-calendar tbody tr:last-child td {
    padding-bottom: 10px;
}

.p-appointment .p-appointment__datetime .p-appointment__time {}

.p-appointment .p-appointment__datetime .p-appointment__time .wrapper {
    padding: 20px;
}

.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--title span {
    color: #333333;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    display: block;
    margin-bottom: 5px;
}

.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--title {}

.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--title span.time-range {
    color: #8F9BA9;
}

.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--title > img {
    margin-top: 0;
}

.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--slot {
    margin-top: 20px;
}

.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--slot > ul > li {
  flex: 0 0 calc(20% - 10px);
  margin: 0;
  display: flex;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1280px){
  .p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--slot > ul > li{
    flex: 0 0 calc(25% - 10px);
  }
}
@media only screen and (max-width: 767px){
  .p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--slot > ul > li{
    flex: 0 0 calc(33.333% - 10px);
  }
}
.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--slot > ul > li > span,
.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--slot > ul > li > b {
  width: 100%;
  padding: 8px;    
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 17px;
  text-align: center;
}
.p-appointment .p-appointment__datetime .p-appointment__time .wrapper .p-appointment__time--slot > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 0;
    column-gap: 10px;
    padding-left: 0;
}

.p-appointment .p-appointment__location {}

.p-appointment .p-appointment__location label {
    color: #333333;
    font-family: "Open Sans";
    font-size: 16px!important;
    font-weight: bold!important;
    letter-spacing: 0;
    padding-left: 0;
}

.p-appointment .p-appointment__location select {
    border: 1px solid #8F9BA9;
    border-radius: 5px;
    background-color: #FFFFFF;
    color: #333333;
    font-family: "Open Sans";
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
    max-width: 343px;
}


/* Payment */
.l-section.is-payment .l-section__body .appointmentInfo h2.c-title {
  color: #333333;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 30px;
  margin-bottom: 33px!important;
}

.l-section.is-payment .l-section__body .appointmentInfo p.c-text {
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top {
  border: 0;
  /* padding: 0; */
}

.l-section.is-payment .l-section__body .p-order {
  margin-top: 0;
  padding-top: 30px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list {
  margin-top: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tr td:first-child {
  padding-left: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tbody tr:first-child td {
  padding-top: 0;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top td {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}

.l-section.is-payment .l-section__body .p-order__list tr td {
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
  border: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tr td:nth-child(2) {
  color: #AD5E99;
  font-family: "Open Sans";
  font-size: 18px!important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 30px;
  text-align: right;
  padding-right: 0;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top:not(:first-child) td {
  padding-top: 30px;
  padding: 0;
  padding-top: 30px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot {
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot tr.is-total {}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot .is-big {
  color: #333333;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot td.c-text.is-primary {
  color: #AD5E99;
  font-family: "Open Sans";
  font-size: 22px!important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top:not(:first-child) {
  border-top: 1px solid #EEEEEE;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top ~ tr td {
  padding: 0;
  padding-bottom: 15px;
  padding-top: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot .is-total td {
  padding-top: 30px;
  padding-bottom: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot tr:nth-child(2) td {
  padding-top: 0;
  padding-bottom: 30px;
  padding-right: 0;
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 14px!important;
  letter-spacing: 0;
  line-height: 20px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot tr:nth-child(2) td span {
  font-size: 14px!important;
  color: #8F9BA9;
  font-family: "Open Sans"!important;
}

.l-section.is-payment .l-section__body .p-selectList {}

.l-section.is-payment .l-section__body .p-selectList .p-selectList__title {
  color: #333333;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__body .submit {
  min-width: 402px;
}

.l-section.is-payment .l-section__body .submit button.submit {
  background-color: transparent!important;
  border: 1px solid #AD5E99!important;
  color: #AD5E99!important;
  box-shadow: unset!important;
  padding: 9px 25px 9px 25px;
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
  font-weight: 400;
  min-width: 402px!important;
}

.l-section.is-payment .l-section__foot {}

.l-section.is-payment .l-section__foot h2.c-title {
  color: #333333;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__foot .p-order__payment {}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__noti {
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__noti > span {
  font-size: 12px!important;
  line-height: 1.45;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__noti > img {
  width: 16px;
  height: 16px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand {
  border-radius: 5px;
  background-color: #EEEBEE;
  padding: 10px;
  align-items: center;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem {
  display: flex;
  flex-direction: column;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem span.p-walletForm__brandTitle {
  color: #333333;
  font-family: "Open Sans";
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 11px;
  text-align: center;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem.is-locker {}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem.is-locker {
  width: 20px;
  height: 20px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem:last-child img {
  width: 18px;
  height: 18px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm {}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group.is-disabled > div {
  padding: 0!important;
  background: transparent;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group.is-disabled .p-mainForm__label {
  padding: 0!important;
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group.is-disabled .p-mainForm__input {
  border-radius: 5px;
  background-color: #EEEBEE;
  padding: 0 10px;
  height: 38px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group {
  width: 100%;
}

/* Payment 2 */
.l-section.is-payment .l-section__body .appointmentInfo h2.c-title {
  color: #333333;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 30px;
  margin-bottom: 33px!important;
}

.l-section.is-payment .l-section__body .appointmentInfo p.c-text {
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top {
  border: 0;
  /* padding: 0; */
}

.l-section.is-payment .l-section__body .p-order {
  margin-top: 0;
  padding-top: 30px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list {
  margin-top: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tr td:first-child {
  padding-left: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tbody tr:first-child td {
  padding-top: 0;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top td {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
}

.l-section.is-payment .l-section__body .p-order__list tr td {
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 30px;
  border: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tr td:nth-child(2) {
  color: #AD5E99;
  font-family: "Open Sans";
  font-size: 18px!important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 30px;
  text-align: right;
  padding-right: 0;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top:not(:first-child) td {
  padding-top: 30px;
  padding: 0;
  padding-top: 30px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot {
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot tr.is-total {}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot .is-big {
  color: #333333;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot td.c-text.is-primary {
  color: #AD5E99;
  font-family: "Open Sans";
  font-size: 22px!important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top:not(:first-child) {
  border-top: 1px solid #EEEEEE;
}

.l-section.is-payment .l-section__body .p-order__list tr.is-border-top ~ tr td {
  padding: 0;
  padding-bottom: 15px;
  padding-top: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot .is-total td {
  padding-top: 30px;
  padding-bottom: 0;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot tr:nth-child(2) td {
  padding-top: 0;
  padding-bottom: 30px;
  padding-right: 0;
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 14px!important;
  letter-spacing: 0;
  line-height: 20px;
}

.l-section.is-payment .l-section__body .p-order table.p-order__list tfoot tr:nth-child(2) td span {
  font-size: 14px!important;
  color: #8F9BA9;
  font-family: "Open Sans"!important;
}

.l-section.is-payment .l-section__body .p-selectList {}

.l-section.is-payment .l-section__body .p-selectList .p-selectList__title {
  color: #333333;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__body .submit {
  min-width: 402px;
}

.l-section.is-payment .l-section__body .submit button.submit {
  background-color: transparent!important;
  border: 1px solid #AD5E99!important;
  color: #AD5E99!important;
  box-shadow: unset!important;
  padding: 9px 25px 9px 25px;
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
  font-weight: 400;
  min-width: 402px!important;
}

.l-section.is-payment .l-section__foot {}

.l-section.is-payment .l-section__foot h2.c-title {
  color: #333333;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
}

.l-section.is-payment .l-section__foot .p-order__payment {}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__noti {
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__noti > span {
  font-size: 12px!important;
  line-height: 1.45;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__noti > img {
  width: 16px;
  height: 16px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand {
  border-radius: 5px;
  background-color: #EEEBEE;
  padding: 10px;
  align-items: center;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem {
  display: flex;
  flex-direction: column;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem span.p-walletForm__brandTitle {
  color: #333333;
  font-family: "Open Sans";
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 11px;
  text-align: center;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem.is-locker {}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem.is-locker {
  width: 20px;
  height: 20px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-walletForm__brand .p-walletForm__brandItem:last-child img {
  width: 18px;
  height: 18px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm {}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group.is-disabled > div {
  padding: 0!important;
  background: transparent;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group.is-disabled .p-mainForm__label {
  padding: 0!important;
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group.is-disabled .p-mainForm__input {
  border-radius: 5px;
  background-color: #EEEBEE;
  padding: 0 10px;
  height: 38px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group {
  width: 100%;
  margin-right: 0;
}

div#modalSuccess {
  padding: 30px 30px 60px;
  max-width: 560px;
  box-shadow: none;
}

div#modalSuccess .close-modal {
  display: none;
}

div#modalSuccess .modal-content {
  padding: 0!important;
}

div#modalSuccess .modal-content span.c-text.is-blue-text {
  color: #333333;
  font-family: "Open Sans";
  font-size: 22px!important;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 40px;
  text-align: center;
}

div#modalSuccess .modal-content p.c-text {
  color: #333333;
  font-family: "Open Sans"!important;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
}

div#modalSuccess .modal-content .app-download {max-width: 316px;margin: 0 auto!important;}

div#modalSuccess .modal-content .app-download .footerNav {}

div#modalSuccess .modal-content .app-download .footerNav h2.c-title.text-left {
  color: #333333;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 30px;
  margin-bottom: 6px;
}

div#modalSuccess .modal-content .app-download .app-downloadList {
  margin-top: 0;
  justify-content: center!important;
}

.p-formCard__separate {}

div#modalSuccess .modal-content .p-formCard__separate .is-sub-text {
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
}

div#modalSuccess .modal-content a.c-button.is-primary-bg {
  width: 100%!important;
  display: block;
  background-color: transparent!important;
  border: 1px solid #AD5E99!important;
  color: #AD5E99!important;
  box-shadow: unset!important;
  font-family: "Open Sans";
  font-size: 18px;
  letter-spacing: 0;
  line-height: 30px;
  text-align: center;
  padding: 9px 10px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group .p-mainForm__label {
  color: #333333;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__group .p-mainForm__input {
  border: 1px solid #8F9BA9;
  border-radius: 5px;
  background-color: #FFFFFF;
  height: 38px;
  color: #8F9BA9;
  font-family: "Open Sans";
  font-size: 16px;
  letter-spacing: 0;
  line-height: 17px;
}

.l-section.is-payment .l-section__foot .p-order__payment .p-mainForm .p-mainForm__row {
  margin-bottom: 10px;
}

.shop-content-area .product.product-cat-vaccinations.product-category,
.shop-content-area .product.product-cat-pending-tests.product-category,
.shop-content-area .product.product-cat-ripple-health-coaching.product-category,
.shop-content-area .product.product-cat-athleisure.product-category {
  display: none;
}

/* Fix booking button */
.p-productList__buttons a.c-button.is-primary-btn:not(:disabled):not(.is-disabled):not([disabled]):not(.is-booked) {
  background-color: #AD5E99!important;
  color: #FFF!important;
}

/* .p-productList .p-productList__item .p-productList__title .c-title {
  -webkit-line-clamp: 1;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
} */

.p-productList__buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
}

.p-productList__item {
  position: relative;
  padding-bottom: 50px;
}

.p-productList .p-productList__item .p-productList__excerpt{
  margin-bottom: 20px;
}

/* Saigon Booking Success */
.saigon-booking-order .thank-you-box {
  border: 2px dashed #4BB543;
  text-align: center;
  padding: 2rem;
  color: #4BB543;
  font-weight: 600;
}

.saigon-booking-order .info {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 60px;
}

.saigon-booking-order .info .info-item:nth-child(2) {
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
}

.saigon-booking-order .info .info-item {
  flex: 0 0 33.33%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.saigon-booking-order .info .info-item .label {
  color: #737373;
  font-weight: 600;
  margin-bottom: 8px;
}

.saigon-booking-order .info .info-item  .value {
  font-weight: 600;
  color: #333;
}
table.order-table th{
  width: 50%;
}
table.order-table th:last-child, table.order-table td:last-child {
  text-align: right;
}

.saigon-booking-order .guidebox{
  font-size: 14px;
}

table.order-table ol {
  list-style-type: none;
}

table.order-table .product-title{
  font-weight: 600;
}

table.order-table th{
  font-size: 16px;
  text-transform: capitalize;
}

.is-price-row td:last-child{
  font-weight: 600;
  color: #AD5E99;
}

.appointment-box {
  padding: 20px;
  border: 1px solid #dfdfdf;
  position: relative;
}

.appointment-box p:last-child {
  margin-bottom: 0;
}

.appointment-box span.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  padding: 6px 25px;
  font-weight: 600;
}

.appointment-box .datetime, .appointment-box .location {
  font-size: 16px;
}

.appointment-box .datetime {
  margin-bottom: 10px;
}
.saigon-booking-order .button-group{
  margin-bottom: 20px;
  text-align: center;
}
.saigon-booking-order .button-group .c-button {
  background-color: transparent;
  border: 1px solid #AD5E99;
  color: #AD5E99;
  box-shadow: unset;
  width: unset!important;
  display: inline-block;
  padding: 10px 30px;
}

.saigon-booking-order .button-group .c-button:hover{
  background-color: #AD5E99;
  color: #FFFFFF;
}

@media only screen and (max-width: 767px){
  .saigon-booking-order .info {
      flex-direction: column;
  } 
  .saigon-booking-order .info .info-item:nth-child(2){
    border: 0;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
  }
  .saigon-booking-order .info .info-item {
      padding: 16px 0;
  }
  table.order-table:not(.profile-table) th:first-child {
    width: 70%;
  }
  table.order-table:not(.profile-table) th:last-child {
    width: 30%;
  }
  .appointment-box .title{
    margin-bottom: 10px;
  }
    .appointment-box span.badge {
      position: absolute;
      top: 12px;
      right: 10px;
      font-size: 16px;
      padding: 6px 16px;
      font-weight: 600;
      display: inline-block;
      font-size: 12px;
      margin-bottom: 10px;
  }
  .saigon-booking-order .button-group{
    text-align: center;
    margin-bottom: 20px;
  }
}

.cta-download {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
}

.cta-download .apps {
  display: flex;
  width: calc(40% - 10px);
  justify-content: space-between;
}

.cta-download .apps .app {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 10px);
}

.cta-download .apps .app .qr-img{
  max-width: 80%;
}

.cta-download .cta-text {
  display: flex;
  width: calc(60% - 20px);
  flex-direction: column;
}


.saigon-booking-order .button-group{
  margin-top: 40px;
}



@media only screen and (max-width: 767px){
  .cta-download {
    flex-direction: column;
  }
  .cta-download .cta-text,
  .cta-download .apps {
    width: 100%;
  }

  .cta-download .cta-text{
    order: 1;
    margin-bottom: 20px;
  }

  .cta-download .apps{
    order: 2;
    justify-content: center;
  }
}
.booking-form .form-fields:not(.js-location-fields) {
  overflow: hidden;
}
.booking-form .form-row {
  display: flex;
  margin: 0 -10px;
  justify-content: flex-start;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .booking-form .form-row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0px;
  }
}
.booking-form .p-form__group {
  text-align: left;
  margin-bottom: 20px;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(50% - 20px);
}
@media only screen and (max-width: 768px) {
  .booking-form .p-form__group {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.booking-form .p-form__group.form-full-width {
  width: calc(100% - 20px);
}
@media only screen and (max-width: 768px) {
  .booking-form .p-form__group.form-full-width {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.booking-form .p-form__group.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.booking-form .p-form__group.is-disabled input {
  cursor: not-allowed;
}
.booking-form .p-form__group.form-submit {
  margin-top: 24px;
}
.booking-form .p-form__group.form-submit button {
  border-radius: 25px;
  background-color: #ad5e99;
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .booking-form .p-form__group.form-submit button {
    max-width: 100%;
  }
}
.booking-form .p-form__group label {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
}
.booking-form .p-form__group label.is-error + input, .booking-form .p-form__group label.is-error + select {
  border: 1px solid #c00;
}
.booking-form .p-form__group .p-form__input {
  height: 38px;
  border: 1px solid #8f9ba9;
  border-radius: 5px;
  background-color: #fff;
  transition: 0.4s;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
  color: #333;
  position: relative;
}
.booking-form .p-form__group .p-form__input::placeholder {
  font-size: 16px;
  color: #8f9ba9;
  opacity: 1;
}
.booking-form .p-form__group .p-form__input.is-email-icon {
  background: url("../assets/images/login/icon-email.svg") no-repeat right center;
  background-position: calc(100% - 10px);
  background-size: 20px;
  padding-right: 40px;
}
.booking-form .p-form__group .p-form__input.is-date-icon {
  background: url("../images/date.svg") no-repeat right center;
  background-position: calc(100% - 10px);
  background-size: 20px;
  padding-right: 40px;
}
.booking-form .p-form__group .p-form__input.has-prefix {
  padding-left: 45px;
}
.booking-form .p-form__group select {
  border: 1px solid #8f9ba9;
  border-radius: 4px;
  background-color: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  /* Firefox */
  appearance: none;
  /* Safari and Chrome */
  color: #192637;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
  height: 38px;
  padding-right: 40px;
}
.booking-form .p-form__group select:required:invalid {
  color: #8f9ba9;
}
.booking-form .p-form__group select:required:focus {
  color: #192637;
}
.booking-form .p-form__group .form-error {
  margin-top: 4px;
  color: #c00;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  padding-left: 24px;
  display: none;
}
.booking-form .p-form__group .form-error:before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("../images/notice-error.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  position: absolute;
  left: 0;
}
.booking-form .p-form__group .form-help-text {
  color: #8f9ba9;
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.5;
  display: inline-block;
}
.booking-form .p-form__group .form-input-prefix {
  position: absolute;
  top: 26px;
  left: 1px;
  height: 36px;
  padding: 0 10px;
  line-height: 38px;
  background: #f1f1f1;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: 1px solid #8f9ba9;
}

#signin-form-wrapper{
  padding: 40px;
  max-width: 600px;
}

#signin-form-wrapper .description{
  color: #666;
}

#signin-form-wrapper .member-log-form .p-formCard__social .c-button{
  border: 1px solid #EEEBEE;
  font-weight: 400!important;
}
.woocommerce-account .jquery-modal {
  z-index: 2;
}


#forgot-form-wrapper{
  padding: 40px;
  max-width: 600px;
}

#notice-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1112;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

#notice-popup .overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.65);
}

#notice-popup .notice-popup-wrapper {
  position: relative;
  z-index: 2;
  width: calc(100% - 16px* 2);
  max-width: 400px;
  background: #FFF;
  border-radius: 20px;
  padding: 40px;
}

#notice-popup .notice-popup-wrapper h3{
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 8px;
  text-align: center;
}
#notice-popup .notice-popup-wrapper p,
#notice-popup .notice-popup-wrapper li{
  font-size: 16px;
  line-height: 24px;
  color: #666666;
  text-align: center;
  margin-bottom: 0;
}

#notice-popup .notice-popup-wrapper .icon{
  display: inline-block;
  width: 72px;
  height: 72px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 32px;
}

#notice-popup .notice-popup-wrapper .button-wrapper{
  width: 100%;
  margin-top: 32px;
}

#notice-popup .notice-popup-wrapper .button-wrapper .button{
  background-color: #AD5E99;
  border-radius: 6px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #FFF;
  display: block;
  text-transform: unset;
  text-align: center;
  padding: 8px 20px;
}

.cant-reset-pass{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cant-reset-pass .icon-cant-reset-pass{
  background-image: url('../images/icon-cant-reset-pass.svg');
}