/*=============================================
=            GENERIC STYLES            =
=============================================*/
#content {
    min-height: 500px;
}

.d-desktop { /* ONLY USE THIS ON CUSTOM COMPONENTS */
    display: flex !important;
}

.d-mobile { /* ONLY USE THIS ON CUSTOM COMPONENTS */
    display: none !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

#breadcrumbs, #breadcrumbs a {
  font-size: 12px;
  margin-top: 15px;
  margin-bottom: 15px;
}

#breadcrumbs a:hover {
  color: #CFB87C;
}

#faq-section .elementor-widget-accordion {
    width: 100%;
}
/*=====  End of GENERIC STYLES  ======*/



/*=============================================
=            OVERRIDE SWIPER            =
=============================================*/

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    color: #fff;
    background: #3D3D3D;
    padding: 10px;
    width: 50px;
    height: 50px;
}

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

.swiper .swiper-button-prev {
    left: -25px;
}

.swiper .swiper-button-next  {
    right: -25px;
}

.swiper-slide img {
    height: 100%;
    object-fit: cover;
}

span.swiper-pagination-bullet {
    background-color: #CFB87C !important;
    opacity: 1;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff !important;
    position: relative;
    opacity: 1;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border: 6px solid #CFB87C;
    z-index: -1;
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    border-radius: 50%;
    opacity: 1;
}

body #menu-primary-menu .elementskit-megamenu-panel .elementor-button:hover {
  letter-spacing: 2px !important;
  padding: 10px 20px !important;
  line-height: 20.8px !important;
}

/*=====  End of OVERRIDE SWIPER  ======*/


/*============================================
=        Custom Mobile Slide Out Menu        =
============================================*/

#my-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: clamp(250px, 80vw, 500px);
    height: 100%;
    background-color: white;
    z-index: 10;
    transition: transform 0.3s ease-in-out;
    transform: translateX(-100%);
    display: none;
}

body.admin-bar .nav-close-toggler,
body.admin-bar div#my-nav {
    top: 32px;
}

#my-nav.nav-open {
    transform: translateX(0);
    display:block;
}

.nav-toggler {
    border: none;
    background-color: transparent !important;
    cursor: pointer;
    color: #000 !important;
    width: 45px;
    height: 45px;
    font-size: 1.5rem !important;
    padding: 0px !important;
}

.nav-toggler:hover,
.nav-toggler:active,
.nav-toggler:focus {
    background-color: #000 !important;
    color: #fff !important;
}

.nav-mask.nav-open {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: #00000090;
    z-index: 10;
}

.nav-slideout .nav-header {
    display: flex;
    align-items: center;
    padding: 0px;
}

.nav-close-toggler {
    border: none;
    background-color: #000 !important;
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0px;
    display: none;
    z-index: 20;
    width: 45px;
    height: 45px;
    font-size: 1.5rem !important;
    padding: 0px !important;
}

.nav-close-toggler.nav-open {
    display: block;
}

.nav-slideout .nav-header .nav-item {
    padding: 0;
    width: 100%;
    border: unset;
    background: #fff;
}

.nav-slideout .nav-header .nav-item a {
    color: #fff;
    text-decoration: none;
    padding: 8px;
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    border: 2px solid #c6a560;
    background-color: #c6a560;
    line-height: 40px;
    font-size: 16px;
    font-family: Montserrat, sans-serif;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.nav-slideout .nav-header .nav-item a.nav-link-alt {
    color: #ffffff;
    border: 2px solid #000000;
    background-color: #000000;

}

.nav-header .nav-link span {
    z-index: 11;
    position: relative;
}

.nav-slideout .nav-header .nav-item a:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.nav-slideout .nav-header .nav-item a.nav-link-alt:before {
    /* background-color: #000; */
}

.nav-slideout .nav-header .nav-item a:hover,
.nav-slideout .nav-header .nav-item a:focus,
.nav-slideout .nav-header .nav-item a:active {
    color: #c6a560;
    background-color:transparent;   
}

.nav-slideout .nav-header .nav-item a.nav-link-alt:hover,
.nav-slideout .nav-header .nav-item a.nav-link-alt:focus,
.nav-slideout .nav-header .nav-item a.nav-link-alt:active {
    color: #000;
    background-color:transparent;
}

.nav-slideout .nav-header .nav-item a:hover:before, 
.nav-slideout .nav-header .nav-item a:focus:before, 
.nav-slideout .nav-header .nav-item a:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.nav-slideout .nav-open .close-toggler {
    display: block;
}

.nav-hamburger {
    width: 24px;
    height: 24px;
    background-color: black;
}

.nav-slideout .nav-brand {
    margin-left: 16px;
}

.nav-slideout .nav-main {
    overflow: auto;
    padding: 16px;
}

.nav-slideout .nav-menu {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.nav-slideout .nav-item, 
.nav-slideout .nav-item > span,
.nav-slideout .has-submenu-toggler > span {
    display: flex;
    position: relative;
}

.nav-slideout .nav-item, .nav-slideout .nav-item > span {
    width: 100%;
    justify-content: space-between;
}

.nav-slideout .nav-item a {
    color: black;
    text-decoration: none;
    padding: 8px;
}

.nav-slideout .nav-item a:hover {
    background-color: #ccc;
}

.nav-slideout .nav-submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: none;
    z-index: 100;
    padding: 16px;
}

.nav-slideout .nav-subitem {
    display: block;
}

.nav-slideout .nav-subitem a {
    color: black;
    text-decoration: none;
    padding: 8px;
    display: block;
}

.nav-slideout .nav-subitem a:hover {
    background-color: #ccc;
}

.nav-slideout .nav-footer {
    /* text-align: center; */
    padding: 24px;
}

/*=====  End of Custom Mobile Slide Out Menu  ======*/


/*=============================================
=            BEFORE AFTER IMAGE        =
=============================================*/

.before_after-img-wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    margin: auto;
    height: 100%;
}

.before_after-img-wrapper::before {
    position: absolute;
    content: url("../icons/Group 176629.svg");
    width: auto;
    height: auto;
    display: block;
    border-radius: 100%;
    top: calc(50% + 8px);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.before_after-img-wrapper::after {
    content: '';
    display: block;
    background: #fff;
    height: 100%;
    width: 4px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.before-img-wrapper, .after-img-wrapper {
    position: relative;
    width: 50%;
}

.after-img-wrapper > .h1,
.before-img-wrapper > .h1 {
    position: absolute;
    color: #fff;
    font-family: var(--e-global-typography-4b1d19d-font-family), Sans-serif;
    font-size: var(--e-global-typography-4b1d19d-font-size);
    font-weight: 700;
    line-height: var(--e-global-typography-4b1d19d-line-height);
    word-spacing: var(--e-global-typography-4b1d19d-word-spacing);
    bottom: 0%;
    /* left: 10%; */
    left: 0%;
    margin: 0;
    padding: 8px 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.31);
    z-index: 20;
}

.before-img-wrapper > .h1 {
    /* right: -5px;
    transform: translate(0, -50%) rotate(270deg); */
    /* transform: translateY(-100%); */
}

.after-img-wrapper > .h1 {
    /* left: 0;
    transform: translate(0, -50%) rotate(90deg); */
    /* transform: translateY(-100%); */
}

.before-img-wrapper .h1:after, 
.after-img-wrapper .h1:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgb(207,184,124);
    z-index: -1;
    /* background: linear-gradient(45deg, rgba(207,184,124,0.8) 0%, rgba(255,255,255,0) 45%); */

}

