:root {
    --c1-color: #f57e20;  /* orange */
    --c2-color: #ebd269;  /* yellow */  
    --c3-color: #646465;  /* dark grey */
    --grey-color: #646465;
    --menu-color: #77787b;
    --title-color: #f57e20;
    --footer-bkgd-color: #646465;
    --footer-text-color: #fff;
    --text-color: #333;
    --text-font: "Nunito", sans-serif;
    --title-font: "Nunito", sans-serif;
    --menu-percentage: 16.6666%; /* 100% / number of menu items */
    --logo-max-width: 300px;
    --header-height: 150px;
    --max-content-width: 1250px;    
    --back-to-top-rgb: rgba(0,0,0,0.50)
}

*, :after, :before {
    box-sizing: border-box;
}


/* Video boxes (services) */
.videoContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.serviceVideos {
    display: block;
    width: 100%;
    height: auto;
}

a.videoOverlay:link, a.videoOverlay:active, a.videoOverlay:visited {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: left;
    transition: opacity 0.3s ease;
    z-index: 2;
    text-decoration: none;
    pointer-events: auto; /* allow clicks now */
}
.overlayLink {
    position: relative;
    display: inline-block;
    background: var(--c1-color);
    padding: 10px 15px;
    border-radius: 0.4em;
}

/*.videoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}*/

.videoOverlay .overlayContent {
    text-align: left;
    padding: 20px;
    pointer-events: auto; /* Allows interaction with content if needed */
}
.overlayContent p {
    font-size: 1.2em;
}
.overlayContent h3 {
    color: #fff;
}

.videoContainer:hover .videoOverlay {
    /*opacity: 0;*/
}

/* Overlay for parallax container */
.overlayBox {
    position: absolute;
    top: 20px;       /* padding from container edge */
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--c1-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* text top, button bottom */
    padding: 40px 15px;
    box-sizing: border-box;
}

a.discoverButton:link, a.discoverButton:active, a.discoverButton:visited {
    background-color: var(--c1-color);
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 300;
    font-size: 1.5rem;
    align-self: flex-start;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

a.discoverButton:hover {
    background-color: var(--c2-color);
}

#banner-call-out-1 .buttonBig {
    opacity: 0;
}
#scroll-line {
    position: absolute;
    bottom: 40px;
    left: 0;
    height: 3px;
    width: 0;
    background-color: #fff; /* or whatever color fits */
    z-index: -1;
    transition: width 0.4s ease;
}

.headerBkgd {
    background-image: url('/~mapledentistry/images/header-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

p {
    font-size: 12pt;
    font-weight: 300;
}

img.grow {
    transition: transform 0.2s ease-in-out;
}
img.grow:hover {
    transform: scale(1.1);
}

h3.highlighted {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background: var(--c3-color);
    color: #fff;
}
p.panelTxt {
    position: relative;
    display: inline-block;
    padding: 5px !important;
    font-size: 0.9em;
    color: #fff;
}
h4.panelTitle {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 10px 0;
    font-size: 14pt;
    line-height: 16px;
    font-weight: 400;
}
/* custom responsive grid layout */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 5px;
}

.col-span-3-custom {
    grid-column: span 3;
    text-align: center;
}

@media screen and (max-width: 575px) {
    .grid-4 {
        display: block;
    }
}
.panelC1 {
    color: #fff;
}
.panelBkgd1 {
    background: #00b6af;
}
.panelC2 {
    color: #fff;
}
.panelBkgd2 {
    background: #33c5bf;
}
.panelC3 {
    color: #fff;
}
.panelBkgd3 {
    background: #66d3cf;
}
.panelC4 {
    color: #fff;
}
.panelBkgd4 {
    background: #99e2df;
}
.panelC5 {
    color: #fff;
}
.panelBkgd5 {
    background: #fff;
}

.servDesc {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 20px;
    transition: all .4s ease;
}

a.serviceButton:active, a.serviceButton:hover, a.serviceButton:link, a.serviceButton:visited {
    position: relative;
    display: inline-block;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.0em;
    font-weight: 300;
    width: 100%;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}
a.serviceButton:hover {
    color: #333 !important;
    background: #c2c8ca !important
}
a.serviceButton:hover + .servDesc {
    color: #fff !important;
    background: #00b6af !important
}

a.sideMenu:link, a.sideMenu:active, a.sideMenu:visited, a.sideMenu:hover {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 4px solid #ccc;
    margin: 2px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.5s ease;
}
a.sideMenu:hover {
    border-top: 1px solid var(--c1-color);
    border-right: 1px solid var(--c1-color);
    border-bottom: 1px solid var(--c1-color);
    border-left: 4px solid var(--c1-color);
    background: #ececec;
    padding: 10px 30px;
}

#draggableDiv {
    cursor: grab;
    opacity: 1.0;
    padding: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-block;
    background: #fff;
    color: #333;
    width: 400px;
    height: 95%;
    font-size: 0.8;
    border: 2px solid var(--c1-color);
    border-radius: 0.5em; /* Apply border-radius to the draggable div */
    transition: opacity 0.3s ease-in-out;
    user-select: none; /* Prevent text selection during drag */
}
#draggableDiv p {
    padding: 5px;
    margin: 0;
}
#draggableDiv h3 {
    font-size: 1.0em;
}
#draggableDiv:hover {
    cursor: grabbing;
    opacity: 0.9;
    box-shadow: 0 0 5px #777;
}

.arrow {
    color: var(--c2-color);
    display: inline-block;
    margin-left: 0px;
    transition: transform 0.3s ease;   
}
#menubar li:hover .arrow {
    color: #fff;
    transform: rotate(180deg);
}

.fa-facebook {
    color: var(--c1-color);
    transition: all 0.5s ease;
}
.fa-facebook:hover {
    transform: scale(1.2);
}
.fa-instagram {
    color: var(--c1-color);
    transition: all 0.5s ease;
}
.fa-instagram:hover {
    transform: scale(1.2);
}
.fa-phone {
    color: var(--c1-color);
    transition: all 0.5s ease;
}
.fa-phone:hover {
    transform: scale(1.2);
}
.fa-envelope {
    color: var(--c2-color);
    transition: all 0.5s ease;
}
.fa-envelope:hover {
    transform: scale(1.2);
}
.fa-location-dot {
    color: var(--c1-color);
    transition: all 0.5s ease;
}
.fa-location-dot:hover {
    transform: scale(1.2);
}

.tabs {
  display: flex;
  border-bottom: 1px solid #333;
  width: 100%;
}

.tab {
  padding: 10px;
  margin-right: 10px;
  background-color: #333;
  color: #fff;
  cursor: pointer;
  position: relative;
  border: 1px solid #333;
  border-bottom: none;
  border-radius: 0.5em 0.5em 0 0;
}

.tab.active {
  background-color: #E00064;
  color: #fff;
  border: 1px solid #E00064;
  border-bottom: none;
  border-radius: 0.5em 0.5em 0 0;
}

.tab-content {
  display: none;
}

h2.salonTitle {
    position: relative;
    position: relative;
    padding: 20px;
    width: 100%;
    color: #fff;
    background: #444;
}

/* Progress bar */
.progress {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}

.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
    width: 33.333%;
}

.step {
    background: #ccc;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.stepActive {
    background: #333;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.stepCompleted {
    background: #e00064;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
}

.description {
    margin-top: 10px;
}

/* Style the container for the blog panel */
.blogPanel:link, .blogPanel:active, .blogPanel:visited  {
    position: relative;
    display: inline-block;
    text-decoration: none;
    background-color: #e00064; /* Background color when not hovered */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: 100%;
}

/* Style the image */
.blogPanel img {
    position: relative;
    width: 100%;
}

/* Hover effect */
.blogPanel:hover {
  transform: scale(1.03); /* Scale the panel on hover */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Box shadow on hover */
}

.question, .arrow-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.arrow-icon.rotated {
    transform: rotate(180deg);
}

