/*@import url(https://fonts.googleapis.com/css?family=Montserrat:700);
    html, body {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
    font-size: 100%;
    font-family: Verdana, sans-serif;
}*/
html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(./images/lb-loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(./images/lb-prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(./images/lb-next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-caption a {
  color: #4ae; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(./images/lb-close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  border-radius: 4px; }

#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none; }

#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 600px;
  height: 300px;
  background: #ccc;
  text-align: center;
  line-height: 300px; }

span.control_prev, span.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer; }

span.control_prev:hover, span.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease; }

span.control_prev {
  border-radius: 0 2px 2px 0; }

span.control_next {
  right: 0;
  border-radius: 2px 0 0 2px; }

.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px; }

body {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0; }

img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; }

#page {
  background-color: #fff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: left; }

article, section, aside, hgroup, nav, footer, figure, figcaption {
  display: block; }

.page-flex {
  display: flex; }

#content, #content-main {
  font-family: "Roboto", sans-serif;
  letter-spacing: .3px;
  line-height: 19px;
  font-size: 16px;
  line-height: 24px; }
  @media only screen and (min-width: 980px) {
    #content, #content-main {
      display: inline-block;
      width: 100%;
      line-height: 23px; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    #content, #content-main {
      font-size: 14px;
      line-height: 22px;
      width: auto;
      margin: 0;
      padding: 0; } }

#content-main-home {
  font-family: "Roboto", sans-serif; }

.entry p {
  margin-top: 0; }

.entry p a, .entry ul li a, .entry ol li a, #toparrow, #toparrow a, .entry ol.page li a {
  color: #00728F;
  text-decoration: none; }

.entry p a:hover, .entry ul li a:hover, .entry ol li a:hover, #toparrow, #toparrow a:hover, .entry ol.page li a:hover {
  color: #000; }

.clearleft {
  clear: left; }

a:hover, .entry p a:hover, .entry ul li a:hover {
  /*text-decoration: underline;*/ }

h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited, small, .nocomments, .postmetadata, blockquote, strike, #searchform, #searchsubmit, #navsearchsubmit, #rightbarsearchsubmit, #searchresultssubmit, #searchform #searchsubmit, select, #commentform input, input:focus, textarea:focus, label:focus, #searchform:focus {
  color: #00728F; }

h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, .rightbar-page-lid a, .rightbar-photo-lid a, .rightbar-page-lid a:hover, .rightbar-photo-lid a:hover {
  text-decoration: none; }

a, h2 a:hover, h3 a:hover, h1, h1 a, h1 a:hover, h1 a:visited, #headerimg .description {
  color: #222;
  text-decoration: none; }

a:focus {
  outline: 0; }

.news-content-wrapper h2.entry-title, .blog-content-wrapper h2 {
  clear: none !important;
  padding-top: 10px !important; }

.news-content-wrapper h2 {
  margin-top: 0px;
  margin-bottom: 0px;
  width: 90%;
  line-height: 30px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .news-content-wrapper h2 {
      width: 80%; } }
.news-content-wrapper small {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
  margin-left: 2.25rem;
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem; }
  .news-content-wrapper small span.date-published {
    width: 100%;
    display: inline-block;
    float: left; }

.news-content-wrapper p, .blog-content-wrapper p {
  clear: none !important; }

.hentrydetails, .hentrydetails a span {
  font-size: 11px;
  color: #aaa;
  line-height: 14px; }

.hentrydetails {
  margin: 1rem 1.5rem;
  text-align: right;
  display: block; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .hentrydetails {
      margin: 1rem 0.5rem 1rem 0.5rem;
      text-align: left; } }

#toparrow {
  text-align: center;
  margin-top: 4rem; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    #toparrow {
      margin-top: 2rem; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    #toparrow {
      margin-top: 1rem;
      text-align: left; } }

h1, h2, h3, h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-align: left; }

h1, .entry h1 {
  font-size: 1.5em;
  margin-top: 14px;
  line-height: 21px; }

.single-answers h1, .single-htva_posts h1, .single-news h1, .single-research h1 {
  padding-top: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 40px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .single-answers h1, .single-htva_posts h1, .single-news h1, .single-research h1 {
      font-size: 24px;
      line-height: 30px; } }

h2, h2.pagetitle {
  font-size: 18px;
  line-height: 20px; }

article h2 {
  font-size: 28px;
  line-height: 32px;
  color: #333;
  margin: 2rem 0 1rem 0;
  font-weight: 400;
  display: block;
  width: auto; }
  article h2:first-child {
    margin-top: 0; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    article h2 {
      font-size: 24px;
      line-height: 28px; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    article h2 {
      font-size: 20px;
      line-height: 24px;
      font-weight: bold; } }
article h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 1rem 0 1rem 0;
  padding: 0;
  line-height: 24px;
  display: inline-block;
  width: auto; }
  article h3:first-child {
    margin-top: 0; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    article h3 {
      font-size: 18px;
      line-height: 22px; } }
article h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  line-height: 24px;
  display: inline-block;
  width: 100%; }
  article h4:first-child {
    margin-top: 0; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    article h4 {
      font-size: 18px;
      line-height: 22px; } }

h3.comments {
  padding: 0;
  margin: 40px auto 20px; }

.answers h2.entry-title {
  margin-top: 0; }
.answers span.date {
  margin-bottom: 0.5rem;
  display: inline-block; }

.video-title {
  padding-left: 2.5rem;
  position: relative; }

.video-title:before {
  content: '\f1c8';
  font-family: fontawesome;
  position: absolute;
  left: 0;
  font-size: 2rem;
  color: #00728F; }

h2.faq {
  clear: none;
  padding-top: 8px !important;
  margin: 0 0 20px 0; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    h2.faq {
      padding-top: 10px !important; } }

.post-type-archive-htva_posts h2 {
  clear: left !important;
  display: block; }

html > body .entry ul {
  margin-left: 0;
  padding: 0 0 0 30px;
  list-style: none;
  padding-left: 10px;
  text-indent: -10px; }

html > body .entry ul li {
  margin: 7px 0 8px 10px;
  list-style: disc; }

html > body .entry ol li {
  margin: 7px 0 20px 25px;
  list-style-type: decimal; }

html > body .entry ol li ul li {
  list-style-type: disc;
  margin-bottom: 8px; }

.entry ul li {
  margin: 0;
  padding: 1px 0 0 0;
  text-indent: -.5px;
  list-style: disc; }

.entry ul li ul li {
  margin: 2px;
  padding: 1px;
  padding-left: 10px;
  list-style: circle;
  text-align: left; }

.entry ul li ul li a {
  font-weight: normal; }

.entry .sitemap ul li a {
  font-weight: bold; }

.entry .sitemap ul li ul li a {
  background: #fff;
  font-weight: normal; }

.entry ol {
  width: 92%;
  padding: 0 0 0 15px;
  margin: 20px 0;
  text-align: left; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .entry ol {
      padding: 0; } }

.entry ol li {
  margin: 0;
  padding: 0;
  list-style-type: decimal; }

.entry ol.post li {
  list-style-type: decimal;
  margin-top: 10px; }

.entry ol.page li {
  list-style-type: decimal;
  margin-top: 15px; }

#page-content-wrapper ul.fa-ul {
  padding-left: 23px;
  margin: 20px 0; }

.hr-news {
  height: 1px;
  border: 0;
  font-size: 1px;
  line-height: 1px;
  overflow: hidden;
  background-color: rgba(79, 180, 187, 0.1); }

p img {
  padding: 0;
  max-width: 100%; }

img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto; }

img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline; }

img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline; }

.alignright {
  float: right; }

.alignleft {
  float: left; }

table.footable {
  max-width: 100%;
  margin: 30px auto;
  float: none; }

.tooltip {
  cursor: help; }

a.tooltip span {
  display: none;
  text-decoration: none; }

a.tooltip:hover span {
  display: block;
  position: absolute;
  margin: 0 auto 5px;
  padding: 15px;
  width: 78%;
  max-width: 320px;
  background: #fff;
  border: 1px solid #538488;
  color: #333;
  text-decoration: none;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2); }

a.tooltip-search {
  margin-left: 20px;
  margin-top: 5px; }

a.tooltip-search span {
  display: none; }

a.tooltip-search:hover {
  text-decoration: none; }

a.tooltip-search:hover span {
  z-index: 999;
  display: inline;
  position: absolute;
  margin: 18px -127px;
  padding: 9px;
  background: #fff;
  line-height: 26px;
  color: #333;
  width: 115px;
  font-size: 12px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2); }

.tooltip-search input[type="radio"] {
  display: inline;
  margin: 5px 10px 4px 7px !important;
  width: 17px;
  height: 17px;
  float: left;
  clear: left; }

blockquote {
  padding: 0.25rem 2rem 1rem 2rem;
  margin: 15px 15px 40px 0px;
  background: #f1f1f1;
  width: 65%;
  display: block;
  color: #00728F;
  font-size: 16px;
  line-height: 28px;
  position: relative;
  border-radius: 7px;
  box-sizing: border-box; }
  blockquote:before {
    content: "\f10d";
    font-family: fontawesome;
    color: #00728F;
    position: absolute;
    top: 0;
    left: -1rem;
    font-size: 2rem; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    blockquote {
      width: 100%;
      padding: 0.25rem 1.5rem 1rem 1.5rem; } }

blockquote p {
  margin: 10px 0 !important; }

blockquote cite {
  margin: 5px 0 0;
  display: block; }

.center {
  text-align: center; }

a img {
  border: 0;
  border-bottom: 0;
  max-width: 100%; }

.navigation {
  display: block;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0; }

small {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.4em;
  font-style: normal;
  color: #00728F; }

object {
  outline: 0; }

#cycloneslider-prp-rotator-1 {
  max-height: 200px; }

header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media only screen and (min-width: 980px) {
    header {
      width: 100%;
      height: 160px; } }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    header {
      padding: 1rem 0;
      flex-wrap: wrap; } }
  header #headerlogo {
    flex-shrink: 1;
    margin-right: 2rem; }
    header #headerlogo img {
      width: 100%;
      height: auto;
      max-width: 580px;
      box-sizing: border-box; }
      @media only screen and (max-width: 1260px) {
        header #headerlogo img {
          margin-left: 1rem;
          max-width: 420px; } }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        header #headerlogo img {
          max-width: 400px; } }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        header #headerlogo img {
          margin-left: 0;
          padding: 0 0.5rem; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      header #headerlogo {
        text-align: center;
        width: 100%; } }
  header #headertext {
    color: #555;
    text-align: left;
    font-size: 13px;
    padding-top: 15px;
    padding-right: 1.5rem;
    line-height: 20px;
    padding-left: 4rem;
    min-width: 285px; }
    @media only screen and (max-width: 1260px) {
      header #headertext {
        padding-left: 1rem; } }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      header #headertext {
        padding-top: 5px; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      header #headertext {
        font-size: 12px;
        width: 100%;
        line-height: 18px;
        margin: 18px auto;
        text-align: center;
        padding-right: 0;
        padding-left: 0; } }
  header #headerbuttons {
    width: 300px;
    display: flex; }
    @media only screen and (max-width: 1260px) {
      header #headerbuttons {
        margin-right: 1rem; } }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      header #headerbuttons {
        text-align: center;
        position: relative;
        width: 50%;
        margin: 2rem auto 0.5rem;
        display: flex;
        align-items: center;
        justify-content: space-around; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      header #headerbuttons {
        width: 100%;
        max-width: 350px;
        margin: 0rem auto 1.5rem;
        min-width: 0px; } }

.comp {
  margin-left: 1rem; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .comp {
      margin-left: 0;
      flex-basis: 6rem; } }

.comp a, #phone-mobile a, #menu-toggle a {
  width: 100%;
  height: 60px;
  margin: 10px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 4px;
  padding: 10px 0 10px 10%;
  background: #E7A100;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  transition: background .5s;
  box-sizing: border-box;
  cursor: pointer; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    .comp a, #phone-mobile a, #menu-toggle a {
      display: block;
      width: 68px;
      height: 68px; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .comp a, #phone-mobile a, #menu-toggle a {
      font-size: 10px;
      line-height: 9px;
      height: auto;
      margin-top: 0px; } }

#contact-cta-button a {
  padding: 0 0.5rem;
  max-width: 140px;
  min-width: 124px; }
  @media only screen and (min-width: 1px) and (max-width: 480px) {
    #contact-cta-button a {
      min-width: 118px;
      margin: 0 5px; } }
  #contact-cta-button a i {
    margin-right: 0.75rem; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      #contact-cta-button a i {
        width: 100%;
        font-size: 28px;
        margin-bottom: 0.25rem;
        margin-top: 6px; } }

@media only screen and (min-width: 1px) and (max-width: 979px) {
  .comp a {
    width: 62px;
    padding: 6px 0 6px;
    height: 56px; } }
@media only screen and (min-width: 1px) and (max-width: 730px) {
  .comp a {
    height: 60px;
    width: 60px;
    margin: 0; } }

.comp #caduceus {
  display: block;
  width: 30px;
  margin: 0 auto 5px; }

.comp#online-consult-cta-button span {
  margin-left: 0.75rem;
  margin-right: 1rem; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    .comp#online-consult-cta-button span {
      margin: 0; } }
@media only screen and (min-width: 1px) and (max-width: 979px) {
  .comp#online-consult-cta-button i {
    width: 100%;
    margin-top: 7px;
    margin-bottom: 8px; } }

@media only screen and (min-width: 980px) {
  #phone-mobile {
    display: none; } }
@media only screen and (min-width: 1px) and (max-width: 979px) {
  #phone-mobile {
    display: none; } }
@media only screen and (min-width: 1px) and (max-width: 730px) {
  #phone-mobile {
    display: inline-block; } }

@media only screen and (min-width: 1px) and (max-width: 730px) {
  #phone-mobile a {
    padding: 1px 3px 9px; } }

@media only screen and (min-width: 1px) and (max-width: 730px) {
  #phone-mobile .fa-mobile {
    display: block;
    font-size: 41px;
    margin: 3px 0 5px; } }

#phone-mobile .fa-mobile {
  display: block;
  font-size: 41px;
  margin: 3px 0 5px; }

.comp a:hover, #menu-toggle a:hover, #phone-mobile a:hover {
  background: #f6ac00;
  text-decoration: none; }

.comp #caduceus {
  width: 40px;
  margin: 0 14px 0 4px; }
  .comp #caduceus img {
    width: 100%;
    height: auto; }

.comp i.fa.fa-desktop.fa-2x {
  width: 40px;
  margin: 0 10px 0 4px;
  text-shadow: #fff 0 0 0; }

@media only screen and (min-width: 1px) and (max-width: 979px) {
  .comp a, #menu-toggle a {
    font-size: 10px; }

  .comp a, #menu-toggle a {
    width: 100px;
    height: 68px;
    padding: 3px;
    border-radius: 4px;
    line-height: 10px; }

  .comp #caduceus {
    display: block;
    width: 30px;
    margin: 1px auto 4px; }

  #consult-text {
    margin: 5px 0 1px 0;
    display: block; }

  .comp i.fa.fa-desktop.fa-2x {
    margin: 4px 0 4px;
    text-shadow: #fff 0 0 0;
    font-size: 28px;
    width: 100%; }

  .comp i.fa.fa-picture-o.fa-3x, .comp i.fa.fa-picture-o.fa-3x, #menu-toggle i.fa.fa-bars.fa-3x {
    display: block;
    margin: 7px 0 6px 0; }

  #menu-toggle-text {
    margin-top: 5px;
    display: block; } }
@media only screen and (min-width: 1px) and (max-width: 730px) {
  .comp a, #menu-toggle a {
    width: 102px; } }
@media only screen and (min-width: 1px) and (max-width: 480px) {
  #menu-toggle a {
    width: 70px; } }
a span.consult-text:hover {
  /*text-decoration: underline;*/ }

#searchbutton {
  border-style: none;
  padding: 0;
  width: 100%;
  background-color: transparent;
  cursor: pointer; }

div#searchbar {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #00728F;
  color: black;
  margin: 0;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px; }

form#headersearchform {
  width: 100%;
  color: white; }

form#headersearchform input#s {
  width: 100%;
  border: 0;
  padding: 15px 5px;
  text-align: center;
  font-size: 22px;
  background: #fff;
  border-right: 3px solid #f1f1f1;
  border-left: 3px solid #f1f1f1;
  color: #388d9e;
  box-sizing: border-box; }

#headersearchform input[type="radio"] {
  margin: 12px 3px 0 12px;
  width: 15px;
  height: 15px; }

#headersearchform input#navsearchsubmit {
  float: right;
  width: 15%;
  background: #E7A100;
  margin: 5px 5px 5px 0;
  color: white;
  transition: background .5s;
  border: none;
  font-weight: 700;
  cursor: pointer; }

#headersearchform input#navsearchsubmit:hover {
  background: #E99919;
  background: #f6ac00; }

form#headersearchform input#s:focus, form#headersearchform input#s:active {
  background-color: #fff !important;
  outline: 0;
  color: #388d9e !important; }

form#headersearchform input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #eeeeef inset !important;
  color: #388d9e !important; }

#bannerimg, #bannerimg img {
  width: 100%;
  height: auto;
  padding: 0; }

.page-header-image img {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0; }

.page-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto; }

.page-nav h1 {
  font-size: 36px;
  line-height: 31px;
  width: 100%;
  text-align: left;
  padding-bottom: 10px;
  padding-top: 10px;
  margin: 0 auto;
  font-weight: 400;
  color: #333; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    .page-nav h1 {
      font-size: 30px;
      line-height: 32px; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .page-nav h1 {
      font-size: 24px;
      line-height: 30px; } }

.page-template-template_patientphotosprofile .page-nav {
  width: 30%; }

.page-nav-next {
  width: 65px;
  text-align: right; }

nav ul#menu-main-menu {
  width: 100%;
  display: flex;
  justify-content: space-between; }
  nav ul#menu-main-menu li {
    flex-grow: 1; }

.menu-main-menu-container {
  flex-grow: 1; }

nav.sidebar {
  width: 100%;
  height: 55px;
  position: relative;
  z-index: 2000;
  border-top: 3px solid #00728F;
  display: flex;
  justify-content: space-between; }
  nav.sidebar ul#home {
    width: 4rem; }
  nav.sidebar ul#search {
    width: 4rem; }

nav.sidebar ul {
  margin: 0;
  padding: 0;
  float: left;
  z-index: 10000000; }

nav.sidebar ul li {
  list-style: none;
  height: 55px;
  display: flex;
  position: relative;
  background-color: #f1f1f1; }

nav ul#home li {
  border-radius: 4px 0 0 0; }

nav ul#search li {
  border-radius: 0 4px 0 0; }

nav.sidebar ul li:hover {
  background-color: #f9f9f9; }

nav.sidebar ul li:hover > ul {
  visibility: visible; }

nav.sidebar ul ul {
  position: absolute;
  left: 0;
  top: 55px;
  width: 225px;
  visibility: hidden;
  z-index: 100000000;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.21); }

nav.sidebar ul a {
  color: #333;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding: 0 15px;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 18px;
  letter-spacing: .7px; }

nav.sidebar ul a:hover {
  color: #000; }

nav.sidebar ul li ul li {
  width: 225px;
  z-index: 1000;
  height: 30px;
  margin-bottom: 0;
  background-color: #fff;
  opacity: 1;
  border-top: 0;
  border-left: 3px solid #fff; }

nav.sidebar ul li ul li:first-child::before {
  content: '';
  background-color: #00728F;
  height: 3px;
  position: absolute;
  top: -3px;
  left: -3px;
  width: 228px; }

nav.sidebar ul li ul li:hover {
  background-color: #f1f1f1;
  border-left: 3px solid #00728F; }

nav.sidebar ul li ul li a {
  width: 94%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 6%;
  text-align: left;
  line-height: 14px;
  font-family: "Roboto", sans-serif;
  letter-spacing: .6px;
  font-size: 13px;
  font-weight: 700; }

nav.sidebar ul li ul li a:hover {
  text-decoration: none; }

nav.sidebar ul li ul li ul {
  visibility: hidden; }

nav.sidebar ul li ul li:hover > ul {
  visibility: visible;
  left: 225px;
  top: 0;
  width: 100%; }

nav.sidebar ul li ul li ul li {
  width: 225px;
  margin-bottom: 0; }

.page-id-394 nav.sidebar ul li #menu-item-22890 {
  display: none; }
.page-id-394 nav.sidebar ul li #menu-item-22884 {
  display: none; }
.page-id-394 nav.sidebar ul li #menu-item-22885 {
  display: none; }

.shiftnav ul.shiftnav-menu li.menu-item {
  text-align: left; }