.before_after-img-description {
    text-align: center;
    margin-top: 1em;
    font-size: 16px;
}

/*=====  End of BEFORE AFTER IMAGE  ======*/

/*=============================================
=            FOOTER STYLES                   =
=============================================*/

#newsletter-footer form {
  overflow: hidden;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}

#newsletter-footer .hs-form-field {
  width: 19%;
  float: left;
  margin: 0 0 0 1%;
}

#newsletter-footer .hs-form-field:first-child {
  width: 20%;
  margin-left: 0;
}

#newsletter-footer .hs_submit {
  width: 19%;
  float: right;
  text-align: right;
}

#newsletter-footer .hs_submit .hs-button {
  background-color: var(--main-secondary-color-alt);
  width: 100%;
}

#newsletter-footer .hs_submit .hs-button:hover {
  border: 2px solid var(--main-secondary-color-alt);
  background-color: #fff;
  color: var(--main-secondary-color-alt);
}

/*=============================================
=            CUSTOM SWIPER STYLES            =
=============================================*/

.treatment-slider.swiper .swiper-button-next,
.treatment-slider.swiper .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}

.treatment-slider.swiper {
    overflow: visible;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.treatment-step-wraper {
    text-align: center;
}

.treatment-step-slider.swiper {
    overflow: visible;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.treatment-step-slider img {
    width: auto;
    min-height: 80px;
    max-width: 80px;
    object-fit: contain;
}

.treatment-step-wraper h6 {
    padding: 30px 0;
    font-size: 20px;
    max-width: 13em;
    min-height: 6em;
    margin: auto;
    line-height: 1.3em;
    color: #111111;
}

.treatment-step-slider .swiper-wrapper {
    padding: 60px 0 120px;
}

.treatment-step-slider .swiper-slide::after {
    content: '';
    border: 1px solid #BFD3D4;
    border-style: dashed;
    width: 45%;
    display: block;
    position: absolute;
    top: 2em;
    left: 85%;
}

.treatment-step-slider .swiper-slide:last-child::after {
    display: none;
}

.treatment-step-slider .swiper-scrollbar-drag {
    background: #CFB87C;
}

.treatment-step-slider-section > .elementor-container {
    width: 88.5%;
}


.treatment-step-slider .swiper-scrollbar.swiper-scrollbar-lock {
    display: block !important;
}

.treatment_step_slider_pagination-wrapper.swiper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    margin-right: 0;
    margin-top: auto;
}

.treatment_step_slider-pagination {
    width: auto;
}

.treatment-step-slider .swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: relative;
    left: 0;
    bottom: 30px;
    width: 100%;
    background: #b7b7b7;
}

.treatment-step-slider span.swiper-pagination-total {
    color: #b7b7b7;
}

.treatment_step-navigation-wrapper {
    display: flex;
    justify-content: space-between;
}

span.treatment-step-description {
    font-size: 16px;
}

.swiper .treatment_step_slider-prev,
.swiper .treatment_step_slider-next {
    position: relative;
    margin-top: 0;
    top: 0;
}

.swiper .treatment_step_slider-prev.swiper-button-prev {
    left: 0;
}

.swiper .treatment_step_slider-next.swiper-button-next {
    right: 0;
}

.treatment_step_slider-pagination {
    margin-top: 15px;
}

.swiper-navigation-wrapper {
    min-width: 8em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 30px;
}


/* Testimonial Slider */

.testimonial-slider.swiper {
    /* width: calc(100% + 120px);
    margin-left: -60px; */
    /* padding: 0 0 60px 0; */
    padding: 0 0 30px 0;
}

.testimonial-wrapper {
    padding: 40px;
    border-radius: 2px;
    margin: 0 calc(5% - 10px);
    /* margin: 0; */
}

.testimonial-wrapper .elementor-column.elementor-col-100.elementor-element {
    display: block;
}

.testimonial-wrapper .elementor-section {
  /* box-shadow: rgb(50 50 93 / 25%) 0px 0px 50px -2px, rgb(0 0 0 / 30%) 0px 0px 17px -3px; */
  box-shadow: #dddddd 0px 5px 20px 2px;
}

.testimonial-wrapper .testimonial-image {
    /* padding-right: 45px; */
    padding-right: 0;
    margin: 0;
}

.testimonial-wrapper blockquote {
    margin: 0;
    display: block;
    margin-top: 30px;
    margin-bottom: 45px;
    font-size: 16px;
    color: #111111;
    line-height: 1.5em;
}

.testimonial-wrapper .additional-information {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    letter-spacing: 1px;
}

.testimonial-wrapper.no-image-testimonial {
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
}

.testimonial-wrapper.no-image-testimonial h6,
.testimonial-wrapper.no-image-testimonial .elementor-star-rating__wrapper {
    justify-content: center;
}

.testimonial-wrapper.no-image-testimonial > div {
    overflow: hidden;
}

.testimonial-wrapper.no-image-testimonial .testimonial-description-wrapper::before {
    content: '';
    background: url('../icons/Scroll\ Group\ 36.svg');
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 600px;
}

.testimonial-description-wrapper {
    /* padding: 60px 30px 60px 0; */
    padding: 30px 60px;
}

.testimonial-description-wrapper h6 {
    font-size: 20px;
    /* margin-bottom: -5px; */
    margin-bottom: 0;
}

.testimonial-slider.swiper .swiper-button-next,
.testimonial-slider.swiper .swiper-button-prev {
    background: transparent;
    color: #3D3D3D;
}

.testimonial-slider.swiper .swiper-button-next {
    right: 0px;
    transform: translateY(-50%);
}

.testimonial-slider.swiper .swiper-button-prev {
    left: 0px;
    transform: translateY(-50%);
}

.testimonial-slider .elementor-star-rating i {
    font-size: 30px;
}

.testimonial-slider .elementor-star-rating .elementor-star-5::before,
.testimonial-slider .elementor-star-rating i::before {
    content: "★";
    color: #CFB87C;
}


/* POST ITEM SLIDER */

.treatment-item-slider.swiper {
    overflow: visible;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* padding-bottom: 60px; */
}

.treatment-item-wrapper {
    padding: 45px;
    box-shadow: rgb(136 136 136 / 10%) 0px 0px 6px 4px;
    border-radius: 2px;
    background: rgb(207 184 124);
    opacity: .1;
    transition: .3s ease all;
}

.swiper-slide-active .treatment-item-wrapper {
    background: rgb(207 184 124 / 30%);
    opacity: 1;
}