.blogArchiveTitle {
    width: 100%; border-bottom: 1px solid #333; font-size: 1.2em;
}
i.spaced {
    margin-left: 20px;
}

.pink {
    color: var(--c1-color);
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    position: relative;
}

.faq-item .question {
    cursor: pointer;
}

.faq-item .answer {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-left: 3px solid var(--c2-color);
    background-color: #f9f9f9;
    color: #333;
}

.faq-item.active .answer {
    /*display: block;*/
}

.quote {
    font-size: 24px;
    color: var(--c2-color);
}

.arrow-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    transition: transform 0.3s ease-in-out;
}

.testimonial {
    text-align: center;
    margin: 20px;
    padding: 20px;
}

.testimonial img {
    border-radius: 50%; /* Make the image circular */
    width: 100px; /* Adjust the image size as needed */
    height: 100px;
    margin: 10px auto;
    display: block;
}

.testimonial blockquote {
    font-size: 18px;
    font-style: italic;
    color: #333;
    background: #fff !important;
    border: none !important;
}

.testimonial .author {
    font-size: 14px;
    color: #888;
}

/* member contact cards */
img.userProfileImg {
    position: relative;
    height: 50px; width: 50px; padding: 0px; border: 1px solid #ccc; margin: 0 5px 5px 0;
    border-radius: 25px;
    background: #fff;
    float: left;
}
.contact-card {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out; /* Add transition for box-shadow */
}

.contact-card:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adjust shadow on hover */
}

.contact-card h3 {
    margin-top: 0;
    color: #e00064;
}

.contact-card p {
    margin: 5px 0;
}

.contactCardLink:link, .contactCardLink:active, .contactCardLink:visited {
    position: relative;
    display: inline-block;
    background: #ececec;
    padding: 2px 10px 2px 5px;
    border-left: 2px solid #ccc;
    color: #333;
    text-decoration: none;
    transition: all 0.5s ease;
}

.contactCardLink:hover {
    color: #e00064;
    padding: 2px 10px 2px 15px;
    border-left: 2px solid #e00064;
}

/* webinar panels and page styles */
.highlight {
    position: relative;
    display: inline-block;
    background: #fafafa;
    border-top: 2px solid var(--c1-color);
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 10px;
    border-radius: 0;
}
.webinarPanel {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 0.5em;
    border: 1px solid #ccc;
    text-align: left;
    transition: all 0.5s ease;
}
.webinarPanel img {
    width: 100%;
    opacity: 0.9;
    transition: all 0.5s ease;
}
.webinarPanel img:hover {
    opacity: 1.0;
}
.webinarPanel h3 {      
    transition: all 0.5s ease;
}
.webinarPanel a {
    text-decoration: none !important;
}
.webinarPanel h3:hover {
    color: #333 !important;
}
.padPanel {
    width: 100%;
    padding: 10px;
}
.displayDateTime {
    font-size: 1.1em;
    font-weight: 500;
}
.displayCE {
    font-size: 1.0em;
    font-weight: 500;
}
.eventStatus {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1.1em;
    color: #fff;
    padding: 20px 0;
}
.passed {
    background: #333;
}
.future {
    background: var(--c1-color);
}

/* member benefits styles for form */
.frmError {
    border: 2px solid #ff0000 !important;
    position: relative;
}
#messageDiv {
    display: none; /* Initially hidden */
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    box-sizing: border-box;
}
#password-validation-message {
    display: none; /* Initially hidden */
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    box-sizing: border-box;
}
#scrollPlaceholder {
    height: 10px;
}
.password-match {
    border: 1px solid #8FC742 !important;
}

/* sponsors fancy box button */
.sponsorLogos {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 0.5em;
    background: #fff;
    opacity: 0.9;
    transition: all 0.5s ease;
    border: 1px solid #333;
    box-shadow: 5px 5px 5px #ccc;
}
.sponsorLogos:hover {
    opacity: 1.0;
    box-shadow: 5px 5px 8px #333;

}

/* Define the styles for the button */
.logo-button {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Optional: Set a background color for the button */
    border: none; /* Remove the border */
    /*cursor: pointer;*/ /* Show the pointer cursor when hovering */
    padding: 5px; /* Optional: Add some padding to the button */
    text-align: center; /* Optional: Center the content inside the button */
    text-decoration: none; /* Remove the default underline for the anchor */
    color: #000; /* Optional: Set a text color */
    transition: all 0.5s ease;
}

/* Define the styles for the image inside the button */
.logo-button img {
    width: 100%; /* Image will take the full width of the button */
    height: auto; /* Image will maintain its aspect ratio */
    display: block; /* Remove any extra spacing */
}
.logo-button:hover {
    transform: scale(1.1); /* Scale the button by 1.1 on hover */
}

/* Define the styles for the panel itself */
.vertical-center-panel {
    width: 100%; /* Panel will take the full width of the container */
    max-width: 400px; /* Adjust this as needed */
    background-color: #fff; /* Optional: Set a background color for the panel */
    text-align: center; /* Optional: Center the content inside the panel */
    padding: 20px; /* Optional: Add some padding to the panel */
}

/* Define the styles for the image inside the panel */
.vertical-center-panel img {
    width: 100%; /* Image will take the full width of the panel */
    height: auto; /* Image will maintain its aspect ratio */
    display: block; /* Remove any extra spacing */
}

/* symposium styles */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th, .schedule-table td {
    padding: 10px;
    border: 1px solid #666666;
}

.schedule-table th {
    background-color: #e00064;
    color: #ffffff;
}

.schedule-table td {
    background-color: #f7f7f7;
}

.schedule-table td strong {
    color: #000000;
}
.row-highlight-header th {
    background-color: #333;
    color: #fff;
}
.row-highlight td {
    background-color: #e00064;
    color: #fff;
}
.separator {
    border-top: 2px dashed #e00064;
    margin-top: 20px;
    margin-bottom: 20px;
}
.bannerSeparator {
    border-top: 1px solid #fafafa;
    border-bottom: 10px solid #fff;
    box-shadow: 0px 10px 10px #ccc;
    margin-bottom: 50px;
}

#signupSection {
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0;
    padding: 2% 5%;     
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: hidden;   
    background: var(--grey-color);
    color: #fff;
}

/* media settings for different screen sizes */
.videoSection { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; }
.videoSection iframe, .videoSection object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/* faqs */
.faqs-show-answer {
    padding: 0;
    cursor: pointer;
}
.faqs-show-answer h4 {
    line-height: 20px;
}
.faqs-show-answer:hover h4 {
    line-height: 20px;
    color: var(--c2-color);
}
.faqs-answer {
    display: none;
}

/* panels */
.panel {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    text-align: center;
}

.panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    box-sizing: border-box;
    transition: background-color 0.5s;
}

.panel:hover .panel-overlay {
    background-color: #55A9DC;
}

h2.panel-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.panel-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.5s;
}

.panel:hover .panel-text {
    /*background-color: #55A9DC;*/
}

.panel-image {
    width: 80%;
    height: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.5s;
}

.panel-image:hover {
    opacity: 1;
}

/* blockquote styles */
blockquote {
    position: relative;
    display: block;
    padding: 10px;
    margin: 0;
    background: #ececec;
    border: 1px solid #cccccc;
    border-radius: 0.3em;
    font-size: 1.1rem;
}
.bqstart {
    position: relative;
    display: inline-block;
    height: 20px;
    padding-bottom: 0;
    color: var(--c1-color);
}
.bqend {
    position: relative; 
    display: inline-block;
    height: 20px;
    color: var(--c1-color);
}

a.reviewPanel:link, a.reviewPanel:active, a.reviewPanel:visited {
    position: relative; display: inline-block; width: 100%; padding: 10px 20px 20px 20px; background: #fff; border-radius: 1.0em; text-align: center;
    transition: all 0.5s ease; color: #333; min-height: 250px; text-decoration: none;
}
a.reviewPanel:hover {
    background: #fff;
}
.reviewPanel h4 {
    margin:  10px 0 10px 0;
    padding: 0;
    line-height: 20px;
    width: 100%;        
    text-align: center;
    font-size: 1.3em;
}
.reviewPanel h5 {
    margin:  0 0 10px 0;
    padding: 0;
    line-height: 20px;
    font-size: 1.2em;
}

