:root {
  --hero-text-shadow: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
  --hero-text-size: 30px;
  --hero-subtext-size: 18px;
  --hero-description-size: 14px;
}
@media screen and (min-width: 580px) {
  :root {
    --hero-text-size: 32px;
    --hero-subtext-size: 20px;
    --hero-description-size: 15px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --hero-text-size: 32px;
    --hero-subtext-size: 20px;
    --hero-description-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --hero-text-size: 38px;
    --hero-subtext-size: 22px;
    --hero-description-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --hero-text-size: 42px;
    --hero-subtext-size: 24px;
    --hero-description-size: 20px;
  }
}

:root {
  --header-height: 45px;
}
@media screen and (min-width: 768px) {
  :root {
    --header-height: 60px;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --header-height: 80px;
  }
}

:root {
  /* design tokens */
  --color-primary-a1: #003da6;
  --color-primary-a2: #364248;
  --color-primary-a3: #007eb4;
  --color-primary-a4: #016a99;
  --color-primary-b1: #ffb71b;
  --color-primary-b2: #fecd4c;
  --color-primary-c1: #ffffff;
  --color-secondary-a1: #364248;
  --color-secondary-a2: #586f78;
  --color-secondary-a3: #c9c9c5;
  --color-secondary-a4: #dddddd;
  --color-secondary-a5: #eceded;
  --color-secondary-a6: #f7f9fa;
  --color-secondary-a7: #faf9f7;
  --color-secondary-a8: #959593;
  --color-secondary-b1: #fee9bc;
  --color-secondary-b2: #fff8e6;
  --color-secondary-c1: #e5f5fb;
  --color-secondary-c2: #f5feff;
  --color-secondary-d1: #ff9527;
  --color-secondary-e1: #8f659c;
  --color-tertiary-a1: #933f10;
  --color-tertiary-b1: #5f277e;
  --color-tertiary-c1: #156250;
  --color-system-a1: #3f9f90;
  --color-system-a2: #ddf5f2;
  --color-system-b1: #b12943;
  --color-system-b2: #d5647a;
  --color-system-b3: #f9e8eb;
  --color-system-page-bg: $bswh-lt-gray;
  --color-button-bg: #fecd4c;
  --color-interaction-hover-bg: #fff8e6;
  --color-interaction-hover-border: #fecd4c;
  --color-interaction-active-bg: #f5feff;
  --color-interaction-active-border: #007fa9;
  --color-interaction-focus: #3a97f9;
  --shadow-focus: 0px 0px 3px 3px rgba(58, 151, 249, 1);
  --shadow-regular: 2px 8px 10px 0px rgba(58, 68, 85, 0.15);
  --shadow-soft: 0px 2px 20px 0px rgba(58, 68, 85, 0.15);
  --spacing-size-none: 0px;
  --spacing-size-xxsmall: 4px;
  --spacing-size-xsmall: 8px;
  --spacing-size-small: 16px;
  --spacing-size-medium: 24px;
  --spacing-size-large: 32px;
  --spacing-size-xlarge: 40px;
  --spacing-size-xxlarge: 60px;
  --spacing-size-xxxlarge: 104px;
  --gap-size:10px;
  --gap-half-size: calc(var(--gap-size) / 2);
  --page-feature-light-color:transparent;
  --page-feature-dark-color:transparent;
  --page-feature-color:transparent;
  --radius-none: 0px;
  --radius-xs: 4px;
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 16px;
  --radius-pill: 50px;
  --grid-breakpoint-xs: 375px;
  --grid-breakpoint-sm: 480px;
  --grid-breakpoint-md: 768px;
  --grid-breakpoint-lg: 960px;
  --grid-breakpoint-xl: 1200px;
  --grid-breakpoint-xxl: 1440px;
  --grid-breakpoint-xs-max: 374.9px;
  --grid-breakpoint-sm-max: 479.9px;
  --grid-breakpoint-md-max: 767.9px;
  --grid-breakpoint-lg-max: 959.9px;
  --grid-breakpoint-xl-max: 1199.9px;
  --grid-breakpoint-xxl-max: 1439.9px;
  /* page layout */
  --page-spacing-x: var(--spacing-size-medium);
  --page-spacing-y: var(--spacing-size-large);
  --page-gap: var(--spacing-size-small);
  --banner-path-size: 16px;
}
@media (min-width: 768px) {
  :root {
    --page-spacing-x: var(--spacing-size-large);
    --page-spacing-y: var(--spacing-size-xlarge);
    --page-gap: var(--spacing-size-medium);
  }
}
@media (min-width: 960px) {
  :root {
    --page-spacing-x: var(--spacing-size-xlarge);
    --page-spacing-y: var(--spacing-size-xlarge);
  }
}
@media (min-width: 1200px) {
  :root {
    --page-spacing-x: var(--spacing-size-xxlarge);
    --page-spacing-y: var(--spacing-size-xxlarge);
    --page-gap: var(--spacing-size-large);
  }
}
@media (min-width: 768px) {
  :root {
    --banner-path-size: 20px;
  }
}
@media (min-width: 992px) {
  :root {
    --banner-path-size: 24px;
  }
}
@media (min-width: 1200px) {
  :root {
    --banner-path-size: 28px;
  }
}