.treatment-item-wrapper .treatment-item-image {
    padding-right: 45px;
    margin: 0;
    max-height: 270px;
    width: 100%;
}

.treatment-item-wrapper .treatment-item-image  img {
    width: 100%;
}

.treatment-item-wrapper blockquote {
    margin: 0;
    display: block;
    margin-top: 30px;
    margin-bottom: 45px;
    font-size: 16px;
    color: #111111;
    line-height: 1.5em;
}

.treatment-item-wrapper .additional-information {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    letter-spacing: 1px;
}

.treatment-item-slider.swiper .swiper-button-next,
.treatment-item-slider.swiper .swiper-button-prev {
    color: #fff;
    background: #3D3D3D;
    padding: 10px;
    width: 50px;
    height: 50px;
    top: 50%;
    /* transform: translateY(-50%); */
}

.treatment-item-slider.swiper .swiper-button-next::after,
.treatment-item-slider.swiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 700;
}

.treatment-item-slider.swiper .swiper-button-prev {
    left: -25px;
}

.treatment-item-slider.swiper .swiper-button-next  {
    right: -25px;
}

.treatment-item-description-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

/* Treatment Recommendation Slider */

.treatment-recommendation-slider.swiper {
    overflow: visible;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.treatment-recommendation-wraper {
    transition: .3s ease all;
    box-shadow: rgb(136 136 136 / 20%) 0px 0px 6px 2px;
    /* transform: translateY(0); */
}

.treatment-recommendation-slider h6 {
    transition: .3s ease all;
    font-size: 18px;
}

.treatment-recommendation-slider ul {
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px;
}

.treatment-recommendation-slider ul li {
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
    list-style: none;
}

.treatment-recommendation-slider ul li::before {
    content: '';
    display: inline-flex;
    background: url('../icons/Group 176629.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 3px;
    left: -30px;
    width: 20px;
    height: 20px;
}

.treatment-recommendation-slider img {
    width: auto;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.treatment-recommendation-slider .description-wrapper {
    padding: 20px;
    /* top: -15px; */
    position: relative;
}

.treatment_recommendation_slider_pagination-wrapper.swiper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    margin-right: 0;
}

.treatment_recommendation_slider-pagination {
    width: auto;
}

.treatment-recommendation-slider .swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    position: relative;
    left: 0;
    bottom: 30px;
    width: 100%;
    background: #b7b7b7;
}

.treatment-recommendation-slider span.swiper-pagination-total {
    color: #b7b7b7;
}

.treatment_recommendation-navigation-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.treatment-recommendation-description {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 1rem;
    display: block;
}

.treatment-recommendation-price .treament-recommendation-originprice,
.treatment-recommendation-price .treament-recommendation-saleprice {
    font-size: 1.5rem;
    color: #cdb67b;
    font-weight: 500;
    font-family: 'Hans Kendrick';
    line-height: 1.2;
    padding-top: 8px;
    margin-bottom: 8px !important;
    letter-spacing: -1px;
}

.treatment-recommendation-price.on_sale .treament-recommendation-originprice {
    color: #000;
    font-size: 1rem;
    padding: 8px 0 0 !important;
    line-height: 1em;
    margin: 0 !important;
}

.treatment-recommendation-wraper .elementor-button{
    width: 100%;
    margin-bottom: 0 !important;
    z-index: 10;
}

.recommendation-buttons .secondary-btn-alt {
    margin-bottom: 10px;
}

.swiper .treatment_recommendation_slider-prev,
.swiper .treatment_recommendation_slider-next {
    position: relative;
    margin-top: 0;
    top: 0;
}

.swiper .treatment_recommendation_slider-prev.swiper-button-prev {
    left: 0;
}

.swiper .treatment_recommendation_slider-next.swiper-button-next {
    right: 0;
}

.treatment_recommendation_slider-pagination {
    margin-top: 15px;
}

.treatment-recommendation-slider .secondary-btn-alt .elementor-button {
    z-index: 10;
    min-width: 120px;
    margin-bottom: 1rem;
}

.treatment-recommendation-slider a.container-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.treatment-recommendation-slider .treatment-recommendation-wraper:hover {
    transform: translateY(-20px);
}

.treatment-recommendation-slider .treatment-recommendation-wraper:hover h6 {
    color: #CFB87C;
}

.treatment-recommendation-slider .elementor-widget-heading h4.elementor-heading-title {
    font-size: 35px;
    line-height: 1.3em;
    color: #111111;
    position: relative;
    top: 24px;
}

.treatment-recommendation-wraper .grid-learnmore {
    display: block;
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 15px;
}

.treatment-recommendation-wraper .grid-learnmore:hover {
    text-decoration: underline;
}

/* Clinic gallery slider */

.clinic-gallery-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 60px;
}

.clinic_gallery_slider-next.swiper-button-next {
    right: 35px;
}

.clinic_gallery_slider-prev.swiper-button-prev {
    left: 35px;
}

.clinic-gallery-wrapper img {
    max-height: 70vh;
    /* object-fit: contain; */
    object-fit: cover;
    width: 100%;
}

.single-clinic .elementor-icon-list-items .elementor-icon-list-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  top: 3px;
}

/*=====  End of CUSTOM SWIPER STYLES  ======*/


/*=============================================
=            all clinics accordion            =
=============================================*/

#all-clinics-accordion .elementor-widget-accordion {
    border-top: 1px solid #d5d8dc;
    width: 100%;
    margin-right: 60px;
}

#all-clinics-accordion .elementor-widget-accordion > .elementor-widget-container {
    border-bottom: 1px solid #d5d8dc;
}

#all-clinics-accordion .elementor-accordion-title h6 {
    font-size: 18px;
    letter-spacing: 1px;
}

#all-clinics-accordion .elementor-tab-content .tabs {
    margin-bottom: 30px;
    padding: 0;
    position: relative;
}

#all-clinics-accordion .elementor-tab-content .tabs .tab-li__link >  h6 {
    font-size: 16px;
    letter-spacing: 1px;
}

#all-clinics-accordion .elementor-tab-title {
    padding: 30px 0 10px;
    cursor: pointer;
    position: relative;
}

#all-clinics-accordion a.tab-li__link {
    padding: 4px 0 4px 30px;
    position: relative;
    margin-bottom: 15px;
}

#all-clinics-accordion .tabs .tab-li::before {
    content: '';
    height: 100%;
    width: 3px;
    background: #C6A560;
    opacity: .2;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

#all-clinics-accordion .tabs .tab-li::after {
    content: '';
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    display: block;
    background: #C6A560;
    border-radius: 20px;
    margin-top: 0;
    transition: .3s ease all;
    display: none;
}

#all-clinics-accordion .tabs .tab-li .bar {
    position: absolute;
    top: 0px;
    left: 0;
    width: 3px;
    height: 32px;
    background: #C6A560;
    border-radius: 20px;
    display: block;
    transition: .3s ease all;
}

#all-clinics-accordion a.tab-li__link::after {
    display: none;
}

#all-clinics-accordion .tab-contents {
    width: 100%;
}