.teamPanel {
    position: relative; display: inline-block; width: 100%; padding: 20px; background: #fff; border-radius: 0.5em; overflow: hidden; text-align: left;
    transition: all 0.5s ease; height: 100%; text-align: center;
    /* border: 1px solid #ccc; */
    /* box-shadow: 3px 3px 3px #ccc; */
}
.teamPanel img {
    width: 100%;
    margin-bottom: 10px;
    float: left;
}
.teamPanel:hover {
    background: var(--c2-color);
}
.teamPanel h3 {
    margin:  10px 0 10px 0;
    padding: 0;
    line-height: 20px;
    width: 100%;        
    text-align: center;
    font-size: 1.3em;
}
.teamPanel h5 {
    margin:  0 0 10px 0;
    padding: 0;
    line-height: 20px;
    font-size: 1.2em;
}

.menuContainer {
    padding: 5px 0 7px 5px;
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
    z-index: 100;
}
.centered {
    text-align: center
}
.color1 {
    color: var(--c1-color)
}
.color2 {
    color: var(--c2-color)
}
.color3 {
    color: var(--c3-color)
}
.bkgd1 {
    background: var(--c2-color);
    color: #fff
}
.bkgd2 {
    background: var(--c1-color);
    color: #fff
}
.bkgd3 {
    background: var(--grey-color);
    color: #333
}
.bkgdCallToAction {
    background: url("./images/logo-background-call-to-action.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
}
.noPadding {
    padding: 0!important
}
.borderRight {
    border-right: 1px solid var(--c1-color)
}
#banner-tag-line-container {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    width: 100%;
    height: 100%;
    max-width: var(--max-content-width);
    padding: 0;
    line-height: normal;
}
.banner-call-out {
    position: absolute;
    display: inline-block;
    color: #fff;
    text-align: center;
}
b {
    font-weight: 700
}
.c1 {
    color: var(--c1-color)
}
.c2 {
    color: var(--c1-color)
}
.c3 {
    color: var(--c1-color)
}
.white {
    color: #fff
}
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
.fluid1col, .fluid23col, .fluid2col, .fluid34col, .fluid3col, .fluid45col, .fluid4col, .fluid5col, .fluid6col {
    padding: 10px 10px;
    position: relative;
    display: table-cell;
    width: 100%;
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    height: inherit
}
.fullWidthPanelContainer {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    /*overflow: auto;*/
    text-align: center;
    font-size: 0;
    /*overflow: hidden;*/
    float: left
}
#mapContainer {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0;
    float: left;
    border-top: 5px solid var(--c3-color);
    /*border-bottom: 5px solid var(--c3-color)*/
}
.mapIframe {
    border: 0;
    float: left
}
a.lmPanel:link, a.lmPanel:active, a.lmPanel:visited {
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 10px;
    opacity: .8;
    transition: all .5s ease;
    border-radius: 0.5em;
    color: #fff;
    margin: 5px 0;
    text-decoration: none;
    transition: all 0.5s ease;
}
a.lmPanel:hover, a.lmPanel:hover > h2 {
    background: #ececec;
    color: var(--c2-color);
}
.lmPanel h2 {
    line-height: 30px;
    font-size: 20pt;
    margin: 1px;
    padding: 0;
    transition: all 0.5s ease;
    color: var(--c1-color);
}
.lmPanel p {
    padding: 5px 1px 1px 1px;
    color: #fff;
}
.lmPanel:hover {
    opacity: 1
}
img.learnMoreImg {
    width: 100%
}
a.lmLink:link, a.lmLink:active, a.lmLink:visited {
    text-transform: uppercase;
    font-weight: bold;
    color: var(--c1-color);
    transition: all 0.5s ease;
}
a.lmLink:hover {
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

#modalBox  {
    display:  none;
    width:  100%;
    height:  100%;
    position:  fixed;
    text-align:  center;
    margin-left:  auto;
    margin-right:  auto;
    font-size:  1.0em;
    box-sizing:  border-box;
    padding:  0;
    color:  #fff;
    background:  rgba(0, 0, 0, 0.6);
    z-index:  100;
    overflow:  hidden;
    overflow-y:  auto;
}
#popUp  {
    display:  none;
    box-sizing:  border-box;
    position:  absolute;
    /*display:  inline-block;*/
    margin-top:  50px;
    top:  0;
    left:  0;
    right:  0;
    z-index:  200;
    width:  90%;
    max-width:  600px !important;
    border:  1px solid #ececec;
    border-radius:  0.2em;
    transition:  all 0.5s ease;
    background:  #fff;
    padding:  20px;
    margin-left:  auto;
    margin-right:  auto;
    box-shadow:  5px 5px 5px #333333;
}
a#closeMessage:link,  a#closeMessage:active,  a#closeMessage:visited  {
    font-weight:  bold;
    text-decoration:  none;
    /*background:  #fff;*/
    border-radius:  50%;
    width:  10px;
    height:  10px;
    padding:  0px;
    text-align:  center;
    position:  absolute;
    display:  inline-block;
    left:  -10px;
    top:  -10px;
    font-size:  2.0em;
    transition:  all 0.5s ease;
    /*background:  #ccc;*/
}
a#closeMessage:hover  {
    color:  #333;
}

.profile {
    position: relative;
    display: inline-block;
    width: 100%;
}

.footerInnerContainer {
    position: relative; display: inline-block; text-align: left;
}

.imageButton {
    opacity: 0.7;
    width: 100%;
    transition: all 0.5s ease;
}
.imageButton:hover {
    opacity: 1.0;
    transform: scale(1.05); /* Scale by 10% (1 + 10% = 1.1) */
}

