/* Clinic website  */
/* RESET CSS */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
} */

input,
button,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
span,
a,
li,
td,
summary,
details {
  font-family: "Raleway", sans-serif;
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* END OF CSS RESET */


* {
  /* border-top: 10px solid #1098ad; */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.row:after,
.panelForFloat:after {
  display: block;
  clear: both;
  content: "";
}
.qrFloatFix {
    margin-left: 20%;
}
.imgWrapLeft {
    float: left;
    margin-right: 20px;
    width: 150px; /* Resize to your preferred dimensions */
    height: auto;
}
.textContent {
    overflow: hidden; /* Ensures text flows beside the image */
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
p,
span {
  color: #3a3a3a;
}

/* abbr {
	word-wrap: normal;
	word-wrap: break-word;
} */

.strBlue {
  color: #00b4d7;
  display: inline;
}

.lightBlue {
  color: #83d3e7;
  display: inline;
}

a {
  cursor: pointer;
  color: #407bac;
}

a:hover {
  color: #20415a;
}

a:visited {
  color: #407bac;
}

a:active {
  color: #58aaf1;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.25em;
}

p {
  font-size: 1em;
  margin-bottom: 15px;
}

sup {
  vertical-align: top;
  position: relative;
  top: -0.3em;
}
.top-banner {
  background: #da1a31;
  width: 100%;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  position: fixed;
  top: -2px;
  z-index: 1050;
  height: 25px;
}
.blinking {
  animation: blinkingText 1.2s infinite;
}
@keyframes blinkingText {
  0% {
    color: #ff0000;
  }
  49% {
    color: #ff0000;
  }
  50% {
    color: transparent;
  }
  99% {
    color: #ff0000;
  }
  100% {
    color: #ff0000;
  }
}

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

.font-size-22 {
  font-size: 1.125em;
}

* {
  margin: 0;
  padding: 0;
}

.buttonHome {
  display: block;
  margin-bottom: 1.25em;
  margin: auto;
  padding: 10px 0;
  background: #f8cc98;
  border: 5px solid #f8cc98;
}

.buttonHome:hover {
  background: #f2c692;
  border: 5px solid #f2c692;
  text-decoration: underline;
}

.image-container {
  width: 100%; /* Ensure the container fills the available width */
}

img {
  max-width: 100%; /* Make sure the image doesn't exceed the container width */
  height: auto; /* Maintain the aspect ratio of the image */
}

/* .buttonCovid {
  display: block;
  margin-bottom: 1em;
  margin: auto;
  padding: 0px 0;
  background: #f8cc98;
  border: 5px solid #f8cc98;
}

.buttonCovid:hover {
  background: #f2c692;
  border: 5px solid #f2c692;
  text-decoration: underline;
} */

/* Details formatting */

details {
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0.5em 0.5em 0;
}

summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
}

details[open] {
  padding: 0.5em;
}

details[open] summary {
  border-bottom: 1px solid #aaa;
  margin-bottom: 0.5em;
}

.redbox {
  border: 3px;
  border-style: solid;
  border-color: #ff0000;
  text-align: center;
  padding: 1em;
  margin-bottom: 10px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.yellowback {
  background-color: #fff8ed;
}

/* IE10 responsive design viewport */
@-ms-viewport {
  width: extend-to-zoom;
  zoom: 1;
}
.grid-container {
  width: 100%;
  max-width: 100%;
}

#home-back {
  background-color: white;
}

/* This content is from: http://inspirationalpixels.com/grid-system-with-sass/ */
.row + .row {
  margin-top: 0;
}

[class^="col-"] {
  float: left;
  margin-right: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
[class^="col-"]:last-child {
  margin-right: 0;
}

[class*="col-"] {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1023px) {
  [class*="col-"] {
    width: 50%;
  }

  .col-9 {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .col-1 {
    width: 8.33333%;
  }
  .col-2 {
    width: 16.66667%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33333%;
  }
  .col-5 {
    width: 41.66667%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33333%;
  }
  .col-8 {
    width: 66.66667%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33333%;
  }
  .col-11 {
    width: 91.66667%;
  }
  .col-12 {
    width: 100%;
  }
}
.fixed-nav-bar {
  position: fixed;
  display: table;
  top: 30;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 70px;
  background-color: white;
  text-align: center;
  border-bottom: 1px solid #dee6d8;
}
.fixed-nav-bar ul {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.fixed-nav-bar ul li {
  display: inline-block;
}
.fixed-nav-bar div {
  vertical-align: middle;
  display: table-cell;
  width: 100%;
}
.fixed-nav-bar div ul {
  width: 100%;
}
.fixed-nav-bar div ul li {
  display: inline-block;
  width: 13.8%;
  text-align: center;
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}
.fixed-nav-bar div ul li a {
  text-decoration: none;
}
.fixed-nav-bar li:hover {
  text-decoration: underline;
  background-color: #fafafa;
}
.fixed-nav-bar div ul li:hover ul li:hover {
  text-decoration: underline;
  background-color: #fafafa;
}
.fixed-nav-bar div ul li ul {
  display: none;
  position: absolute;
}
.fixed-nav-bar div ul li ul li {
  position: relative;
  display: block;
  float: none;
  width: auto;
  min-width: 13.7%;
  padding: 8px 0 8px 0;
  background-color: #f7feff;
}
.fixed-nav-bar div ul li ul li:first-child {
  margin-top: 26px;
}
.fixed-nav-bar div ul li:hover a + .hidden,
.fixed-nav-bar .hidden:hover {
  display: block;
}
/* abbr tooltip section */
@media screen and (min-width: 0px) {
  abbr[data-title] {
    position: relative;

    /* ensure consistent styling across browsers */
    text-decoration: underline dotted;
  }

  abbr[data-title]:hover::after,
  abbr[data-title]:focus::after {
    content: attr(data-title);

    /* position tooltip like the native one */
    position: absolute;
    left: 0;
    bottom: -30px;
    width: auto;
    white-space: nowrap;

    /* style tooltip */
    background-color: #1e1e1e;
    color: #fff;
    border-radius: 3px;
    box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.4);
    font-size: 14px;
    padding: 3px 5px;
  }
}
/* end of abbr section */

@media (max-width: 768px) {
  .fixed-nav-bar div ul li:hover a + .hidden,
  .fixed-nav-bar .hidden:hover {
    display: none;
  }
}
@media (max-width: 768px) {
  .fixed-nav-bar .show-menu {
    display: block;
    background-color: #83d3e7;
    padding: 25px 0 25px 0;
    font-size: 1.25em;
    color: #0d101b;
  }
  .fixed-nav-bar .show-menu img {
    padding-right: 10px;
  }
  .fixed-nav-bar div ul {
    position: static;
    display: none;
  }
  .fixed-nav-bar div ul li {
    margin-bottom: 0;
    margin-top: 0;
    padding: 12px 0;
    width: 100%;
  }
  .fixed-nav-bar div ul li ul {
    position: static;
  }
  .fixed-nav-bar div ul li ul li {
    position: static;
    padding: 10px 10px;
  }
  .fixed-nav-bar div ul li ul li:first-child {
    margin-top: 10px;
  }
  .fixed-nav-bar div ul ul li,
  .fixed-nav-bar div ul li a {
    width: 100px;
  }
}

.show-menu {
  text-decoration: none;
  text-align: center;
  display: none;
}
.show-menu:hover {
  background-color: #6cadbe;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked ~ ul {
  display: block;
}

input[type="checkbox"]:checked ~ .show-menu {
  background-color: #65a2b2;
}

.header-banner {
  height: 440px;
  width: 100%;
  background: url(../images/clinic_photos/img_surgery.jpg) no-repeat center
    center fixed;
  /* background: url(../images/clinic_photos/img_surgery.jpg) no-repeat center
    center fixed;*/
  background-size: auto 100%;
  background-position-y: 0px;
}
@media (min-width: 1024px) {
  .header-banner {
    background-size: 100% auto;
    background-position-y: -200px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header-banner {
    background-size: 100% auto;
  }
}
.header-banner div {
  padding-top: 50px; /* use 105 to centre better */
  text-align: center;
}
.header-banner .banner-title,
.header-banner .banner-sub {
  display: block;
  padding-top: 20px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .header-banner .banner-title,
  .header-banner .banner-sub {
    padding-top: 20px;
  }
}
.header-banner .banner-title {
  font-size: 2.5em;
  font-weight: 900;
  padding-top: 60px;
}
.header-banner .banner-sub {
  font-size: 2em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .header-banner .banner-sub {
    font-size: 1.5em;
  }
}

article.primary-accent,
article.secondary-accent {
  height: 260px;
}
article.booking {
  text-align: center;
}
article.booking div:first-child {
  display: inline-block;
  width: 20em;
  margin: 2.25em auto;
}
article.booking div:first-child div {
  width: inherit;
  display: inline-block;
}
article.booking div:first-child div h2:nth-child(odd) {
  float: left;
}
article.booking div:first-child div h2:nth-child(even) {
  float: right;
}
article.booking div:first-child div span {
  font-size: 1.1em;
}
article.booking div:first-child div span:nth-child(odd) {
  float: left;
}
article.booking div:first-child div span:nth-child(even) {
  float: right;
}
article.booking div:first-child h1 {
  margin-bottom: 0.8em;
}
article.booking div:first-child h1 img {
  padding-right: 0.25em;
}
article.booking div:first-child h2,
article.booking div:first-child span {
  display: inline-block;
  margin-bottom: 0.375em;
}

@media (max-width: 768px) {
  .infobar article {
    border-bottom: 1px solid #f0f0f0;
  }

  .infobar article:last-child {
    border-bottom: 0;
  }
}
.infobar article {
  position: relative;
  padding: 5px;
  height: 300px;
}
@media (min-width: 1024px) {
  .infobar article {
    height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .infobar article {
    height: 270px;
  }
}
.infobar article a {
  display: block;
  text-align: center;
  width: 180px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: -90px;
  text-decoration: underline;
}
@media (min-width: 1024px) {
  .infobar article a {
    bottom: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .infobar article a {
    bottom: 36px;
  }
}
.infobar article h2 {
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 1em;
}
.infobar article div p {
  text-align: left;
}
.infobar article .widthQuarter {
  text-align: center;
}
.infobar article .widthQuarter div {
  display: block;
  max-width: 246px;
  margin: 0 auto 1.25em auto;
}
.infobar article .widthQuarter img {
  display: inline-block;
  float: left;
  padding-top: 5px;
}
.infobar article .widthQuarter li {
  margin: 0 auto 0 auto;
  max-width: 230px;
  text-align: left;
}
.infobar .table-center {
  text-align: center;
}
.infobar .table-center table {
  display: inline-block;
  border-spacing: 0;
}
.infobar .table-center table tr:nth-child(odd) td {
  padding: 10px 20px 10px 20px;
  background-color: #fff5e9;
}
.infobar .table-center table tr:nth-child(even) td {
  padding: 5px;
  background-color: #fff9f4;
}
.infobar ul {
  padding-left: 15px;
}
.infobar #billing p {
  text-align: center;
}

#logo {
  position: absolute;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  background: url(../images/familydoctor.melbourne%20Logo%20notext_mob.png);
  height: 88px;
  width: 114px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #logo {
    background: url(../images/familydoctor.melbourne%20Logo%20notextx1.png);
    height: 176px;
    width: 228px;
  }
}
@media (min-width: 1024px) {
  #logo {
    background: url(../images/familydoctor.melbourne%20Logo%20notextx1.png);
    height: 176px;
    width: 228px;
  }
}

#booking_forms {
  min-height: 350px;
  margin: 50px 0 0 0;
  padding: 0 0 0 0;
  background-image: linear-gradient(#00b4d7, #add8e2);
  text-align: center;
}
#booking_forms h2 {
  padding-top: 50px;
  color: white;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #booking_forms {
    margin: 100px 0 0 0;
  }
  #booking_forms h2 {
    padding-top: 110px;
  }
}
@media (min-width: 1024px) {
  #booking_forms {
    margin: 100px 0 0 0;
  }
  #booking_forms h2 {
    padding-top: 110px;
  }
}
#booking_forms h3 {
  padding-top: 26px;
  color: white;
}
#booking_forms div {
  padding-top: 40px;
  padding-bottom: 45px;
}
#booking_forms div a {
  display: block;
  padding: 10px 0 10px 0;
  width: 300px;
  margin: 0 auto 20px auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  #booking_forms div a {
    display: inline-block;
    width: 300px;
    margin: 10px 0 0 0;
  }
  #booking_forms div a {
    margin-right: 30px;
  }
}
@media (min-width: 1024px) {
  #booking_forms div a {
    display: inline-block;
    width: 300px;
    margin: 0 0 0 0;
  }
  #booking_forms div a {
    margin-right: 30px;
  }
}