#all-clinics-accordion [data-tab-content] {
    display: none;
}

#all-clinics-accordion .active[data-tab-content] {
    display: block;
    margin-left: 30px;
}

#all-clinics-accordion .tab-contents h6{
   margin: 15px 0;
}

#all-clinics-accordion .elementor-widget .elementor-icon-list-item {
    margin-bottom: 15px;
}

#all-clinics-accordion .elementor-icon-list-items .elementor-icon-list-item {
    margin-bottom: 10px;
}

#all-clinics-accordion .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text,#all-clinics-accordion .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text, 
#all-clinics-accordion .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text,#all-clinics-accordion .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-text a {
    font-size: 16px;
    font-weight: 500;
}

#all-clinics-accordion img {
    max-height: 20em;
    object-fit: cover;
    object-position: center center;
}

#all-clinics-accordion span.elementor-accordion-icon.elementor-accordion-icon-right {
    position: absolute;
    right: 0;
    top: 30px;
    color: #C6A560;
}

#all-clinics-accordion .elementor-tab-title[aria-selected="false"] .elementor-accordion-icon-opened,
#all-clinics-accordion .elementor-tab-title[aria-selected="true"] .elementor-accordion-icon-closed {
    display: none;
}

#all-clinics-accordion .elementor-tab-title[aria-selected="true"] .elementor-accordion-icon-opened {
    display: inline-block;
}

#all-clinics-accordion .elementor-icon-list-item {
    white-space: normal;
}

/*=====  End of all clinics accordion  ======*/



/*=============================================
=            table styling            =
=============================================*/

.clinic-details a, .clinic-details span {
    font-size: 16px !important;
}

.clinic-details a {
    text-transform: lowercase;
    font-weight: 500;
    display: inline-block !important;
}

.clinic-details a:hover {
    text-transform: lowercase;
    font-weight: 500;
    display: inline-block !important;
}

table.opening-hours {
    font-size: 16px;
}

table.opening-hours td.day {
    background-color: transparent;
    padding: 4px 30px 4px 0;
    border: none;
    line-height: 1.3em;
    font-size: 16px;
}

table.opening-hours td.hours {
    background-color: transparent;
    padding: 4px 0;
    border: none;
    line-height: 1.3em;
}

/*=====  End of table styling  ======*/




/*=============================================
=            custom styling            =
=============================================*/

.full-width-container-bg-gold::before {
    content: '';
    height: calc(100% + 200px);
    width: 200%;
    background: #f1ead7;
    position: absolute;
    top: -100px;
}

.page-section-nav .elementor-widget-breadcrumbs p,
.page-section-nav .elementor-widget-breadcrumbs p a {
    text-transform: uppercase;
    color: #111111;
    font-weight: 500;
    opacity: 1;
    letter-spacing: 1px;
}


/*=====  End of custom styling  ======*/


/*=============================================
=            HUBSPOT FORM STYLES              =
=============================================*/

body .hbspt-form .hs-button {
  height: 50px;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: 16px;
  padding: 10px 40px;
  margin-top: 20px;
  letter-spacing: 0;
}

body .hbspt-form label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

body .hbspt-form .hs-form-booleancheckbox label {
  text-transform: none;
}

body .hbspt-form .hs-form-booleancheckbox label span {
  margin-top: -2px;
}

body .hbspt-form .hs-form-field {
  margin-bottom: 15px;
}

body .hbspt-form .hs-error-msgs {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

body .hbspt-form select {
  border: 0;
}

body .hbspt-form .hs-error-msgs label {
  color: red;
}

body .light-form .hbspt-form input[type="text"], body .light-form .hbspt-form input[type="email"],
body .light-form .hbspt-form input[type="tel"], body .light-form .hbspt-form select {
  border: 1px solid #bfd3d4 !important;
}

body .light-form .hbspt-form textarea {
  border: 1px solid #bfd3d4 !important;
  min-height: 80px;
}

body .hbspt-form .inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body .hbspt-form .hs-richtext {
  display: none;
}


/*=============================================
=       CONSULTATION FORM STYLES              =
=============================================*/
.form-container .loader {
    margin: 0 auto;
    border: 4px solid #ffffff;
    border-top: 4px solid #cfb87d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.free_consultation_block p {
  text-align: center;
}

.free_consultation_block h2 {
  color: var(--e-global-color-accent);
  font-family: "Hans Kendrick", Sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.3em;
  text-align: left;
  margin: 40px auto 0 auto;
}

.free_consultation_block button {
  width: 100%;
  border: 2px solid var(--main-secondary-color-alt) !important;
  font-size: 16px;
  white-space:normal;
}

.free_consultation_block .prev-btn {
  color: var(--main-secondary-color-alt);
  background: #fff;
  margin-top: 10px;
}

.free_consultation_block .prev-btn:hover {
  color: #fff;
  background: var(--main-secondary-color-alt);
}

.free_consultation_block .next-btn {
  background: var(--main-secondary-color-alt) !important;
}

.free_consultation_block .next-btn:hover {
  color: #fff;
  background: #CFB87C !important;
  border-color: #CFB87C !important;
}
.free_consultation_block input[type="date"],
.free_consultation_block input[type="tel"],
.free_consultation_block input[type="email"],
.free_consultation_block input[type="text"] {
  border: 1px solid var(--main-secondary-color-alt) !important;
}

.selected-details,
.free_consultation_block form {
    max-width: 500px;
    margin: 0 auto;
}

.free_consultation_block form#onepage-consultation-form {
    width: 70%;
    max-width: 100%;
    min-height: 300px;
}
@media only screen and (max-width: 768px){
    .free_consultation_block form#onepage-consultation-form {
        width: 100%;
    }
}

.free_consultation_block form#onepage-consultation-form fieldset {
    border: none;
}

.free_consultation_block form p {
  text-align: center;
}
form#onepage-consultation-form #billing_country_field {
    display: none;
}

.free_consultation_block form#onepage-consultation-form p {
    text-align: left;
}
.free_consultation_block form#onepage-consultation-form abbr {
    text-decoration: none;
}

#loading {
  display: none;
  font-size: 14px;
  text-align: left;
}

.fieldset-nav .msg {
    margin-top: 1rem;
}
.progress {
	background-color: #3d3d3d;
	border-radius: 20px;
	position: relative;
	margin: 15px 0;
	height: 30px;
	width: 100%;
	border: 2px solid #3d3d3d;
}

.progress-done {
	background: #dfe9e9;
	border-radius: 20px;
	color: #3d3d3d;
	display: flex;
    font-weight: 700;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 0;
	opacity: 0;
	transition: 1s ease 0.3s;
}

.consult-form-fieldset.active, .consult-form-fieldset.active * {
    position: relative;
}