@media screen and (min-width: 701px) {
    body {
        height: 100%;
        margin: 0;
        padding: 0;
        font-family: var(--text-font);
        color: #333;
        text-align: center
    }
    .overlayText {
        color: #333;
        font-weight: 300;
        margin: 0;
        font-size: 2.0rem;
        text-transform: uppercase;
    }
    .parallaxContainer {
        position: relative;
        height: 900px; /* fixed height */
        overflow: hidden;
        width: 100%;
    }
    .parallaxContainer2 {
        height: 450px; /* fixed height */
    }

    .parallaxImage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-width: 100%;       /* ensures full width coverage */
        min-height: 110%;      /* still tall enough for movement */
        object-fit: cover;     /* prevents squish */
    }

    .parallaxContainer {
        height: 100vh; /* 90% of the viewport height */
    }
    .parallaxContainer2 {
        height: 60vh; /* 60% of the viewport height */
    }

    .bannerTitle {
        text-align: center !important;
        font-family: "Roboto", sans-serif !important;
        font-size: 1.8em !important;
        text-transform: uppercase !important;
        font-weight: 300 !important;
        line-height: 30pt !important;
    }
    #draggableDiv {
        left: 4%;
    }
    .showMobile {
        display: none;
    }
    a.tickerButton:active, a.tickerButton:link, a.tickerButton:visited {
        position: relative;
        display: inline-block;
        background: #fff;
        color: var(--c1-color);
        padding: 10px;
        border-radius: 0.5em;
        text-decoration: none;
        transition: all .5s ease;
        margin-right: 13%;
    }
    a.tickerButton:hover {
        background: #D2D4D5;
    }
    a.headerLink:active, a.headerLink:link, a.headerLink:visited {
        color: var(--c1-color);
        position: relative;
        display: inline-block;
        padding: 2px 0;
        text-decoration: none;
        transition: all .5s ease;
        font-size: 1.1em;
    }
    a.headerLink:hover {
        color: #D2D4D5;
    }
    a.tickerLink:active, a.tickerLink:link, a.tickerLink:visited {
        color: #fff;
        position: relative;
        display: inline-block;
        padding: 10px 0;
        text-decoration: none;
        transition: all .5s ease;
    }
    a.tickerLink:hover {
        color: #D2D4D5;
    }
    .footerCenter {
        text-align: center;
    }
    /* mobile connect buttons */
    #call-now, #map-it {
        display: none;
    }
    /* contact us */
    #call-out-mobile {
        display: none;
    }
    .insidePanelContainer {
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: var(--max-content-width);
        padding: 0;
        margin: 0
    }    
    .gallerySliderContainer  {
    	position:  relative;
    	display:  inline-block;
    	width:  100%;
		height:  400px;
	}
    .panel {
        padding: 20px 20px 40px 20px;
        min-height: 200px
    }
    .service-icon {
        width: 80%;
        max-width: 165px;
        margin: 20px 0
    }
    #ticker {
        position: relative;
        display: inline-block;
        text-align: left;
        padding: 5px 4% 5px 15px;
        width: 100%;
        background: var(--c3-color);
    }
    .banner-call-out h2 { 
        font-weight: 500;
        font-size: 2.4em;
        color: #169DA6;
        text-transform: uppercase;
        line-height: 50px;
        text-shadow: 
        -3px -3px 6px #fff, 
        3px -3px 6px #fff, 
        -3px 3px 6px #fff, 
        3px 3px 6px #fff;
    }
    .banner-call-out ul {
        font-weight: 400;
        font-size: 1.3em;
        color: #fff;
        text-transform: uppercase;
    }
    #banner-call-out-2 {
        right: 2%;
        top: 5%
    }
    #banner-call-out-1 {
        width: 100%;
        bottom: 0;
        left: 0;
    }
    .fluid1col {
        width: 100%
    }
    .fluid2col {
        width: 50%
    }
    .fluid23col {
        width: 66.666666666666666%
    }
    .fluid3col {
        width: 33.33333333333%
    }
    .fluid34col {
        width: 75%
    }
    .fluid4col {
        width: 25%
    }
    .fluid5col {
        width: 20%
    }
    .fluid45col {
        width: 80%
    }
    .fluid6col {
        width: 16.6666666666%
    }
    #covid-ticker {
        padding: 10px 50px
    }
    .logoImage {
        position: absolute;
        top: 30px;
        left: 20px;
        max-width: var(--logo-max-width)
    }
    #page-container {
        position: relative;
        height: 100%;
        width: 100%;
        padding: 0;
        margin-right: auto;
        margin-left: auto;
        top: 0;
        overflow: hidden
    }
    a.footerLinks:active, a.footerLinks:hover, a.footerLinks:link, a.footerLinks:visited {
        color: var(--footer-text-color);
        text-decoration: none;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -o-transition: all .4s ease;
        -ms-transition: all .4s ease;
        transition: all .4s ease;
        text-decoration: none;
        margin: 0
    }
    a.footerLinks:hover {
        color: #fff;
        text-decoration: underline
    }
    #header {
        position: relative;
        display: inline-block;
        padding: 0 0 10px 0;
        width: 100%;
        height: var(--header-height);
        float: left;
        z-index: 30;
        background: rgba(255, 255, 255, 0)
    }
    #overlay {
        display: none;
        position: absolute;
        z-index: 400;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5)
    }
    #call-out {
        position: absolute;
        display: inline-block;
        right: 4%;
        top: 0px;
        font-weight: 400;
        color: var(--c1-color);
        font-size: 1.0em;
        padding: 0;
        text-align: right;
        width: 50%;
        z-index: 1
    }
    #call-out h3 {
        padding: 0;
        margin: 0
    }
    #call-out a {
        text-decoration: none
    }
    a.logo img {
        position: absolute;
        display: inline-block;
        bottom: 10%;
        left: 0;
        right: 0;
        max-width: var(--logo-max-width);
        margin-left: auto;
        margin-right: auto;
        z-index: 2;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -o-transition: all .2s ease;
        -ms-transition: all .2s ease;
        transition: all .2s ease;
        padding: 10px
    }
    h1#logo-title {
        position: absolute;
        left: -9999px
    }
    .small-logo {
        display: none
    }
    .small-logo img {
        position: relative;
        display: inline-block;
        height: 40px;
        margin-right: 5px;
        margin-top: 3px;
        float: left;
        background: #fff
    }
    .small-contact {
        display: none
    }
    .small-contact img {
        margin-bottom: 10px;
        position: relative;
        height: 20px;
        margin-left: 5px
    }
    #contact-icon {
        position: relative;
        display: inline-block
    }
    #banner {
        position: relative;
        width: 100%;
        overflow: hidden;
        background: #fff;
        float: left
    }
    #banner-inside {
        position: relative;
        display: inline-block;
        width: 100%;
        /*max-width: 2000px; */
        /*max-height: 957px; */
        overflow: hidden;
    }
    .insidePageBanner {
        position: relative;
        width: 100%;
        height: auto;
        float: left;
        top: 0;
        left: 0;
        transition: all 0.8s ease;
    }
    #content {
        position: relative;
        display: table-cell;
        box-sizing: border-box;
        width: 100%;
        color: #333;
        z-index: 20;
        float: left;
        margin: 0;
        padding: 0 0 20px 0;
        text-align: center
    }
    #content-inside {
        position: relative;
        display: inline-block;
        text-align: left;
        width: 100%;
        padding: 0;
        font-size: 1em;
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-animation: fadi 2s 1;
        max-width: var(--max-content-width)
    }
    a.panel h2 {
        color: #939598;
        font-size: 1.5rem;
        text-align: center
    }
    a.panel img {
        position: relative;
        bottom: 0;
        right: 0;
        border: 2px solid var(--c1-color);
        border-radius: .5em;
        -webkit-border-radius: .5em;
        -moz-border-radius: .5em;
        width: 90%
    }
    a.panel:active, a.panel:link, a.panel:visited {
        position: relative;
        display: inline-block;
        float: left;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 33.33333333%;
        padding: 10px 10px 10px 10px;
        text-align: center;
        margin-bottom: 10px;
        color: #333;
        text-decoration: none;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }
    a.panel:hover {
        background: #ececec;
        color: #fff
    }
	.blogSection  {
		position:  relative;
		display:  inline-block;
		padding:  0;
		border-top:  1px solid #ccc;
		overflow:  hidden;
		float:  left;
        width: 100%;
	}
	.blogPanel  {
		position:  relative;
		display:  inline-block;
		box-sizing:  border-box;
		border-radius:  0.5em;
		/*box-shadow:  5px 5px 5px #999;*/
		background:  var(--c1-color);
		text-align:  center;
		padding: 0
	}
	.blogPanel > h3  {
		font-size:  1.3em;
		width:  100%;
		text-align:  center;
		height:  80px;
        padding: 0 20px;
		color:  #fff;
	}
	.blogPanel > h4  {
		font-size:  1.0em;
		width:  100%;
		text-align:  center;
		height:  20px;
		color:  #fff;
	}	
	.blogPanel > p  {
		text-align:  left;
		color:  #fff;
		padding: 0 20px;
	}
	.blogPanel > img  {
		position:  relative;	
		display:  inline-block;
		width:  100%;
	}    
    #footer-container {
        position: relative;
        display: inline-block;
        width: 100%;
        background: var(--footer-bkgd-color);
        background-size: cover;
        background-repeat: no-repeat;
        /*background: var(--footer-bkgd-color);*/
        color: var(--footer-text-color);
        font-size: 0.9em;
        font-family: var(--text-font);
        font-weight: 300;
        padding: 30px 4% 80px 4%;
        text-align: center
    }
    #footer-center {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        padding: 2%;
        box-sizing: border-box
    }
    #menu {
        position: relative;
        display: inline-block;
        float: right;
        text-transform: capitalize;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -o-transition: all .2s ease;
        -ms-transition: all .2s ease;
        transition: all .2s ease;
        width: 100%;
        padding: 0 2%;
    }
    a.menu:active, a.menu:hover, a.menu:link, a.menu:visited {
        position: relative;
        display: inline-block;
        padding: 10px 2px;
        text-align: center;
        margin: 0;
        color: var(--menu-color);
        font-weight: 300;
        text-decoration: none;
        font-size: 1.2em;
        -webkit-transtion: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        font-family: var(--text-font);
        text-transform: uppercase
    }
    a.menu:hover {
        color: #fff;
        background: var(--c1-color)
    }
    a.selected:active, a.selected:hover, a.selected:link, a.selected:visited {
        position: relative;
        display: inline-block;
        padding: 10px 2px;
        margin-right: 0;
        color: var(--menu-color);
        /*background: var(--c1-color);*/
        text-align: center;
        font-weight: 300;
        text-decoration: none;
        font-size: 1.2em;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        font-family: var(--text-font);
        text-transform: uppercase
    }
    a.selected:hover {
        color: #fff;
        background: var(--c1-color)
    }
    #menubar {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0;
        width: 100%;
        height: 55px
    }
    #menubar li {
        float: left;
        list-style: none;
        margin: 0;
        width: var(--menu-percentage);
        padding: 0
    }
    #menubar li ul {
        margin: 0;
        padding: 0;
        position: absolute;
        display: none;
        z-index: 30
    }
    #menubar li ul li {
        float: none
    }
    #menubar li:hover ul {
        display: block
    }
    a.menu-drop:active, a.menu-drop:hover, a.menu-drop:link, a.menu-drop:visited {
        position: relative;
        display: inline-block;
        font-family: var(--text-font);
        width: 400px;
        color: #333;
        padding: 10px 5px;
        font-weight: 300;
        text-decoration: none;
        text-align: left;
        font-size: 1.2em;
        background: #f7f7f7;
        border-bottom: 1px solid #c2c8ca;
        margin-left: -1px;
        -o-transition: color .2s ease-out, background .5s ease-in;
        -ms-transition: color .2s ease-out, background .5s ease-in;
        -moz-transition: color .2s ease-out, background .5s ease-in;
        -webkit-transition: color .2s ease-out, background .5s ease-in;
        transition: color .2s ease-out, background .5s ease-in;
        text-transform: uppercase
    }
    a.menu-drop:hover {
        background: var(--c1-color);
        color: #fff;
        border-bottom: 1px solid #fff
    }
    .menu-regular {
        position: relative;
        display: inline-block;
        text-align: center;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -o-transition: all .2s ease;
        -ms-transition: all .2s ease;
        transition: all .2s ease;
        height: 43px;
        width: 100%;
        float: left
    }
    .menu-fixed {
        position: fixed !important;
        top: 0;
        left: 0;
        display: inline-block;
        width: 100%; 
        background: #fff;
        box-shadow: 0 0 10px #999;
        -moz-box-shadow: 0 0 10px #999;
        -webkit-box-shadow: 0 0 10px #999;
        height: 46px;
        z-index: 500;
        text-align: center;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -o-transition: all .2s ease;
        -ms-transition: all .2s ease;
        transition: all .2s ease;
        font-size: 1rem
    }
    .phone-nav-icon {
        float: left;
        width: 20px;
        padding: 1%;
        background: #fff;
        margin-top: 3px;
        border-radius: .2em;
        -webkit-border-radius: .2em;
        -moz-border-radius: .2em
    }
    #phone-nav-dynamic {
        display: none
    }
    #contactInlineFrm {
        position: relative;
        display: inline-block;
        text-align: center;
        width: 100%;
        padding: 5px 5%;
        margin: 0;
        max-width: var(--max-content-width);
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    input.contact-form, select.contact-form {
        position: relative;
        width: 100%;
        border: none;
        padding: 10px;
        margin: 1% 0 1% 0;
        background: #fff;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        color: #333;
        outline: 0;
        font-size: 1.1em;
        border: 1px solid #ccc;
        border-radius: .3em;
        box-sizing: border-box;
        height: 50px;
/*        border: 1px solid var(--c1-color);*/
        transition: all 0.5s ease
    }
    input.contact-form:hover, select.contact-form:hover {
        background: #fafafa;
        border: 1px solid var(--c2-color);
    }
    textarea.contact-form {
        position: relative;
        width: 100%;
        height: 100px;
        border: none;
        padding: 10px;
        margin-top: 0;
        background: #fff;
        border: 1px solid #ccc;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        font-size: 1.1em;
        color: #333;
        border-radius: .3em;
        outline: 0;
        transition: all 0.5s ease
    }
    textarea.contact-form:hover {
        background: #fafafa;
        border: 1px solid var(--c2-color);
    }
    .contact-form-button {
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        margin: 1% 0;
        width: 100%;
        cursor: pointer;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        color: #fff;
        padding: 14px 5% 13px 5%;
        background: var(--c1-color);
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        outline: 0;
        border: none;
        font-size: 1.1em;
        text-align: center;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -o-transition: all .4s ease;
        -ms-transition: all .4s ease;
        transition: all .4s ease;
        border-radius: .3em;
    }
    .contact-form-button:hover {
        color: #333;
        background: var(--c2-color);
    }
    #request-appointment {
        position: relative;
        display: inline-block;
        border-radius: .3em;
        -webkit-border-radius: .3em;
        -moz-border-radius: .3em;
        width: 100%;
        padding: 0
    }
    .request-input {
        margin: 3px 0 3px 0;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        font-size: 1.1em;
        width: 96%;
        border-radius: .3em;
        -webkit-border-radius: .3em;
        -moz-border-radius: .3em;
        border: 1px solid var(--c1-color);
        padding: 2%;
        outline: 0
    }
    .request-input:hover {
        background: #fafafa;
        border: 1px solid var(--c2-color);
    }
    .request-form-button {
        position: relative;
        display: inline-block;
        margin-right: 0;
        margin-top: 2%;
        cursor: pointer;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        color: #fff;
        padding: 1% 5% 1% 5%;
        background: var(--c1-color);
        border-radius: .2em;
        -webkit-border-radius: .2em;
        -moz-border-radius: .2em;
        outline: 0;
        border: none;
        font-size: 1.1em;
        text-align: center
    }
    .request-form-button:hover {
        color: #fff;
        background: grey
    }
    img.smile-gallery {
        width: 450px
    }
}
@media screen and (max-width: 700px) {
    body {
        margin: 0;
        padding: 0;
        font-family: var(--text-font);
        color: #333;
        height: 100%;
        background: #fff;
        font-size: 12pt;
        text-align: center
    }
    .overlayText {
        color: #333;
        font-weight: 300;
        margin: 0;
        font-size: 1.2rem;
        text-transform: uppercase;
    }
    .parallaxContainer {
        position: relative;
        height: 600px; /* fixed height */
        overflow: hidden;
        width: 100%;
    }
    .parallaxContainer2 {
        height: 500px !important; /* fixed height */
    }

    .parallaxImage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-width: 100%;       /* ensures full width coverage */
        min-height: 120%;      /* still tall enough for movement */
        object-fit: cover;     /* prevents squish */
    }

    .parallaxContainer {
        height: 50vh; /* 90% of the viewport height */
    }
    .parallaxContainer2 {
        height: 50vh; /* 60% of the viewport height */
    }

    #banner-tag-line-container {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 10;
        width: 100%;
        height: 100%;
        max-width: var(--max-content-width);
        padding: 0;
        line-height: normal;
    }
    .banner-call-out {
        position: absolute;
        display: inline-block;
        color: #fff;
        text-align: center;
    }
    #banner-call-out-1 {
        width: 100%;
        bottom: 0;
        left: 0;
    }
    #banner-call-out-2 {
        right: 2%;
        top: 1% !important;
        padding: 5px;
        font-size: 0.5em !important
    }

    .bannerTitle {
        text-align: right !important;
        font-family: "Roboto", sans-serif !important;
        font-size: 3.0em !important;
        text-transform: uppercase !important;
        font-weight: 300 !important;
        line-height: 16pt !important;
    }
    #draggableDiv {
        left: 4%;
        right: 4%;
        width: 92%;

    }
    .showMobile {
        display: inline-block;
    }
    a.tickerLink:active, a.tickerLink:link, a.tickerLink:visited {
        color: var(--c1-color);
        text-decoration: none;
        transition: all .5s ease;
    }
    a.tickerLink:hover {
        color: var(--c2-color)
    }    
    .footerCenter {
        text-align: left;
    }
    #call-now {
        position: relative;
        display: inline-block;
        width: 100%;        
    }
    /* contact us */
    #call-out-mobile {
        position: relative;
        display: inline-block;
        width: 100%;
    }
    .insidePanelContainer {
        position: relative;
        display: inline-block;
        width: 100%;
        max-width: var(--max-content-width);
        padding: 0;
        margin: 0
    }
    .gallerySliderContainer  {
    	position:  relative;
    	display:  inline-block;
    	width:  100%;
		height:  200px;
	}
    .panel {
        padding: 20px 20px 40px 20px
    }
	.blogSection  {
		position:  relative;
		display:  inline-block;
		padding:  20px;
		border-top:  1px solid #ccc;
		overflow:  hidden;
		float:  left;
	}
	.blogPanel  {
		position:  relative;
		display:  inline-block;
		box-sizing:  border-box;
		border:  1px solid #8F9F97;
		background:  #fff;
		text-align:  center;
		padding:  20px;
		margin-bottom:  10px;
	}
	.blogPanel > h3  {
		font-size:  1.5em;
		width:  100%;
		text-align:  center;
		height:  40px;
		color:  #8F9F97;
	}
	.blogPanel > h4  {
		font-size:  1.0em;
		width:  100%;
		text-align:  center;
		height:  20px;
		color:  #8F9F97;
	}	
	.blogPanel > p  {
		text-align:  justify;
		color:  #8F9F97;
		padding:  20px 0;
	}
	.blogPanel > img  {
		position:  relative;	
		display:  inline-block;
		width:  100%;
	}    
    .service-icon {
        width: 50%;
        max-width: 145px;
        margin: 20px 0
    }
    #ticker {
        position: relative;
        display: inline-block;
        text-align: center;
        padding: 10px 20px;
        width: 100%;
        background: var(--c3-color);
    }
    .banner-call-out h2 {
        font-family: 'Caveat', cursive;
        font-weight: 300;
        text-transform: uppercase;
        color: #fff;
        line-height: 20px
    }
    .fluid5col {
        width: 20%
    }
    .fluid45col {
        width: 80%
    }
    .fluid1col, .fluid23col, .fluid2col, .fluid34col, .fluid3col, .fluid4col, .fluid6col {
        width: 100%
    }
    #covid-ticker {
        padding: 10px 10px
    }
    .hideMobile {
        display: none !important
    }
    .logoImage {
        width: 100%;
        z-index: 50;
        max-width: var(--logo-max-width);
        position: relative;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px
    }
    #page-container {
        position: relative;
        width: 100%;
        padding: 0;
        margin-right: auto;
        margin-left: auto;
        top: 0;
        background: #fff
    }
    a.footerLinks:active, a.footerLinks:hover, a.footerLinks:link, a.footerLinks:visited {
        position: relative;
        display: inline-block;
        color: var(--footer-text-color);
        text-decoration: none;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -o-transition: all .4s ease;
        -ms-transition: all .4s ease;
        transition: all .4s ease;
        text-decoration: none;
        margin: 0 0 0 5px
    }
    a.footerLinks:hover {
        color: #fff;
        text-decoration: underline
    }
    #header {
        position: relative;
        display: inline-block;
        padding: 10px 10px 20px 10px;
        width: 100%;
        text-align: center;
        float: left;
        z-index: 30;
        background: rgba(0, 255, 255, 0)
    }
    /** #welcome-banner {
        display: none
    }*/
    #ticker {
        position: relative;
        display: inline-block;
        width: 100%;
        float: left;
        text-align: right;
        padding: 15px 5px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        color: #333;
        background: var(--c3-color);
    }
    #overlay {
        display: none;
        position: fixed;
        z-index: 400;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5)
    }
    #call-out {
        clear: both;
        position: relative;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        margin: 5px 0;
        text-align: center;
        color: var(--c1-color)
    }
    #call-out a {
        text-decoration: none
    }
    #menu {
        display: none
    }
    a.logo img {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 96%;
        max-width: var(--logo-max-width);
        margin: 2% 0 2% 0;
        padding: 5px;
        transition: all .5s ease;
        background: #fff
    }
    h1#logo-title {
        position: absolute;
        left: -9999px
    }
    #slider1 {
        display: none
    }
    #content {
        position: relative;
        display: inline-block;
        margin: 0;
        width: 100%;
        padding: 2%;
        color: #333;
        float: left;
        text-align: center
    }
    #content-inside {
        text-align: left;
        width: 100%;
        float: left
    }
    a.panel h2 {
        color: #939598;
        font-size: 1.5rem;
        text-align: center
    }
    a.panel img {
        position: relative;
        bottom: 0;
        right: 0;
        border: 2px solid var(--c1-color);
        border-radius: .5em;
        -webkit-border-radius: .5em;
        -moz-border-radius: .5em
    }
    a.panel:active, a.panel:link, a.panel:visited {
        position: relative;
        display: inline-block;
        float: left;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        padding: 10px 10px 10px 10px;
        text-align: center;
        margin-bottom: 10px;
        color: #333;
        text-decoration: none;
        -webkit-transition: all .5s ease-in-out;
        -moz-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out
    }
    a.panel:hover {
        background: #ececec;
        color: #fff
    }
    #footer-container {
        position: relative;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        padding: 2%;
        background: var(--footer-bkgd-color);
        color: var(--footer-text-color);
        font-size: .95em;
        float: left;
        font-family: var(--text-font);
        font-weight: 100
    }
    #banner {
        position: relative;
        display: inline-block;
        width: 100%;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        float: left
    }
    #banner-inside {
        position: relative;
        display: inline-block;
        width: 100%;
        overflow: hidden;
        padding: 0;
        float: left
    }
    .insidePageBanner {
        position: relative;
        width: 100%;
        height: auto;
        float: left;
        top: 0;
        left: 0;
        transition: all 0.8s ease;
    }
    .phone-nav-icon {
        float: left;
        width: 20px;
        padding: 1%;
        background: #fff;
        margin-top: 3px;
        border-radius: .2em;
        -webkit-border-radius: .2em;
        -moz-border-radius: .2em
    }
    #phone-nav-dynamic {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: left
    }
    #phone-nav-overlay {
        position: absolute;
        width: 100%;
        display: none;
        z-index: 999
    }
    a.phone-nav-selected:active, a.phone-nav-selected:hover, a.phone-nav-selected:link, a.phone-nav-selected:visited {
        position: relative;
        display: inline-block;
        width: 100%;
        padding: 2%;
        border-bottom: 1px solid #ececec;
        color: #fff;
        text-decoration: none;
        font-size: 1.2em;
        background: var(--c1-color)
    }
    a.phone-nav-selected:hover {
        color: #fff;
        border-bottom: 1px solid #fff;
        background: var(--c1-color)
    }
    a.phone-nav-links:active, a.phone-nav-links:hover, a.phone-nav-links:link, a.phone-nav-links:visited {
        width: 100%;
        padding: 2%;
        border-bottom: 1px solid #ececec;
        display: inline-block;
        color: #333;
        background: #fafafa;
        text-decoration: none;
        font-size: 1.2em
    }
    a.phone-nav-links:hover {
        color: #fff;
        border-bottom: 1px solid #fff;
        background: var(--c1-color)
    }
    a#dynamic-phone-menu:active, a#dynamic-phone-menu:hover, a#dynamic-phone-menu:link, a#dynamic-phone-menu:visited {
        display: inline-block;
        width: 100%;
        padding: 5% 0 3% 0;
        text-decoration: none;
        font-size: 1.4em;
        font-weight: 700;
        background: var(--c1-color);
        text-align: center
    }
    a#dynamic-phone-menu:hover img {
        opacity: .5
    }
    #contactInlineFrm {
        position: relative;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        float: left
    }
    input.contact-form, select.contact-form {
        position: relative;
        width: 95%;
        border: none;
        padding: 10px;
        margin: 1% 0 1% 0;
        background: #fff;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        color: #333;
        outline: 0;
        font-size: 1.1em;
        border-radius: 0.3em;
        border: 1px solid var(--c1-color);
        transition: all 0.5s ease
    }
    input.contact-form:hover, select.contact-form:hover {
        background: #ececec;
        border: 1px solid var(--c2-color);
    }
    textarea.contact-form {
        position: relative;
        width: 95%;
        height: 50px;
        border: none;
        padding: 10px;
        margin-top: 0;
        background: #fff;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        font-size: 1.1em;
        color: #333;
        border: 1px solid var(--c1-color);
        border-radius: 0.3em;
        box-sizing: border-box;
        transition: all 0.5s ease;
        outline: 0
    }
    textarea.contact-form:hover {
        background: #ececec;
        border: 1px solid var(--c2-color);
    }
    .contact-form-button {
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        width: 95%;
        margin: 2% 0;
        cursor: pointer;
        /*font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;*/
        color: #fff;
        padding: 2% 10% 2% 10%;
        background: var(--c1-color);
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        outline: 0;
        border: none;
        font-size: 1.4em;
        text-align: center;
        transition: all .5s ease;
        box-sizing: border-box;
        border-radius: 0.3em
    }
    .contact-form-button:hover {
        color: #fff;
        background: grey
    }
    img.smile-gallery {
        width: 100%
    }
}