.shiftnav li.menu-item.shiftnav-sub-accordion.shiftnav-active > ul.sub-menu {
  padding-left: 1rem;
  background-color: #f1f1f1; }

.shiftnav-search .shiftnav-searchform {
  background-color: #fff !important;
  padding: 0 1rem; }

.shiftnav-search input.shiftnav-search-input {
  color: #00728F !important; }

.shiftnav-search input.shiftnav-search-input::placeholder {
  color: #00728F !important; }

.shiftnav-search .shiftnav-search-submit, .shiftnav-searchbar-drop .shiftnav-search-submit {
  right: 1rem !important; }

.shiftnav .shiftnav-tagline {
  font-size: 24px !important; }

.shiftnav.shiftnav-shiftnav-main ul.shiftnav-menu li.menu-item > .shiftnav-submenu-activation:hover {
  color: #333333 !important; }

.shiftnav.shiftnav-shiftnav-main ul.shiftnav-menu.shiftnav-active-on-hover li.menu-item > .shiftnav-target:hover {
  background-color: #fff !important;
  color: #333 !important;
  border: none !important; }

.shiftnav-inner::-webkit-scrollbar {
  display: none; }

.shiftnav ul.sub-menu::-webkit-scrollbar {
  display: none; }

.shiftnav-inner, .shiftnav ul.sub-menu {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }

section {
  margin: 4% 0;
  font-size: 16px;
  line-height: 23px; }

section#intro-section {
  padding: 1rem 2rem;
  margin: 0;
  background-size: auto 480px;
  background-position: top right;
  background-repeat: no-repeat; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    section#intro-section {
      background: none !important; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    section#intro-section {
      padding: 0rem 1.5rem 1rem 1.5rem; } }
  section#intro-section h1 {
    font-size: 32px;
    color: #00728F;
    font-weight: 400;
    text-shadow: 0px 0px 15px #fff;
    max-width: 60%;
    line-height: 40px;
    margin-bottom: 0rem; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      section#intro-section h1 {
        font-size: 26px;
        line-height: 32px;
        max-width: 100%;
        margin-bottom: 0;
        margin-top: 0; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      section#intro-section h1 {
        font-size: 24px;
        line-height: 30px; } }
  section#intro-section .first-paragraph {
    background-color: rgba(255, 255, 255, 0.75);
    max-width: 420px;
    padding: 0.25rem 0.5rem 0.25rem 0;
    border-radius: 0.5rem; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      section#intro-section .first-paragraph {
        max-width: 100%; } }
    section#intro-section .first-paragraph p {
      font-size: 1.1rem;
      line-height: 1.6rem;
      margin-top: 22px; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        section#intro-section .first-paragraph p {
          font-size: 0.9rem;
          line-height: 1.4rem; } }
  section#intro-section .services-list ul {
    margin: 0;
    margin-bottom: 2rem;
    padding: 0; }
    section#intro-section .services-list ul li {
      list-style: none;
      margin-bottom: 0.5rem; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        section#intro-section .services-list ul li {
          margin-bottom: 0.25rem; } }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        section#intro-section .services-list ul li {
          margin-bottom: 0.5rem; } }
      section#intro-section .services-list ul li h3 {
        margin: 0;
        margin-bottom: 15px;
        padding: 0;
        font-weight: 400; }
        section#intro-section .services-list ul li h3 a {
          color: #00728F;
          font-size: 20px;
          margin-top: 0; }
          @media only screen and (min-width: 1px) and (max-width: 979px) {
            section#intro-section .services-list ul li h3 a {
              font-size: 18px; } }
  section#intro-section .call-to-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem; }
    section#intro-section .call-to-actions a.cta-button {
      color: #fff;
      background-color: #E7A100;
      padding: 0.75rem 1rem 0.75rem 0.75rem;
      margin-bottom: 1rem;
      border-radius: 5px;
      font-weight: 500;
      margin-right: 1rem;
      transition: 0.5s; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        section#intro-section .call-to-actions a.cta-button {
          text-align: center;
          font-size: 1.2rem; } }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        section#intro-section .call-to-actions a.cta-button {
          width: 100%; } }
      section#intro-section .call-to-actions a.cta-button:hover {
        background-color: #f6ac00; }
      section#intro-section .call-to-actions a.cta-button i {
        margin-right: 0.5rem; }

.cta-section {
  display: flex; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .cta-section {
      flex-wrap: wrap; } }
  .cta-section .cta-left {
    flex-basis: 33rem; }
  .cta-section .cta-right {
    flex-basis: 30rem;
    flex-grow: 1;
    padding-top: 2rem; }
    .cta-section .cta-right img {
      display: none;
      max-width: 100%; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        .cta-section .cta-right img {
          display: block; } }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .cta-section .cta-right img {
          display: none; } }
    .cta-section .cta-right .homepage-video {
      position: relative;
      display: inline-block;
      vertical-align: top; }
      .cta-section .cta-right .homepage-video video {
        display: inline-block;
        position: relative;
        max-height: 341px; }
        @media only screen and (min-width: 1px) and (max-width: 730px) {
          .cta-section .cta-right .homepage-video video {
            display: none; } }
      .cta-section .cta-right .homepage-video:after {
        content: '';
        background-color: #00728F;
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        left: 0;
        top: 0; }

.mid-page-cta {
  width: 100%;
  background-color: #f1f1f1;
  padding: 1.5rem 1rem;
  border-left: 3px solid #00728F;
  margin-bottom: 2rem;
  margin-top: 2rem;
  box-sizing: border-box; }
  .mid-page-cta h2 {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 0; }
  .mid-page-cta a.cta-button {
    margin-right: 1rem;
    position: relative; }
    .mid-page-cta a.cta-button.in-person {
      padding-left: 2.75rem; }
      .mid-page-cta a.cta-button.in-person:before {
        content: '\f271';
        font-family: fontawesome;
        font-weight: 300;
        font-size: 1.5rem;
        margin-right: 5px;
        position: absolute;
        left: 0.6rem;
        top: 0.6rem; }
    .mid-page-cta a.cta-button.online {
      padding-left: 2.75rem; }
      .mid-page-cta a.cta-button.online:before {
        content: '\f030';
        font-family: fontawesome;
        font-weight: 300;
        font-size: 1.5rem;
        margin-right: 5px;
        position: absolute;
        left: 0.6rem;
        top: 0.7rem; }

section#about {
  margin-top: 0; }
  section#about h2 {
    display: inline-block; }

.doctors-section {
  display: flex;
  flex-wrap: wrap;
  margin: 0.5rem -1rem;
  box-sizing: border-box; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .doctors-section {
      margin: 0; } }
  .doctors-section .single-doctor {
    flex-basis: 20rem;
    flex-grow: 1;
    margin: 0 1rem; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      .doctors-section .single-doctor {
        flex-basis: 40rem;
        margin-bottom: 2rem; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .doctors-section .single-doctor {
        max-width: 100%;
        margin: 0 0 2rem 0; } }
    .doctors-section .single-doctor img {
      float: left;
      margin: 1rem 1rem 0.5rem 0;/*0 1rem 0.5rem 0;*/
      width: 170px;/*140px;*/
      height: auto; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .doctors-section .single-doctor img {
          width: 120px; } }
    .doctors-section .single-doctor h3 {
      display: inline-block;
      color: #333;
      font-size: 24px;
      font-weight: 400;
      margin-top: 2px;
      margin-bottom: 5px; }
    .doctors-section .single-doctor h4 {
      font-size: 16px;
      margin-top: 0;
      margin-bottom: 0;
      width: auto;
      display: block;
      font-weight: normal;
      font-style: italic; }
    .doctors-section .single-doctor p {
      margin-top: 0.5rem; }
    .doctors-section .single-doctor a {
      color: #00728F; }

.ludwig-flex {
  display: flex;
  flex-wrap: wrap; }
  .ludwig-flex a h3 {
    margin-top: 0;
    width: 100%; }

.press-links-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem; }
  .press-links-wrap .press-link {
    margin: 0 1rem; }

#rotator .cycloneslider-template-default2 .cycloneslider-prev, #rotator .cycloneslider-template-default2 .cycloneslider-next {
  color: #fff;
  opacity: 1; }
#rotator .cycloneslider-pager span {
  color: #fff;
  opacity: 0.5; }
#rotator span.cycle-pager-active, #rotator span.cycle-pager-active:hover {
  color: #fff !important;
  opacity: 1; }

#rotator {
  text-align: justify;
  border-bottom: 4px solid #00728F;
  height: 500px;
  overflow: hidden;
  margin: 0;
  background-color: #00495c;
  border-radius: 0 0 5px 5px; }

#rotator a, #aboutbernstein a, #aboutwolfeld a {
  color: #00728F;
  font-weight: 400; }

#rotator ul li a {
  color: white;
  font-weight: normal; }

#rotator ul li a:hover {
  text-shadow: 0 0 0 black; }

.homebox-sm a, .homebox-half ul li a:hover, .home-news-container a:hover, #rotator-button a {
  text-decoration: none; }

#rotator-button {
  float: left;
  font-size: 15px;
  margin: 0 0 0 20px;
  border-radius: 4px;
  font-weight: bold;
  color: white;
  background: #E7A100;
  transition: background 1s; }

#rotator-button:hover {
  background: #E99919; }

#rotator-button a {
  color: white;
  padding: 8px 14px;
  display: block;
  text-shadow: 1px 0 0 #999; }

#rotator video {
  width: 100%;
  height: auto;
  min-width: 100%;
  z-index: -100;
  opacity: .75; }

#rotator span {
  float: left; }

#rotator .slide span {
  text-align: left;
  clear: left; }

#rotator h1, #rotator h2 {
  font-size: 32px;
  color: white;
  margin: 0;
  letter-spacing: .7px;
  font-weight: 400; }

.homebox-sm, .homebox-full, .homebox-half {
  color: #333;
  position: relative; }

.homebox-sm {
  float: left;
  width: 32.5%;
  padding: 0;
  text-align: center;
  color: #333;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 15px;
  overflow: hidden; }

.homebox-sm-zoom-wrap {
  overflow: hidden;
  max-height: 215px;
  max-width: 390px;
  border-radius: 4px;
  margin-bottom: 9px; }

a#roboticfuebox, a#futbox, a#consultbox, a#prpbox, a#photoconsultbox, a#publicationsbox {
  position: absolute;
  top: 5px;
  right: 6px;
  font-size: 38px;
  color: #00728F;
  z-index: 1;
  cursor: pointer;
  text-shadow: #555 1px 1px 1px;
  border-radius: 25px;
  transition: color .5s, background 1s ease-out .3s; }

a#roboticfuebox:hover, a#futbox:hover, a#consultbox:hover, a#prpbox:hover, a#photoconsultbox:hover, a#publicationsbox:hover {
  background: rgba(0, 255, 255, 0.7);
  border-radius: 25px;
  color: aqua; }

a#roboticfuebox i, a#futbox i, a#consultbox i, a#prpbox i, a#photoconsultbox i, a#publicationsbox i {
  line-height: 20px;
  padding: 9px;
  outline: 0; }

a#roboticfuebox i.fa-caret-up, a#futbox i.fa-caret-up, a#consultbox i.fa-caret-up, a#prpbox i.fa-caret-up, a#photoconsultbox i.fa-caret-up, a#publicationsbox i.fa-caret-up {
  margin: -4px 0 5px; }

#roboticfue-more, #fut-more, #consult-more, #prp-more, #photoconsult-more, #publications-more {
  width: 90%;
  padding: 80px 5%;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 17px;
  position: absolute;
  background: rgba(9, 114, 121, 0.5);
  height: 55px;
  top: 0;
  text-shadow: 0 1px 1px black;
  border-radius: 5px;
  letter-spacing: .6px; }

#roboticfue-more a, #fut-more a, #consult-more a, #prp-more a, #photoconsult-more a, #publications-more a {
  color: white;
  font-size: 12px;
  padding: 3px;
  background-color: #E7A100;
  width: 100px;
  margin: 15px auto;
  border-radius: 5px;
  display: block;
  transition: background 1s; }

#roboticfue-more a:hover, #fut-more a:hover, #consult-more a:hover, #prp-more a:hover, #photoconsult-more a:hover, #publications-more a:hover {
  background-color: #E99919; }

.featurehide {
  overflow: hidden;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  -moz-transition-duration: 1.3s;
  -webkit-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
  top: -100% !important; }

.featureshow {
  -moz-transition-duration: .2s;
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  max-height: 1000px;
  overflow: hidden; }

.homebox-half {
  float: left;
  width: 42%;
  margin-left: 4%; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .homebox-half {
      width: 100%;
      padding: 0 1.5rem;
      margin-left: 0;
      float: none;
      box-sizing: border-box; } }

.homebox-full {
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .homebox-full {
      padding: 0 1.5rem; } }

#video .homebox-full {
  margin: 0;
  padding: 0 0 10px 0; }

.homebox-sm h2, .homebox-half h2, .homebox-full h2 {
  font-size: 32px;
  color: #00728F;
  margin: 0 0 24px;
  font-weight: 400;
  padding-top: 12px;
  letter-spacing: .7px; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    .homebox-sm h2, .homebox-half h2, .homebox-full h2 {
      font-size: 28px;
      line-height: 32px; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .homebox-sm h2, .homebox-half h2, .homebox-full h2 {
      font-size: 24px;
      line-height: 30px; } }

h2.centered {
  text-align: center !important;
  width: 100%; }

h3.contact-footer-title {
  margin-top: 2rem; }

.homebox-sm ul, .homebox-full ul, .homebox-half ul {
  padding: 0; }

.homebox-half ul li {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  text-align: left;
  font-size: 16px;
  max-width: 95%;
  letter-spacing: .6px;
  position: relative; }
  .homebox-half ul li:before {
    content: '\f054';
    font-family: fontawesome;
    color: #00728F;
    position: absolute;
    left: 0; }

ul.ui-tabs-nav li:before {
  display: none; }

.homebox-half ul {
  margin: 25px 0; }

.homebox-half ul li {
  list-style: none;
  list-style-image: none; }

.homebox-half ul li a:hover {
  color: #388d9e; }

#aboutbernstein h3, #aboutwolfeld h3 {
  margin: 5px 0 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #333;
  padding-bottom: 10px; }

#about span {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 400;
  margin: 12px 0 1rem 0;
  padding-top: 30px;
  clear: left;
  display: block;
  text-align: center;
  color: #00728F; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    #about span {
      padding-top: 5px; } }

#about span.home-about-button.blog-button {
  margin-top: 0;
  padding-top: 0; }
  @media only screen and (min-width: 1px) and (max-width: 480px) {
    #about span.home-about-button.blog-button {
      padding-top: 10px; } }

#home-about-button-container {
  width: 100%;
  justify-content: space-around;
  align-items: flex-end;
  display: flex;
  margin: 0 auto;
  margin-top: -20px; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    #home-about-button-container {
      margin-top: 0; } }

span.home-about-button {
  width: 23% !important;
  max-width: 200px; }

span.home-about-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 3px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: .5px;
  color: white;
  border-radius: 4px;
  transition: background .5s;
  background: #00728F; }

span.home-about-button a:hover {
  background: #388d9e;
  text-decoration: none; }

.news-section-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0 0 0; }

.home-news-container {
  flex-basis: 30rem;
  flex-grow: 1;
  float: left;
  margin-bottom: 3%;
  display: flex;
  align-items: flex-start;
  text-align: left; }

.news-image {
  width: 10rem;
  max-width: 10rem;
  min-width: 10rem;
  border: 3px solid #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem; }
  @media only screen and (min-width: 1px) and (max-width: 480px) {
    .news-image {
      width: 6rem;
      min-width: 6rem;
      padding: 0.25rem; } }

img.news-thumb {
  max-width: 100% !important;
  margin: 0;
  float: left; }

.home-news-container span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  height: auto;
  padding: 0 4%;
  line-height: 17px;
  max-width: 370px; }

span.news-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

span.news-text h4 {
  margin: 0 0 1rem 0;
  font-style: normal;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.7rem; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    span.news-text h4 {
      font-size: 16px;
      line-height: 20px; } }