body select:not([type="button"]):not([type="submit"]) {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.2rem;
    padding-left: 13px;
}
/* HTML: <div class="loader"></div> */
.dots-loader {
    display: inline-block;
    width: 10px;
    aspect-ratio: 4;    
    background: radial-gradient(circle closest-side, #000 100%, #0000) 0 / calc(90% / 3) 100% space;
    clip-path: inset(0 100% 0 0);
    animation: l1 1s steps(4) infinite;
  }
  @keyframes l1 {to{clip-path: inset(0 -34% 0 0)}}
/* .consult-form-fieldset.active .fieldset-mask {
    display: none;
} */

.consult-form-fieldset .fieldset-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #dfe9e9;
    opacity: 0.87;
    top: 0;
    left: 0;
    z-index: 11;
    display: none;
    align-items: center;
    justify-content: center;
}

.consult-form-fieldset:not(.active) {
    cursor: not-allowed;
    position: relative;
    display: none;
}

.consult-form-fieldset label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
    font-weight: bold;
}

.woocommerce-MyAccount-content .form-container {
    max-width: none;
}

body.woocommerce-account .woocommerce .consultation-form h2 {
    width: 100%;
    padding: 0;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    height: auto;
}

body.woocommerce-account .woocommerce .consultation-form ::after {
    margin-top: 0.5rem;
}

/*=============================================
=         MY ACCOUNT FORM STYLES              =
=============================================*/

body.woocommerce-account {
  background: #f9f6ef;
}

body.woocommerce-account .page-header, body.woocommerce-account .woocommerce-thankyou-message {
  display: none;
}

body.woocommerce-account .woocommerce h2 {
  width: 70%;
  margin: 80px auto 0 auto;
  background: #fff;
  padding: 20px 40px 0 40px;
  font-size: 30px;
}

body.woocommerce-account .woocommerce h2::after {
  content: "";
  display: block;
  border-bottom: 1px solid;
  border-color: var(--main-primary-color-alt);
  width: 100%;
  margin-top: 20px;
}

.woocommerce .woocommerce-MyAccount-content form input[type="text"], 
.woocommerce .woocommerce-MyAccount-content form input[type="number"],
.woocommerce .woocommerce-MyAccount-content form input[type="tel"],
.woocommerce .woocommerce-MyAccount-content form input[type="email"],
.woocommerce .woocommerce-MyAccount-content form input[type="password"],
.woocommerce .woocommerce-MyAccount-content form select,
#content .woocommerce-form-login input[type="text"], #content .woocommerce-form-login input[type="password"] {
  border: 1px solid #bfd3d4;
}

.woocommerce form .woocommerce-address-fields .select2-container--default .select2-selection--single {
  border: 1px solid #bfd3d4;
  height: 36px;
  border-radius: 0;
}

.woocommerce form .woocommerce-address-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
}

.select2-results__option {
  font-size: 16px;
}

.woocommerce-MyAccount-content form label,
#content .woocommerce-form-login label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: bold;
}

body.woocommerce-account .aiowps-captcha-equation {
  font-size: 14px;
}

#content .woocommerce form.login {
  border: 0;
  background: #fff;
  width: 70%;
  margin: 0 auto 80px auto;
  padding: 20px 40px 40px 40px;
}

.woocommerce .woocommerce-MyAccount-content form button,
body.woocommerce-account button.woocommerce-button,
body.woocommerce-account a.woocommerce-button,
#custom-registration-form button.woocommerce-form-register__submit {
  margin: 20px 0 0 0;
  width: 100%;
  color: #fff;
}

#custom-registration-form button.woocommerce-form-register__submit {
    font-size: 18px;
}

p.woocommerce-register {
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
}

a.woocommerce-button.button.woocommerce-form-register {
    text-align: center;
    font-size: 16px !important;
    padding: 0.618em 1em !important;
    line-height: 1em !important;
    letter-spacing: 1px;
}

body.woocommerce-account .lost_password {
  text-align: center;
  font-weight: normal;
}

body.woocommerce-account .lost_password a:hover {
  color: var(--main-primary-color-alt);
}

body.woocommerce-account.logged-in .woocommerce {
  padding: 80px 0;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  list-style: none;
}

.woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  padding: 15px 35px;
  background: #fff;
  display: block;
  border-bottom: 3px solid #f9f6ef;
  border-left: 3px solid #fff;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background: #f9f6ef;
  border-left: 3px solid var(--main-primary-color-alt);
}

.woocommerce-MyAccount-content {
  padding: 40px;
  background: #fff;
}

.woocommerce-MyAccount-content p {
  font-family:  var(--e-global-typography-2d3d90c-font-family), Sans-serif;
  font-size: var( --e-global-typography-2d3d90c-font-size );
}

.woocommerce-account .woocommerce-Address a:hover,
.woocommerce-MyAccount-content p a:hover {
  color: var(--main-primary-color-alt);
}

.woocommerce-orders-table tr.woocommerce-orders-table__row td {
  background: #fff;
  padding: 20px 0;
}

.woocommerce-orders-table tbody tr.woocommerce-orders-table__row td {
   border-bottom: 1px solid #ddd !important;
}

.woocommerce table.my_account_orders .button,
.woocommerce table.my_account_orders td a {
  background: transparent;
  text-decoration: underline;
  padding: 0 !important;
  font-size: var( --e-global-typography-d8b1a48-font-size );
  letter-spacing: var( --e-global-typography-d8b1a48-letter-spacing );
}

.woocommerce table.my_account_orders .button:hover,
.woocommerce table.my_account_orders td a:hover {
  color: var(--main-primary-color-alt);
  letter-spacing: var( --e-global-typography-d8b1a48-letter-spacing );
}

.woocommerce table.my_account_orders th {
  padding-left: 0;
}

body.woocommerce-account .woocommerce h2.myaccount-title {
    width: 100%;
    margin-top: 0;
    padding: 0;
    margin-bottom: 1rem;
}

body.woocommerce-account .woocommerce h2.myaccount-title:after {
    margin-top: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 20px;
}

.selected-details mark,
.consultation-form mark,
.woocommerce-account mark {
    background-color: unset;
    font-weight: 700;
}

.woocommerce-account .addresses .title h3 {
    font-size: 1rem;
    margin-top: 0rem;
}

.woocommerce-account .addresses address {
    font-size: 16px;
    line-height: 1.3em;
    font-style: normal;
}