/* request appointment form */
#request-appointment {
    position: relative;
    display: inline-block;
    border-radius: .3em;
    -webkit-border-radius: .3em;
    -moz-border-radius: .3em;
    width: 100%;
    padding: 0;
}
table.request-form-table {
    width: 100%;
}
table.request-form-table td {
    padding: 1% 0;
}

.fancy-table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
}
.fancy-table th:first-of-type {
    border-right: 1px solid #fff;
}
.fancy-table th,
.fancy-table td {
    border: 1px solid #55A9DC;
    padding: 8px;
    text-align: left;
}
.fancy-table th {
    background-color: #55A9DC;
    color: white;
}

.slider2 {
    height: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}
.slider2__nav {
    width: 12px;
    height: 12px;
    margin: 2rem 12px;
    border-radius: 50%;
    z-index: 10;
    outline: 6px solid #ccc;
    outline-offset: -6px;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
.slider2__navchecked {
    -webkit-animation: check .4s linear forwards;
    animation: check .4s linear forwards
}
.slider2__image {
    font-size: 2.7rem;
    color: #2196f3;
}
@-webkit-keyframes check {
    50% {
        outline-color: #333;
        box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, .2)
    }
    100% {
        outline-color: #333;
        box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0)
    }
}
@keyframes check {
    50% {
        outline-color: #333;
        box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, .2)
    }
    100% {
        outline-color: #333;
        box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0)
    }
}
.center {
    text-align: center
}
img.gallery {
    position: relative;
    display: inline-block;
    padding: 20px;
    width: 100%;
    max-width: 600px
}
#covid-ticker {
    background: #333;
    text-align: center;
    color: #fff
}
#covid-ticker>p {
    padding: 2px;
    margin: 0
}
.covid-title {
    font-size: 1.4em
}
a.covid-button:active, a.covid-button:link, a.covid-button:visited {
    position: relative;
    display: inline-block;
    margin: 10px 10px;
    border: 1px solid #fff;
    border-radius: .3em;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
    color: #fff;
    transition: all .5s ease
}
a.covid-button:hover {
    border: 1px solid #999
}
.location-panels {
    background: var(--c1-color);
    border-radius: .5em;
    padding: 10px 0 10px 0;
    color: #fff
}
img.service-panel {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
    float: left;
    width: 100%;
    opacity: 1.0;
    transition: all .5s ease
}
img.service-panel:hover {
    opacity: 0.9
}
p {
    padding: 0;
    margin: 0 0 20px 0
}
img.blog_image {
    position: relative;
    display: inline-block;
    width: 100%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%
}
.pagetitle {
    position: relative;
    display: inline-block;
    padding: 25px 0;
    margin: 0;
    width: 100%;
    text-align: center;
    color: var(--c3-color);
    line-height: 30px;
    border-bottom: 1px solid var(--c2-color);
    text-transform: capitalize!important
}
@media screen and (min-width: 701px) {
    #call-to-action-container h3, h2, h4 {
        width: 100%;
        color: var(--c1-color);
        text-align: center;
        font-size: 1.5em
    }
    #call-to-action-container {
        position: relative;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding: 20px 0 50px 0;
        background: #fff;
        color: #fff;
        text-align: left;
        float: left;
        z-index: 25
    }
}
@media screen and (max-width: 700px) {
    #call-to-action-container h3, h2, h4 {
        width: 100%;
        color: var(--c1-color);
        text-align: center;
        font-size: 1.3em;
        font-weight: 300
    }
    #call-to-action-container {
        position: relative;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        padding: 20px 0 0 0;
        background: #fff;
        color: #fff;
        text-align: left;
        float: left;
        z-index: 25
    }
}
.fluid_container {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0;
    float: left
}
#new-patients-banner {
    position: relative;
    display: inline-block;
    padding: 20px;
    color: #fff;
    background: var(--c1-color);
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 100%
}
#new-patients-banner h2 {
    color: #fff;
    line-height: 25px;
    margin: 0;
    padding: 0
}
#new-patients-banner p {
    font-weight: 400
}
#contactSection {
    position: relative;
    display: inline-block;
    width: 100%;
    float: left;
    margin: 0;
    padding: 2% 4%;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: hidden;
    background: #fff
}
.overlay {
    background: 0 0;
    position: relative;
    width: 100%;
    height: 450px;
    top: 450px;
    margin-top: -450px;
    float: left
}
h1, h2 {
    font-family: var(--c1-color);
    font-weight: 300
}
h3, h4, h5 {
    font-family: var(--c1-color);
    font-weight: 400
}
h5 {
    font-size: 12pt
}
h4 {
    text-transform: capitalize;
    font-weight: 600;
    padding: 0;
    margin: 5px 0;
    line-height: 30px;
    color: #333;
    text-align: left
}
h3 {
    text-transform: capitalize;
    font-family: var(--text-font);
    color: #333; /*var(--c2-color);*/
    text-align: left;
    font-size: 1.8em;
    font-weight: 500;
    padding-top: 0;
    margin-top: 20px;
    line-height: 40px
}
h3.underline {
    width: 100%;
    border-bottom: 1px solid #f4b43d;
}
h2 {
    font-weight: 400;
    color: var(--c1-color);
    text-align: left;
    font-size: 2em;
    font-weight: 300;
    margin: 15px 0;
    line-height: 40px;
    text-transform: uppercase
}
h1 {
    text-transform: uppercase;
    color: var(--c3-color);
    text-align: left;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    text-align: center
}
a.blog_menu:link, a.blog_menu:active, a.blog_menu:visited {
    color: var(--c2-color);
    text-decoration: none;
    outline: 0;
    transition: all .5s ease    
}
a.blog_menu:hover {
    color: #333;
    text-decoration: none;
    outline: 0
}