span.news-text .read-more {
  color: #00728F; }
  span.news-text .read-more:after {
    content: '\f0da';
    font-family: fontawesome;
    font-size: 1rem;
    margin-left: 0.5rem;
    margin-top: 5px; }
  span.news-text .read-more:hover {
    color: #333; }

.home-news-container a {
  transition: background 3s;
  background: transparent;
  width: 100%;
  display: flex; }

.ui-tabs {
  position: relative; }

.ui-tabs .ui-tabs-nav {
  margin: 0 0 45px; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: normal; }

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  background: #00728F;
  transition: background 1s;
  width: 120px;
  height: 20px;
  padding: 12px 5px;
  font-size: 13px;
  line-height: 14px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  text-align: center;
  letter-spacing: .9px;
  color: white;
  text-shadow: #555 0 1px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor, .ui-state-default.ui-corner-top.ui-state-hover a:hover {
  cursor: default;
  background: #388d9e; }

.ui-state-default.ui-corner-top.ui-state-hover a:hover {
  cursor: pointer; }

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  background: 0;
  padding: 0; }

section .ui-state-default, section .ui-widget-content .ui-state-default, section .ui-widget-header .ui-state-default, section .ui-widget-header, section .ui-widget-content {
  border: 0;
  padding: 0;
  background: transparent; }

.xbreadcrumbs {
  font-family: verdana;
  margin: 0;
  display: inline-block;
  background-color: #fff;
  border-radius: 0 0 5px 5px;
  padding: 0 11px 0 !important;
  position: relative;
  background: #f1f1f1;
  border-top: 3px solid #00728F; }

.single-answers .xbreadcrumbs, .single-research .xbreadcrumbs, .single-news .xbreadcrumbs, .single-htva_posts .xbreadcrumbs, .page-template-template_photospage .xbreadcrumbs {
  margin: 0 0 40px; }

.xbreadcrumbs, .xbreadcrumbs LI, .xbreadcrumbs UL, .xbreadcrumbs UL LI {
  list-style: none;
  padding: 0; }

.xbreadcrumbs span.breadcrumbs-current, .xbreadcrumbs span.breadcrumbs-current-sub, li.parent.hover ul li.current_page_item {
  font-size: 12px; }

.xbreadcrumbs a:hover, .xbreadcrumbs li.current, .xbreadcrumbs li.current_page_item a, .xbreadcrumbs li.current a, .xbreadcrumbs li ul li a:hover, .xbreadcrumbs li:hover span.breadcrumbs-arrow, .xbreadcrumbs span.breadcrumbs-current, .xbreadcrumbs span.breadcrumbs-current-sub, li.parent.hover ul li.current_page_item {
  color: #000; }

.xbreadcrumbs li {
  padding: 5px 5px 5px 25px;
  float: left;
  display: flex;
  align-items: center; }

.xbreadcrumbs li.home {
  padding-left: 5px;
  margin-top: 5px; }

.xbreadcrumbs li.separator {
  margin: 4px 0 0 20px;
  padding: 0;
  color: #333;
  position: relative;
  font-size: 16px; }

span.breadcrumbs-arrow {
  color: #333;
  padding: 0 0 0 7px;
  font-size: 7px;
  display: block;
  float: right; }

li.child {
  padding-right: 15px !important; }

.xbreadcrumbs li.current {
  border-right: 0; }

.xbreadcrumbs li a {
  font-size: 12px;
  color: #333;
  text-decoration: none; }

.xbreadcrumbs ul {
  display: none; }

.xbreadcrumbs li ul {
  position: absolute;
  float: left;
  top: 33px;
  margin: 0 0 0 -15px;
  width: 180px;
  z-index: 1;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.21); }

.xbreadcrumbs li ul li:last-child a {
  border-bottom: 0; }

/*.xbreadcrumbs li ul li:first-child::before {
    content: '';
    background-color: #00728F;
    height: 3px;
    position: absolute;
    top: -3px;
    left: -3px;
    width: 198px;
}*/
.xbreadcrumbs li ul li:hover {
  background-color: #f1f1f1;
  border-left: 3px solid #00728F; }

.xbreadcrumbs li.child:hover ul {
  border-radius: 0 4px 4px 4px; }

.xbreadcrumbs li ul li {
  width: 180px;
  background-color: #fff;
  border-left: 3px solid #fff; }

.xbreadcrumbs li ul li a {
  padding: 5%;
  width: 90%;
  line-height: 15px; }

.xbreadcrumbs li ul.blog {
  width: 240px !important; }

.xbreadcrumbs li ul.blog li {
  width: 100%; }

.spotlight-box {
  width: 230px;
  margin: 5px 0px 40px 40px;
  padding: 0px 10px 15px 10px;
  float: right;
  background: #f1f1f1;
  border-radius: 4px;
  line-height: 19px;
  border-top: 3px solid #00728F; }
  .spotlight-box h3 {
    margin-top: 0 !important; }

.spotlight-box p {
  margin: 0;
  margin-bottom: 10px; }

.spotlight-box ul, .spotlight-box-video ul {
  margin: 0;
  padding: 0 !important;
  width: 100%; }

.spotlight-box ul li, .spotlight-box-video ul li {
  display: block;
  margin: 10px 0 !important; }

.spotlight-box ul li a, .spotlight-box-video ul li a {
  display: block;
  padding: 4px 0 0 40px;
  color: #333;
  text-align: left; }

@media only screen and (max-width: 1260px) {
  .entry {
    padding: 0 1.5rem; } }
@media only screen and (min-width: 1px) and (max-width: 730px) {
  .entry {
    padding: 0 1rem; } }
.entry ul.docs {
  margin-left: 0;
  padding-left: 0; }
  .entry ul.docs li {
    list-style: none !important;
    margin-left: 0;
    margin-bottom: 18px; }
    .entry ul.docs li.pdf:before {
      margin-left: 0px; }
    .entry ul.docs li a {
      padding-top: 2px;
      display: inline-block; }

li.bmpc:before, li.news:before, li.answers:before, li.research:before, li.robot:before, li.photos:before, li.pdf:before, li.faq:before, .spotlight-box ul li.video:before, .spotlight-box-video ul li.video:before {
  content: " ";
  width: 25px;
  height: 25px;
  float: left;
  overflow: hidden;
  margin: 0;
  background: url(/wp-content/themes/bernsteinmedical_v4/images/icons_sprite_2015.png) no-repeat; }

li.bmpc:before {
  background-position: 0 0; }

li.news:before {
  background-position: 0 -25px; }

li.answers:before {
  background-position: -25px 0; }

li.research:before {
  background-position: -25px -50px; }

li.robot:before {
  background-position: 0 -75px; }

li.photos:before {
  background-position: -25px -25px; }

li.pdf:before {
  background-position: -50px -75px; }

li.faq:before {
  background-position: 0 -50px; }

.spotlight-box ul li.video:before, .spotlight-box-video ul li.video:before {
  background-position: -25px -75px; }

.spotlight-box ul li.title span, .spotlight-box ul li.title {
  width: 100%;
  background: 0;
  text-align: left;
  /*padding-left: 20px;*/
  color: #333;
  font-weight: bold; }

.spotlight-box ul li.title span.subtitle {
  font-weight: normal; }

.spotlight-box-video {
  margin: 0 0 2rem 2rem;
  padding: 0 0 0 14px;
  width: 158px;
  line-height: 23px;
  float: right;
  background-color: #f1f1f1;
  border-top: 3px solid #00728F;
  border-radius: 5px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .spotlight-box-video {
      width: 100%; } }

.spotlight-box-video a {
  padding-top: 2px !important; }

.featureimg-box {
  width: 71%;
  text-align: left;
  margin: 0 auto 30px;
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  display: flow-root; }

.featureimg-box img {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  border-radius: 3px; }

.fullwidthimg-box {
  width: 100%;
  text-align: left;
  margin: 30px auto;
  font-size: 12px;
  font-style: italic;
  line-height: 14px; }

.fullwidthimg-box img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 0 15px;
  display: block; }

.fullwidthtxt-box {
  width: 89.5%;
  margin: 0.5rem 0 1rem 0;
  padding: 5px 0;
  font-size: 12px;
  font-style: italic;
  line-height: 14px;
  display: inline-block; }

.halfwidthimg-box {
  width: 43%;
  text-align: left;
  max-width: 300px;
  display: inline-block;
  margin-right: 1rem;
  font-size: 14px;
  font-style: italic; }

.halfwidthimg-box.right {
  float: right;
  margin: 0.5rem 0rem 2rem 3rem; }

.halfwidthimg-box.left {
  float: left;
  margin: 0.5rem 3rem 2rem 0; }

.halfwidthimg-box img {
  width: 100%;
  height: auto;
  margin: 0 auto 0.5rem;
  border-radius: 3px; }

.halfwidthimg-box span, .fullwidthimg-box span, .sidebysideimg-left span, .sidebysideimg-right span {
  font-size: 12px;
  line-height: 13px;
  display: block;
  margin-top: 9px; }

.sidebysideimg-box {
  display: flex;
  margin: 30px 0;
  max-width: 750px; }

.sidebysideimg-left, .sidebysideimg-right {
  width: 48%;
  text-align: center;
  height: 100%; }

.sidebysideimg-right {
  margin-left: 4%; }

.sidebysideimg-left img, .sidebysideimg-right img {
  width: 100%;
  border-radius: 3px; }

.sidebysideimg-left span, .sidebysideimg-right span {
  width: 100%;
  display: block; }

.image-flex {
  display: flex; }
  @media only screen and (min-width: 1px) and (max-width: 480px) {
    .image-flex {
      flex-wrap: wrap; } }

.fullwidthvideo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 30px 0; }

.fullwidthvideo-container.below {
  width: 100%; }

.fullwidthvideo {
  width: 100%;
  max-width: 550px;
  text-align: center;
  font-size: 14px;
  font-style: italic; }

.fullwidthvideo video {
  display: block;
  margin: 0 0 7px 0; }

.underimg-box {
  width: 50%;
  background-color: #00728F;
  float: left;
  height: 35px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center; }

.underimg-box a {
  display: flex;
  width: 100%;
  text-align: center;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: white !important; }

.underimg-box:hover {
  background-color: #388d9e; }

a.magnify, a.foobox.magnify.fbx-link.fbx-instance, a.bmpclink {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative; }

a.magnify:after, a.foobox.magnify.fbx-link.fbx-instance:after, a.bmpclink:after {
  position: absolute;
  bottom: 6px;
  right: 10px;
  color: white;
  font-family: FontAwesome;
  line-height: 20px;
  font-size: 18px;
  transition: all 1.5s; }

a.magnify:after, a.foobox.magnify.fbx-link.fbx-instance:after {
  content: "\f00e"; }

a.bmpclink:after {
  content: "\f08e"; }

a.magnify:hover:after, a.foobox.magnify.fbx-link.fbx-instance:hover:after, a.bmpclink:hover:after {
  color: aqua; }

a.magnify img, a.foobox.magnify.fbx-link.fbx-instance img, a.bmpclink img {
  transition: all 1s; }

a.magnify img:hover, a.foobox.magnify.fbx-link.fbx-instance img:hover, a.bmpclink img:hover {
  opacity: .7; }

#searchform {
  margin: 0 auto 1rem auto;
  padding: 10px 0;
  font: 1.1em Verdana, sans-serif; }

section#photo h2 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 2rem; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    section#photo h2 {
      margin-bottom: 0.5rem; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    section#photo h2 {
      margin-top: 3rem; } }
section#photo .photo-feature-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1rem; }
  section#photo .photo-feature-flex a.featured-photo {
    flex-basis: 12rem;
    text-align: center;
    flex-grow: 1;
    margin: 1rem; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      section#photo .photo-feature-flex a.featured-photo {
        flex-basis: 20rem; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      section#photo .photo-feature-flex a.featured-photo {
        flex-basis: 13rem; } }
    section#photo .photo-feature-flex a.featured-photo h3 {
      width: 100%;
      text-align: center;
      font-weight: 400; }

section#video h2 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 2rem; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    section#video h2 {
      margin-bottom: 0.5rem; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    section#video h2 {
      margin-top: 3rem; } }
section#video .video-feature-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1rem; }
  section#video .video-feature-flex a.featured-video {
    flex-basis: 17rem;
    text-align: center;
    flex-grow: 1;
    margin: 1rem; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      section#video .video-feature-flex a.featured-video {
        flex-basis: 20rem; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      section#video .video-feature-flex a.featured-video {
        flex-basis: 13rem; } }
    section#video .video-feature-flex a.featured-video h3 {
      width: 100%;
      text-align: center;
      font-weight: 400; }

#searchsubmit, #navsearchsubmit, #rightbarsearchsubmit, #searchresultssubmit, #searchform #searchsubmit {
  padding: 5px;
  margin-left: 2px;
  font-style: normal;
  font: 1.1em Verdana;
  border-radius: 5px; }

.entry form {
  text-align: center; }

textarea {
  background: #eee;
  border: 1px solid #ccc;
  color: #222;
  font: 1.1em Verdana;
  padding: 0; }

input {
  background: #eee;
  border: 1px solid #ccc;
  color: #222;
  font: 1.1em Verdana;
  padding: 0; }

select {
  width: 200px;
  height: 35px;
  padding: 0 16px;
  background-color: #00728F;
  color: white;
  font-size: 14px;
  text-shadow: #555 0 1px 0;
  border-radius: 4px;
  transition: background .5s;
  display: block;
  border: 0;
  outline: 0; }

option {
  font-family: arial;
  padding: 5px;
  font-size: 16px;
  font-weight: 300;
  background: white;
  color: #388d9e; }

.dropdown-wrap {
  width: 200px;
  padding: 0;
  border: 0;
  height: 35px;
  border-radius: 3px;
  position: relative;
  color: white; }

.rightbar-page .dropdown-wrap {
  width: 170px;
  margin: 12px 4px;
  padding: 0;
  border: 0;
  height: 28px; }

.rightbar-page .dropdown-wrap select {
  width: 170px;
  height: 28px;
  font-size: 13px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.rightbar-photo .dropdown-wrap {
  width: 200px;
  margin: 5px auto 17px;
  padding: 0;
  border: 0;
  height: 28px; }

.rightbar-photo select {
  width: 200px;
  height: 28px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.dropdown-wrap:after {
  content: "\f0d7";
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  text-align: center;
  pointer-events: none;
  font-family: "FontAwesome";
  font-size: 20px;
  color: white;
  text-shadow: #555 1px 1px 0;
  padding: 0;
  background: #00728F;
  border-radius: 0 5px 5px 0;
  transition: background .5s;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center; }

.rightbar-page .dropdown-wrap:after, .rightbar-photo .dropdown-wrap:after {
  height: 28px; }

.dropdown-wrap select:hover, .dropdown-wrap select:active {
  background-color: #388d9e; }

.dropdown-wrap:hover:after {
  background: #2b7d8e !important; }

form#rightbarsearchform {
  width: 100%;
  color: white; }

form#rightbarsearchform input#s {
  width: 96%;
  border: 0;
  padding: 7px 2%;
  text-align: center;
  font-size: 18px;
  background: #eeeeef;
  color: #388d9e;
  box-shadow: #aaa 1px 1px 3px 0 inset; }

#rightbarsearchform input#rightbarsearchsubmit, #rightbarsearchform input#searchresultssubmit {
  float: none;
  width: 100%;
  background: #E7A100;
  border: 1px solid #E7A100;
  margin: 0;
  color: white;
  transition: all .5s;
  border-radius: 0 0 5px 5px;
  font-weight: bold;
  margin: 0; }

#rightbarsearchform input#rightbarsearchsubmit:hover, #rightbarsearchform input#searchresultssubmit:hover {
  background: #E99919;
  border: 1px solid indianred; }

form#rightbarsearchform input#s:focus, form#rightbarsearchform input#s:active {
  background-color: #eeeeef !important;
  outline: 0;
  color: #388d9e !important;
  box-shadow: #aaf 0 0 3px 1px inset; }

form#rightbarsearchform input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px #eeeeef inset !important;
  color: #388d9e !important; }

.link-field {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 1rem -1rem 3rem -1rem; }
  .link-field a {
    background-color: #f1f1f1;
    padding: 1rem 2.5rem 1rem 2rem;
    margin: 0.5rem 1rem;
    transition: 0.3s;
    border-radius: 4px; }
    .link-field a:hover {
      background-color: #ececec; }
    .link-field a:before {
      content: '\f0a9';
      font-family: fontawesome;
      font-size: 1.25rem;
      margin-right: 1rem;
      color: #00728F; }
    .link-field a.pdf:before {
      content: '\f1c1'; }
    .link-field a.user {
      background-color: #E7A100;
      color: #fff; }
      .link-field a.user:hover {
        background-color: #f1a800; }
      .link-field a.user:before {
        content: '\f007';
        color: #fff; }
    .link-field a.form:before {
      content: '\f15c'; }

.contact-page {
  box-sizing: border-box; }
  .contact-page i {
    color: #00728F; }
  .contact-page h3 {
    width: 100%;
    display: block;
    margin-top: 0;
    margin-bottom: 1.5rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .contact-page h3 {
        font-size: 16px; } }
  .contact-page h3.phone i {
    width: 1.5rem; }
  .contact-page h3.phone span {
    font-size: 16px; }
  .contact-page h3.email i {
    width: 1.5rem; }
  .contact-page h3.email a {
    font-size: 18px;
    margin-top: 0;
    font-weight: bold; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .contact-page h3.email a {
        font-size: 18px; } }
  .contact-page .location-section {
    display: flex;
    flex-wrap: wrap; }
    .contact-page .location-section .single-location {
      display: flex;
      padding-right: 2rem;
      margin-bottom: 1rem; }
      .contact-page .location-section .single-location .icon i {
        font-size: 2rem;
        padding-right: 0.5rem; }
      .contact-page .location-section .single-location .location-content p {
        margin-bottom: 0; }
      .contact-page .location-section .single-location .location-content a.google-maps-link {
        color: #00728F;
        font-size: 14px; }
  .contact-page .call-to-actions {
    display: flex;
    flex-wrap: wrap; }
    .contact-page .call-to-actions a.cta-button {
      color: #fff;
      background-color: #E7A100;
      padding: 0.75rem 1rem 0.75rem 0.75rem;
      margin-bottom: 1rem;
      border-radius: 5px;
      font-weight: 500;
      margin-right: 1rem;
      transition: 0.5s; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        .contact-page .call-to-actions a.cta-button {
          text-align: center;
          font-size: 1.2rem; } }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .contact-page .call-to-actions a.cta-button {
          width: 100%; } }
      .contact-page .call-to-actions a.cta-button:hover {
        background-color: #f6ac00; }
      .contact-page .call-to-actions a.cta-button i {
        margin-right: 0.5rem;
        color: #fff; }

.slickQuizWrapper li.question h3 {
  width: 100%; }
.slickQuizWrapper ul.answers {
  width: 100%; }
  .slickQuizWrapper ul.answers li {
    list-style: none; }

.gform_wrapper {
  width: 80%;
  background-color: #f1f1f1;
  color: #222;
  margin: 30px 0;
  padding: 1rem 2rem 2rem;
  border-radius: 5px;
  clear: both;
  box-sizing: border-box; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .gform_wrapper {
      border-radius: 0px;
      padding: 1rem 1rem 2rem; } }

.gform_wrapper#gform_wrapper_3 {
  padding-bottom: 40px; }

.gform_wrapper#gform_wrapper_3 label.gfield_label {
  font-weight: normal; }

.gform_wrapper#gform_wrapper_3 label.gfield_label_before_complex {
  font-weight: bold;
  margin-bottom: 10px; }

.gform_wrapper#gform_wrapper_3 #field_3_39 label.gfield_label, .gform_wrapper#gform_wrapper_3 #field_3_41 label.gfield_label, .gform_wrapper#gform_wrapper_3 #field_3_43 label.gfield_label, .gform_wrapper#gform_wrapper_3 #field_3_45 label.gfield_label {
  font-weight: bold; }

.gform_wrapper#gform_wrapper_3 ul.gfield_checkbox {
  padding-left: 0px !important; }

.gform_wrapper#gform_wrapper_3 ul.gfield_checkbox li {
  margin-left: 0 !important;
  padding-left: 0 !important; }

.gform_wrapper#gform_wrapper_3 ul.gfield_radio, .gform_wrapper#gform_wrapper_3 ul.gfield_radio li {
  margin-left: 0 !important;
  padding-left: 0 !important; }

.gform_wrapper .gform_body {
  margin: 0 auto;
  text-align: left; }

.gform_wrapper *, .gform_wrapper :after, .gform_wrapper:before {
  box-sizing: border-box !important; }

.gform_wrapper .gsection {
  padding: 0 16px 8px 0;
  margin: 28px 0;
  clear: both; }

.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
  font-weight: 700;
  font-size: 1.25em;
  color: #222; }

.gform_wrapper h3.form-title {
  color: #00728F;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  padding-left: 0;
  padding-top: 10px;
  display: inline-block; }

.gform_wrapper h2.gsection_title {
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: normal !important; }

.gform_wrapper label.gfield_label {
  font-weight: 700;
  font-size: inherit;
  width: 100%;
  float: left; }

.gform_wrapper .instruction {
  font-size: 12px; }

body .gform_wrapper ul li.gfield {
  margin: 0;
  padding-top: 0; }

body .gform_wrapper ul li#field_6_49 ul.gfield_radio {
  margin-left: 0;
  padding-left: 0; }

body .gform_wrapper ul li#field_6_49 label {
  padding-left: 0; }

body .gform_wrapper ul li#field_6_49 ul.gfield_radio li {
  margin-left: 0;
  padding-left: 0; }

body .gform_wrapper ul li#field_6_49 ul.gfield_radio li input {
  margin-left: 0; }

/*Newsletter Checkbox In Person Form*/
body .gform_wrapper ul li#field_6_25 {
  display: flex;
  align-content: center;
  margin-bottom: 2rem; }

body .gform_wrapper ul li#field_6_25 .ginput_container_checkbox {
  order: 1;
  margin-top: 0; }

body .gform_wrapper ul li#field_6_25 .ginput_container_checkbox ul li {
  margin: 0 !important;
  padding: 0; }

body .gform_wrapper ul li#field_6_25 .ginput_container_checkbox ul li input {
  margin: 0;
  margin-top: 2px;
  margin-right: 1rem; }

body .gform_wrapper ul li#field_6_25 label {
  order: 2; }

/*Newsletter Checkbox Online Form*/
body .gform_wrapper ul li#field_3_25 {
  display: flex;
  align-content: center;
  margin-bottom: 2rem; }

body .gform_wrapper ul li#field_3_25 .ginput_container_checkbox {
  order: 1;
  margin-top: 0; }

body .gform_wrapper ul li#field_3_25 .ginput_container_checkbox ul li {
  margin: 0 !important;
  padding: 0; }

body .gform_wrapper ul li#field_3_25 .ginput_container_checkbox ul li input {
  margin: 0;
  margin-top: 2px;
  margin-right: 1rem; }

body .gform_wrapper ul li#field_3_25 label {
  order: 2; }

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 6px; }

.gform_wrapper form li, .gform_wrapper li {
  margin-left: 0 !important;
  list-style: none !important;
  overflow: visible; }

.gform_wrapper ul li:after, .gform_wrapper ul li:before, .gform_wrapper ul.gform_fields {
  padding: 0;
  margin: 0;
  overflow: visible; }

.gform_wrapper .top_label .gfield_label {
  float: right;
  width: 10px; }

.gform_wrapper ul.gfield_radio {
  text-indent: 0;
  padding-left: 0; }
  .gform_wrapper ul.gfield_radio li {
    width: 100%;
    display: inline-block;
    padding-left: 0; }

.gform_wrapper ul.gfield_checkbox {
  text-indent: 0;
  padding-left: 0; }
  .gform_wrapper ul.gfield_checkbox li {
    padding-left: 0; }

.gform_wrapper .gfield.label-width {
  margin-top: 15px;
  margin-bottom: 15px;
  display: inline-block;
  width: 100%; }
  .gform_wrapper .gfield.label-width label.gfield_label {
    width: 100%;
    float: left;
    margin-top: 0px;
    margin-bottom: 15px; }
  .gform_wrapper .gfield.label-width .gfield_description {
    width: 100%;
    float: left; }

.gform_wrapper .ginput_complex .ginput_left, .gform_wrapper .ginput_complex .ginput_right {
  width: calc(100% - 15px);
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  margin: 0 -4px 0 0; }

.gform_wrapper .ginput_complex .ginput_left input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]), .gform_wrapper .ginput_complex .ginput_right input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]), .gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]) {
  width: 100%; }

.gform_wrapper li.gsection, .gform_wrapper li.gfield.field_description_below + li.gsection {
  margin: 0 0 15px 0 !important;
  padding-top: 25px !important;
  display: block !important; }

.consult-form-note {
  font-weight: bold;
  margin: 20px 0 10px !important; }

.gform_wrapper ol li {
  font-weight: normal; }

.gform_body ol, .gform_body ol li {
  list-style-type: decimal !important;
  margin-left: 15px; }

.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
  width: calc(100% - 15px); }

.gform_wrapper input {
  padding: 10px 15px !important;
  height: 44px;
  background: white;
  border: none;
  font-size: 14px; }