.u-columns.woocommerce-Addresses.col2-set.addresses {
    margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-Address {
    padding: 0 20px 0 0;
}

.woocommerce-Address-title {
    margin-top: 20px;
}

/*=============================================
=            PAGE SECTION NAV            =
=============================================*/

.page-section-nav a {
    opacity: .5;
    transition: .3s ease all;
}

.page-section-nav a:hover {
    opacity: 1;
}

/*=====  End of PAGE SECTION NAV  ======*/


/*=============================================
=            WOOCOMMERCE            =
=============================================*/

.elementor-products-grid ul.products.elementor-grid li.product {
    box-shadow: rgb(50 50 93 / 25%) 0px 0px 10px -2px, rgb(0 0 0 / 30%) 0px 0px 7px -3px;
}

.woocommerce ul.products li.product a img {
    max-height: 14em;
    /* object-fit: cover; */
    object-fit: contain;
    margin-bottom: 0;
}

.product-description {
    padding: 20px;
}

.product-description .add_to_cart_button,
.product-description .out_of_stock_button {
    width: 100%;
    margin-bottom: 1rem;
}

.woocommerce ul.products li.product a.added_to_cart {
    width: 100%;
    display: block;
    text-align: center;
}

.woocommerce ul.products li.product a.added_to_cart:hover {
    opacity: 0.8;
}

.product-description .yith-wcwl-add-button {
    text-align: center;
}

.product-description a.add_to_wishlist:hover {
    opacity: 0.8;
}

.product-description .yith-wcwl-add-button .fa {
    font-family: 'FontAwesome';
}

.product-description .entry-content {
    font-weight: 300;
    font-size: 16px;
    text-transform: none;
    padding: 15px 0 30px;
}
/* 
body .woocommerce-message {
  line-height: 46px;
} */

#payment .wc_payment_method {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

#payment .wc_payment_method:last-child {
  border: 0;
}

#payment .wc-stripe-elements-field, #payment .wc-stripe-iban-element-field {
  border: 1px solid var( --e-global-color-primary );
  padding: var(--forms-fields-padding,16px);
}

#payment .wc_payment_method label {
  color: var(--forms-labels-color,#69727d);
  font-family: var(--e-global-typography-281285a-font-family), Sans-serif;
  font-size: var(--e-global-typography-281285a-font-size);
  font-weight: var(--e-global-typography-281285a-font-weight);
  text-transform: var(--e-global-typography-281285a-text-transform);
  line-height: var(--e-global-typography-281285a-line-height);
  letter-spacing: var(--e-global-typography-281285a-letter-spacing);
  word-spacing: var(--e-global-typography-281285a-word-spacing);
}

#payment .wc_payment_method .woocommerce-SavedPaymentMethods-saveNew label {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    font-family: 'Montserrat';
    letter-spacing: 0px !important;
    color: #3D3D3D !important;
    text-transform: none;
}

.e-coupon-box a:hover,
#payment .wc_payment_method:hover .zip-widget, #payment .wc_payment_method.payment_method_humm:hover label,
#payment .wc_payment_method.payment_method_stripe:hover label[for="payment_method_stripe"], #payment a:hover {
  color: #cfb87c !important;
}

#payment p, #payment a {
    font-size: 14px;
    line-height: 1.5em;
    /* padding: 15px 0; */ 
    text-transform: initial;
}

#payment .payment_method_zipmoney img {
  top: -5px;
}

.wp-block-woocommerce-cart.alignwide {
    margin: 0;
}
.woocommerce-checkout #payment ul.payment_methods li .woocommerce-SavedPaymentMethods-saveNew input {
    display: flex;
    justify-content: start;
    flex-direction: column;
    margin-right: 10px;
    margin-bottom: auto;
    position: relative;
    top: 4px;
}

.woocommerce-thankyou-message {
  padding: 40px 40px 140px 40px;
  background: #fff;
  text-align: center;
  box-shadow: 10px 10px 106px 5px rgba(0,0,0,0.20);
  -webkit-box-shadow: 10px 10px 106px 5px rgba(0,0,0,0.20);
  -moz-box-shadow: 10px 10px 106px 5px rgba(0,0,0,0.20);
}

.woocommerce-checkout.woocommerce-order-received .elementor-widget-woocommerce-checkout-page table.shop_table {
  padding: 0;
  background: transparent;
}

select.treatment-product-list {
    /* max-width: 30em; */
    margin-right: 20px;
    border-radius: 0;
}

.treatment-product-list-row {
    display: flex;
}

.treatment-product-list-row #add-to-cart {
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    background-color: var( --e-global-color-secondary );
    border-radius: 0px 0px 0px 0px;
}

.treatment-product-list-row.package-list-row > div {
    margin: 0 10px;
    flex: 1;
    position: relative;
}

.treatment-product-list-row.package-list-row label {
    margin-bottom: 15px;
}

.package-list-row select {
    border-radius: 0;
    min-height: 50px;
}

.package-list-row #add-to-cart {
    width: 100%;
    position: absolute;
    bottom: 0;
}

#add-to-cart[disabled="disabled"] {
    background: #cdcece;
    border: 1px solid #cdcece;
    cursor: not-allowed;
}

.treatment-step-slider select#treatment-product-list {
    max-width: 25em;
}

/*=====  End of WOOCOMMERCE  ======*/


/*=============================================
=                  WPSL Map                   =
=============================================*/
#wpsl-wrap.wpsl-custom {
    display: flex;
}

.wpsl-custom .wpsl-search {
    width: 40%;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #dfe9e9;
}

.wpsl-custom #wpsl-search-wrap .wpsl-input h6 {
    letter-spacing: 0.5px;
    color: #000;
    line-height: 1.2em;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.wpsl-custom #wpsl-search-wrap .wpsl-input label {
    margin-right: 0;
    margin-bottom: 0.5rem;
}

.wpsl-custom .wpsl-search form {
    display: flex;
    flex-direction: column;
    padding: 4rem 3vw 2rem!important;
}

.wpsl-custom #wpsl-search-wrap .wpsl-input {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.wpsl-custom #wpsl-search-wrap .wpsl-input input {
    margin-bottom: 1rem;
    border: 0;
    border-radius: 0;
}

.wpsl-custom #wpsl-search-btn, 
.wpsl-custom #wpsl-search-wrap .wpsl-input input, 
.wpsl-custom #wpsl-search-wrap .wpsl-input label {
    width: 100%;
}

.wpsl-custom input#wpsl-search-btn {
    border: 2px solid var(--main-secondary-color-alt);
    background-color: var(--main-secondary-color-alt) !important;
    color: #fff !important;
    border-radius: 0;
    background-image: none;
    font-family: 'Montserrat';
    font-size: 16px;
    padding: 10px 40px;
    margin: 0 !important;
    line-height: 1rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: uppercase !important;
}

.wpsl-custom input#wpsl-search-btn:hover {
    background-color: #fff !important;
    color: var(--main-secondary-color-alt) !important;
}

.wpsl-custom #wpsl-result-list {
    max-height: 300px;
    margin-bottom: 2rem !important;
    margin-top: 0 !important;
}

.wpsl-custom #wpsl-result-list, 
.wpsl-custom #wpsl-result-list #wpsl-stores {
    max-height: 300px;
}

.wpsl-custom #wpsl-search-btn, 
.wpsl-custom #wpsl-search-wrap div {
    margin-right: 0;
    float: none;
    text-align: center;
}

#wpsl-wrap.wpsl-custom #wpsl-result-list li {
    padding: 10px;
}

.wpsl-custom #wpsl-search-wrap .wpsl-directions  {
    display: block;
}

.wpsl-custom .wpsl-store-location img {
    display: none;
}


.wpsl-custom #wpsl-result-list #wpsl-stores::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #fff
}

.wpsl-custom #wpsl-result-list #wpsl-stores::-webkit-scrollbar {
    width: 8px
}