a.contact:active, a.contact:hover, a.contact:link, a.contact:visited {
    color: #333;
    text-decoration: none;
    outline: 0;
    font-weight: 600;
    transition: all .2s ease
}
a.contact:hover {
    color: var(--c2-color);
    text-decoration: underline;
    outline: 0
}

a:active, a:hover, a:link, a:visited {
    color: var(--c1-color);
    text-decoration: underline;
    outline: 0;
    transition: all .2s ease
}
a:hover {
    color: var(--c2-color);
    text-decoration: underline;
    outline: 0
}
a.white:active, a.white:link, a.white:visited {
    color: #fff;
    text-decoration: none;
    outline: 0;
    font-weight: 300;
    padding: 0;
    transition: all .5s ease!important
}
a.white:hover {
    color: #fff;
    text-decoration: underline;
    outline: 0
}
.center {
    text-align: center
}
a.bannerBtn:active, a.bannerBtn:link, a.bannerBtn:visited {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    background: #333;
    color: #fff;
    line-height: 0.6em;
    text-decoration: none;
    text-transform: uppercase;
    outline: 0;
    transition: all .5s ease;
    font-size: 1.3em;
    width: 100%;
    border-radius: .5em;
    padding: 15px 20px;
    z-index: 20;
    text-align: center;
    transition: all .5s ease
}
a.bannerBtn:hover {
    background: var(--c2-color);
    color: #fff
}
a.download:active, a.download:hover, a.download:link, a.download:visited {
    position: relative;
    display: inline-block;
    padding: 8px 5px 5px 5px;
    margin: 5px 0 5px 0;
    color: #fff;
    background: var(--c1-color);
    text-decoration: none;
    font-size: 1.2em;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease
}
a.download:hover {
    color: #fff;
    background: #c2c8ca
}
img.download-icon {
    position: relative;
    float: left;
    margin: 2px 5px 0 0
}