.gform_wrapper input::placeholder {
  color: #777 !important; }

.gform_wrapper input:focus::placeholder {
  color: #ccc !important; }

.gform_wrapper textarea.small {
  width: calc(100% - 15px);
  height: 100px;
  background-color: white;
  font-size: 14px;
  padding: 10px 15px !important;
  font-weight: normal;
  border: none; }

.gform_wrapper textarea {
  width: calc(100% - 15px);
  height: 100px;
  background-color: white;
  font-size: 14px;
  padding: 10px 15px !important;
  font-weight: normal;
  border: none; }

.gform_wrapper textarea::placeholder {
  color: #777 !important; }

.gform_wrapper select {
  width: calc(100% - 15px);
  padding: 6px 14px;
  color: #777;
  text-shadow: #fff 0 0 0;
  background-color: white;
  border: none;
  border-radius: 0;
  height: 44px; }

.gform_wrapper input:hover, .gform_wrapper input:active, .gform_wrapper input:focus, .gform_wrapper select:active, .gform_wrapper select:focus, .gform_wrapper select:hover, .gform_wrapper textarea.small:active, .gform_wrapper textarea.small:focus, .gform_wrapper textarea.small:hover {
  border: none;
  outline: 0; }

.gfield_description {
  font-size: 16px !important;
  margin-bottom: 20px; }

ul.gfield_checkbox li {
  width: 100%;
  float: left;
  margin: 4px 0 !important; }

.gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {
  font-size: 16px !important;
  padding: 5px;
  padding-top: 0px; }

.gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_radio li input {
  width: 20px !important;
  height: 20px !important;
  margin: 1px 5px 1px 0px;
  float: left; }

.gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label, .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label {
  font-weight: bold; }

.gform_wrapper select option {
  padding: 2px;
  display: block; }

.gform_wrapper .gf_hidden, .gform_wrapper .gform_hidden, .gform_wrapper input.gform_hidden, .gform_wrapper input[type=hidden] {
  display: none !important;
  max-height: 1px !important;
  overflow: hidden; }

#gform_3 .gfield_label {
  float: left;
  width: 100%;
  margin-bottom: 6px; }

#gform_3 ul li {
  margin-bottom: 20px; }

#gform_3 ul.gfield_radio li {
  margin-bottom: 0; }

li#field_3_34, li#field_3_35 {
  width: 57%; }

li#field_3_39 {
  clear: left !important; }

li#field_3_39, li#field_3_41, li#field_3_43, li#field_3_45 {
  width: 45%;
  float: left; }

li#field_3_39, li#field_3_43 {
  margin-right: 5%; }

li#field_3_41, li#field_3_45 {
  margin-left: 5%; }

li#field_3_48 ol li {
  font-weight: normal; }

li#field_3_50 {
  width: 175px;
  height: 35px; }

li#field_3_50 label.gfield_label {
  width: 30px;
  float: right;
  line-height: 35px; }

li#field_3_50 .ginput_container.ginput_container_checkbox {
  width: 80%;
  height: 35px; }

li.gchoice_3_50_1 {
  width: 150px !important; }

#gform_3 input.medium, #gform_3 select.medium, #gform_3 select, #gform_3 .ginput_complex .ginput_left, #gform_3 .ginput_complex .ginput_right, #gform_3 textarea.small {
  width: 100%; }

#gform_3 input.large.datepicker, #gform_3 input.medium.datepicker, #gform_3 input.small.datepicker {
  width: 100%; }

span#input_3_6_2_container, span#input_3_8_4_container, span#input_3_8_6_container {
  margin-top: 6px; }

li#field_3_1, li#field_3_2, li#field_3_9, li#field_3_34, li#field_3_35, li#field_6_1, li#field_6_2, li#field_7_1, li#field_7_2 {
  width: 100%; }

li#field_6_6, li#field_6_8, li#field_3_6, li#field_3_8 {
  padding-right: 0; }

ul#input_3_25 li, ul#input_6_25 li {
  width: 100%; }

input#input_6_51 {
  width: calc(100% - 15px); }

input#input_6_6 {
  margin-left: 1px;
  width: calc(100% - 1px); }

#input_6_6_container label {
  display: none; }

span#input_6_6_2_container {
  margin-top: 6px; }

label#label_7_29_0, label#label_7_29_1 {
  max-width: 150px; }

input#choice_3_25_1, input#choice_6_25_1 {
  float: none; }

input#choice_2_25_1, input#choice_3_25_1, input#choice_6_25_1, input#choice_7_25_1 {
  margin: 10px auto 0;
  display: block;
  width: 20px !important;
  height: 20px !important; }

input#choice_2_25_1 {
  margin: 0 auto; }

img.ui-datepicker-trigger {
  margin-left: -30px; }

body div#ui-datepicker-div[style] {
  z-index: 9999 !important; }

.ui-datepicker {
  width: 23.1em !important;
  height: auto;
  margin: 5px auto 0;
  font: 9pt Arial, sans-serif;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5); }

.ui-datepicker-header {
  height: 36px;
  background-color: #666;
  color: #e0e0e0;
  font-weight: 700;
  -webkit-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 0.2);
  -moz-box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 0.2);
  box-shadow: inset 0 1px 1px 0 rgba(250, 250, 250, 0.2);
  text-shadow: 1px -1px 0 #000;
  filter: dropshadow(color=#000, offx=1, offy=-1);
  line-height: 30px;
  min-height: 30px !important;
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #666; }

.ui-datepicker a {
  text-decoration: none; }

.ui-datepicker-title select {
  font-size: 15px !important;
  width: 100px;
  min-width: unset;
  margin: 0 5px 0 0;
  float: left; }

.ui-datepicker-calendar .ui-state-default {
  text-align: center;
  font-size: 16px;
  padding: 0;
  margin: 0;
  width: 100%;
  border: 0 !important;
  background-color: white; }

.ui-datepicker-next, .ui-datepicker-prev {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  background-image: url(/wp-content/themes/bernsteinmedical_v4/images/gravityforms_datepicker_arrow.png);
  background-repeat: no-repeat;
  line-height: 600%;
  overflow: hidden; }

.ui-datepicker-prev {
  float: left;
  background-position: center -30px; }

.ui-datepicker-next {
  float: right;
  background-position: center 0; }

.ui-datepicker-title {
  text-align: center; }

table.ui-datepicker-calendar {
  margin: 0 !important; }

.ui-datepicker table {
  width: 100%;
  border-collapse: collapse; }

.ui-datepicker thead {
  background: -moz-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f7f7f7), color-stop(100%, #f1f1f1));
  background: -webkit-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
  background: -o-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
  background: -ms-linear-gradient(top, #f7f7f7 0, #f1f1f1 100%);
  background: linear-gradient(to bottom, #f7f7f7 0, #f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#f1f1f1', GradientType=0); }

.ui-datepicker tbody tr, .ui-datepicker thead {
  border-bottom: 1px solid #bbb; }

.ui-datepicker th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #666;
  text-shadow: 1px 0 0 #fff;
  filter: dropshadow(color=#fff, offx=1, offy=0); }

.ui-datepicker tbody td {
  padding: 0;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb; }

td.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7; }

.ui-datepicker td a, .ui-datepicker td span {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666;
  text-shadow: 1px 1px 0 #fff;
  filter: dropshadow(color=#fff, offx=1, offy=1); }

.ui-datepicker tbody td:last-child {
  border-right: 0; }

.ginpt_container_fileupload input {
  font-size: 14px !important; }

.gform_wrapper .gfield_required {
  color: #790000;
  margin-left: 4px; }

.gform_wrapper .gfield.no-labels label {
  display: none; }

.gform_wrapper .ginput_container_email .ginput_right {
  margin-top: 6px; }

.gform_wrapper div.validation_error {
  color: #790000;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 25px;
  border-top: 2px solid #790000;
  border-bottom: 2px solid #790000;
  padding: 16px 0;
  clear: both;
  width: 100%;
  text-align: center; }

.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: rgba(255, 223, 224, 0.25);
  margin-bottom: 6px !important;
  border-top: 1px solid #c89797;
  border-bottom: 1px solid #c89797;
  padding-bottom: 6px;
  padding-top: 8px;
  box-sizing: border-box; }

.gform_wrapper .gfield_error .gfield_label {
  color: #790000; }

.gform_wrapper li.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper li.gfield_error textarea {
  border: 1px solid #790000; }

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  max-width: 100%;
  padding-right: 16px; }

.gform_wrapper .validation_message {
  color: #790000;
  font-weight: 700;
  letter-spacing: normal; }

.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container, .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
  margin-top: 12px; }

.gform_wrapper .field_description_below .gfield_description {
  padding-top: 16px; }

.gform_wrapper .screen-reader-text {
  display: none; }

.gform_footer {
  text-align: left; }

.answers, .htva_posts, .research, .news {
  display: inline-block; }

.news {
  display: inline-block; }

div.archive-header-footer {
  padding: 0 4%; }

div#archive-container, div#search-container {
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box; }

span.blog-head-text {
  font-style: italic;
  margin-bottom: 30px;
  display: block; }

.blog-content-wrapper {
  margin: 20px 0 0 0; }
  .blog-content-wrapper p {
    display: inline-block; }
  .blog-content-wrapper h2 {
    margin-top: 0;
    width: 90%;
    line-height: 32px;
    margin-bottom: 2rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .blog-content-wrapper h2 {
        line-height: 24px; } }
    .blog-content-wrapper h2 a {
      margin-top: 0;
      color: #333; }
  .blog-content-wrapper small {
    display: inline-block;
    margin-bottom: 0.5rem; }

.ngg-galleryoverview {
  margin-top: 0px !important; }

.post-icon {
  float: left;
  margin: 12px 10px 10px 0; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .post-icon {
      margin-bottom: 1rem; } }

.search-results .post-icon {
  float: left;
  margin: 2px 20px 10px 0; }

.hr-blog {
  height: 1px;
  width: 74%;
  background-color: rgba(79, 180, 187, 0.1); }

div#wp_page_numbers {
  padding: 0 0 1rem 0;
  height: 30px;
  width: 100%;
  display: block;
  margin: 0; }

#wp_page_numbers ul, #wp_page_numbers li, #wp_page_numbers a {
  background: white;
  padding: 0;
  margin: 0;
  border: 0;
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
  list-style: none;
  text-transform: none;
  text-indent: 0;
  font-variant: normal;
  text-align: left;
  line-height: 12px;
  letter-spacing: 0;
  word-spacing: 0;
  font-size: 11px;
  font-family: Arial; }

#wp_page_numbers {
  margin: 0 auto;
  width: 100%;
  height: auto; }

#wp_page_numbers ul {
  width: 100%; }

#wp_page_numbers li {
  float: left;
  display: block;
  margin-bottom: 2px; }

#wp_page_numbers a {
  padding: 7px 9px;
  margin-right: 4px;
  display: block;
  color: #333;
  border: 1px solid #bfbfbf; }

#wp_page_numbers li a:hover {
  border-color: #00728F; }

#wp_page_numbers li.space {
  padding: 6px 4px 2px 0;
  height: 20px; }

#wp_page_numbers li.first_last_page {
  font-style: italic; }

#wp_page_numbers li.active_page a {
  border-color: #00728F; }

#wp_page_numbers li.active_page a:hover {
  color: black;
  text-decoration: underline;
  border-color: #00728F; }

#wp_page_numbers li.page_info {
  float: left;
  display: block;
  padding: 7px 9px;
  margin-right: 4px;
  color: #666;
  font-size: 11px;
  border: 1px solid #bfbfbf; }

#wp_page_numbers_letters_before {
  float: left;
  margin: 20px 5px 20px 0; }

#wp_page_numbers_letters {
  float: left;
  text-align: center;
  margin: 5px 0 20px 0; }

#wp_page_numbers_letters p span {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 3px;
  margin: 2px;
  width: 12px;
  height: 10px;
  float: left;
  color: #333;
  border: 1px solid #000;
  line-height: 12px;
  letter-spacing: 0;
  word-spacing: 0;
  font-size: 11px;
  font-family: Arial; }

#wp_page_numbers_letters a span {
  border: 2px solid #bfbfbf; }

#wp_page_numbers_letters a:hover span {
  border: 2px solid #ba0000; }

.medical-photo-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem -1rem 0 -1rem;
  width: calc(100% + 2rem);
  justify-content: center; }
  .medical-photo-gallery .medical-before-after-image {
    flex-grow: 1;
    max-width: 900px;
    width: 100%;
    margin: 2rem 1rem 2rem 1rem; }
    @media only screen and (min-width: 1px) and (max-width: 480px) {
      .medical-photo-gallery .medical-before-after-image {
        margin: 1rem; } }
    .medical-photo-gallery .medical-before-after-image.dummy {
      height: 0; }
    .medical-photo-gallery .medical-before-after-image img.medical-ba-image {
      max-width: 100%;
      width: 100%; }
    .medical-photo-gallery .medical-before-after-image .before-after-captions {
      display: flex; }
      .medical-photo-gallery .medical-before-after-image .before-after-captions p {
        text-align: center;
        flex-basis: 13rem;
        flex-grow: 1;
        font-size: 12px;
        line-height: 16px;
        margin-top: 5px; }
  .medical-photo-gallery .med-pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 1rem; }
    .medical-photo-gallery .med-pagination .pagination {
      font-size: 1.25rem;
      color: #333; }
      @media only screen and (min-width: 1px) and (max-width: 480px) {
        .medical-photo-gallery .med-pagination .pagination {
          font-size: 1rem; } }
      .medical-photo-gallery .med-pagination .pagination a.page-numbers {
        padding: 0 0.5rem; }
        @media only screen and (min-width: 1px) and (max-width: 480px) {
          .medical-photo-gallery .med-pagination .pagination a.page-numbers {
            padding: 0; } }
        .medical-photo-gallery .med-pagination .pagination a.page-numbers:hover {
          color: #666666; }
      .medical-photo-gallery .med-pagination .pagination a.next {
        color: #00728F;
        font-weight: bold;
        margin-left: 2rem; }
        @media only screen and (min-width: 1px) and (max-width: 480px) {
          .medical-photo-gallery .med-pagination .pagination a.next {
            margin-left: 0.5rem; } }
      .medical-photo-gallery .med-pagination .pagination a.prev {
        color: #00728F;
        font-weight: bold;
        margin-right: 2rem; }
        @media only screen and (min-width: 1px) and (max-width: 480px) {
          .medical-photo-gallery .med-pagination .pagination a.prev {
            margin-right: 0.5rem; } }
      .medical-photo-gallery .med-pagination .pagination span.current {
        padding: 0 0.5rem;
        color: #666666; }
        @media only screen and (min-width: 1px) and (max-width: 480px) {
          .medical-photo-gallery .med-pagination .pagination span.current {
            padding: 0; } }

.norwood-classes {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem; }
  .norwood-classes .norwood-class {
    flex-basis: 13rem;
    margin: 1rem;
    display: flex;
    justify-content: center; }
    .norwood-classes .norwood-class img {
      max-width: 100%; }
    .norwood-classes .norwood-class h4 {
      width: 100%;
      text-align: center; }

.video-box {
  display: block;
  width: 150px;
  height: 171px;
  float: left;
  margin: 0 25px 15px 0;
  text-align: center;
  font-size: 13px;
  line-height: 15px; }

.video-box a {
  display: block;
  height: 162px; }

.video-box img {
  margin: 0 0 7px 0; }

a.video-link:before {
  font-family: "FontAwesome";
  content: "\f144";
  margin: 0 5px;
  color: #00728F;
  text-decoration: none !important; }

a.video-link:hover {
  text-decoration: none !important; }

a.video-thumb-link {
  float: right;
  margin: .5% 0 0 5%;
  display: block;
  max-width: 150px;
  font-size: 12px;
  text-align: center; }

.video-container {
  width: 71%;
  margin: 4% 0;
  display: flex;
  align-items: center;
  justify-content: center; }

.post-type-archive-htva_posts ul.fa-ul {
  margin: 20px 0 20px 20px; }

.search-results article ul.fa-ul, .search-results article ul.fa-ul li, .search-results .entry ul.fa-ul li {
  margin-left: 12px; }

video {
  width: 100% !important;
  height: auto !important; }

.youtube-container {
  margin: 4% auto;
  width: 73%;
  max-width: 500px;
  position: relative;
  padding-bottom: 32.25%;
  height: 0; }

#comments {
  display: none; }

footer {
  background-color: #fff;
  color: #222; }
  @media only screen and (max-width: 1260px) {
    footer {
      padding: 2rem 1.5rem; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    footer {
      padding: 2rem 0rem; } }

.footerbox-wrap {
  display: flex;
  align-items: center; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footerbox-wrap {
      flex-wrap: wrap; } }

.footerbox-half {
  flex-basis: 400px;
  flex-grow: 1;
  text-align: left;
  font-size: 17px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footerbox-half {
      max-width: 100%;
      box-sizing: border-box; } }

.footerbox-left {
  padding-right: 40px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footerbox-left {
      padding-right: 1rem;
      padding-left: 1rem; } }
  .footerbox-left img#footerlogo {
    max-width: 100%; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .footerbox-left img#footerlogo {
        width: 90%;
        max-width: 470px; } }
  .footerbox-left .footertext p {
    margin: 2rem 0;
    font-size: 16px;
    padding-left: 1rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .footerbox-left .footertext p {
        font-size: 14px;
        padding-left: 0;
        line-height: 22px; } }

.footerbox-right {
  padding-left: 40px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footerbox-right {
      padding-left: 0; } }

.footer-greybar {
  background-color: #f1f1f1;
  width: 100%; }
  .footer-greybar .footer-text {
    font-size: 12px;
    line-height: 18px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 2rem 2rem 1.5rem 2rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .footer-greybar .footer-text {
        flex-wrap: wrap; } }
    .footer-greybar .footer-text .copyright {
      flex-basis: 30rem;
      text-align: left; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .footer-greybar .footer-text .copyright {
          text-align: center;
          flex-grow: 1;
          width: 100%; } }
      .footer-greybar .footer-text .copyright .copyright-text {
        font-weight: 400; }
      .footer-greybar .footer-text .copyright a.privacy-link {
        margin-left: 1rem; }
        @media only screen and (min-width: 1px) and (max-width: 730px) {
          .footer-greybar .footer-text .copyright a.privacy-link {
            width: 100%;
            text-align: center;
            display: inline-block;
            margin: 1rem 0; } }
      .footer-greybar .footer-text .copyright .disclaimer {
        font-size: 10px;
        margin-top: 10px;
        display: inline-block; }
    .footer-greybar .footer-text .schweiger-section {
      flex-basis: 20rem;
      text-align: right; }
      .footer-greybar .footer-text .schweiger-section p {
        font-size: 10px; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .footer-greybar .footer-text .schweiger-section {
          text-align: center;
          padding-top: 3rem;
          width: 100%;
          flex-grow: 1; } }

.footer-social a {
  color: #5E6E66; }

footer h3 {
  text-align: center !important;
  color: #222;
  font-size: 17px; }

footer h3 a {
  color: white !important; }

.footerbox-half h3:nth-child(1) {
  margin-top: 0;
  text-align: left !important;
  margin-bottom: 11px; }

footer .gform_wrapper {
  width: 100%;
  margin: 0;
  padding: 10px 20px 20px 20px;
  /*  max-width: 460px;*/
  background-color: #f1f1f1; }

footer .gform_wrapper .gform_body {
  width: 100%;
  text-align: left; }

footer .gform_wrapper .top_label input.medium, footer .gform_wrapper .top_label select.medium {
  width: 100%; }

::-webkit-input-placeholder {
  color: #1aaba3 !important; }

:-ms-input-placeholder {
  color: #1aaba3 !important; }

::-moz-placeholder {
  color: #1aaba3 !important;
  opacity: 1 !important; }

:-moz-placeholder {
  color: #1aaba3 !important;
  opacity: 1 !important; }

footer .gform_wrapper li.gfield_contains_required label.gfield_label {
  float: right;
  display: block;
  font-size: 11px; }

footer .gform_wrapper li.gfield_contains_required div.ginput_container {
  width: calc(100% - 15px); }

footer .gform_wrapper .top_label div.ginput_container {
  margin-top: 6px; }

footer .gform_wrapper ul li.gfield {
  margin-top: 0;
  padding-top: 0; }

footer span#input_2_6_1_container, footer span#input_2_6_2_container {
  float: left;
  clear: none;
  min-height: 38px !important;
  width: 50%; }

footer span#input_2_6_2_container {
  margin: 0 0 0 8px;
  width: calc(50% - 4px); }

footer span#input_2_6_1_container label, footer span#input_2_6_2_container label {
  display: none; }

footer #field_2_33 div.instruction {
  display: none; }

footer li#field_2_7, footer li#field_2_18, footer li#field_2_19, footer li#field_2_20, footer li#field_2_21, footer li#field_2_27 {
  padding-top: 0;
  width: calc(100% - 15px); }

footer input#input_2_7 {
  margin-top: 6px; }

footer .gform_wrapper li#field_2_25 label {
  font-weight: normal;
  margin-left: 5px; }

footer .gform_wrapper label {
  display: none; }

footer .gform_wrapper textarea, footer .gform_wrapper input, footer .gform_wrapper select {
  width: 95%;
  height: 38px;
  padding: 0 0 0 15px !important;
  border: none;
  text-shadow: #555 0 0 0;
  border-radius: 0;
  color: #777 !important;
  font-weight: normal !important;
  font-size: 15px !important;
  font-family: arial !important;
  transition: background 1s; }