.wpsl-custom #wpsl-result-list #wpsl-stores::-webkit-scrollbar-thumb {
    border-radius: 0;
    -webkit-box-shadow: inset 0 0 20px #3D3D3D;
}

/*=======  WPSL Map end ======*/


/* MISC */

.no-label-before-after nav {
    display: none;
}

.yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
    padding-top: 10px;
}

.description-wrapper .description-div {
    min-height: 17em;
}

.product-description .description-div {
    min-height: 13em;
}

.elementor-pagination .page-numbers {
    font-weight: 400;
}

span.page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
    font-weight: 700;
}

/*=============================================
=               Clinic Listing                =
=============================================*/
.clinic-listing {
    display: none;
}

.clinic-listing.open {
    display: block;
}

.clinic-listing {
    margin-bottom: 1rem;
}

.clinic-img {
    margin-bottom: 1.5rem;
}

.clinic-img img {
    max-height: 300px;
    overflow: hidden;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.clinic-details {
    display: block;
    margin-bottom: 0.5rem;
}

.clinic-listing .clinic-title {
    letter-spacing: 0.5px;
    color: #000;
    font-family: "Hans Kendrick", sans-serif;
    line-height: 1em;
    transform: translateY(5px);
    margin-bottom: 0.5rem;
    margin-top: 0;
    font-size: 1.25rem;
    white-space: initial;
}

.clinic-details {
    list-style: none;
    padding-left: 0;
}

.clinic-detail {
    display: flex;
    align-items: center;
}

.clinic-detail i {
    margin-right: 0.5rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.icon-clinic-map {
    background-image: url("../icons/mappin.svg")
}
.icon-clinic-phone {
    background-image: url("../icons/phone.svg")
}
.clinic-details span {
    font-family: "Hans Kendrick", sans-serif;
    transform: translateY(5px);
}

.clinic-detail a:hover span {
    text-decoration: underline;
}

.clinic-btns {
    display: flex;
    grid-gap: 10px;
}

.clinic-btns a.clinic-btn {
    border: 2px solid #c6a560;
    background: #c6a560;
    border-radius: 0px 0px 0px 0px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 100%;
    padding: 10px 40px;
    text-align: center;
    color: #fff;
    white-space: initial;
}

.clinic-btns a.clinic-btn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.clinic-btns a.clinic-btn:active,
.clinic-btns a.clinic-btn:focus,
.clinic-btns a.clinic-btn:hover {
    color: #c6a560;
    /* background: #fff; */
}

.clinic-btns a.clinic-btn:hover:active,
.clinic-btns a.clinic-btn:hover:focus,
.clinic-btns a.clinic-btn:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.clinic-btns a.clinic-btn.clinic-btn--free {
    border-color: #bfd3d4;
    background-color: #bfd3d4;
    color: #000;
}

.clinic-btns a.clinic-btn.clinic-btn--free:before {
    background: #fff;
}

.clinic-btns a.clinic-btn.clinic-btn--free:active,
.clinic-btns a.clinic-btn.clinic-btn--free:focus,
.clinic-btns a.clinic-btn.clinic-btn--free:hover {
    color: #000;
    /* background-color: #fff; */
}


/**
 *
 * DO NOT REPLICATE THIS, I FORCED THE FA STYLING ON THIS SECTION BECAUSE IT
 * TAKES SO MUCH TIME FOR ME TO EDIT FAQ PLUS MINUS ICONS ONE BY ONE :)
 *
 */

 #faq-section .fa-plus:before {
    content: "\f068";
}

#faq-section .fa-minus:before {
    content: "\f067";
}

/*============== Clinic Listing =============*/

.product-giftcard.woocommerce form.cart {
    display: block !important;
}
.product-giftcard.woocommerce form.cart .quantity {
    display: none;
}
.product-giftcard label {
    font-weight: 700;
}
.product-giftcard #custom_price {
    border: 1px solid #111111;
    border-radius: 0;
    margin-bottom: 1rem;
}
.product-giftcard.woocommerce div.product form.cart .button {
    margin-left: 0 !important;
}

/*=============================================
=            Tablet Section (1024px)            =
=============================================*/

@media only screen and (max-width: 1024px) {
    .treatment-slider.swiper,
    .treatment-step-slider.swiper,
    .treatment-recommendation-slider.swiper {
        overflow: visible;
        width: 100%;
        padding-left: 1%;
        padding-right: 1%;
    }

    .treatment-slider-section,
    .full-slider-section {
        overflow: hidden;
        padding-left: 40px;
        padding-right: 40px;
    }

    .swiper-slide .before_after-img-wrapper img.before-img {
        margin-left: auto;
        display: flex;
    }

    .swiper-slide .before_after-img-wrapper img.after-img {
        margin-right: auto;
        display: flex;
    }

    .testimonial-first-col {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-wrapper {
        box-shadow: none;
        padding: 0 0 30px 0;
        margin: 0;
    }

    .testimonial-wrapper .testimonial-image {
        padding-right: 0;
        margin: 0;
    }

    .testimonial-wrapper .additional-information {
      margin-bottom: 15px;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 12px;
      line-height: 1em;
    }

    .testimonial-wrapper .elementor-section .elementor-container {
        flex-direction: column;
        justify-content: center;
        margin: auto;
    }

    .testimonial-wrapper .elementor-section .elementor-container > .elementor-column {
        width: 90%;
        margin: auto;
    }
    
    .testimonial-wrapper .elementor-section {
      box-shadow: none;
    }

    .testimonial-description-wrapper {
        text-align: center;
    }

    .testimonial-description-wrapper .elementor-star-rating__wrapper {
        justify-content: center;
    }

    .testimonial-description-wrapper h6 {
        justify-content: center;
    }

    .before_after-img-wrapper img {
        width: 100%;
        max-width: 10em;
    }
    
    .wpsl-custom #wpsl-gmap {
        height: 300px !important;
    }
    
    .wpsl-custom #wpsl-result-list, 
    .wpsl-custom #wpsl-result-list #wpsl-stores {
        max-height: 600px;
    }

    #wpsl-wrap.wpsl-custom {
        flex-direction: column-reverse;
    }
    
    .wpsl-custom .wpsl-search form {
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem !important;
    }
    
    .wpsl-custom .wpsl-search {
        width: 100%;
    }

    .clinic-btns {
        flex-direction: column;
    }

}

/*=====  End of Tablet Section (1024px)  ======*/


/* Christmas style */

@media only screen and (min-width:768px){
    .christmas-deals .swiper-wrapper {
        flex-flow: wrap;
    }    
}

.christmas-deals .description-wrapper {
    padding: 20px;
    padding-top: 5px;
    position: relative;
}

.christmas-deals .description-wrapper .description-div {
    min-height: 14em;
}

.christmas-deals .christmas-deal {
    margin-bottom: 45px;
    padding: 0 15px;
}

.christmas-deal img {
    width: 100%;
    object-fit: contain;
    height: auto;
}