/* mobile-call-now button */
a.callnow:link, a.callnow:active, a.callnow:visited, a.callnow:hover {
    position: relative;
    display: inline-block;
    padding: 2% 2% 2% 2%;
    width: 100%;
    margin: 1% 0 1% 0;
    color: #ffffff;
    background: var(--c1-color);
    text-decoration: none;
    font-size: 1.2em;
    text-align: center;
    border-radius: 0.5em;
}
a.callnow:hover {
    color: #ffffff;
    background: var(--c2-color);
}

a.buttonWhite:active, a.buttonWhite:hover, a.buttonWhite:link, a.buttonWhite:visited {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    padding: 9px 20px;
    margin: 0;
    color: var(--c1-color);
    background-color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .5s ease;
    border-radius: .4em;
}
a.buttonWhite:hover {
    background-color: var(--c2-color) !important;
    padding: 9px 20px !important
}

a.buttonBig:active, a.buttonBig:hover, a.buttonBig:link, a.buttonBig:visited {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    margin: 2% 0;
    color: #fff;
    background: var(--c1-color);
    text-decoration: none;
    font-size: 1.6em;
    font-weight: 300;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 0em;
}
a.buttonBig:hover {
    color: #333!important;
    background: #c2c8ca!important;
    padding: 10px 20px   
}