footer .gform_wrapper select {
  padding: 0 0 0 10px !important;
  margin-left: 0 !important; }

footer .gform_wrapper textarea {
  padding: 10px 14px !important;
  height: 80px;
  background-color: white !important; }

footer .gform_wrapper .top_label input.large.datepicker, footer .gform_wrapper .top_label input.medium.datepicker, footer .gform_wrapper .top_label input.small.datepicker {
  width: 100% !important; }

.gform_wrapper .top_label input.large.datepicker, .gform_wrapper .top_label input.medium.datepicker, .gform_wrapper .top_label input.small.datepicker {
  width: calc(100%-15px); }

footer textarea#input_2_23 {
  width: calc(100% - 15px);
  margin-left: 0;
  height: 80px; }

footer .gform_wrapper textarea:hover, footer .gform_wrapper input:hover, footer .gform_wrapper select:hover, footer .gform_wrapper textarea:active, footer .gform_wrapper input:active, footer .gform_wrapper select:active, footer .gform_wrapper textarea:focus, footer .gform_wrapper input:focus, footer .gform_wrapper select:focus {
  outline: 0; }

footer label.cf-before {
  display: block !important;
  width: 65%;
  float: left;
  margin: 3% 0 3% 10%; }

footer .gform_wrapper input.cf-box-b {
  width: 22px;
  height: 22px;
  margin: 4% 0 2% 6%; }

footer p.cf-sb {
  max-width: 421px;
  margin: 0 auto;
  width: 90%; }

footer li#field_2_25 {
  margin: 22px 0 12px;
  display: flex;
  width: 100%;
  padding-right: 0; }

footer li#field_2_25 label {
  font-size: 14px;
  width: 61%;
  /*margin-left: 54px;*/
  display: block;
  order: 2; }

footer .ginput_container.ginput_container_checkbox {
  margin-top: 0 !important; }

ul#input_2_25 {
  margin: 0;
  padding: 0 1rem 0 0; }

footer .gform_wrapper input.button {
  margin-right: 37px !important;
  width: 180px !important;
  order: 1; }

footer .gform_wrapper .gfield_radio li input {
  margin: 0 10px; }

li#field_2_29 {
  padding: 10px 0 5px 15px !important; }

li#field_2_29 label.gfield_label {
  display: block;
  width: 100%;
  float: left;
  margin-bottom: 10px;
  font-size: 15px; }

ul#input_2_29 li {
  margin: 8px 0; }

footer .gform_wrapper label#label_2_29_0, footer .gform_wrapper label#label_2_29_1 {
  display: inline;
  padding: 0;
  font-size: 16px !important;
  line-height: 18px; }

footer .gform_wrapper div.gform_footer.top_label {
  margin-top: 0;
  padding-top: 0; }

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
  width: 200px;
  height: 100%;
  background: #00728F !important;
  color: white !important;
  padding: 15px 20px !important;
  border-radius: 5px;
  box-shadow: 1px 1px 0 #777;
  transition: background 1s;
  border: 0;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer; }

footer .gform_wrapper .gform_footer input.button {
  /* float: right;*/
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.2rem !important;
  cursor: pointer !important; }

footer .gform_wrapper input.sendbutton:active, footer .gform_wrapper input.sendbutton:focus, footer .gform_wrapper input.sendbutton:hover, .gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input[type=submit]:hover {
  background: #27848c !important; }

footer .gform_wrapper ul.gfield_checkbox {
  width: 1.5rem; }
  footer .gform_wrapper ul.gfield_checkbox li {
    margin-top: 0px !important; }

.footertext {
  display: block;
  margin: 2rem 0 2rem;
  margin-top: 10px;
  line-height: 25px; }

.footericon {
  display: flex;
  margin-bottom: 2rem;
  width: 100%;
  align-items: center;
  justify-content: flex-start; }

.footericon i {
  /* box-shadow: 0 0 1px white;*/
  margin-right: 1rem;
  padding: 4px;
  color: #5E6E66; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footericon i {
      font-size: 1.5rem;
      margin-right: 0.5rem;
      padding-left: 0; } }

footer i.fa-envelope {
  padding-bottom: 2px; }

.footericon a {
  color: #00728F;
  font-weight: 400; }

.footericon a:hover {
  color: #27848c; }

.footer-social {
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
  margin: 40px 0 40px 0;
  padding-left: 10px;
  font-size: 22px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footer-social {
      margin: 30px 0 40px 0;
      padding-left: 0;
      padding-right: 2rem; } }

.footer-social i.fa.fa-envelope.fa-fw.fa-2x {
  font-size: 33px;
  height: 36px; }

.footer-social i.fa.fa-instagram.fa-stack-1x.fa-inverse {
  margin-top: 1px; }

.footer-social i.fa.fa-instagram.fa-stack-1x.fa-inverse {
  color: #fff; }

.footer-social a#facebook:hover {
  color: #3b5998;
  background: white;
  border-radius: 9px; }

.footer-social a#twitter:hover {
  color: #1da1f3;
  background: white;
  border-radius: 9px; }

.footer-social a#youtube:hover {
  color: #b00;
  background: white;
  border-radius: 9px; }

.footer-social a.instagram:hover {
  background-color: #d6249f; }

.footer-social a#googleplus:hover {
  color: #d34836;
  background: white;
  border-radius: 9px; }

i.fa.fa-facebook-square.fa-fw.fa-2x, i.fa.fa-twitter-square.fa-fw.fa-2x, i.fa.fa-youtube-square.fa-fw.fa-2x, i.fa.fa-instagram.fa-stack-1x.fa-inverse {
  width: 36px;
  height: 40px;
  margin-top: -4px; }

.footericon {
  display: flex;
  margin-bottom: 0.9rem;
  width: 95%;
  align-items: center;
  justify-content: flex-start;
  font-weight: 300;
  font-size: 18px;
  color: #5E6E66; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footericon {
      font-size: 16px;
      margin-bottom: 1.5rem; } }

.footer-icons {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 1rem auto;
  margin-bottom: 1rem; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    .footer-icons {
      flex-wrap: wrap;
      width: 100%; } }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .footer-icons {
      margin: 0;
      margin-bottom: 2rem; } }

@media only screen and (min-width: 1px) and (max-width: 730px) {
  .footer-address {
    font-size: 16px; } }

a.instagram {
  background-color: #5E6E66;
  border-radius: 8px;
  width: 39px;
  height: 39px; }
  a.instagram i {
    color: #fff;
    font-size: 2rem;
    position: relative; }
    a.instagram i:before {
      position: absolute;
      left: 5px;
      top: 4px; }

footer .fa-stack {
  width: 1.5em; }

.footer-spacer {
  height: 40px;
  width: 100%; }

.footer-icons img {
  border-radius: 5px; }

footer iframe {
  width: 100%; }

.logo-with-caption {
  width: 114px;
  flex-basis: 10rem; }
  .logo-with-caption a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px; }

.logo-with-caption img {
  margin-bottom: 1rem; }

div#reviews-ratings {
  margin: 3% auto 2%; }

div#reviews-ratings .accurate-iframe html {
  overflow: hidden; }

iframe[name='google_conversion_frame'] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
  float: left; }

div#consult-photo-container {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  margin: 30px auto 15px;
  width: 65%; }

#post-394 .consult-box {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 13px;
  margin: 30px 4px 15px; }

#post-394 .consult-box img {
  width: 100%;
  max-width: 141px;
  height: auto;
  border: 1px solid #555;
  margin-bottom: 3px; }

#post-394 .consult-text {
  margin: 1rem 0 0 0; }

#post-394 .consult-text a {
  color: #00728F !important; }

#post-394 #rightbar-page, #post-400 #rightbar-page, #post-423 #rightbar-page {
  display: none !important; }

#post-394 #page-content-wrapper, #post-400 #page-content-wrapper, #post-423 #page-content-wrapper {
  padding-right: 0; }

#post-394 #cformsouter, #post-400 #cformsouter, #post-423 #cformsouter {
  width: 90%;
  background-color: #eee;
  margin: 35px auto;
  padding: 10px 0 20px 0; }

.photo-consult-wolfeld {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  display: flex;
  font-weight: 400; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .photo-consult-wolfeld {
      flex-wrap: wrap; } }
  .photo-consult-wolfeld .photo-consult-text ul {
    font-weight: 400; }
  .photo-consult-wolfeld .online-consult-photo {
    padding-left: 2rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-consult-wolfeld .online-consult-photo {
        padding-left: 0; } }
    .photo-consult-wolfeld .online-consult-photo img {
      width: 400px;
      height: auto;
      margin-bottom: 2rem; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        .photo-consult-wolfeld .online-consult-photo img {
          width: 300px;
          max-width: 100%; } }

img#photo-consult-img {
  width: 17%;
  float: right;
  clear: both;
  margin: 0 0 2% 2%;
  min-width: 150px; }

#outerbox {
  position: relative;
  width: 100%; }

#innerbox {
  overflow: hidden;
  padding: 0;
  width: 60%;
  margin: 20px auto; }

#consultpatient, #newpatient, #medpatient, #surgpatient {
  border: 1px #999 solid;
  background-color: #eee;
  margin-top: 30px;
  padding: 30px;
  text-align: left; }

#newpatient span, #medpatient span, #surgpatient span {
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin: 35px 0 15px 0; }

#consultpatient ul li, #newpatient ul li, #medpatient ul li, #surgpatient ul li {
  list-style: none;
  margin: 0;
  clear: left;
  height: 40px; }

#consultpatient ul li.pdf:before, #newpatient ul li.pdf:before, #medpatient ul li.pdf:before, #surgpatient ul li.pdf:before {
  margin: 0; }

#consultpatient ul li a, #newpatient ul li a, #medpatient ul li a, #surgpatient ul li a {
  padding-left: 20px; }

.cv-date {
  width: 65%;
  float: left;
  padding: 11px 0 0 0;
  font-weight: bold;
  box-sizing: border-box; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    .cv-date {
      width: 100%; } }

.cv-content {
  width: 60%;
  float: left;
  padding: 5px 9px 24px 0;
  text-align: left;
  clear: left;
  box-sizing: border-box; }
  @media only screen and (min-width: 1px) and (max-width: 979px) {
    .cv-content {
      width: 100%; } }

.cv-subheader {
  clear: left;
  width: 100%;
  display: block;
  padding-top: 50px;
  font-weight: bold; }

div.bestdocs {
  float: left;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  min-height: 131px; }

.fuevsfut {
  width: 100%;
  margin: 30px auto 0; }

.fuevsfut div {
  margin: 0 0 2px 0;
  padding: 25px 30px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .fuevsfut div {
      padding: 20px 10px; } }

.fuevsfut div:nth-child(1) {
  background-color: #ccc !important;
  padding: 30px; }

.fuevsfut div:nth-child(even) {
  background-color: #eee; }

.fuevsfut div:nth-child(odd) {
  background-color: #f8f8f8; }

.fuevsfut h2 {
  margin: 0; }

.fuevsfut ul {
  margin: 15px 0 0; }

.fuevsfut a {
  background-color: transparent !important; }

.fuevsfut span {
  float: right;
  font-style: italic;
  font-size: 12px; }

#fuevsfutchart {
  width: 100%; }
  #fuevsfutchart .chart-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
    max-width: 40rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      #fuevsfutchart .chart-row {
        font-size: 12px; } }
    #fuevsfutchart .chart-row div {
      padding: 12px 10px; }
    #fuevsfutchart .chart-row div:nth-child(1) {
      flex-basis: 25rem;
      background-color: #e4e4e4;
      margin-right: 2px; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        #fuevsfutchart .chart-row div:nth-child(1) {
          flex-basis: 20rem; } }
    #fuevsfutchart .chart-row div:nth-child(2), #fuevsfutchart .chart-row div:nth-child(3) {
      flex-basis: 10rem;
      background-color: #f1f1f1;
      justify-content: center !important;
      align-items: center;
      display: flex;
      text-align: center;
      margin-right: 2px; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        #fuevsfutchart .chart-row div:nth-child(2), #fuevsfutchart .chart-row div:nth-child(3) {
          flex-basis: 12rem; } }
    #fuevsfutchart .chart-row.header-row div {
      background-color: #00728F;
      font-weight: bold;
      color: #fff; }

.entry ol#bernsteinpublications {
  margin: 0 0 0 4%;
  width: 96%;
  padding: 0; }

.entry ol#bernsteinpublications li {
  margin: 50px 0 0 0;
  text-align: justify; }

.bernsteinpublicationsbox {
  margin: 0 0 0 15px; }

.pubtitle {
  position: absolute;
  display: block;
  max-width: 500px;
  margin-top: 15px; }

.pubcontent {
  margin-top: 100px;
  display: block; }

ol.footnotes {
  font-size: .9em;
  color: #777;
  list-style-type: decimal; }

ol.footnotes li {
  list-style-type: decimal; }

.entry ol.footnotes li, .entry ol.post li {
  list-style-type: decimal;
  margin-top: 10px; }

.home-links, .entry .home-links {
  margin: 0;
  padding: 0;
  text-indent: 0;
  text-align: left;
  line-height: 16px; }

.home-links a, .entry .home-links a {
  display: block;
  margin: 0;
  padding: 0 0 0 17px;
  text-indent: 0;
  background: url("/wp-content/themes/bernsteinmedical_v4/images/arrow.gif") no-repeat;
  background-position: 0 2px; }

article ul.fa-ul, .entry ul.fa-ul {
  clear: left;
  margin: 25px 0 45px 5px; }

article ul.fa-ul, article ul.fa-ul li, .entry ul.fa-ul li {
  list-style-type: none;
  color: #00728F;
  max-width: 550px; }

#post-634 a.footrigger img {
  width: 100%;
  max-width: 185px;
  height: auto;
  margin-bottom: 3px;
  display: block; }

#post-634 i {
  color: #00728F;
  margin-right: 3px;
  clear: left; }

.letter-top-curl {
  width: 70%;
  height: 57px;
  background: #ccc url("/wp-content/themes/bernsteinmedical_v4/images/letter-top-curl.jpg") no-repeat;
  background-position: 0 100%;
  background-size: 100%;
  padding: 0;
  margin: 0; }

.letter-bg {
  width: 70%;
  background: url("https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/letter-background.jpg");
  background-size: 100%; }

.letter-body {
  margin: 0;
  padding: 10px 70px;
  font-family: Courier New, Courier, mono;
  font-size: 15px;
  letter-spacing: .2px;
  text-align: left; }

.letter-footer {
  width: 70%;
  height: 27px;
  background: #ccc url("/wp-content/themes/bernsteinmedical_v4/images/letter-footer.jpg") no-repeat;
  background-position: 0 0;
  background-size: 100%;
  padding: 0;
  margin: 0; }

.newsletter-archive-link {
  width: 90%;
  max-width: 420px;
  text-align: left;
  float: left;
  margin: 15px 0 15px 5%;
  clear: left; }

.newsletter-archive-date {
  float: left;
  font-style: italic;
  color: #777;
  margin: 15px 0 15px 30px; }

.newsletter-link {
  margin-bottom: 1rem; }
  .newsletter-link h2.newsletter-item {
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 18px;
    color: #00728F; }
  .newsletter-link span.date-posted {
    color: #333;
    font-size: 14px;
    font-style: italic; }

.info-header {
  width: 100%;
  color: #fff;
  background-color: #388d9e;
  margin: 25px 0 20px 0;
  text-align: left;
  float: left;
  clear: both; }

.info-header h3 {
  color: #fff;
  margin: 8px 0 8px 8px; }

.info-logo {
  width: 25%;
  min-width: 125px;
  margin: 15px 0 15px 0;
  text-align: center;
  float: left;
  clear: both; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .info-logo {
      text-align: left;
      margin-left: 0; } }

.info-content {
  width: 70%;
  margin: 15px 0 15px 15px;
  text-align: left;
  float: left;
  padding-left: 5px; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .info-content {
      margin-left: 0;
      width: 100%;
      padding-left: 0; } }

#404text {
  float: none;
  width: 85%;
  margin: 0 auto 75px; }

.a2a_kit {
  display: inline-block !important; }

.a2a_default_style {
  clear: left;
  position: relative;
  padding: 46px 0 0;
  display: inline-block !important;
  max-width: 420px; }

.addtoany_share_save_container {
  clear: both;
  line-height: 32px;
  margin: 0; }

.addtoany_list a {
  padding: 0; }

.addtoany_list a img {
  height: 16px;
  opacity: .7;
  overflow: hidden;
  vertical-align: middle;
  width: 16px; }

.addtoany_list a:hover img, .addtoany_list a.addtoany_share_save img {
  opacity: 1; }

iframe.addtoany_special_service {
  padding: 0 9px;
  vertical-align: middle; }

a.addtoany_share_save img {
  border: 0;
  width: auto;
  height: auto; }

#a2apage_BROWSER {
  display: none !important; }

#a2apage_PTZ {
  display: none !important; }

.share-box {
  float: left;
  width: 55px;
  margin-top: 2px; }

.share-box-a2a {
  float: left;
  margin-top: 2px; }

.share-box-email {
  float: left;
  margin: 12px 0 0 30px; }

#share-box-rightbar-a2a {
  text-align: center; }

.a2a_button_facebook_like {
  margin: 0;
  padding: 0;
  float: left; }

.a2a_button_google_plus_share, .a2a_button_linkedin, .a2a_button_twitter, .a2a_button_email, .a2a_button_google_gmail, .a2a_button_yahoo_mail, .addtoany_share_save {
  margin: 0 0 0 12px;
  padding: 0;
  float: left; }

.a2a_button_pinterest {
  width: 41px;
  margin: 7px 0 0 10px;
  padding: 0;
  float: left; }

.a2a_sharesave {
  width: 120px;
  margin: 10px 0 0 8px;
  padding: 0;
  float: left;
  height: 15px; }

h3.map-title {
  width: 100%;
  margin: 4rem 0 2rem 0;
  display: inline-block !important;
  font-weight: 300;
  color: #333;
  font-size: 24px; }

.mejs-container, .mejs-container .mejs-controls, .mejs-embed, .mejs-embed body {
  width: 100% !important; }

/*
Photo Page
----------------------------------------------------------------------------------------------------------
*/
.photo-gallery-links-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px; }
  .photo-gallery-links-wrap .photo-gallery-link {
    flex-basis: 22rem;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 4px;
    margin: 15px;
    display: flex;
    align-items: flex-start;
    border: 2px solid #f1f1f1; }
    .photo-gallery-links-wrap .photo-gallery-link:hover {
      border-color: #00728F; }
    .photo-gallery-links-wrap .photo-gallery-link a {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: wrap; }
      .photo-gallery-links-wrap .photo-gallery-link a h2 {
        width: 100%;
        text-align: left;
        margin-bottom: 0;
        font-size: 1.25rem;
        font-weight: 400; }
      .photo-gallery-links-wrap .photo-gallery-link a p {
        margin-top: 10px; }

.taxonomy-dropdown-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px; }
  .taxonomy-dropdown-wrap .taxonomy-dropdown {
    flex-basis: 22rem;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 4px;
    margin: 15px;
    display: flex;
    align-items: center;
    border: 2px solid #f1f1f1;
    display: flex;
    flex-wrap: wrap; }
    .taxonomy-dropdown-wrap .taxonomy-dropdown h2 {
      width: 100%;
      margin-top: 1rem;
      margin-bottom: 0;
      font-size: 1.25rem;
      font-weight: 400; }
    .taxonomy-dropdown-wrap .taxonomy-dropdown h3 {
      margin-top: 0;
      width: 100%; }
    .taxonomy-dropdown-wrap .taxonomy-dropdown p {
      margin-top: 10px; }

h1.photo-page-text {
  margin-top: 60px;
  margin-left: 15px; }

/*
NEW GALLERY STYLES
----------------------------------------------------------------------------------------------------------
*/
.photo-gallery-title-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0 1rem; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .photo-gallery-title-section {
      padding: 2rem 0 1rem; } }
  .photo-gallery-title-section .photo-gallery-title {
    text-align: center;
    padding: 0 2rem; }
    .photo-gallery-title-section .photo-gallery-title h1 {
      font-size: 36px;
      line-height: 31px;
      width: 100%;
      text-align: left;
      padding-bottom: 10px;
      padding-top: 10px;
      margin: 0 auto;
      font-weight: 400;
      color: #333; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-gallery-title-section .photo-gallery-title h1 {
        font-size: 24px; } }
  .photo-gallery-title-section .previous-link a:after {
    content: '\f105';
    font-family: fontawesome;
    font-size: 2.8rem;
    font-weight: bold;
    padding: 1rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-gallery-title-section .previous-link a:after {
        font-size: 2rem; } }
  .photo-gallery-title-section .next-link a:after {
    content: '\f104';
    font-family: fontawesome;
    font-size: 2.8rem;
    font-weight: bold;
    padding: 1rem; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-gallery-title-section .next-link a:after {
        font-size: 2rem; } }