/* breakpoints */
@keyframes slideup {
  from {
    top: 100%;
  }
  to {
    top: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Font */
:root {
  --color-blue-primary: #1C489A;
  --color-blue-secondary: #087EB6;
  --color-red-primary: #B12A43;
  --color-red-secondary: #D6647A;
  --color-yellow-primary: #F7942C;
  --color-yellow-secondary: #FDB61B;
  --color-purple-primary: #5F2C7E;
  --color-purple-secondary: #B59BBE;
  --color-green-primary: #3E9F90;
  --color-green-secondary: #82C1B7;
  --color-dark-gray: #364248;
}

/* Design */
.bswh-orthogroup-home .page-section .grid-main img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.bswh-orthogroup-home .page-section .grid-main .btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
}
.bswh-orthogroup-home .page-section .grid-main .btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.bswh-orthogroup-home .page-section .grid-main .cards {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.bswh-orthogroup-home .page-section .grid-main .cards_item {
  display: flex;
  padding: 1rem;
}
.bswh-orthogroup-home .page-section .grid-main .cards_item a {
  width: 100%;
  text-decoration: none;
}
@media (min-width: 25rem) {
  .bswh-orthogroup-home .page-section .grid-main .cards {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .bswh-orthogroup-home .page-section .grid-main .cards_item {
    width: 50%;
  }
}
@media (min-width: 40rem) {
  .bswh-orthogroup-home .page-section .grid-main .cards_item {
    width: 33.3333%;
  }
}
@media (min-width: 56rem) {
  .bswh-orthogroup-home .page-section .grid-main .cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .bswh-orthogroup-home .page-section .grid-main .cards_item {
    width: 100%;
  }
}
.bswh-orthogroup-home .page-section .grid-main .card {
  background-color: white;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  transition: 0.5s;
}
.bswh-orthogroup-home .page-section .grid-main .card:hover {
  transform: scale(1.05);
}
.bswh-orthogroup-home .page-section .grid-main .card:hover .card_image-wrapper {
  transform: scale(1.15);
}
.bswh-orthogroup-home .page-section .grid-main .card_content {
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.bswh-orthogroup-home .page-section .grid-main .card_image {
  padding: 1rem;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}
.bswh-orthogroup-home .page-section .grid-main .card_image img {
  min-height: 100px;
}
.bswh-orthogroup-home .page-section .grid-main .card_image-wrapper {
  border-radius: 50%;
  transition: 0.5s;
  position: relative;
}
.bswh-orthogroup-home .page-section .grid-main .card_title {
  color: var(--color-dark-gray);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
  text-align: center;
  font-family: "sharpsans-semibold";
  letter-spacing: 0.35px;
  font-weight: unset;
}
.bswh-orthogroup-home .page-section .grid-main .card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.bswh-orthogroup-home .page-section .grid-main .made_by {
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}
.bswh-orthogroup-home .page-section .grid-main .icon-image {
  position: relative;
  z-index: 2;
}
.bswh-orthogroup-home .page-section .grid-main .icon-image-hover {
  position: absolute;
  left: 0;
  z-index: 1;
}
.bswh-orthogroup-home .page-section .grid-main .card:hover .icon-image {
  opacity: 0;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}
.bswh-orthogroup-home .page-section .grid-main h2 {
  padding-bottom: 30px !important;
}

[class^=orthogroup] .location-card-name, [class^=bswh-orthogroup] .location-card-name {
  font-size: 18px;
}
[class^=orthogroup] .location-card-address, [class^=bswh-orthogroup] .location-card-address {
  margin: 0;
}
[class^=orthogroup] main > div#content > .row .container.anchor-nav.primary-white-bg.full-width, [class^=bswh-orthogroup] main > div#content > .row .container.anchor-nav.primary-white-bg.full-width {
  margin-bottom: 2px;
}

.bswh-orthogroup-home span.heading-mobile {
  display: block;
  font-size: 22px;
  padding-bottom: 20px;
  line-height: normal;
  color: var(--color-secondary-a1) !important;
}

@media (min-width: 992px) {
  .bswh-orthogroup-home span.heading-mobile {
    display: none;
  }
}
.bswh-orthogroup-home .hero-description span {
  font-size: 22px;
} 
@media screen and (min-width: 992px) {
  .map-container, .multiple-locations-container {
    display: flex;
    flex-direction: row;
  }
}
[class^=orthogroup] .location-card .button, [class^=bswh-orthogroup] .location-card .button {
  min-width: -moz-max-content;
  min-width: max-content;
}
[class^=orthogroup] .location-maps .location-card .location-card-contact, [class^=bswh-orthogroup] .location-maps .location-card .location-card-contact {
  gap: 10px;
}

@media (max-width: 520px) {
  [class^=orthogroup] .row.provider-list, [class^=bswh-orthogroup] .row.provider-list {
    padding: 0;
  }
}
@media (max-width: 520px) {
  [class^=orthogroup] .provider-list .provider-list-item .action-flex-wrapper, [class^=bswh-orthogroup] .provider-list .provider-list-item .action-flex-wrapper {
    margin-left: 0;
  }
  [class^=orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link, [class^=bswh-orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link {
    flex-direction: column;
  }
  [class^=orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link .link-title, [class^=bswh-orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link .link-title {
    text-align: center;
  }
}
[class^=orthogroup] .list-content-flex, [class^=bswh-orthogroup] .list-content-flex {
  height: 100%;
}
@media (max-width: 520px) {
  [class^=orthogroup] .list-content-flex, [class^=bswh-orthogroup] .list-content-flex {
    padding: 20px;
  }
}
[class^=orthogroup] .list-content-flex > div, [class^=bswh-orthogroup] .list-content-flex > div {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
  height: 100%;
}
[class^=orthogroup] .list-footer ul, [class^=bswh-orthogroup] .list-footer ul {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
@media (max-width: 520px) {
  [class^=orthogroup] .list-footer ul, [class^=bswh-orthogroup] .list-footer ul {
    flex-wrap: wrap;
    margin-top: 30px;
  }
  [class^=orthogroup] .list-footer ul a, [class^=bswh-orthogroup] .list-footer ul a {
    flex: 1 1 45%;
  }
}
[class^=orthogroup] .list-footer ul a li, [class^=bswh-orthogroup] .list-footer ul a li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1.4rem !important;
}
@media (max-width: 520px) {
  [class^=orthogroup] .list-footer ul a li, [class^=bswh-orthogroup] .list-footer ul a li {
    font-size: 1.3rem !important;
  }
}
[class^=orthogroup] .provider-list .provider-list-item .detail-wrapper, [class^=bswh-orthogroup] .provider-list .provider-list-item .detail-wrapper {
  align-items: flex-start;
}
@media (max-width: 400px) {
  [class^=orthogroup] .provider-list .provider-list-item .detail-wrapper, [class^=bswh-orthogroup] .provider-list .provider-list-item .detail-wrapper {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}
@media (max-width: 520px) {
  [class^=orthogroup] .provider-list .provider-list-item .detail-wrapper .details, [class^=bswh-orthogroup] .provider-list .provider-list-item .detail-wrapper .details {
    width: 100%;
  }
}
[class^=orthogroup] ul.action-flex, [class^=bswh-orthogroup] ul.action-flex {
  min-width: 120px;
}
[class^=orthogroup] .filter-pill-list-wrapper .filter-pill-list, [class^=bswh-orthogroup] .filter-pill-list-wrapper .filter-pill-list {
  margin-bottom: 0;
}
[class^=orthogroup] .filter-pill-list-wrapper, [class^=bswh-orthogroup] .filter-pill-list-wrapper {
  margin-top: 4px;
}
[class^=orthogroup] .pagination-wrapper .pagination .page-link.active, [class^=bswh-orthogroup] .pagination-wrapper .pagination .page-link.active {
  background: var(--color-primary-c1) !important;
  border: 1px solid #fecd4c;
  color: var(--color-secondary-a1) !important;
}

body.orthogroup-knee .banner-image {
  content: url(https://wadcdnstorageprod.blob.core.windows.net/bswhealth/com/images/icons/ortho-card_icons/knee.svg);
}

[class^=orthogroup] .content a.btn-secondary-link::after, [class^=orthogroup] .content button.btn-secondary-link::after, [class^=orthogroup] .rich-text a.btn-secondary-link::after, [class^=orthogroup] .rich-text button.btn-secondary-link::after {
  position: relative;
}
[class^=orthogroup] button.booking-button.provider-button label {
  cursor: pointer;
}
[class^=orthogroup] button.booking-button.provider-button.schedule-button {
  cursor: pointer;
}

@media (max-width: 520px) {
  [class^=orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link,
  [class^=bswh-orthogroup] .provider-list .provider-list-item .action-flex-wrapper .action-flex .action-link {
    flex-direction: row;
  }
}/*# sourceMappingURL=bswh-specialties.css.map */