footer {
  padding: 20px 20px 20px 20px;
  background-color: #2d2f2c;
  color: white;
}
footer #footer-logo-notext {
  display: block;
  position: relative;
}
footer #footer-logo-notext img {
  position: absolute;
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer {
    padding: 100px 100px 0 100px;
  }
}
@media (min-width: 1024px) {
  footer {
    padding: 100px 100px 0 100px;
  }
  footer #footer-logo-notext img {
    display: inline-block;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: -200px;
  }
}
footer span {
  display: block;
}
footer h2 {
  color: #d4d4d4;
}
footer #footer-logo {
  margin-bottom: 20px;
}
footer .banner-title {
  font-size: 1.5em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .banner-title {
    font-size: 2.25em;
  }
}
@media (min-width: 1024px) {
  footer .banner-title {
    font-size: 2.25em;
  }
}
footer .banner-sub {
  padding-top: 0.5em;
  font-size: 1em;
  color: #f2f2f2;
}
footer div {
  text-align: center;
}
footer div ul {
  list-style-type: none;
  display: inline-block;
  margin: 10px 0 10px 0;
}
footer div ul li {
  display: inline-block;
}
footer div ul li img {
  height: 60px;
  width: auto;
}
footer div #footer-social-menu li {
  padding: 0 10px 0 10px;
}
footer div #footer-primary-menu li {
  padding: 0 3px 0 3px;
}
footer div #footer-primary-menu li a {
  font-size: 1em;
  color: #83d3e7;
  text-decoration: underline;
}
footer div #footer-emergency-menu li:nth-child(even) {
  color: #83d3e7;
  padding: 0 3px;
}
footer div #footer-ATSI-menu li {
  padding: 0 20px 0 20px;
  color: aliceblue;
  font-size: 0.8em;
}
footer #asterix span {
  color: #dddddd;
  font-size: 10px;
  padding: 30px 0 5px 0;
}