.photo-gallery-before-after {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem; }
  .photo-gallery-before-after img {
    width: 100%;
    max-width: 900px;
    height: auto !important;
    flex-grow: none; }

.mensportraits .photo-gallery-before-after img {
  max-width: 900px; }

.menshairlines .photo-gallery-before-after img {
  max-width: 1000px;
  max-height: 543px; }

.womensgallery .photo-gallery-before-after img {
  max-width: 1000px;
  max-height: 543px; }

.repairs .photo-gallery-before-after img {
  max-width: 1000px;
  max-height: 543px; }

.eyebrows .photo-gallery-before-after img {
  max-width: 1000px;
  max-height: 543px; }

.crown .photo-gallery-before-after img {
  max-width: 1000px;
  max-height: 543px; }

.photo-gallery-taxonomies {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-left: -0.5rem;
  margin-bottom: 4rem; }
  .photo-gallery-taxonomies h3 {
    font-size: 1rem;
    flex-basis: 18rem;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: #f1f1f1; }
    .photo-gallery-taxonomies h3 a {
      font-size: 1rem;
      font-weight: bold; }

.photo-gallery-slideshow {
  margin-top: 3rem; }
  .photo-gallery-slideshow h2 {
    width: 100%;
    text-align: center;
    margin-top: 4rem; }
  .photo-gallery-slideshow h4.slide_caption {
    font-weight: normal;
    margin-top: 1rem; }
  .photo-gallery-slideshow .slideshow .slider-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 3rem auto; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      .photo-gallery-slideshow .slideshow .slider-wrap {
        max-width: 510px; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-gallery-slideshow .slideshow .slider-wrap {
        max-width: 300px; } }
  .photo-gallery-slideshow .slideshow #slider {
    height: 450px !important;
    position: static; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      .photo-gallery-slideshow .slideshow #slider {
        height: 350px !important; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-gallery-slideshow .slideshow #slider {
        height: 250px !important; } }
    .photo-gallery-slideshow .slideshow #slider span.control_prev, .photo-gallery-slideshow .slideshow #slider span.control_next {
      top: 160px;
      background-color: transparent;
      z-index: 1000;
      padding: 1rem 1.5rem;
      cursor: pointer; }
      .photo-gallery-slideshow .slideshow #slider span.control_prev i, .photo-gallery-slideshow .slideshow #slider span.control_next i {
        font-size: 3rem;
        color: #000;
        font-weight: bold; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        .photo-gallery-slideshow .slideshow #slider span.control_prev, .photo-gallery-slideshow .slideshow #slider span.control_next {
          top: 110px; } }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .photo-gallery-slideshow .slideshow #slider span.control_prev, .photo-gallery-slideshow .slideshow #slider span.control_next {
          top: 60px;
          padding: 0.5rem; }
          .photo-gallery-slideshow .slideshow #slider span.control_prev i, .photo-gallery-slideshow .slideshow #slider span.control_next i {
            font-size: 2rem; } }
    .photo-gallery-slideshow .slideshow #slider span.control_prev {
      left: 0; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .photo-gallery-slideshow .slideshow #slider span.control_prev {
          margin-left: -1rem; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-gallery-slideshow .slideshow #slider span.control_next {
        margin-right: -1rem; } }
    .photo-gallery-slideshow .slideshow #slider ul li {
      background-color: transparent;
      width: 600px; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        .photo-gallery-slideshow .slideshow #slider ul li {
          width: 400px; } }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .photo-gallery-slideshow .slideshow #slider ul li {
          width: 250px; } }
      .photo-gallery-slideshow .slideshow #slider ul li img {
        max-width: 100%;
        height: auto;
        max-height: 400px; }
        @media only screen and (min-width: 1px) and (max-width: 979px) {
          .photo-gallery-slideshow .slideshow #slider ul li img {
            max-height: 300px; } }
        @media only screen and (min-width: 1px) and (max-width: 730px) {
          .photo-gallery-slideshow .slideshow #slider ul li img {
            max-height: 200px; } }
      .photo-gallery-slideshow .slideshow #slider ul li h4 {
        text-align: center;
        font-style: normal; }
        @media only screen and (min-width: 1px) and (max-width: 979px) {
          .photo-gallery-slideshow .slideshow #slider ul li h4 {
            font-size: 1rem; } }
        @media only screen and (min-width: 1px) and (max-width: 730px) {
          .photo-gallery-slideshow .slideshow #slider ul li h4 {
            font-size: 0.8rem !important;
            margin-top: 0.5rem; } }
  .photo-gallery-slideshow .prp-gallery .slideshow #slider {
    height: 500px !important; }
    .photo-gallery-slideshow .prp-gallery .slideshow #slider h4 {
      font-size: 0.9rem; }

.fue-section .fue-patient-block {
  display: inline-block;
  margin-bottom: 2rem; }
  .fue-section .fue-patient-block .fue-gallery {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem; }
    .fue-section .fue-patient-block .fue-gallery .gallery-block {
      flex-basis: 15rem;
      flex-grow: 1;
      margin: 0.5rem 1.5rem; }
      .fue-section .fue-patient-block .fue-gallery .gallery-block.dummy {
        height: 0; }
      .fue-section .fue-patient-block .fue-gallery .gallery-block img {
        max-width: 100%; }
      .fue-section .fue-patient-block .fue-gallery .gallery-block h5 {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center; }

.photo-gallery-photo-list {
  display: flex;
  flex-wrap: wrap;
  max-height: 100%;
  margin-left: -1rem; }
  .photo-gallery-photo-list .image-block {
    padding: 0 1rem;
    flex-basis: 12rem; }
    .photo-gallery-photo-list .image-block a {
      display: flex;
      flex-wrap: wrap;
      align-items: center; }
      .photo-gallery-photo-list .image-block a img {
        width: 200px; }
    .photo-gallery-photo-list .image-block h4 {
      font-size: 0.9rem;
      font-style: normal;
      width: 100%;
      text-align: center;
      margin-top: 0.5rem;
      max-width: 200px;
      font-weight: normal; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        .photo-gallery-photo-list .image-block h4 {
          font-size: 0.8rem !important; } }

.lb-outerContainer {
  width: 100% !important;
  max-width: 700px !important; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .lb-outerContainer {
      width: calc(100% - 20px) !important;
      margin: 0 5px; } }
  .lb-outerContainer img.lb-image {
    width: 100% !important;
    max-width: 100%;
    height: auto !important; }

.photo-archive-grid, .photo-taxonomy-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .photo-archive-grid, .photo-taxonomy-grid {
      width: 100%; } }
  .photo-archive-grid .photo, .photo-archive-grid .page, .photo-taxonomy-grid .photo, .photo-taxonomy-grid .page {
    margin: 1rem;
    width: 280px; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .photo-archive-grid .photo, .photo-archive-grid .page, .photo-taxonomy-grid .photo, .photo-taxonomy-grid .page {
        width: auto; } }
    .photo-archive-grid .photo img, .photo-archive-grid .page img, .photo-taxonomy-grid .photo img, .photo-taxonomy-grid .page img {
      max-width: 100%;
      height: auto; }
    .photo-archive-grid .photo h2, .photo-archive-grid .page h2, .photo-taxonomy-grid .photo h2, .photo-taxonomy-grid .page h2 {
      text-align: left;
      margin-top: 0rem;
      font-size: 1.5rem;
      color: #00728F;
      font-weight: normal;
      margin-top: 0.5rem;
      margin-bottom: 0.5rem; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .photo-archive-grid .photo h2, .photo-archive-grid .page h2, .photo-taxonomy-grid .photo h2, .photo-taxonomy-grid .page h2 {
          font-size: 1rem; } }
    .photo-archive-grid .photo .taxonomy-list, .photo-archive-grid .page .taxonomy-list, .photo-taxonomy-grid .photo .taxonomy-list, .photo-taxonomy-grid .page .taxonomy-list {
      padding: 0;
      font-size: 0.9rem; }
      .photo-archive-grid .photo .taxonomy-list ul, .photo-archive-grid .page .taxonomy-list ul, .photo-taxonomy-grid .photo .taxonomy-list ul, .photo-taxonomy-grid .page .taxonomy-list ul {
        margin: 0;
        padding: 0; }
        .photo-archive-grid .photo .taxonomy-list ul li, .photo-archive-grid .page .taxonomy-list ul li, .photo-taxonomy-grid .photo .taxonomy-list ul li, .photo-taxonomy-grid .page .taxonomy-list ul li {
          list-style: none;
          margin: 0; }
      .photo-archive-grid .photo .taxonomy-list a, .photo-archive-grid .page .taxonomy-list a, .photo-taxonomy-grid .photo .taxonomy-list a, .photo-taxonomy-grid .page .taxonomy-list a {
        color: #00728F;
        font-weight: bold; }

.cd-timeline-content h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 2rem; }

.review-links {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem; }
  .review-links .review-single-link {
    flex-basis: 10rem;
    list-style: none !important;
    margin: 1rem;
    text-align: center; }
    .review-links .review-single-link a {
      display: inline-block;
      cursor: pointer; }
    .review-links .review-single-link img {
      max-width: 100%; }
    .review-links .review-single-link span {
      background-color: #00728F;
      padding: 0.5rem 1rem;
      color: #ffffff;
      margin-top: 1rem;
      display: inline-block;
      border-radius: 3px;
      transition: 0.5s; }
    .review-links .review-single-link:hover span {
      background-color: #0086a9; }

a.cta-button {
  color: #fff !important;
  background-color: #E7A100;
  padding: 0.75rem;
  border-radius: 4px;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.5px; }
  a.cta-button:hover {
    background: #f6ac00;
    color: #fff !important; }

.larger-text {
  font-size: 1.1rem; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .larger-text {
      font-size: 0.9rem; } }

.form-title h2.gsection_title {
  font-weight: 400;
  font-size: 1.8rem; }

.consult-form-header {
  display: flex;
  width: 80%; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .consult-form-header {
      width: 100%;
      flex-wrap: wrap; } }
  .consult-form-header .form-label-left {
    flex-basis: 20rem;
    flex-grow: 1;
    padding-right: 2rem; }
    .consult-form-header .form-label-left a {
      color: #00728F; }
      .consult-form-header .form-label-left a:hover {
        color: #222; }
  .consult-form-header .form-label-right {
    flex-basis: 8rem;
    flex-grow: 1;
    text-align: right; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .consult-form-header .form-label-right {
        text-align: left; } }
    .consult-form-header .form-label-right a.cta-button {
      margin-top: 0;
      min-width: 200px;
      text-align: center; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .consult-form-header .form-label-right a.cta-button {
          margin-top: 1rem;
          margin-bottom: 2rem; } }

.emergency-banner {
  display: inline-block;
  background-color: #00728F;
  width: 100%;
  padding: 0.5rem 1rem;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .emergency-banner {
      padding: 0.5rem 1rem; } }
  .emergency-banner h1 {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    line-height: 1.25rem;
    color: #fff;
    text-transform: uppercase;
    margin: 5px 0; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      .emergency-banner h1 {
        font-size: 1rem;
        margin: 0; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .emergency-banner h1 {
        width: 100%;
        text-align: center;
        padding: 0; } }
    .emergency-banner h1:before {
      content: '\f06a';
      font-family: 'fontawesome';
      margin-right: 0.5rem; }
  .emergency-banner .emergency-text {
    color: #fff;
    padding: 0;
    font-size: 1rem;
    font-weight: bold;
    box-sizing: border-box;
    flex-basis: 20rem;
    flex-grow: 1; }
    @media only screen and (min-width: 1px) and (max-width: 979px) {
      .emergency-banner .emergency-text {
        font-size: 0.8rem; } }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .emergency-banner .emergency-text {
        font-weight: 400; } }
    .emergency-banner .emergency-text p {
      margin: 2px 0 0 0;
      font-size: 1.25rem; }
      @media only screen and (min-width: 1px) and (max-width: 979px) {
        .emergency-banner .emergency-text p {
          margin-top: 0px;
          font-size: 1rem; } }
    .emergency-banner .emergency-text a {
      color: #E7A100; }
      .emergency-banner .emergency-text a:hover {
        color: #ce8f00; }

.consult-alert {
  padding: 1rem;
  border: 1rem solid;
  border-color: #9b6c00;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 2rem; }
  .consult-alert i#covid-alert {
    color: #9b6c00;
    font-size: 4rem;
    float: left;
    margin-right: 1rem; }

.cta-pop-up h1 {
  font-weight: bold;
  color: #00728F; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .cta-pop-up h1 {
      font-size: 16px;
      margin-top: 0; } }
.cta-pop-up p {
  text-align: left; }
  @media only screen and (min-width: 1px) and (max-width: 730px) {
    .cta-pop-up p {
      font-size: 11px; } }
.cta-pop-up #mktoForm_1067, .cta-pop-up #mktoForm_1066 {
  max-width: 100%;
  background-color: #f1f1f1;
  padding: 15px 5px 15px 15px;
  box-sizing: border-box; }
  .cta-pop-up #mktoForm_1067 .mktoFieldWrap, .cta-pop-up #mktoForm_1066 .mktoFieldWrap {
    float: none;
    padding-right: 10px; }
    .cta-pop-up #mktoForm_1067 .mktoFieldWrap .mktoLabel, .cta-pop-up #mktoForm_1066 .mktoFieldWrap .mktoLabel {
      width: auto !important; }
    .cta-pop-up #mktoForm_1067 .mktoFieldWrap input, .cta-pop-up #mktoForm_1066 .mktoFieldWrap input {
      background-color: #fff;
      border: none;
      padding: 5px; }
    .cta-pop-up #mktoForm_1067 .mktoFieldWrap label, .cta-pop-up #mktoForm_1066 .mktoFieldWrap label {
      margin-bottom: 5px;
      font-size: 12px;
      font-weight: 400; }
      @media only screen and (min-width: 1px) and (max-width: 730px) {
        .cta-pop-up #mktoForm_1067 .mktoFieldWrap label, .cta-pop-up #mktoForm_1066 .mktoFieldWrap label {
          font-size: 10px; } }
    .cta-pop-up #mktoForm_1067 .mktoFieldWrap select, .cta-pop-up #mktoForm_1066 .mktoFieldWrap select {
      width: 100% !important;
      color: #333;
      text-shadow: none;
      background-color: #fff;
      height: 27px;
      border-radius: 0;
      font-size: 12px; }
  .cta-pop-up #mktoForm_1067 .mktoButtonRow, .cta-pop-up #mktoForm_1066 .mktoButtonRow {
    width: 100%;
    margin-top: 15px; }
    .cta-pop-up #mktoForm_1067 .mktoButtonRow .mktoButtonWrap, .cta-pop-up #mktoForm_1066 .mktoButtonRow .mktoButtonWrap {
      margin-left: 0 !important; }
      .cta-pop-up #mktoForm_1067 .mktoButtonRow .mktoButtonWrap button, .cta-pop-up #mktoForm_1066 .mktoButtonRow .mktoButtonWrap button {
        width: calc(100% - 10px);
        border: none;
        font-size: 16px;
        font-weight: 400;
        text-shadow: none; }
  .cta-pop-up #mktoForm_1067 .mktoError, .cta-pop-up #mktoForm_1066 .mktoError {
    color: #E7A100; }
    .cta-pop-up #mktoForm_1067 .mktoError .mktoErrorMsg, .cta-pop-up #mktoForm_1066 .mktoError .mktoErrorMsg {
      background-color: #E7A100;
      background-image: none;
      border: none;
      box-shadow: 1px 1px 3px rgba(51, 51, 51, 0.25);
      text-shadow: none; }
    .cta-pop-up #mktoForm_1067 .mktoError .mktoErrorArrow, .cta-pop-up #mktoForm_1066 .mktoError .mktoErrorArrow {
      background-color: #E7A100;
      border-color: #E7A100; }
  .cta-pop-up #mktoForm_1067 .mktoFormRow:nth-child(4) .mktoFormCol, .cta-pop-up #mktoForm_1066 .mktoFormRow:nth-child(4) .mktoFormCol {
    width: 100% !important; }
  .cta-pop-up #mktoForm_1067 .mktoFormRow .mktoFormCol, .cta-pop-up #mktoForm_1066 .mktoFormRow .mktoFormCol {
    width: 50% !important; }
    @media only screen and (min-width: 1px) and (max-width: 730px) {
      .cta-pop-up #mktoForm_1067 .mktoFormRow .mktoFormCol, .cta-pop-up #mktoForm_1066 .mktoFormRow .mktoFormCol {
        width: 100% !important; } }
    .cta-pop-up #mktoForm_1067 .mktoFormRow .mktoFormCol input, .cta-pop-up #mktoForm_1066 .mktoFormRow .mktoFormCol input {
      width: 100% !important; }
  .cta-pop-up #mktoForm_1067 .mktoOffset, .cta-pop-up #mktoForm_1066 .mktoOffset {
    width: 0 !important; }

.sg-popup-content {
  border-bottom: 0 !important;
  box-shadow: none !important; }

img.sgpb-popup-close-button-1 {
  top: 1px !important;
  right: -24px !important; }

/*
980 BREAK POINT
----------------------------------------------------------------------------------------------------------
*/
@media only screen and (min-width: 980px) {
  #menu-toggle {
    display: none; }

  #container {
    display: table;
    width: 100%; }

  .post {
    width: 100%;
    margin: 0;
    padding: 0 10px 0 10px;
    text-align: justify; }

  .post hr {
    display: block; }

  .clear, .postmetadata {
    clear: both; }

  #page-content-wrapper {
    padding: 0;
    width: 100%; }

  .news-content-wrapper {
    margin-top: 30px; }

  .news-content-wrapper p {
    margin: 5px 0 20px; }

  .feature-boxes {
    width: 55%;
    padding: 25px;
    margin: 40px 0 40px 0;
    border-radius: 5px;
    background-color: #eee; }

  #featurebox-photojournal {
    max-width: 238px;
    margin: 8px 0 8px 17px;
    float: right; }

  .gform_wrapper .gform_body {
    width: 100%; }

  ul.gfield_checkbox li {
    width: 49%;
    float: left; }

  .verticalcheckbox ul.gfield_checkbox li {
    width: 100%; }

  #content-main-home {
    padding: 0;
    float: left;
    width: 100%;
    max-width: 1200px; }

  #rotator .slide {
    height: 500px;
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    padding: 0 12%;
    color: white;
    display: table-cell;
    vertical-align: middle;
    text-shadow: 0px 0px 15px black;
    letter-spacing: .3px; }

  span.homeslidetext {
    margin: 27px 0; }

  span.homeslidecta {
    margin-top: 7px; }

  .slide img {
    position: absolute;
    bottom: 35px;
    right: 3%;
    width: 235px;
    height: auto;
    border: 0;
    border-radius: 4px; }

  .slide ul {
    margin: 25px 0 0 35px; }

  .homebox-sm a span {
    display: block;
    margin-top: 10px; }

  #features, #subfeatures {
    display: flex;
    justify-content: space-between;
    align-items: center; }

  #features {
    margin: 4% 0 3%; }

  #subfeatures {
    margin: 0 0 3%; }

  #features #video {
    width: 220px;
    height: auto;
    max-height: 147px;
    border-radius: 5px;
    display: block;
    margin: 0 auto; }

  #aboutbernstein, #aboutwolfeld {
    width: 48%;
    float: left;
    margin-bottom: 2%; }

  #aboutwolfeld {
    margin-left: 4%; }

  #aboutbernstein span, #aboutwolfeld span {
    width: 100%;
    display: block;
    margin-bottom: 1%;
    font-weight: bold; }

  #aboutbernstein img {
    margin: 1% 5% 2% 0;
    float: left;
    border-radius: 4px; }

  #aboutwolfeld img {
    margin: 1% 0 2% 5%;
    float: right;
    border-radius: 4px; }

  #info {
    min-height: 470px; }

  #info .homebox-half:nth-child(2) {
    margin-right: 2%;
    width: 46%; }

  #news, #news .homebox-full {
    min-height: 420px; }

  .homebox-sm a {
    font-size: 16px;
    display: block;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    line-height: 24px; }

  .homebox-sm img {
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%; }

  .ui-tabs .ui-tabs-nav {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 4rem; }

  .info-header {
    width: 73%;
    clear: none; }

  .info-logo {
    width: 24%;
    clear: left; }

  .fuevsfut {
    width: 72%;
    margin: 30px 0; }

  .fullwidthvideo-container {
    width: 73%; }

  .video-box-flv {
    width: 400px;
    margin: 25px auto; }

  .video-box-youtube {
    margin: 25px auto; }

  .entry ol.cv li {
    list-style-type: decimal;
    margin: 15px 15px 0 15px; }

  table.footable {
    max-width: 100% !important; }

  ol.footnotes li {
    list-style-type: decimal; }

  .newsletter-archive-link {
    width: 65%; }

  .photo-consult-content-top, .photo-consult-content-bottom {
    float: left;
    margin: 0 0 0 30px;
    width: 65%; }

  #404text {
    float: left;
    width: 69%; }

  li.child:hover ul {
    width: 180px; }

  .xbreadcrumbs li.child:hover ul li {
    width: 100%; }

  li.submenu-close {
    display: none; }

  span.child {
    margin-top: 1px; }

  div#reviews-ratings {
    width: 50%; }

  .page-template-template_patientphotosprofile .page-nav {
    width: 79%;
    margin: 30px 0;
    display: flex;
    justify-content: center; }

  .page-template-template_patientphotosprofile .page-nav-prev, .page-template-template_patientphotosprofile .page-nav-next {
    width: 190px;
    display: flex;
    justify-content: center; }

  .page-nav-parent {
    width: 380px;
    float: left;
    text-align: center;
    margin-top: 55px; }

  #rightbar-page {
    width: 200px;
    float: right;
    margin: 0 0 0 3rem; } }
  @media only screen and (min-width: 980px) and (max-width: 1260px) {
    #rightbar-page {
      margin: 0 1.5rem 0 3rem; } }