.christmas-deals .swiper-button-prev,
.christmas-deals .swiper-button-next {
    display: none;
}
.afterpay-deals .center.swiper-wrapper {
    justify-content: center;
}
.afterpay-deals .afterpay-deal {
    height: auto;
    display: flex;
}
.afterpay-deals .treatment-recommendation-wraper {
    position: relative;
    display: flex;
    flex-direction: column;
}
.afterpay-deal .description-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.afterpay-deal .treatment-recommendation-price  {
    margin-top:auto;
}
/*=============================================
=            Mobile Section (768px)            =
=============================================*/

@media only screen and (max-width: 768px) {
    .d-desktop {
        display: none !important;
    }
    
    .d-mobile {
        display: flex !important;
    }

    .treatment-slider-section,
    .full-slider-section {
        padding-left: 0;
        padding-right: 0;
    }

    .treatment-slider-section {
        overflow: hidden;
    }

    body #content .treatment-item-wrapper .elementor-button {
        min-width: 100%;
        max-width: 250px;
    }

    .swiper .swiper-button-next,
    .swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .treatment-slider.swiper .swiper-button-prev {
        left: 0;
    }

    .treatment-slider.swiper .swiper-button-next  {
        right: 0;
    }

    .before_after-img-wrapper {
        max-height: 14em;
    }

    .treatment_step_slider_pagination-wrapper.swiper .swiper-navigation-wrapper {
        display: none;
    }

    .treatment-step-slider .swiper-wrapper {
        padding: 0 0 60px;
    }

    .treatment_step-navigation-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .treatment-step-slider .primary-btn-alt .elementor-button {
        width: 100%;
    }

    .treatment_step_slider_pagination-wrapper.swiper {
        margin: auto;
        padding-bottom: 30px;
    }

    .testimonial-description-wrapper {
        padding: 30px 0;
    }

    .testimonial-swiper-pagination {
        display: block;
    }

    .testimonial-wrapper .elementor-section .elementor-container > .elementor-column.testimonial-first-col {
        width: 100%;
    }
    
    .page-section-nav ul.elementor-icon-list-items.elementor-inline-items {
        display: inline-flex;
        flex-direction: row;
        justify-content: start;
    }

    .page-section-nav .elementor-widget-container {
        overflow-x: auto !important;
    }
      
    .page-section-nav .elementor-widget-container #breadcrumbs {
      padding-left: 20px;
    }
    
    .woocommerce-thankyou-message {
      margin: 20px;
    }
      
    .page-section-nav ul.elementor-icon-list-items.elementor-inline-items {
        display: block;
        /* overflow-x: scroll; */
        width: calc(100% + 40px);
        max-width: 767px;
        white-space: nowrap;
    }

    .page-section-nav ul.elementor-icon-list-items.elementor-inline-items .elementor-inline-item {
        display: inline-block;
    }

    span.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
        border: 6px solid #000;
        opacity: 0.5;
    }

    span.swiper-pagination-bullet {
        background-color: #000 !important;
        opacity: 0.5;
    }
    
    .treatment-item-slider.swiper {
        overflow: visible;
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }

    .treatment-item-wrapper { 
        box-shadow: none;
    }

    .treatment-item-slider.swiper .swiper-button-next {
        right: -10px;
    }

    .treatment-item-slider.swiper .swiper-button-prev {
        left: -10px;
    }

    .treatment-recommendation-slider .elementor-widget-heading h4.elementor-heading-title {
        font-size: 30px;
        text-align: center;
    }

    .swiper .treatment_recommendation_slider-prev.swiper-button-prev {
        left: -15px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .swiper .treatment_recommendation_slider-next.swiper-button-next {
        right: -15px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .treatment-recommendation-slider .secondary-btn-alt .elementor-button {
        min-width: 100%;
    }

    /* .treatment-step-slider .swiper-slide {
        width: 65% !important;
    } */

    .treatment-item-wrapper {
        padding: 30px;
    }

    .treatment-item-wrapper .treatment-item-image {
        padding-right: 0;
        margin-bottom: 30px;
        max-height: 180px;
    }

    .treatment-item-excerpt {
        margin-bottom: 30px;
    }

    .testimonial-slider.swiper {
        width: 100%;
        margin-left: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .testimonial-slider.swiper .swiper-button-prev {
        left: -10px;
    }

    .testimonial-slider.swiper .swiper-button-next {
        right: -10px;
    }

    .before_after-img-wrapper img {
        width: 100%;
        max-width: 10em;
    }

    .swiper .swiper-button-prev {
        left: 0px;
    }
    
    .swiper .swiper-button-next  {
        right: 0px;
    }
    
    .clinic-gallery-wrapper { 
        padding: 0;
    }

    #all-clinics-accordion .elementor-widget-accordion {
        margin-right: 0;
    }

    #all-clinics-accordion span.elementor-accordion-icon.elementor-accordion-icon-right {
        top: 50%;
    }
        
    .woocommerce-checkout.woocommerce-order-received .woocommerce-order-details,
    .woocommerce-order-received .woocommerce .woocommerce-order ul.order_details    {
      padding: 20px !important;
    }
    
    .woocommerce-checkout .woocommerce-order p {
      padding-left: 20px;
    }
    
    
    #newsletter-footer .hs-form-field {
      width: 100% !important;
      float: left;
      margin: 0;  
    }
    
    #newsletter-footer .hs_submit {
      width: 100%;
    }
    
    .testimonial-description-wrapper blockquote p {
      font-size: 14px;
    }
    
    .treatment-product-list-row {
        display: flex;
        flex-direction: column;
    }

    select.treatment-product-list {
        margin-right: 0;
        margin-bottom: 15px;
        min-height: 50px;
    }

    /* .treatment-product-list-row #add-to-cart {
        max-width: 250px;
    } */

    
    #all-clinics-accordion .tab-contents {
        display: none;
    }

    .clinic-content {
        margin-top: 1rem;
    }

    .treatment-product-list-row.package-list-row > div {
        margin: 0 0 15px 0;
        flex: 1;
        position: relative;
    }

    .package-list-row #add-to-cart {
        width: 100%;
        position: relative;
        margin-top: 15px;
    }

    .page-section-nav .elementor-widget-wrap {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }

    .page-section-nav .elementor-widget-wrap ul.elementor-icon-list-items {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    section#recommended-treatments {
        overflow: hidden;
    }
}

/*=====  End of Mobile Section (768px)  ======*/

@media only screen and (max-width: 569px) {
    .hs-submit input.hs-button {
        width: 100%;
    }

    .christmas-deals .elementor-widget-wrap.elementor-element-populated {
        padding: 0;
    }
    
    .christmas-deals .swiper-button-prev,
    .christmas-deals .swiper-button-next {
        display: flex;
    }

    .christmas-deals .swiper-wrapper {
        flex-flow: row;
    }
    
    .christmas-deals .christmas-deal {
        padding: 0;
    }

    .christmas-deals {
        overflow: visible;
    }

    .christmas-deals.swiper .swiper-button-next {
        right: -15px;
    }

    .christmas-deals.swiper .swiper-button-prev {
        left: -15px;
    }
}