.primary-accent {
  background-color: #fff5e9;
}

.secondary-accent {
  background-color: #fff9f4;
}

.default-bacgkround {
  background-color: #ffffff;
}

.pageContent {
  background-color: white;
  padding-top: 70px;
  padding-bottom: 0;
  max-width: 1024px;
}
@media (min-width: 1024px) {
  .pageContent {
    padding-bottom: 84px;
  }
}
@media (min-width: 1024px) {
  .pageContent {
    margin: 0 auto;
  }
}
.pageContent h1 {
  padding: 60px 0 20px 0;
  color: #2f2f2f;
}
.pageContent h2 {
  padding: 14px 0 14px 0;
  color: #183c50;
}
.pageContent h3 {
  padding: 10px 0 10px 0;
  color: #1c455c;
}
.pageContent p {
  color: #0c0e19;
  line-height: 1.54em;
  font-size: 1.1em;
}
.pageContent .col-9 {
  margin-bottom: 50px;
}
.pageContent div article {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 25px;
  margin-bottom: 15px;
}
.pageContent div article ul,
.pageContent div article ol {
  padding-left: 35px;
}
.pageContent div article ul li,
.pageContent div article ol li {
  text-align: justify;
  line-height: 1.4em;
  font-size: 1em;
}
.pageContent #clinic_information_menu ul {
  list-style-type: none;
  display: inline-block;
  margin: 10px 0 20px 0;
  padding: 0;
}
.pageContent #clinic_information_menu ul li {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  width: 32%;
  background-color: #dae3e6;
  margin: 0 auto 10px auto;
  padding: 15px 0 15px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .pageContent #clinic_information_menu ul li {
    width: 49%;
    padding: 10px 0 10px 0;
  }
}
.pageContent #clinic_information_menu.half_menu ul li {
  width: 49%;
}
.pageContent .imgWrapRight {
  clear: left;
  float: right;
  margin: 10px;
}
.pageContent .imgWrapLeft {
  clear: right;
  float: left;
  margin: 10px;
  margin-left: 0;
}
.pageContent .imgRespWrapLeft {
  clear: right;
  float: left;
  width: auto !important;
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 10px;
  margin-left: 0;
}
.pageContent .imgWrapMiddle {
  display: block;
  margin: 10px auto 10px auto;
  max-width: 100%;
  height: auto;
}