@media only screen and (min-width: 980px) {
  .rightbar-page-lid, .rightbar-photo-lid {
    width: 200px;
    /*background: #00728F;
    border-radius: 4px 4px 0 0;*/
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    letter-spacing: .2px;
    padding: 5px 0 10px 0;
    line-height: 24px;
    font-weight: 400; }

  .rightbar-page-lid a, .rightbar-photo-lid a {
    color: #00728F; }

  .rightbar-page-lid a:hover, .rightbar-photo-lid a:hover {
    color: #388d9e;
    text-decoration: none; }

  .rightbar-page, .rightbar-photo {
    text-align: left;
    width: 200px;
    font-size: 12px;
    padding: 0;
    margin: 0 0 15px 0;
    line-height: 16px;
    /* background: rgba(231, 247, 253, 0.55);*/ }

  .rightbar-page .zoom-wrap, .rightbar-photo .zoom-wrap {
    padding: 0;
    border: 0;
    overflow: hidden;
    width: 200px;
    border-radius: 0; }

  .rightbar-page .zoom-wrap img, .rightbar-photo .zoom-wrap img {
    width: 100%;
    transition: all .5s; }

  .rightbar-page .zoom-wrap img:hover, .rightbar-photo .zoom-wrap img:hover {
    /*    width: 102%;
        height: 102%;*/
    opacity: .8; }

  .rightbar-page div, .rightbar-photo div {
    padding: 10px 0px;
    /*    border: 1px solid rgba(50, 162, 171, 0.34);
        border-top: 0;
        border-radius: 0 0 4px 4px;*/ }

  .sidebar-galleries .zoom-wrap {
    margin-bottom: 1rem; }

  .rightbar-page a, .rightbar-photo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: .5px;
    color: #00728F; }

  .rightbar-photo a:hover, .rightbar-page a:hover {
    color: #388d9e; }

  .rightbar-photo h3 {
    margin: 8px 0 4px 0px !important;
    padding: 0;
    font-size: 13px !important; }

  .rightbar-photo h3:nth-child(1) {
    margin-top: 0 !important;
    padding-top: 15px; }

  #rightbar-page ul {
    margin: 0;
    padding: 10px 0 0 19px; }

  #rightbar-page ul li, #rightbar-page ul li a {
    margin: 0;
    padding: 0;
    color: #00728F; }

  .page-template-template_photospage aside#rightbar-page {
    margin-top: 130px; }

  #sidebar-blog, #sidebar-htva {
    padding: 20px 0px;
    width: 250px;
    background-color: #fff;
    font-size: 13px;
    line-height: 15px;
    color: #333;
    float: right;
    margin: 0 0 50px 80px;
    text-align: left;
    border-radius: 5px; }
    #sidebar-blog h2, #sidebar-htva h2 {
      font-size: 20px;
      line-height: 22px; }
    #sidebar-blog a.sidebar-button, #sidebar-htva a.sidebar-button {
      color: #fff; }

  #sidebar-blog img, #sidebar-htva img {
    margin: 0 0 15px 0;
    display: block; }

  #sidebar-blog a, #sidebar-htva a {
    color: #00728F; }

  #sidebar-blog h2, #sidebar-htva h2 {
    margin: 0;
    color: #00728F;
    font-weight: normal; }

  #sidebar-blog ul, #sidebar-htva ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }

  #sidebar-blog ul.fa-ul, #sidebar-htva ul.fa-ul {
    margin: 0px 0 15px 22px; }

  #page-content-wrapper, #sidebar-blog ul.fa-ul {
    padding-left: 0; }

  #sidebar-blog ul.fa-ul li, #sidebar-htva ul.fa-ul li {
    margin: 0 0 5px 0;
    color: #5E6E66; }

  #sidebar-blog ul.fa-ul li a, #sidebar-htva ul.fa-ul li a {
    padding-top: 1px;
    display: block; }

  #sidebar-blog #categories li, #sidebar-blog .wp-tag-cloud li, #sidebar-htva #categories li, #sidebar-htva .wp-tag-cloud li {
    list-style: none;
    margin: 0; }

  a.sidebar-button {
    display: inline-block;
    width: 100%;
    background-color: #E7A100;
    color: #fff;
    padding: 0.5rem 0.5rem 0.5rem 3rem;
    border-radius: 5px;
    box-sizing: border-box;
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 14px;
    transition: background .5s;
    position: relative; }
    a.sidebar-button:hover {
      background: #f6ac00;
      color: #fff; }
    a.sidebar-button:before {
      content: '\f271';
      font-family: fontawesome;
      font-weight: 300;
      font-size: 1.5rem;
      margin-right: 5px;
      position: absolute;
      left: 0.6rem;
      top: 1rem; }

  #categories a, .wp-tag-cloud a {
    font-family: 'Montserrat', sans-serif;
    padding: 5px 0 5px 0px;
    display: block;
    font-size: 12px;
    letter-spacing: .4px;
    color: #5E6E66; }

  #categories a:hover, .wp-tag-cloud a:hover {
    color: #333; }

  #sidebar-blog #searchform #s, #sidebar-htva #searchform #s {
    padding: 0 7px;
    border-radius: 3px;
    margin: 10px 0 0 -10px;
    font-size: 14px;
    height: 32px;
    margin-bottom: 5px; }

  #sidebar-blog #searchsubmit, #sidebar-htva #searchsubmit {
    padding: 6px;
    border-radius: 3px;
    height: 34px;
    font-size: 14px;
    width: 34px; }

  .white-bg {
    background: #fff;
    padding: 2rem 0 2rem 0; } }
  @media only screen and (min-width: 980px) and (min-width: 1px) and (max-width: 730px) {
    .white-bg {
      background: #fff;
      display: inline-block;
      width: 100%;
      padding: 2rem 0 0 0; } }

@media only screen and (min-width: 980px) {
  #review-widget {
    margin-bottom: 2rem; }

  footer #gform_wrapper_2 {
    background-color: #f1f1f1;
    padding: 10px 20px 20px 20px; }
    footer #gform_wrapper_2 .screen-reader-text {
      display: none; }

  /*
  730 BREAK POINT
  ----------------------------------------------------------------------------------------------------------
  */ }
@media only screen and (min-width: 731px) and (max-width: 979px) {
  body {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px; }

  #container {
    display: table;
    width: 100%; }

  .post {
    width: 90%;
    margin: 0;
    padding: 0;
    text-align: justify; }

  .post hr {
    display: block; }

  .clear, .postmetadata {
    clear: both; }

  #innerbox {
    width: 80%; }

  #rightbar-page {
    display: none; }

  nav.sidebar {
    display: none; }

  .page-template-template_patientphotosprofile .page-nav {
    width: 55%; }

  .page-nav-parent {
    width: 80%;
    float: left;
    text-align: center;
    margin: 45px 0 0 0; }

  .feature-boxes {
    width: 85%;
    padding: 15px;
    margin: 20px auto;
    border: 1px solid #43b8c1;
    border-radius: 5px;
    background-color: #eee; }

  #featurebox-photojournal {
    max-width: 238px;
    margin: 8px 0 8px 17px;
    float: right; }

  #content-main-home {
    padding: 0;
    float: left;
    width: 100%; }

  #rotator {
    height: 457px;
    border-radius: 4px; }

  #rotator .slide {
    height: 457px;
    font-size: 18px;
    line-height: 24px;
    padding: 0 7%;
    color: white;
    text-shadow: 1px 1px 1px #000;
    display: table-cell;
    vertical-align: middle;
    letter-spacing: .1px; }

  span.homeslidetext {
    margin: 20px 0; }

  span.homeslidecta {
    margin-top: 7px; }

  .slide img {
    display: none !important; }

  .slide ul {
    margin: 20px 0 0 35px; }

  .homebox-sm h2, .homebox-half h2, .homebox-full h2 {
    margin-bottom: 30px; }

  .homebox-sm-zoom-wrap {
    max-height: 171px; }

  #features, #subfeatures {
    display: flex;
    justify-content: space-between;
    align-items: center; }

  #features img, #subfeatures img {
    border-radius: 3px;
    display: block;
    margin: 0 auto;
    max-width: 100%; }

  #subfeatures .homebox-sm {
    margin-top: 2%; }

  #roboticfue-more, #fut-more, #consult-more, #prp-more, #photoconsult-more, #publications-more {
    padding: 48px 5%;
    height: 75px;
    font-size: 13px;
    line-height: 14px; }

  #aboutbernstein, #aboutwolfeld {
    width: 48%;
    float: left;
    margin-bottom: 5%;
    text-align: left; }

  #aboutwolfeld {
    margin-left: 4%; }

  #aboutbernstein span, #aboutwolfeld span {
    width: 100%;
    display: block;
    margin-bottom: 1%;
    font-weight: bold; }

  #aboutbernstein img {
    margin: 1% 4% 2% 0;
    float: left;
    border-radius: 4px; }

  #aboutwolfeld img {
    margin: 1% 0 2% 4%;
    float: right;
    border-radius: 4px; }

  #info {
    min-height: 520px; }

  #info .homebox-half:nth-child(2) {
    margin-right: 2%;
    width: 46%; }

  .homebox-half ul li {
    margin: 0 0 20px 0; }

  #news, #news .homebox-full {
    min-height: 450px;
    margin: 6% 0 5%; }

  span.home-about-button a {
    height: 52px;
    padding: 0 24px; }

  .ui-tabs .ui-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: space-around; }

  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    width: 82px;
    font-size: 12px;
    line-height: 13px; }

  .home-news-container {
    width: 89%;
    float: none;
    margin: 0 5% 3% !important; }

  .home-news-container span {
    max-width: none;
    justify-content: flex-start; }

  .fullwidthvideo-container {
    width: 100%; }

  .video-box-flv {
    width: 91.8%;
    margin: 25px 0;
    text-align: center; }

  .video-box-youtube {
    width: 100%;
    margin: 25px auto;
    text-align: center; }

  .letter-top-curl, .letter-bg, .letter-footer {
    width: 100%; }

  .entry ol.cv li {
    list-style-type: decimal;
    margin: 15px 15px 0 15px; }

  ol.footnotes li {
    list-style-type: decimal; }

  .newsletter-archive-link {
    width: 58%; }

  .photo-consult-content-top, .photo-consult-content-bottom {
    float: left;
    margin: 0 0 0 30px;
    width: 60%; }

  #sidebar-htva, #sidebar-answers, #sidebar-blog {
    display: none; }

  footer .footerbox-half h3 {
    text-align: left;
    padding-top: 0; }

  #footerlogo {
    margin: 20px auto;
    border-radius: 5px;
    max-width: 100%;
    height: auto; }

  .footertext {
    display: block;
    margin-bottom: 10%;
    text-align: left; }

  .footericon {
    text-align: left; }

  span.footericon:nth-child(5) a {
    letter-spacing: .3px; }

  .footericon i {
    margin-right: 3%;
    min-width: 40px; }

  .footericon i.fa-envelope {
    padding-bottom: 2px; }

  .footericon a {
    color: #00728F;
    font-weight: 400; }

  footer .gform_wrapper textarea, footer .gform_wrapper input, footer .gform_wrapper select {
    font-size: 14px !important;
    width: 95%; }

  footer .gform_wrapper select {
    width: 94%; }

  footer .gform_wrapper input.sendbutton {
    width: 90%;
    margin: 15px auto 35px;
    font-size: 14px !important;
    float: none; }

  footer .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left {
    width: 49%; }

  footer input#input_2_32 {
    width: 92%; }

  footer .gform_wrapper ul li.gfield {
    padding-right: 0 !important; }

  footer .gform_footer.top_label {
    margin: 0;
    padding: 0; }

  li.submenu-close {
    display: none; }

  div#reviews-ratings {
    width: 60%; }

  /*
  480 BREAK POINT --- MOBILE
  ----------------------------------------------------------------------------------------------------------
  */ }
@media only screen and (min-width: 481px) and (max-width: 730px) {
  nav.sidebar {
    display: none; }

  #rightbar-page {
    display: none; }

  .page-nav h1.entry-title {
    font-size: 24px; }

  .page-id-394 div#headerbuttons div:nth-child(1) {
    display: none; }

  .page-id-394 div#headerbuttons div:nth-child(3) {
    margin-left: 25px; }

  #consult-text {
    font-size: 10px; }

  .comp i.fa.fa-picture-o.fa-3x, .comp i.fa.fa-picture-o.fa-3x {
    display: block;
    margin: 3px 0 6px 0; }

  #menu-toggle .shiftnav-toggle .fa-bars {
    display: block;
    font-size: 32px; }

  #container {
    display: table;
    width: 100%; }

  .post-type-archive-htva_posts #archive-container, .post-type-archive-htva_posts #search-container {
    width: 90%; }

  .post {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: justify; }

  .post hr {
    display: block; }

  .clear, .postmetadata {
    clear: both; }

  #innerbox {
    width: 95%; }

  #breadcrumbs {
    font-size: 15px; }

  div#archive-container, div#search-container {
    padding: 0 5%;
    width: 90%; }

  .page-template-template_patientphotosprofile .page-nav {
    width: 75%; }

  #post-394 .page-nav, #post-400 .page-nav, #post-423 .page-nav {
    width: 99% !important;
    padding: 0 !important; }

  .page-nav-parent {
    width: 80%;
    float: left;
    text-align: center;
    margin: 45px 0 0 0; }

  .spotlight-box {
    width: 185px;
    padding: 10px 15px;
    margin: 1% 0 3% 8%;
    font-size: 14px; }

  .spotlight-box ul li, .spotlight-box-video ul li {
    margin: 10px 0 !important; }

  .spotlight-box ul li a, .spotlight-box-video ul li a {
    font-size: 15px; }

  .underimg-box {
    width: 49.6%; }

  .feature-boxes {
    width: 85%;
    padding: 15px;
    margin: 20px auto;
    border: 1px solid #43b8c1;
    border-radius: 5px;
    background-color: #eee; }

  #featurebox-photojournal {
    width: 100%;
    max-width: 238px;
    margin: 8px auto;
    display: block; }

  .photo-consult-content-top {
    float: left;
    margin: 0 0 0 30px;
    width: 58%; }

  .photo-consult-wolfeld {
    width: 70%; }

  .photo-consult-content-bottom {
    float: left;
    margin: 0 0 0 30px;
    width: 60%; }

  .fullwidthvideo-container {
    width: 100%; }

  .video-box-flv {
    width: 90%;
    margin: 25px 0;
    text-align: center; }

  .video-box-youtube {
    width: 100%;
    margin: 25px auto;
    text-align: center; }

  .entry ol.cv li {
    list-style-type: decimal;
    margin: 15px 15px 0 15px; }

  .letter-top-curl, .letter-bg, .letter-footer {
    width: 100%; }

  ol.footnotes li {
    list-style-type: decimal; }

  .newsletter-archive-link {
    width: 54%; }

  #sidebar-htva, #sidebar-answers, #sidebar-blog {
    display: none; }

  .video-box-outer {
    margin: 20px 0; }

  #content-main-home {
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 15px;
    clear: both; }

  nav.sidebar, #rotator video, .cycloneslider-template-default2 .cycloneslider-pager {
    display: none !important; }

  #rotator {
    width: 100%;
    border-bottom: 3px solid #00728F;
    height: 340px;
    top: 20px;
    position: relative;
    margin-bottom: 5%;
    border-radius: 0; }

  #rotator .slide {
    padding: 0 4%;
    color: white;
    text-shadow: 1px 1px 2px #000;
    display: table-cell;
    vertical-align: middle;
    line-height: 17px;
    font-size: 16px;
    height: 340px;
    letter-spacing: .3px; }

  #rotator h1, #rotator h2 {
    text-align: center;
    font-size: 18px;
    line-height: 19px; }

  .slide img {
    display: none !important; }

  span.homeslidetext {
    width: 100%;
    margin: 20px 0; }

  span.homeslidecta {
    margin-top: 10px;
    display: block; }

  #rotator-button {
    margin: 0 0 0 30px;
    text-align: center;
    font-size: 14px;
    text-shadow: 1px 1px 1px #000;
    line-height: 14px;
    width: 165px; }

  #rotator-button a {
    padding: 6px 8px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center; }

  .slide ul {
    margin: 15px 0 0;
    padding: 0; }

  .slide ul li {
    margin: 0 0 0 25px;
    text-align: left; }

  .slide::after {
    content: "";
    opacity: .5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }

  .slide#welcome::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-welcome-730w.jpg) center top no-repeat; }

  .slide#roboticfue::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-roboticfue-730w.jpg) center top no-repeat; }

  .slide#patientinfo::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-patientinfo-730w.jpg) center top no-repeat; }

  .slide#bestdocs::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-bestdoctors-730w.jpg) center top no-repeat; }

  .slide#columbia::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-columbia-730w.jpg) center top no-repeat; }

  .cycloneslider-slide.cycle-slide:nth-child(2), .cycloneslider-slide.cycle-slide:nth-child(3), .cycloneslider-slide.cycle-slide:nth-child(4), .cycloneslider-slide.cycle-slide:nth-child(5), .cycloneslider-slide.cycle-slide:nth-child(6) {
    background-color: black; }

  .homebox-sm, .homebox-half, .homebox-full {
    width: 100%; }

  .homebox-sm {
    margin: 7% auto;
    max-width: 390px;
    float: none; }

  #features .homebox-sm:nth-child(1) {
    margin-top: 12% !important; }

  #subfeatures .homebox-sm:nth-child(1) {
    margin-top: 0 !important; }

  .homebox-sm-zoom-wrap {
    width: 100%;
    text-align: center;
    margin: 0 auto 5px; }

  #roboticfue-more, #fut-more, #consult-more, #prp-more, #photoconsult-more, #publications-more {
    width: 390px;
    height: 215px;
    padding: 0; }

  #roboticfue-more span, #fut-more span, #consult-more span, #prp-more span, #photoconsult-more span, #publications-more span {
    margin: 20% 5% 5%;
    display: block; }

  .homebox-sm h2, .homebox-half h2, .homebox-full h2 {
    text-align: center;
    margin-bottom: 2rem; }

  #aboutbernstein, #aboutwolfeld {
    text-align: left;
    width: 90%;
    margin: 0 5%;
    min-height: 225px; }

  #aboutbernstein h3, #aboutwolfeld h3 {
    margin: 25px 0 12px; }

  #aboutbernstein img {
    float: left;
    margin: 1% 7% 2% 1%;
    border-radius: 4px; }

  #aboutwolfeld img {
    float: right;
    margin: 1% 1% 2% 7%;
    border-radius: 4px; }

  #home-about-button-container {
    justify-content: space-around;
    justify-content: space-between;
    justify-content: space-evenly !important; }

  span.home-about-button {
    width: 21% !important;
    margin: 0 !important;
    max-width: 160px; }

  span.home-about-button a {
    height: 48px;
    padding: 0 5px;
    font-size: 12px;
    line-height: 13px; }

  #photo, #video, #news {
    margin: 8% 0; }

  select#HTPhotos {
    margin: 65px auto 15px; }

  #video .homebox-full {
    margin: 0; }

  #wonderplugincarousel-1 .amazingcarousel-list-container, #wonderplugincarousel-2 .amazingcarousel-list-container {
    padding: 10px 0; }

  #wonderplugincarousel-1 .amazingcarousel-prev, #wonderplugincarousel-2 .amazingcarousel-prev {
    left: 0;
    top: 100%;
    margin-left: 37%; }

  #wonderplugincarousel-1 .amazingcarousel-next, #wonderplugincarousel-2 .amazingcarousel-next {
    right: 0;
    top: 100%;
    margin-right: 37%; }

  section#info {
    margin-top: 7%;
    display: inline-block; }

  .ui-tabs .ui-tabs-nav {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-around; }

  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    width: 115px;
    word-spacing: 50px;
    font-size: 12px;
    line-height: 13px; }

  .homebox-half ul {
    margin: 10px 0 0; }

  #info .homebox-half:nth-child(2) li, #info .homebox-half .ui-tabs-panel li {
    text-align: left;
    width: 90%;
    margin: 10px auto 20px;
    list-style-type: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px; }

  .home-news-container {
    width: 89%;
    float: none;
    margin: 0 auto 3% !important; }

  .home-news-container span {
    max-width: none;
    justify-content: flex-start; }

  div.cf_info {
    width: 90%; }

  .xbreadcrumbs .greatgrandparent, .xbreadcrumbs .grandparent, .xbreadcrumbs .parent, .xbreadcrumbs .child {
    padding-left: 0 !important;
    min-width: 115px; }

  .xbreadcrumbs li.home {
    padding-right: 15px; }

  li.parent:hover ul, li.child:hover ul {
    border-radius: 0 !important; }

  .xbreadcrumbs li.child:hover ul li {
    width: 100% !important; }

  li.separator {
    margin: 6px 15px 0 0 !important;
    font-size: 12px !important; }

  .xbreadcrumbs li.separator:hover {
    background-color: transparent; }

  span.breadcrumbs-arrow {
    margin: 1px 10px 0 15px;
    font-size: 11px;
    border-radius: 5px;
    width: 40px;
    text-align: center;
    padding: 1px 0 0; }

  .xbreadcrumbs li ul li {
    height: auto;
    padding-bottom: 0;
    text-align: left; }

  .xbreadcrumbs li ul li:hover {
    padding-bottom: 0; }

  .xbreadcrumbs LI A, .xbreadcrumbs span.breadcrumbs-current, li.parent.hover ul li.current_page_item, .xbreadcrumbs span.breadcrumbs-current, .xbreadcrumbs span.breadcrumbs-current-sub, li.parent.hover ul li.current_page_item {
    font-size: 13px;
    line-height: 15px; }

  .xbreadcrumbs span.breadcrumbs-current, li.parent.hover ul li.current_page_item, .xbreadcrumbs span.breadcrumbs-current, .xbreadcrumbs span.breadcrumbs-current-sub, li.parent.hover ul li.current_page_item {
    margin-top: 5px; }

  .xbreadcrumbs .child {
    height: auto;
    text-align: left; }

  .xbreadcrumbs LI UL.blog LI A {
    width: 90%;
    padding: 8px 5%;
    line-height: 15px; }

  li.submenu-close {
    height: 30px !important; }

  li.submenu-close span {
    width: 100%;
    text-align: center;
    color: red;
    cursor: pointer; }

  li#field_3_1, li#field_3_2, li#field_3_9, li#field_3_34, li#field_3_35, li#field_3_39, li#field_3_41, li#field_3_43, li#field_3_45, li#field_6_1, li#field_6_2 {
    width: 100%; }

  .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
    width: 240px;
    margin: 10px auto;
    float: none;
    padding: 15px 10px !important; }

  .gform_wrapper .ginput_complex .ginput_left, .gform_wrapper .ginput_complex .ginput_right, .gform_wrapper input, .gform_wrapper select {
    max-width: none !important;
    width: calc(100% - 15px); }

  .gform_wrapper .top_label input.large.datepicker, .gform_wrapper .top_label input.medium.datepicker, .gform_wrapper .top_label input.small.datepicker {
    width: calc(99% - 26px); }

  span#input_6_8_6_container {
    margin-top: 12px;
    padding-right: 16px; }

  li#field_3_39, li#field_3_41, li#field_3_43, li#field_3_45 {
    width: 100%;
    float: left; }

  footer {
    margin: 0 auto;
    width: 100%;
    padding: 2% 0 3% 0;
    font-size: 14px;
    display: inline-block;
    box-sizing: border-box;
    border-left: 0;
    border-right: 0; }

  footer iframe {
    width: 95%;
    margin: 2% auto;
    display: block; }

  .footericon a {
    color: #00728F;
    font-weight: 400; }

  .footer-icons img {
    border-radius: 5px;
    margin: 10px 20px;
    display: block; }

  .logo-with-caption {
    width: 100%; }

  footer span#input_2_6_2_container {
    margin: 0 0 0 7px; }

  footer li#field_2_25 label {
    margin: 0 25px 0 35px; }

  footer li#field_2_25 {
    margin: 25px 0 !important; }

  footer .gform_wrapper select {
    max-width: none; }

  footer textarea#input_2_23 {
    max-width: none; }

  footer li#field_2_18 div.ginput_container, footer li#field_2_19 div.ginput_container, footer li#field_2_20 div.ginput_container, footer li#field_2_21 div.ginput_container, footer li#field_2_23 div.ginput_container {
    margin-top: 6px; }

  footer .gform_wrapper .gfield_checkbox li label {
    display: none !important; }

  footer .gform_wrapper .gform_footer {
    margin: 0 !important;
    padding: 0 !important;
    /* display: flex;
     justify-content: center;*/ }

  footer .gform_wrapper .gfield_checkbox li label {
    display: none !important; }

  footer .gform_wrapper .gform_footer {
    margin-top: 0 !important;
    padding-top: 0 !important; }

  footer li.gchoice_2_25_1 {
    width: 100% !important; }

  div#reviews-ratings {
    width: 80%;
    margin: 50px auto; }

  /*
  SMALL BREAK POINT
  ----------------------------------------------------------------------------------------------------------
  */ }