a.buttonHeader:active, a.buttonHeader:hover, a.buttonHeader:link, a.buttonHeader:visited {
    position: relative;
    display: inline-block;
    padding: 10px 10px;
    margin: 0;
    color: #fff;
    background: var(--c1-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 0.3em;
    /*box-shadow: 0 5px 5px #777*/
}
a.buttonHeader:hover {
    color: #fff !important;
    background: var(--c2-color) !important
}

a.button:active, a.button:hover, a.button:link, a.button:visited {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    margin: 0 0 10px 0;
    color: #fff;
    background: var(--c1-color);
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 0.3em;
    /*box-shadow: 0 5px 5px #777*/
}
a.button:hover {
    color: #333!important;
    background: var(--c1-color) !important
}

a.tickerButton:active, a.tickerButton:hover, a.tickerButton:link, a.tickerButton:visited {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    margin: 0;
    color: #fff;
    background: #333;
    text-decoration: none;
    font-size: 1.0em;
    font-weight: 700;
    border-radius: 0 0 0.3em 0.3em;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    /*box-shadow: 0 5px 5px #777*/
}
a.tickerButton:hover {
    color: #333 !important;
    background: var(--c1-color) !important
}

a.readMoreBtn:active, a.readMoreBtn:hover, a.readMoreBtn:link, a.readMoreBtn:visited {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    margin: 2% 0;
    color: var(--c1-color);
    background: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 300;
    text-transform: uppercase;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: .3em;
    /*box-shadow: 0 5px 5px #777*/
}
a.readMoreBtn:hover {
    color: #333!important;
    background: #c2c8ca!important;
    padding: 10px 20px
}
a.document-button:active, a.document-button:link, a.document-button:visited {
    position: relative;
    display: inline-block;
    padding: 20px;
    background: #9b8c7e;
    color: #494747;
    font-size: 1.1em;
    margin-bottom: 2%;
    width: 70%;
    text-decoration: none
}
a.document-button:hover {
    background: #c2c8ca;
    color: #fff
}

.searchBox {
    position: relative !important;
    display: inline-block !important;
    width: 100%;
    box-sizing: border-box !important;
    font-size: 14pt !important;
    outline: none !important;
    border: 1px solid #ccc !important;
    border-radius: 0.2em !important;
    background: #fff !important;
    color: #333 !important;
    margin: 10px 0 !important;
    padding: 10px 10px !important;
}

:: placeholder {
    font-family: var(--text-font);
    color: #999999;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-family: var(--text-font);
    color: #999999;
}
::-moz-placeholder { /* Firefox 19+ */
    font-family: var(--text-font);
    color: #999999;
}
:-ms-input-placeholder { /* IE 10+ */
    font-family: var(--text-font);
    color: #999999;
}
:-moz-placeholder { /* Firefox 18- */
    font-family: var(--text-font);
    color: #999999;
}

.table-container {
    margin-top: 20px;
    width: 100%; /* Ensure the table container takes full width */
    overflow-x: auto; /* Add horizontal scroll if needed */
}

.dentist-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.dentist-table th,
.dentist-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.dentist-table th {
    background-color: #e00064;
    color: white;
}

.empty-cell {
    color: #ccc;
}

.ui-effects-wrapper  {
	display: inline;
}
.clear {
    clear: both
}
.back-to-top {
    position: fixed;
    display: inline-block;
    bottom: 0;
    right: 50%;
    text-decoration: none;
    color: #000;
    background: var(--back-to-top-rgb);
    font-size: 12px;
    padding: 10px 15px 10px 15px;
    display: none;
    z-index: 100;
    width: 80px;
    text-align: center;
    margin-right: -40px
}
.back-to-top:hover {
    bottom: 0;
    background: rgba(0, 0, 0, .5)
}

#message_post, #message_post_request {
    position: relative;
    display: inline-block;
    padding: 10px;
    display: none;
    background-color: #fff;
    color: #333;
    z-index: 20;
    border-radius: 0 0.5em 0.5em 0;
    border-left: 5px solid var(--c1-color);
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    text-align: left;
    font-size: 1.1em
}
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 300
}

/* fancy checkbox styles */
input[type=date] {
    text-transform: uppercase;
}
input[type=checkbox].checkBox:hover {
    cursor: pointer;
}
input[type=checkbox].checkBox:before { 
    content:""; 
    position: relative;
    display: inline-block; 
    float: left;
    margin: -2px 0 0 0;
    width: 17px; 
    height: 17px; 
    background: url("images/checkbox-images/checkbox.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
}
input[type=checkbox].checkBox:checked:before { 
    background: url("images/checkbox-images/checkbox-checked.jpg");
    background-repeat: no-repeat;
    background-size: 100%;  
}

/* check box container */
.checkContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    /*margin-top: 5px;*/
    cursor: pointer;
    font-size: 1.0em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
}

/* Hide the browser's default checkbox */
.checkContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #333;
}

/* On mouse-over, add a grey background color */
.checkContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkContainer input:checked ~ .checkmark {
    background-color: var(--c1-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkContainer input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkContainer .checkmark:after {
    left: 6px;
    top: 1px;
    width: 5px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.error {
    color: #ff0000;
}
.caution {
    color: #ff6700;
}
.success {
    color: #006600;
}

#message_post_referral {
    position: relative;
    display: inline-block;
    padding: 20px;
    font-size: 1.2em;
    background: #ececec;
    border: 1px solid #ccc;
    margin-left: 15px;
}