/*==============================================
=            General Module Classes            =
==============================================*/

.rm-module {
  padding-top: 40px;
  padding-bottom: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  @media (min-width: 768px) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  @media (min-width: 1060px) {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  p:last-of-type {
    margin-bottom: 0;
  }
}

.mtop {
  @media (max-width: 1059px) {
    margin-top: 40px !important;
  }
}
.mbottom {
  @media (max-width: 1059px) {
    margin-bottom: 40px !important;
  }
}
ul.list-margin-bottom {
  li {
    margin-bottom: 1em;
  }
}

.module-heading,
.module-subheading {
  margin-top: 0;
}

/*===================================
=            Style Guide            =
===================================*/

@keyframes flash {
  0% {
    color: var(--light-color);
  }
  100% {
    color: var(--text-color);
  }

}

/* Colors Module */
.mod-colors {
  padding-top: 0;
  @media (min-width: 768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }
  h2 {
    text-align: center;
  }
}
.rm-colors {
  /* display: grid; */
  display: flex;
  .color-box {
    height: 300px;
    border: 1px solid rgb(from var(--dark-color) r g b / 0.1);
  }
  .color-hex {
    text-align: center;
  }
  .color-selection {
    cursor: pointer;
    flex-basis: 0;
    flex-grow: 1;
    &.copied {
      .color-hex {
        animation: flash 1s;
      }
    }
  }
}

/* Background Image Module */
.mod-backgrounds {
  padding-top: 0;
  h2 {
    margin-top: 0;
  }
  h2, h3 {
    text-align: center;
  }
  .mod-backgrounds-container {
    display: flex;
    flex-direction: column;
    column-gap: 50px;
    row-gap: 50px;
    /* @media (min-width: 1060px) {
      flex-direction: row;
    } */
  }
}
.rm-bg-images {
  /* display: grid; */
  display: flex;
  flex-direction: column;
  column-gap: 50px;
  row-gap: 50px;
  @media (min-width: 1060px) {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bg-image-box {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 300px;
    border: 1px solid rgb(from var(--dark-color) r g b / 0.1);
  }
  .bg-image-url {
    text-align: center;
  }
  .bg-image-selection {
    cursor: pointer;
    /* flex-basis: 0; */
    /* flex-grow: 1; */
    width: 100%;
    @media (min-width: 1060px) {
      width: calc(25% - 18.75px);
    }
    &.copied {
      .bg-image-url {
        animation: flash 1s;
      }
    }
  }
}


/*=======================================
=            Default Classes            =
=======================================*/

/*===== Light Color Classes =====*/

.text-light-color {
  color: var(--light-color);
}
.heading-light-color {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--light-color);
  }
}
.preheading-light-color {
  h1.module-preheading, .h1.module-preheading, h2.module-preheading, .h2.module-preheading, h3.module-preheading, .h3.module-preheading, h4.module-preheading, .h4.module-preheading, h5.module-preheading, .h5.module-preheading, h6.module-preheading, .h6.module-preheading {
    color: var(--light-color);
  }
}
.subheading-light-color {
  h1.module-subheading, .h1.module-subheading, h2.module-subheading, .h2.module-subheading, h3.module-subheading, .h3.module-subheading, h4.module-subheading, .h4.module-subheading, h5.module-subheading, .h5.module-subheading, h6.module-subheading, .h6.module-subheading {
    color: var(--light-color);
  }
}
.button-light-color {
  .button, .buttons a, .rm-content-styles .button {
    /* NOTE: unrecognized "@extend .btn-inverse" — no native CSS equivalent; declarations for .btn-inverse live outside this file and were not duplicated here. Verify manually. */
  }
}
.links-light-color {
  a:not(.button):not(.crumb-go-home) {
    color: var(--light-color);
    text-decoration: underline;
    &:hover, &:active, &:focus {
      color: var(--light-color);
      text-decoration: none;
    }
  }
  .crumb-go-home {
    color: var(--light-color);
  }
}
.icons-light-color {
  .icon-img {
    svg {
      path {
        fill: var(--light-color);
      }
    }
  }
}
.bullets-light-color {
  li, ol {
    &::marker {
      color: var(--light-color);
    }
    &:before {
      background: var(--light-color);
    }
  }
}
.svg-light-color {
  svg {
    path {
      fill: var(--light-color);
    }
  }
}
.dots-light-color {
  .owl-dots {
    .owl-dot {
      border-color: var(--light-color)!important;
      &.active {
        background-color: var(--light-color)!important;
      }
    }
  }
}
/* .landing-text-light {
  color: $lightColor;
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: $lightColor;
  }
  a {
    color: $lightColor;
    text-decoration: underline;
    &.button {
      text-decoration: none;
      border-color: $lightColor;
    }
  }
} */