@media only screen and (min-width: 1px) and (max-width: 480px) {
  header {
    display: block;
    height: 245px; }

  #headerbuttons {
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%; }

  .video-title {
    padding-left: 1.5rem;
    position: relative; }

  .video-title:before {
    content: '\f1c8';
    font-family: fontawesome;
    position: absolute;
    left: 0;
    font-size: 1rem;
    color: #00728F; }

  #container {
    width: 100%;
    padding: 0;
    margin: 0; }

  .post {
    width: 100%;
    margin: 0;
    padding: 0; }

  .post hr {
    display: block; }

  .clear, .postmetadata {
    clear: both; }

  #innerbox {
    width: 100%; }

  #consultpatient, #newpatient, #medpatient, #surgpatient {
    padding: 15px; }

  nav.sidebar {
    display: none; }

  #rightbar-page {
    display: none; }

  a.magnify:after, a.foobox.magnify.fbx-link.fbx-instance:after, a.bmpclink:after {
    font-size: 25px;
    bottom: 12px;
    right: 12px; }

  .page-template-template_patientphotosprofile .page-nav {
    width: 90%; }

  #post-394 .page-nav, #post-400 .page-nav, #post-423 .page-nav {
    width: 99% !important;
    padding: 0 !important; }

  .page-nav-parent {
    width: 80%;
    float: left;
    text-align: center;
    margin: 45px 0 0 0; }

  .spotlight-box {
    width: 90%;
    margin: 20px 0;
    padding: 5px 0 10px 0;
    float: none;
    font-size: 14px; }

  .spotlight-box ul li {
    margin: 18px 15px !important; }

  .spotlight-box ul li a, .spotlight-box-video ul li a {
    font-size: 15px; }

  .spotlight-box ul li.title span, .spotlight-box ul li.title {
    margin: 10px 10px 5px 10px !important; }

  .underimg-box {
    width: 49.4%;
    padding-top: 2px; }

  .feature-boxes {
    width: 85%;
    padding: 15px;
    margin: 20px auto;
    border: 1px solid #43b8c1;
    border-radius: 5px;
    background-color: #eee; }

  #featurebox-photojournal {
    width: 100%;
    max-width: 238px;
    margin: 8px auto;
    display: block; }

  .fullwidthimg-box img {
    max-width: 300px; }

  .halfwidthimg-box {
    width: 100%;
    text-align: center; }

  .halfwidthimg-box.right, .halfwidthimg-box.left {
    float: none;
    margin: 5% auto 9%; }

  .halfwidthimg-box img {
    display: block; }

  .sidebysideimg-box {
    display: block;
    width: 100%; }

  .sidebysideimg-left, .sidebysideimg-right {
    width: 100%;
    text-align: center;
    margin-left: 0; }

  .sidebysideimg-left img, .sidebysideimg-right img {
    margin: 15px auto 0; }

  .photo-consult-content-top {
    float: left;
    margin: 0 0 25px 30px;
    width: 80%; }

  .photo-consult-content-bottom {
    margin: 0 auto;
    width: 85%; }

  #sidebar-htva, #sidebar-answers, #sidebar-blog {
    display: none; }

  #blog-header-answers {
    width: 97%; }

  .video-box-outer {
    width: 100%;
    margin: 20px auto; }

  .video-excerpt-box {
    width: 100%; }

  .video-thumb-box {
    margin: 15px auto; }

  .a2a_button_facebook_like, .a2a_button_google_plusone, .a2a_button_pinterest, .a2a_sharesave {
    width: 100%;
    float: left;
    margin: 0; }

  .share-box-email {
    float: left;
    margin: 12px 0; }

  .fullwidthvideo-container {
    width: 100%; }

  .video-box-flv {
    display: none; }

  .video-box-youtube {
    display: none; }

  .entry ol.cv li {
    list-style-type: decimal;
    margin: 15px 15px 0 15px; }

  .pubtitle {
    max-width: 250px; }

  .pubcontent {
    margin-top: 160px; }

  #newsletter-archive-subhead {
    margin-left: 5%;
    font-weight: bold; }

  .newsletter-archive-link {
    width: 90%;
    font-size: 14px;
    line-height: 16px;
    margin: 15px 5% 0; }

  .newsletter-archive-date {
    margin: 5px 0 15px 5%;
    font-size: 12px; }

  .letter-top-curl, .letter-bg, .letter-footer {
    width: 100%; }

  .letter-body {
    padding: 10px 20px;
    font-size: 13px; }

  .gform_wrapper {
    margin: 0;
    width: 100%; }

  .gform_wrapper .gform_body {
    width: 95%; }

  body .gform_wrapper .top_label div.ginput_container, span#input_6_6_2_container {
    margin-top: 4px; }

  ul.gfield_checkbox {
    padding: 0 !important; }

  .gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {
    font-size: 14px !important; }

  .gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_radio li input {
    margin: 0 5px 0 0; }

  li#field_3_39, li#field_3_41, li#field_3_43, li#field_3_45 {
    width: 100%;
    float: left; }

  #content-main-home {
    width: 100%;
    height: 100%;
    padding: 0;
    font-size: 15px;
    clear: both; }

  nav.sidebar, #rotator video, .cycloneslider-template-default2 .cycloneslider-pager {
    display: none !important; }

  #rotator {
    border-bottom: 2px solid #00728F;
    height: 575px;
    border-radius: 0; }

  #rotator .slide {
    padding: 0 7%;
    color: white;
    text-shadow: 2px 2px 3px #000;
    display: table-cell;
    vertical-align: middle;
    font-size: 17px;
    line-height: 21px;
    height: 575px;
    letter-spacing: .6px; }

  #rotator h1, #rotator h2 {
    font-size: 19px;
    text-align: center; }

  span.homeslidetext {
    width: 100%;
    margin: 30px 0;
    display: block; }

  span.homeslidecta {
    margin-top: 10px;
    display: block;
    text-align: center !important; }

  #rotator-button {
    margin: 19px auto 0;
    width: 60%;
    text-align: center;
    float: none;
    line-height: 15px;
    text-shadow: 1px 1px 1px #000; }

  #rotator-button a {
    padding: 8px; }

  .slide img {
    display: none !important; }

  #rotator span {
    float: none; }

  .slide ul {
    margin: 15px 0 0;
    padding: 0; }

  .slide ul li {
    margin: 0 0 0 25px;
    text-align: left; }

  .slide::after {
    content: "";
    opacity: .5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }

  .slide#welcome::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-welcome-480w.jpg) center top no-repeat; }

  .slide#roboticfue::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-roboticfue-480w.jpg) center top no-repeat; }

  .slide#patientinfo::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-patientinfo-480w.jpg) center top no-repeat; }

  .slide#bestdocs::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-bestdoctors-480w.jpg) center top no-repeat; }

  .slide#columbia::after {
    background: url(https://www.bernsteinmedical.com/wp-content/themes/bernsteinmedical_v4/images/home-columbia-480w.jpg) center top no-repeat; }

  .cycloneslider-slide.cycle-slide:nth-child(2), .cycloneslider-slide.cycle-slide:nth-child(3), .cycloneslider-slide.cycle-slide:nth-child(4), .cycloneslider-slide.cycle-slide:nth-child(5), .cycloneslider-slide.cycle-slide:nth-child(6) {
    background-color: black; }

  .homebox-sm {
    max-width: 390px;
    margin: 14% auto !important;
    float: none; }

  .homebox-sm img {
    width: 100%;
    max-width: 390px;
    display: block;
    margin: 0 auto 5px; }

  #features .homebox-sm:nth-child(1) {
    margin-top: 14% !important; }

  #subfeatures .homebox-sm:nth-child(1) {
    margin-top: 0 !important; }

  a#roboticfuebox:focus, a#futbox:focus, a#consultbox:focus, a#prpbox:focus, a#photoconsultbox:focus, a#publicationsbox:focus, a#roboticfuebox:active, a#futbox:active, a#consultbox:active, a#prpbox:active, a#photoconsultbox:active, a#publicationsbox:active {
    border: 1px solid transparent;
    background: transparent; }

  .homebox-sm-zoom-wrap {
    margin: 0 auto 7px;
    border-radius: 0; }

  .homebox-sm-zoom-wrap img, #roboticfue-more, #fut-more, #consult-more, #prp-more, #photoconsult-more, #publications-more {
    border-radius: 0; }

  select#HTPhotos {
    margin: 55px auto; }

  #wonderplugincarousel-1 .amazingcarousel-list-container, #wonderplugincarousel-2 .amazingcarousel-list-container {
    padding: 5px 0; }

  #wonderplugincarousel-1 .amazingcarousel-prev, #wonderplugincarousel-2 .amazingcarousel-prev {
    top: 100%;
    left: 39%; }

  #wonderplugincarousel-1 .amazingcarousel-next, #wonderplugincarousel-2 .amazingcarousel-next {
    top: 100%;
    right: 39%; }

  #wonderplugincarousel-1 .amazingcarousel-nav, #wonderplugincarousel-2 .amazingcarousel-nav {
    display: none; }

  #aboutbernstein, #aboutwolfeld {
    text-align: left;
    width: 90%;
    margin: 0 5%; }

  #aboutbernstein h3, #aboutwolfeld h3 {
    margin: 25px 0 12px; }

  #aboutbernstein img {
    float: left;
    margin: 1% 7% 2% 1%;
    border-radius: 4px; }

  #aboutwolfeld img {
    float: right;
    margin: 1% 1% 2% 7%;
    border-radius: 4px; }

  #about span {
    margin: 20px auto 0; }

  #home-about-button-container {
    display: block !important;
    margin-top: 20px; }

  span.home-about-button {
    width: 75% !important;
    margin: 10px auto !important;
    float: none; }

  span.home-about-button a {
    padding: 12px;
    min-height: auto; }

  #video .homebox-full {
    margin: 0; }

  #info .homebox-half:nth-child(2) li, #info .homebox-half .ui-tabs-panel li {
    width: 85%;
    margin: 10px auto 20px;
    font-size: 14px;
    line-height: 18px; }

  .home-news-container {
    width: 91%;
    float: none;
    margin: 0 auto 2rem; }

  img.news-thumb {
    max-width: 120px;
    height: auto; }

  .home-news-container span {
    line-height: 13px;
    height: auto;
    justify-content: flex-start;
    max-width: none;
    font-size: 3.1vw; }

  .ui-tabs .ui-tabs-nav {
    padding: 0;
    margin: 25px 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-around; }

  .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    width: 90px;
    word-spacing: 50px;
    line-height: 14px;
    font-size: 13px; }

  div.cf_info {
    width: 90%; }

  .xbreadcrumbs {
    margin: 0 !important;
    width: 100%;
    border-radius: 0;
    padding: 0 !important;
    display: none !important; }

  .xbreadcrumbs li {
    padding: 10px 0 10px;
    height: 32px;
    background-color: #00728F;
    float: left;
    border-right: 0 solid #fff;
    overflow: visible;
    border-radius: 0; }

  .xbreadcrumbs li.home {
    padding-left: 0;
    margin-right: 0; }

  .xbreadcrumbs li a {
    font-size: 14px;
    margin-right: -63px;
    padding-top: 5px;
    display: inline-block; }

  .xbreadcrumbs li.home a {
    padding-top: 8px;
    margin-right: 0; }

  span.breadcrumbs-arrow {
    float: right;
    font-size: 9px;
    margin-right: 15px;
    position: relative;
    background-color: #43b8c1;
    border-radius: 12px;
    width: 40px;
    padding: 5px 4px 4px;
    height: 23px; }

  .xbreadcrumbs li ul, .xbreadcrumbs li.home.hover ul, .xbreadcrumbs li.grandparent.hover ul {
    width: 100%;
    top: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    position: relative;
    z-index: 100; }

  .xbreadcrumbs li ul li {
    width: 100%;
    border-right: 0 !important;
    height: 34px;
    margin: 0;
    padding: 0; }

  .xbreadcrumbs li ul li:hover {
    padding-bottom: 0; }

  .xbreadcrumbs li ul li a {
    text-align: left;
    padding: 8px 0 2px 5%;
    height: 24px;
    width: 95%; }

  .xbreadcrumbs li ul li.current_page_item a {
    margin-right: 0; }

  .xbreadcrumbs li ul.blog {
    margin-left: 0;
    top: 0;
    width: 100% !important; }

  .xbreadcrumbs li ul.blog li {
    padding: 10px 0; }

  .xbreadcrumbs li ul.blog li a {
    padding: 0 4%;
    width: 92%;
    height: auto; }

  .xbreadcrumbs .home, .xbreadcrumbs .greatgrandparent, .xbreadcrumbs .grandparent, .xbreadcrumbs .parent, .xbreadcrumbs .child {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #3d9893;
    display: block; }

  .xbreadcrumbs span.breadcrumbs-current-sub, li.parent.hover ul li.current_page_item {
    font-size: 14px;
    color: aqua;
    margin-right: -70px;
    padding-top: 5px;
    display: inline-block; }

  .xbreadcrumbs span.breadcrumbs-current {
    font-size: 14px;
    color: aqua;
    line-height: 15px;
    padding: 0 5% !important;
    display: block; }

  li.child {
    padding-right: 0 !important; }

  .xbreadcrumbs li.child:hover ul {
    width: 100% !important;
    border-radius: 0; }

  .xbreadcrumbs li.child:hover ul li {
    width: 100% !important; }

  li.submenu-close span {
    width: 100%;
    text-align: center;
    color: red;
    cursor: pointer; }

  .xbreadcrumbs li.separator {
    display: none; }

  .page-template-template_patientphotosprofile-php .parent a {
    margin-right: 0; }

  footer .gform_wrapper textarea, footer .gform_wrapper input, footer .gform_wrapper select {
    font-size: 14px !important;
    width: 95%; }

  .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0; }

  footer .gform_wrapper select {
    width: 94%; }

  .gform_wrapper .gfield_required {
    margin-left: 0; }

  footer .gform_wrapper li.field_sublabel_below .ginput_complex, footer .gform_wrapper .top_label div.ginput_container {
    margin-top: 6px !important; }

  footer span#input_2_6_1_container, footer span#input_2_6_2_container {
    margin: 0 0 6px 0;
    width: 100%; }

  footer span#input_2_6_2_container {
    margin-bottom: 0; }

  footer li#field_2_18 .ginput_container.ginput_container_text, footer li#field_2_19 .ginput_container.ginput_container_text, footer li#field_2_20 .ginput_container.ginput_container_text, footer li#field_2_21 .ginput_container.ginput_container_text {
    margin-top: 0 !important; }

  footer li#field_2_23 {
    margin-top: 0; }

  footer li#field_2_25 {
    margin: 22px 0 12px;
    display: flex;
    width: 83%;
    padding-right: 0; }

  footer li#field_2_25 label {
    font-size: 14px;
    width: 87%;
    margin: 0 0 0 10%;
    float: left; }

  footer li.gchoice_2_25_1 {
    width: 100% !important;
    margin-bottom: 20px !important;
    justify-content: center;
    display: flex;
    margin-top: 2px !important; }

  footer .gform_wrapper .gfield_checkbox li label {
    display: none !important; }

  div#reviews-ratings {
    width: 80%;
    min-width: 250px;
    margin: 40px auto;
    display: block; }

  .footer-icons img {
    border-radius: 5px;
    margin: 10px 15px;
    display: block; }

  .logo-with-caption {
    width: 100%;
    margin: 10px auto;
    font-size: 10px;
    text-align: center;
    line-height: 10px; }

  .logo-with-caption img {
    display: block;
    margin: 0 auto 5px; } }

/*# sourceMappingURL=style.css.map */