.phone-nums {
  text-decoration: none;
  color: #83d3e7;
}

aside {
  width: 100%;
  display: inline-block;
}
aside article {
  display: block;
  float: none;
}
aside article.primary-accent,
aside article.secondary-accent {
  height: 320px;
}
@media (min-width: 1024px) {
  aside article.primary-accent,
  aside article.secondary-accent {
    height: auto;
  }
}
aside article.booking-aside {
  text-align: center;
}
@media (min-width: 1024px) {
  aside article.booking-aside h1 {
    font-size: 1.1em;
  }
}
aside article.booking-aside div:first-child {
  display: inline-block;
  width: 20em;
  margin: 2.25em auto;
}
@media (min-width: 1024px) {
  aside article.booking-aside div:first-child {
    width: 90%;
  }
}
aside article.booking-aside div:first-child div {
  width: inherit;
  display: inline-block;
}
aside article.booking-aside div:first-child div img {
  float: left;
}
@media (min-width: 1024px) {
  aside article.booking-aside div:first-child div img {
    display: none;
  }
}
@media (min-width: 1024px) {
  aside article.booking-aside div:first-child div h2 {
    font-size: 0.9em;
  }
}
aside article.booking-aside div:first-child div h2:nth-child(odd) {
  float: left;
}
aside article.booking-aside div:first-child div h2:nth-child(even) {
  float: right;
}
aside article.booking-aside div:first-child div span {
  font-size: 1.1em;
}
@media (min-width: 1024px) {
  aside article.booking-aside div:first-child div span {
    display: block;
    font-size: 1em;
  }
}
aside article.booking-aside div:first-child div span:nth-child(odd) {
  float: left;
}
aside article.booking-aside div:first-child div span:nth-child(even) {
  float: right;
}
@media (min-width: 1024px) {
  aside article.booking-aside div:first-child div span:nth-child(even) {
    float: none;
  }
}
aside article.booking-aside div:first-child h1 {
  padding-top: 5px;
  margin-bottom: 0.8em;
}
@media (min-width: 1024px) {
  aside article.booking-aside div:first-child h1 {
    margin-bottom: 0.3em;
  }
}
aside article.booking-aside div:first-child h1 img {
  padding-right: 0.25em;
}
aside article.booking-aside div:first-child h2,
aside article.booking-aside div:first-child span {
  display: inline-block;
  margin-bottom: 0.375em;
  padding-top: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  aside article {
    float: left;
    display: inline-block;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  aside article {
    float: left;
    display: inline-block;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  aside {
    display: block;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  aside {
    display: inline-block;
    width: 25%;
  }
}
aside .marker-pad {
  padding-top: 5px;
}

#bernese-table {
  margin: 10px;
  text-align: center;
  border-spacing: 0;
  border-bottom: thin solid #bfbfbf;
}
#bernese-table th {
  font-size: 1.1em;
  height: 80px;
  padding: 10px;
  background-color: #dfeff2;
}
#bernese-table td {
  max-width: 300px;
  padding: 10px;
}
#bernese-table tr:nth-child(odd) {
  background-color: #f0fafc;
}
#fee-table {
  margin: 10px;
  text-align: center;
  border-spacing: 0;
  border-bottom: thin solid #bfbfbf;
}
#fee-table th {
  font-size: 1.1em;
  height: 80px;
  padding: 10px;
  background-color: #dfeff2;
}
#fee-table td {
  max-width: 300px;
  padding: 10px;
}
#fee-table tr:nth-child(odd) {
  background-color: #f0fafc;
}
#dose-table {
  margin: 10px;
  text-align: center;
  border-spacing: 0;
  border-bottom: thin solid #bfbfbf;
}
#dose-table th {
  font-size: 1.1em;
  height: 80px;
  padding: 10px;
  background-color: #dfeff2;
}
#dose-table td {
  max-width: 300px;
  padding: 10px;
}
#dose-table tr:nth-child(odd) {
  background-color: #f0fafc;
}

/*# sourceMappingURL=styles.css.map */