/*===== Dark Color Classes =====*/

.text-dark-color {
  color: var(--dark-color);
}
.heading-dark-color {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--dark-color);
  }
}
/* .preheading-dark-color {
  h1.module-preheading, .h1.module-preheading, h2.module-preheading, .h2.module-preheading, h3.module-preheading, .h3.module-preheading, h4.module-preheading, .h4.module-preheading, h5.module-preheading, .h5.module-preheading, h6.module-preheading, .h6.module-preheading {
    color: $darkColor;
  }
} */

.preheading-dark-color {
  .module-preheading {
    color: var(--dark-color);
  }
}

/* .subheading-dark-color {
  h1.module-subheading, .h1.module-subheading, h2.module-subheading, .h2.module-subheading, h3.module-subheading, .h3.module-subheading, h4.module-subheading, .h4.module-subheading, h5.module-subheading, .h5.module-subheading, h6.module-subheading, .h6.module-subheading {
    color: $darkColor;
  }
} */

.subheading-dark-color {
  .module-subheading {
    color: var(--dark-color);
  }
}
.button-dark-color {
  .button, .buttons a, .rm-content-styles .button {
    /* NOTE: unrecognized "@extend .btn-dark" — no native CSS equivalent; declarations for .btn-dark live outside this file and were not duplicated here. Verify manually. */
  }
}
.links-dark-color {
  a:not(.button):not(.crumb-go-home) {
    color: var(--dark-color);
    text-decoration: underline;
    &:hover, &:active, &:focus {
      color: var(--dark-color);
      text-decoration: none;
    }
  }
  .crumb-go-home {
    color: var(--dark-color);
  }
}
.icons-dark-color {
  .icon-img {
    svg {
      path {
        fill: var(--dark-color);
      }
    }
  }
}
.bullets-dark-color {
  li, ol {
    &::marker {
      color: var(--dark-color);
    }
    &:before {
      color: var(--dark-color);
    }
  }
}
.svg-dark-color {
  svg {
    path {
      fill: var(--dark-color);
    }
  }
}

/*===== Primary Color Classes =====*/

.text-primary-color {
  color: var(--primary-color);
}

.heading-primary-color {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--primary-color);
  }
}
.preheading-primary-color {
  h1.module-preheading, .h1.module-preheading, h2.module-preheading, .h2.module-preheading, h3.module-preheading, .h3.module-preheading, h4.module-preheading, .h4.module-preheading, h5.module-preheading, .h5.module-preheading, h6.module-preheading, .h6.module-preheading {
    color: var(--primary-color);
  }
}
.subheading-primary-color {
  h1.module-subheading, .h1.module-subheading, h2.module-subheading, .h2.module-subheading, h3.module-subheading, .h3.module-subheading, h4.module-subheading, .h4.module-subheading, h5.module-subheading, .h5.module-subheading, h6.module-subheading, .h6.module-subheading {
    color: var(--primary-color);
  }
}

.button-primary-color {
  /* NOTE: unrecognized "@extend .button" — no native CSS equivalent; declarations for .button live outside this file and were not duplicated here. Verify manually. */
}

.links-primary-color {
  a:not(.button):not(.crumb-go-home) {
    color: var(--primary-color);
    text-decoration: underline;
    &:hover, &:active, &:focus {
      color: var(--primary-color);
      text-decoration: none;
    }
  }
  .crumb-go-home {
    color: var(--primary-color);
  }
}

.icons-primary-color {
  .icon-img {
    svg {
      path {
        fill: var(--primary-color);
      }
    }
  }
}

.bullets-primary-color {
  li,
  ol {
    &::marker {
      color: var(--primary-color);
    }
    &:before {
      background: var(--light-color);
    }
  }
}
.svg-primary-color {
  svg {
    path {
      fill: var(--primary-color);
    }
  }
}

.dots-primary-color {
  .owl-dots {
    .owl-dot {
      border-color: var(--primary-color)!important;
      &.active {
        background-color: var(--primary-color)!important;
      }
    }
  }
}

/*===== Background Classes =====*/

.has-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*===== Heading Classes =====*/

.heading-center {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    text-align: center;
  }
  h1.module-preheading, .h1.module-preheading, h2.module-preheading, .h2.module-preheading, h3.module-preheading, .h3.module-preheading, h4.module-preheading, .h4.module-preheading, h5.module-preheading, .h5.module-preheading, h6.module-preheading, .h6.module-preheading {
    text-align: center;
  }
  h1.module-subheading, .h1.module-subheading, h2.module-subheading, .h2.module-subheading, h3.module-subheading, .h3.module-subheading, h4.module-subheading, .h4.module-subheading, h5.module-subheading, .h5.module-subheading, h6.module-subheading, .h6.module-subheading {
    text-align: center;
  }
}

.intro-center {
  .section-intro {
    text-align: center;
  }
}

.outro-center {
  .section-outro {
    text-align: center;
  }
}

/*===== Elite Classes =====*/

.elite-3 {
  padding-top: 0;
  @media (min-width: 1060px) {
    padding-bottom: 0;
    margin-top: 200px;
    margin-bottom: 200px;
  }
  @media (max-width: 1059px) {
    padding-left: 0;
    padding-right: 0;
  }
  &.has-outro {
    .lpb-column:not(.has-background) .lpb-column-content {
      padding-bottom: 0;
    }
    .section-outro-container {
      padding-top: 20px;
      padding-bottom: 20px;
      @media (min-width: 768px) {
        padding-bottom: 40px;
      }
      @media (min-width: 1060px) {
        padding-bottom: 60px;
        padding-left: 50%;
      }
    }
  }
  .lpb-column.has-background {
    min-height: 50vw;
    @media (min-width: 1060px) {
      margin-top: -100px;
      margin-bottom: -100px;
      min-height: 0;
    }
  }
}

.heading-top-0 {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
  }
}

.text-center {
  text-align: center;
}

.dr-quote {
  blockquote {
    line-height: 1.8em;
  }
  footer {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1em;
    font-weight: var(--fw-light);
    display: flex;
    align-items: center;
    font-family: var(--primary-font);
    img {
      margin: 0 20px 0 0;
    }
  }
}

.bg-mobile-none {
  @media (max-width: 767px) {
    background-image: none!important;
  }
}

.short-p {
  p {
    @media (min-width: 768px) {
      max-width: 60%;
      margin: 1em auto;
    }
  }
}

.bg-left {
  background-position: left center !important;
}

/*====================================
=            Basic Module            =
====================================*/

@import url("modules/basic.css");

/*===========================================
=            Page Feature Module            =
===========================================*/

@import url("modules/feature.css");

/*====================================
=            Table Module            =
====================================*/

@import url("modules/table.css");

/*==========================================
=            Testimonial Module            =
==========================================*/

@import url("modules/testimonial.css");

/*==================================
=            AAG Module            =
==================================*/

@import url("modules/quick-facts.css");

/*==================================
=            CTA Module            =
==================================*/

@import url("modules/cta.css");

/*==================================
=            FAQ Module            =
==================================*/
@import url("modules/faq.css");

/*=====================================================
=            Latest / Related Posts Module            =
=====================================================*/
@import url("modules/posts.css");

/*==========================================
=            Split Image Styles            =
==========================================*/

@import url("modules/split-image.css");
@import url("modules/specials.css");

/*===============================
=            Anchors            =
===============================*/

@import url("modules/anchors.css");

/*===============================
=       Intro Plus Anchors      =
===============================*/

@import url("modules/intro-anchors.css");

/*=============================
=            Icons            =
=============================*/

@import url("modules/icons.css");

/*===================================
=            Inline BnAs            =
===================================*/

@import url("modules/bnas.css");

/*=======================================
=            Carousel Module            =
=======================================*/

@import url("modules/carousel.css");

/*=======================================
=          Pagebuilder Module           =
=======================================*/

@import url("modules/pagebuilder.css");

/*=========================================
=            Home Page Modules            =
=========================================*/

@import url("modules/procedures.css");
@import url("modules/doctors.css");


/*==========================================
=            Partial Components            =
==========================================*/

@import url("modules/partials/hero.css");
@import url("modules/partials/intro.css");
@import url("modules/partials/outro.css");
@import url("modules/partials/read-more-buttons.css");
