/* This is the main CSS file for the entire application */
/* This does not include default and our previous base CSS styles - these are in base.css */
/* Example - font definitions are in base.css */

@import url("base.css");

/*
==============================
====================
PAGE VIEW  CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  /* Page comes immediately after the body tag and includes all webpage UI elements, including the main top header */
  
  body {
    position: relative;
    font-family: fontbody;
    font-size: 100%;
    letter-spacing: 0;
    color: var(--offblack);
    background-color: var(--white);
  }
  .page {
    position: relative;
    z-index: 3; 
  }
  .page-inner {
    /* To add padding while allowing adding a backdrop to the page */ 
    padding: 1.5em 1.25em;
  } 
  .page-admin {
    font-size: 98%; 
    /* margin-top: 1.7em; */
  }
  .page-admin .page-inner {
    padding: 0em 0em;    
  }
  .page .page-section {
    padding: 0.6em 0;
    margin: 0.6em 0;
  }
  .page-content {
    max-width: 42em;
    padding: 1.4em 2.55em;
    padding-bottom: 3.2em;
    background-color: var(--offwhite);    
  }
  .page-section .section-header {
    font-size: 140%;
  }
  .page-header {
    font-size: 105%; 
    /* margin-bottom: 1.2em; */
  }
  .page-header-no-space {
    margin-bottom: 0;
  }
  .page-title {
    /* The main heading of the page - usually the first H1 tag */
    font-family: fontheading;
  }
  .page-admin .page-title {
    font-weight: bold;  
    margin-top: 0.1em;
    margin-bottom: 0.36em;
  }
  .page .page-right {
    margin-top: -6px;
  }
  .page-public .page-title {
    margin-bottom: 0.4em;
  }
  .page-public .page-inner {
    padding-top: 0em;
    padding-bottom: 0em;
  }
  .page-article {
  }
  .page-title-2 {
    text-align: center;
    margin: 21px 0;
    margin-bottom: 24px;
  }
  .page-login {
    padding-top: 3em;
  }
  .page-appointments {
    background: var(--gradient4);
  }  
  .page-admin {
    background: var(--offwhiteblue);
  }

  .page-test {
    min-height: 30vh; 
    padding: 1em 2em;
    color: var(--darktanpink);
    line-height: 1.32;
    font-size: 1.15em;
    background-color: var(--tanpink);
  } 


  /* Space at the top of the page after the main top header nav */

  .page-admin {
    padding-top: 1.7em;
  }



/* Letter spacing common values to make it easier to change later if the font family changes */
  p {
    margin-top: 12px;
    letter-spacing: 0.024em;
  }
  a {
    letter-spacing: 0.024em;
  }
  footer a {
    letter-spacing: 0.00em;
  }
  article p {
    letter-spacing: 0.00em;
  }
  label { 
    letter-spacing: 0.028em; 
  }
  td {
    letter-spacing: 0.024em;
  } 
  h1 {
    letter-spacing: -0.006em;
  }
  h2, h3 {
    letter-spacing: 0.000em;
  }
  .form .input-div input {
    letter-spacing: 0.024em;
  }
  .form-button {
    letter-spacing: 0.024em;
  }
  .form-button a {
    letter-spacing: 0.02em;
  }
  .text {
    letter-spacing: 0.02em;
  }
  .ltspc-more {
    letter-spacing: 0.024em;
  }
  .ltspc-1 {
    letter-spacing: 0.01em;
  }
  .ltspc-2 {
    letter-spacing: 0.02em;
  }
  .ltspc-3 {
    letter-spacing: 0.03em;
  }

  .profile-details-table tr td:nth-child(1) {
    letter-spacing: normal;
  }
  .doctors-public-datatable .doctor-name {
    letter-spacing: normal;
  }



  .page-admin .page-appt .page-title {
    font-size: 2.5em;
  }

  @media all and (max-width: 1750px) {
    .page-title {
      font-size: 3em;
    }
  }
  @media all and (max-width: 1500px) {
    .page-title {
      font-size: 2.8em;
    }
  }
  @media all and (max-width: 1200px) {
    .page-title {
      font-size: 2.55em;
    }
  }
  @media all and (max-width: 1000px) {
    .page-title {
      font-size: 2.4em;
    }
  }
  @media all and (max-width: 840px) {
    .page-title {
      font-size: 2.25em;
    }
  }
  @media all and (max-width: 720px) {
    .page-title {
      font-size: 2.1em;
    }
  }
  @media all and (max-width: 600px) {
    .page-title {
      font-size: 2em;
    }
  }
  @media all and (max-width: 480px) {
    .page-title {
      font-size: 1.86em;
    }
  }
  
  .page-home {
    /* top: -3.15em; */
  }

  .page-doctors-public {
    font-size: 107%;     
  }
  .page-doctors-public .page-inner {
    padding-left: 0.2em;
    padding-right: 0.2em;
  }
  .page-appointments-public {
    background-color: var(--offwhiteblue);    
  }

  .section-box {
    border-radius: 21px;
    background-color: var(--white);    
    margin: 1.5em auto;
    margin-bottom: 2.25em;
    padding: 2.05em 2.05em;
    padding-bottom: 2.05em;
    padding-right: 2.5em;
    width: 590px; 
    max-width: 100%;
  }
  .appt-insert .section-box {
  }
  @media all and (max-width: 720px) {
  .section-box {
    border-radius: 0px;
  }
  }


  .page-cover {
    position: absolute;
    left: 0;
    height: 100vh;
    width: 100%; 
    z-index: 12; 
    opacity: 0; 
    background-color: var(--greenyellow);
  } 
  .page-cover-half {
    height: 54vh;
  }
  .page-cover-up {
    top: 0;
    animation: hideUp 2s ease 1s none;
  }
  .page-cover-down {
    top: 50vh;
    animation: hideDown 2s ease 1s none;
  }
@keyframes hideUp {
  0% {
    opacity: 0.00; 
  }
  20% {
    opacity: 0.98; 
  }
  70% {
    opacity: 0.9;
  }
  100% {
    top: -50vh;
    height: 0vh;
  }
 }
@keyframes hideDown {
  0% {
    opacity: 0.00; 
  }
  20% {
    opacity: 0.98; 
  }
  70% {
    opacity: 0.9;
  }
  100% {
    top: 100vh;
    height: 0vh;
  }
 }


  .font-93 {
    font-size: 93% !important;
  }
  .font-95 {
    font-size: 95% !important;
  }
  .font-97 {
    font-size: 97% !important;
  }
  .font-98 {
    font-size: 98% !important;
  }
  .font-102 {
    font-size: 103% !important;
  }
}


/* 
  This is for button background colours and theming 
  (early-May 2025)
  "gb" stands for green blue
*/
@media all and (min-width: 0px) {
.btn-color-1 {
  background-color: var(--bluegreenwhite) !important;
}
.btn-color-2 {
  background-color: var(--bluegreenlight) !important;
}
.btn-color-3 {
  background-color: var(--bluegreenmedium) !important;
}
.btn-color-4 {
  background-color: var(--bluegreen) !important;
}
.btn-color-5 {
  background-color: var(--bluegreendark) !important;
}
.btn-color-6 {
  background-color: var(--bluegreen3) !important;
}

.btn-color-1:hover {
  border: none !important; 
  color: var(--offblack) !important;
}
.btn-color-2:hover { 
  border: none !important; 
  color: var(--offblack) !important;
}
.btn-color-3:hover { 
  border: none !important; 
  color: var(--offblack) !important;
}
.btn-color-4:hover { 
  border: none !important; 
  color: var(--offblack) !important;
}
.btn-color-5:hover { 
  border: none !important; 
  color: var(--offblack) !important;
}
.btn-color-6:hover { 
  border: none !important; 
  color: var(--offblack) !important;
}
}


@media all and (min-width: 0px) {
.page-login-patient {
  min-height: 100vh; 
  padding-top: 6vh;

  background: linear-gradient(182deg, 
  rgba(32, 123, 198, 0.40) 0%, 
  rgba(32, 123, 198, 0.0) 14%, 
  rgba(30, 169, 187, 0.0) 84%, 
  rgba(30, 169, 187, 0.40) 100%), 
  url('../../media/img/bkgd/srilanka002.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
} 
.backdrop-3 {
  min-height: 100vh; 

  background: linear-gradient(182deg, 
  rgba(32, 123, 198, 0.84) 0%, 
  rgba(32, 123, 198, 0.40) 14%, 
  rgba(30, 169, 187, 0.0) 84%, 
  rgba(30, 169, 187, 0.80) 100%), 
  url('../../media/img/bkgd/srilanka003.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
} 
.element-transparent {
  background-color: var(--transparent) !important;
  background: var(--transparent) !important;
}
}



@media all and (min-width: 0px) {
.fontbold {
  font-family: fontbold;
}
}



/*
==============================
====================
BUTTON CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  button {
    min-width: 8em;
    padding: 7px 14px;
    padding-bottom: 8px;
    margin: 6px 0px;
    line-height: 1.08;

    background-color: var(--white);
    border: var(--border3);
    box-shadow: none;
    font-family: fontbody;
    /* font-family: fontbody2; */
    transition: var(--transitionfast);
  }
  button:hover {
    box-shadow: var(--boxshadow2);
  }
  .button-2 {
    border: none; 
    min-width: 7.5em;
    padding: 9px 8px;
    padding-bottom: 10px;
    margin-right: 12px;
    color: var(--darkgray);
  }
  .button-2:hover { 
    box-shadow: none; 
    background-color: var(--blue); 
    color: var(--white);
  }

  .form-button-link {
    padding: 0 0 !important;
  }
  .form-button-link a {
    display: block;
    line-height: 1.15;
    letter-spacing: 0.036em;
    padding: 15px 12px !important;
  }

  /* For buttons with "a" (link) tags inside  */
  .button-link {
    padding: 0 0;
  }
  .button-link a {
    padding: 7px 14px;
    padding-bottom: 8px;
  }
  .button-2 a {
    display: block;
    padding: 8px 10px;
    padding-bottom: 9px; 
  }
  .button-disabled {
    cursor: not-allowed !important;
    pointer-events: all !important;
    background-color: #aab3bb !important;
  }
  /* For multiple buttons close to each other (within a button-panel) */
  .button-panel button {
    margin: 10px 16px;
    margin-left: 0;
  }
  /* Button to grab(!) user attention with some client brand colours */
  .button-primary {
    border: none;
    color: var(--white);
    background-color: var(--brandcolor1);
  }
  .button-secondary {
    border: none;
    color: var(--white);
    background-color: var(--brandcolor2);
  }
  .button-anim-line {
    position: absolute;
    left: 0;
    bottom: -5px;
    opacity: 0;
    height: 5px;
    width: 100%;
    background-color: var(--blue);
    transition: var(--transitionfast);
  }
  .form-button:hover .button-anim-line {
    opacity: 1;
  }

.dt-blue-button {
  color: var(--offwhite) !important;
  background: var(--blue) !important; 
  border-color: var(--blue) !important;
}
.dt-blue-button:hover {
  background: var(--darkblue) !important; 
  border-color: var(--darkblue) !important;
}
.dt-black-button {
  color: var(--offwhite) !important;
  background: var(--darkgray) !important; 
  border-color: var(--darkgray) !important;
}
.dt-black-button:hover {
  color: var(--offwhite) !important;
  background: var(--darkgreen) !important; 
  border-color: var(--darkgreen) !important;
}
.dt-white-button {
  color: var(--offblack) !important;
  background: var(--white) !important; 
  border-color: var(--darkgray) !important;
  transition: var(--transitionfast);
}
.dt-white-button:hover {
  background: var(--mediumsilver) !important; 
  border-color: var(--gray) !important;
  border-color: var(--mediumsilver) !important;
}
#myTable .dt-button-small  {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  line-height: 1.27;
  min-width: 6.4em !important;
}

.remove-dt-buttons .dt-buttons {
  display: none;
}

.fh {
  font-family: fontheading !important;
}

.green-button {
  background-color: var(--darkgreen) !important;
  background: linear-gradient(230deg, #0880a8, #0276ac) !important;
  background-size: 300% 300%;  
}
.green-button:hover {
  background-color: var(--darkgreen) !important;
  background: linear-gradient(230deg, #046e92, #006796) !important;
  background-size: 300% 300%;    
    border: 1px solid var(--silver); 
}
.blue-button {
  color: var(--white) !important;
  border: none !important; 
  background-color: var(--blueblack) !important;
  background: linear-gradient(264deg, #0167ba, #1447b6) !important;
  background-size: 300% 300%;  
  transition: var(--transitionfast) !important;
}
.blue-button:hover {
  background: linear-gradient(264deg, #1447b6, #0065b8) !important;
}
.button-color-3 {
  font-family: fontbody !important;
  color: var(--offblack) !important; 
  background: none !important;
  background-color: var(--greenyellow) !important;
  border: none !important; 
  box-shadow: none;
  transition: var(--transitionfast);
}
.button-color-3:hover {
  color: var(--white) !important; 
  background-color: var(--blue3) !important;
}

  .text-size-button {
    width: 3.35em;
    height: 2.1em;
    min-width: 2.5em; 
    margin-right: 6px; 
    padding: 6px 9px;
    line-height: 1;
    font-size: 97%;
    color: var(--darkgray);
    font-weight: bold;
    border: var(--border4);
    box-shadow: var(--boxshadow5);
  }
  @media all and (max-width: 1400px) {
   .text-size-button {
      font-size: 90%;
    }
  }
  button.text-smaller .button-inner {
    font-size: 100%; 
  }
  button.text-normal .button-inner {
    font-size: 106%; 
  }
  button.text-larger .button-inner {
    font-size: 112%; 
  }
  button.text-smaller {
    padding: 9px 10px;
  }
  button.text-larger {
    padding: 4px 5px;
  }
  .text-normal {
    font-size: 100%;
  }
  .text-smaller {
    font-size: 93%;
  }
  .text-larger {
    font-size: 110%;
  }

  .theme-control-buttons {
    padding: 0.5em 0;
  }
  .theme-button {
    display: flex;
    justify-content: center;
    align-items: center; 
    float: left;
    margin-right: 12px;
    margin-bottom: 6px;
    width: 5.9em;
    min-width: 5.7em;
    min-height: 2.55em;
    padding: 4px 2px;
    padding-bottom: 3px;
    font-size: 90%;
    line-height: 0.95; 
    color: var(--gray);
    border: var(--border4);
    box-shadow: var(--boxshadow4);
  } 
  .theme-button .button-text {
    width: 2.4em;
    text-align: left;
  }
  .theme-button .icon {
    display: inline;
    margin-left: 7px;
  }
  .theme-button .icon img {
    display: inline;
    height: 1.72em;
    width: auto;
  }
  .dark-theme-button .icon img {
    height: 1.72em;
  }
  .warm-theme-button .icon img {
    height: 1.72em;
  }
  .theme-button .button-text {
    font-size: 97%;
  }
  .theme-button:hover { 
    background-color: var(--brandcolor5);
    border: 1px solid var(--brandcolor5);
  }
  .theme-button:hover img {
    filter: saturate(1.4);
  }
  .white-backdrop-button .icon img { 
    filter: saturate(1); 
    opacity: 0.9;
  }
  .light-theme-page {
  }
  .warm-theme-page {
    background-color: var(--tan);
  }
  .dark-theme-page {
    background-color: var(--mediumsilver);
    filter: invert(1);
  }
  .white-backdrop-page {
    background-color: var(--white); 
  }
  .white-backdrop-page #myTable {
    border: var(--border5) !important; 
  }
  
  .warm-theme-page .stat-card {
    box-shadow: none;
  }
  .warm-theme-page .page-profile .segment {
    background-color: var(--tanpink);
    box-shadow: none;
  }

  .dark-theme-page .stat-card {
    box-shadow: none;
  }
  .dark-theme-page .page-profile .segment {
    box-shadow: none;
  }
  


  .button-panel {
  }
  .button-panel .button { 
    width: 8.00em;
    height: auto;
    border-radius: 2em; 
    padding: 0;
    margin: 0.46em 0;
    margin-left: 0;
    margin-right: 1em;

    border: none; 
    font-size: 0.97em;
    color: var(--darkgray);
    background-color: var(--white);
    box-shadow: var(--boxshadow5);
    transition: var(--transitionfast); 
  }
  .button-panel .button a {
    display: block;
    padding: 0.5em 0.30em;
    padding-bottom: 0.64em;
    line-height: 1.08;
    background-color: var(--white);
    transition: var(--transitionfast); 
  }
  .button-panel .button:hover {
    color: var(--offwhite);
  }
  .button-panel .button:hover a {
    /* border-radius: 2em;  */
    background-color: var(--offblack);
    color: var(--offwhite);
  }
  .button-wide {
    width: 10.80em;
  }
   .button-panel .button-wide {
    width: 10.80em;
  }
  .profile-control-buttons {
    margin-top: 0.96em;
  }
  .button-boxed { 
    width: 9.60em !important;
    border: 0px solid var(--offblack); 
    font-size: 105% !important;
    border-radius: 0.14em !important;
    margin-right: 1.4em !important;
    background: var(--gradient1);
    background-color: var(--white) !important;
    box-shadow: var(--boxshadow4) !important;
    transition: var(--transitionfast) !important;
  }
  .button-boxed a { 
    padding: 11px 8px !important;
    padding-bottom: 12px !important;
    color: var(--offblack);
    /* font-family: fontheading; */
  }
  .button-boxed:hover {
    /* background-color: var(--blue) !important; */
    background: var(--gradient2);
  }
  .button-boxed:hover a {
    color: var(--offwhite);
  }
  .profile-control-buttons .button {
    width: auto;
    border-radius: 0.1em;
    margin: 0.28em;
    margin-left: 0.03em;
    margin-right: 0.96em;
    background: var(--white);
    border: 1px solid var(--lightsilver); 
    box-shadow: none;
    font-size: 103% !important;
  }
  .profile-control-buttons .button a { 
    padding: 11px 8px;
    padding-bottom: 12px;
    color: var(--offblack);
    font-family: fontbody; 
  }
  .profile-control-buttons .button:hover {
    background-color: var(--darkblue);
    border: 1px solid var(--darkblue); 
  }
  .profile-control-buttons .button:hover a {
    color: var(--white);
  }
  .button-wide {
    width: 10.80em !important;
  }
}




/*
==============================
====================
FORM AND INPUT CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  .form {
    position: relative;
    text-align: left;
    /* max-width: 25.6em; */
    /* width: 24.5em; */
    width: 420px;
    max-width: 450px;
    margin: 0 auto;
    font-size: 1.08em;
    /* border-radius: 1.2em; */
    background-color: var(--white);
  }
  .form-inner {
    padding: 1.32em 3.2em;
    padding-bottom: 2.3em;
    border: none;
  }
  .form-outer {
  }
  .form-art-2 {
    padding: 30px 40px;
    padding-top: 36px;
    border: 0px solid #c8d0d6;
    max-width: 375px;
    background-color: #f9f9f9;
    box-shadow: 0px 1px 9px rgba(165, 189, 224, 0.5);
  }
  .form-long { 
    /* Specifically to deal with smaller width and higher border-radius aesthetics issues with forms that are vertically long */
    border-radius: 0.1em; 
    max-width: 28em;
    width: 27em;
  }
  .form-two-col {
    max-width: 770px;
    width: 750px;
    border-radius: 5px; 
    box-shadow: var(--boxshadow7);
  }
  .form-two-col .form-inner {
    padding-right: 2.8em;
    padding-left: 2.7em;
    padding-top: 1.65em;
    padding-bottom: 1.5em;
  }
  .form-two-col .form-left {
    min-height: 100%;
    width: 45%; 
    float: left; 
    padding: 1.4em 0;
  }
  #manager-signup-form .form-left {
    color: var(--white); 

    background: linear-gradient(170deg, 
    rgba(62, 64, 66, 0.7) 0%, 
    rgba(40, 41, 43, 0.7) 100%), 
    url('../../media/img/digital/staff01.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  #manager-login-form {
    padding-top: 0.6em;
    padding-bottom: 0.6em;
  }

  .form-art-3 .form-left { 
    position: relative;
  }
  .form-art-3 .form-left .form-header { 
    position: relative;
    top: 0.2em;
    padding: 0.1em 0.6em;
  }
  .form-art-3 .form-left .form-help-links {
    position: absolute;
    bottom: 2.3em;
    width: 100%;
    text-align: center;
  }
  .form-art-3 .form-left .form-header * {
    color: var(--white); 
  }
  .form-art-3 .form-left .form-help-links .form-button { 
    background-color: var(--greenyellow);
    color: var(--black); 
  }
  .form-art-3 .form-left .form-help-links .form-button:hover { 
    color: var(--white); 
  }
  .form-art-3 .form-left .form-help-links .form-button a { 
  }
  .form-two-col .form-right {
    min-height: 100%;
    width: 55%;
    float: left; 
    text-align: center;
    padding: 1.08em 2.25em; 
    padding-right: 2.3em;
  } 
  .form-art-3 .form-header .heading-subtext {
    margin-top: 6px;
  }

  @media all and (max-width: 900px) {
  .form-two-col {
    max-width: 100%;
    width: 100%;
    border-radius: 5px; 
    box-shadow: var(--boxshadow7);
  }
  .form-two-col .form-left {
    width: 49%; 
  }
  .form-two-col .form-right {
    width: 51%;
    padding-right: 1.65em;
  } 
  .form-two-col .form-inner {
    padding-bottom: 1.75em;
  }
}
  @media all and (max-width: 750px) {
  .form-two-col {
    max-width: 100%;
    width: 100%;
    border-radius: 5px; 
    box-shadow: var(--boxshadow7);
  }
  .form-two-col .form-left {
    width: 45%; 
  }
  .form-two-col .form-right {
    width: 55%;
    padding-right: 0em;
  } 
  }
  @media all and (max-width: 640px) {
  .form-two-col {
    max-width: 100%;
    width: 100%;
    border-radius: 5px; 
    box-shadow: var(--boxshadow7);
  }
  .form-two-col .form-left {
    width: 100%; 
    float: none;
    text-align: center;
    padding-right: 0;
  }
  .form-two-col .form-right {
    float: none;
    max-width: 320px;
    width: 320px;
    margin: 0 auto;
    margin-top: 3.2em;
    padding-bottom: 0.75em;
  } 
  .form-two-col .form-right {
    float: none;
    max-width: 320px;
    width: 320px;
  } 
  }
  @media all and (max-width: 420px) {
  .form-two-col .form-right {
    max-width: 270px;
    width: 270px;
  } 
  .form-two-col .form-inner {
    padding-right: 0.7em;
    padding-left: 0.7em;
  }
  }


  /* Small width forms */
  .form-small {
    padding: 30px 45px;
    max-width: 480px;
  }
  .form-width-28em {
    max-width: 28em;
    width: 28em; 
    border-radius: .16em;
  }
  .form-width-30em {
    max-width: 30em;
    width: 30em;
  }
  .form-side-padding {
    padding-right: 12px;
    padding-left: 12px;
    max-width: 28em;
    width: 28em;
    padding-top: 4px;
    padding-bottom: 5px;
  }

  .form-image { 
    width: 450px;
    max-width: 480px;

    background: linear-gradient(190deg, 
    rgba(57, 62, 71, 0.4) 0%, 
    rgba(41, 43, 48, 0.7) 40%, 
    rgba(15, 16, 17, 0.86) 70%, 
    rgba(20, 20, 21, 0.9) 100%), 
    url('../../media/img/bkgd/bkgd008.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    
  } 
  .form-image .form-jumbo-text {
    color: var(--offwhite); 
    font-family: fontheading;
    padding: 0.5em 1.2em;
    font-size: 2.4em;
  }


  /* Important form input base style */
  form input, select, textarea {
    width: 99.5%;
    padding: 13px 10px;
    padding-bottom: 14px;
    line-height: 1.14;
    margin-top: 1px;

    font-family: fontbody;
    letter-spacing: 0.032em;
    border: var(--border3);
    /* border: 1px solid var(--silver2); */
    border: 1px solid var(--mediumsilver);
    border-radius: 0.03em;
    /* box-shadow: var(--boxshadow8); */
    transition: 0.6s ease all;
  }
  form input, select, textarea:hover {
  }
  form select {
  }
  form textarea {
  }
  form select option {
  }
  form .form-input-readonly {
    background-color: #e1e8f1;
  }
  .form-col input,
  textarea {
  }
  .form-col select {
  }
  form textarea {
    padding: 8px 8px;
  }
  form input[type="submit"] {
    cursor: pointer;
    line-height: 1.12;
    padding: 15px 10px;
    padding-bottom: 15px;
    color: var(--white);
    font-family: fontlight;
    letter-spacing: 0.034em;
    border: none;
    background-color: var(--blue3);
  }
  form .button-link {
    cursor: pointer;
    width: 13.5em;
    line-height: 1.15;
    padding: 15px 12px;
    padding-bottom: 15px;
    margin: 0 auto;
    color: var(--white);
    font-family: fontlight;
    letter-spacing: 0.034em;
    border: none;
    background-color: var(--blue);
    transition: var(--transitionfast);
  }
  form .button-link:hover {
    color: var(--black);
    background-color: var(--fireyellow);
  }
  form input[type="submit"]:disabled {
    /* background-color: #aab3bb; */
  }
  form input[type="file"] {
    background-color: white;
  }
  form label {
    display: block;
    padding: 4px 2px;
    padding-left: 1px;
    font-size: 95%;
  }
  form label i {
    font-size: 105%;
    color: var(--grayblue);
  }
  .form-inputs {
    margin-top: -14px;
  }
  .form-public .form-inputs {
    margin-top: 0;
  }
  .form-header .form-title {
    font-size: 2.25em;
    display: inline-block;
    margin-bottom: 0.45em;
    margin-top: 0.14em;
    letter-spacing: -0.002em;
    color: var(--black);
  }
  .form-header .heading-subtext {
    font-size: 80%;
    margin-top: 3px; 
    color: var(--offblack); 
    line-height: 1.12;
  }
  form .subtitle {
    font-family: fontheading;
    font-size: 1.45em;
    margin-top: -6px;
  }
  /* input-div-div is for the input outer div */
  .form .input-div {
    margin-top: 1.36em;
    margin-bottom: 0.8em;
  }
  .form .input-div input {
  }
  .form .input-div input:hover {
  }
  .form .input-div textarea {
    padding: 14px 10px;
    padding-bottom: 14px;
    border: 1px solid #cfd4e0;
    line-height: 1.25;
  }
  .form .input-div-submit {
    margin-top: -2px;
    text-align: center;
  }
  .form .input-div-submit input[type="submit"] {
    width: 13.2em;
  }
  .form .input-div-submit input[type="submit"]:hover {
    background-color: var(--darkblue2);
    color: var(--white);
  }
  .form .input-div textarea::placeholder {
    letter-spacing: 0.01em;
  }
  .form .input-div select {
    padding: 11px 8px;
    padding-bottom: 11px;
  }
  .form .input-div input[type="submit"] {
  }
  .form label {
    display: block;
    text-align: left;
    margin-left: 0;
    font-size: 96%;
    padding-top: 3px;
    margin-bottom: 2px;
    color: var(--grayblue);
    font-family: fontlight;
  }
  .form .submit {
  }
  .form .submit:hover {
  }
  input:read-only {
    background-color: var(--offwhiteblue);
  }

  .form .form-buttons {
    margin-top: 1em;
    text-align: center;
  }
  .form-public .form-buttons {
    margin-bottom: -2px;
  }
  .form-buttons-center {
    text-align: center;
  }
  .form-buttons-center input {
    margin-left: auto;
    margin-right: auto;
  }
  .form-button {
    cursor: pointer;
    min-width: 13.375em;
    max-width: 16em;
    padding: 15px 12px;
    padding-bottom: 15px;
    line-height: 1.12 !important;
    margin: 0 auto;
    margin-top: 3px;
    border-radius: 0;
    border: none;
    text-align: center; 
    font-family: fontlight;
    background-color: var(--offblack);
    box-shadow: none;
    transition: var(--transitionfast);
  }
  .form-button:hover {
    box-shadow: none; 
    background-color: var(--darkblue);
  }
  .form-help-links .form-link { 
    max-width: 10em;
    text-align: center;
    border: 2px solid var(--offblack); 
    transition: var(--transitionfast);
  }
  .form-help-links .form-link a {
    display: block;
    padding: 10px 10px;
  }
  .form-help-links .form-link:hover {
    color: var(--black);
    font-family: fontheading;
    background-color: var(--fireyellow);
    border: 2px solid var(--offblack); 
  }
  .form-help-links .form-button {
    min-width: 10.8em;
    padding: 0;
  }
  .form-help-links .form-button a {
    display: block;
    padding: 11px 10px;
    padding-bottom: 12px;
    line-height: 1.12;
  }

  .form .select-option-box {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #0e59e4;
    color: #084bc7;
    margin: 0.24em 0.2em;
    margin-bottom: 0.64em;
    padding: 0.5em 0.86em;
    display: inline-block;
    min-width: 6em;
    border-radius: 2.5em;
    font-size: 80.6%;
    font-family: fontheading;
    transition: 0.45s cubic-bezier(0.5, 0.7, 0.7, 0.5) all;
  }
  .form .select-option-box:hover {
    background-color: #009b34;
    color: #f3f3f3;
    border: 2px solid #009b34;
  }
  .form .select-option-box-2 {
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #0e59e4;
    color: #084bc7;
    margin: 0.24em 0.2em;
    margin-bottom: 0.64em;
    padding: 0.5em 0.86em;
    display: inline-block;
    min-width: 6em;
    border-radius: 2.5em;
    font-size: 80.6%;
    font-family: fontheading;
    transition: 0.45s cubic-bezier(0.5, 0.7, 0.7, 0.5) all;
  }
  .form .select-option-box-2:hover {
    background-color: #009b34;
    color: #f3f3f3;
    border: 2px solid #009b34;
  }
  .form-option-box-selected {
    background-color: #009b34 !important;
    border: 2px solid #009b34 !important;
    color: #f3f3f3 !important;
  }
  .form .input-guide-text {
    text-align: left;
    padding-left: 7px;
    margin-top: 8px;
    color: var(--fontcolor3); 
    font-family: fontbody; 
  }
  form .logo-div {
    display: inline;
  }
  .form-logo {
    height: 2.16em;
    width: auto;
    position: absolute;
    margin-left: 0.75em;
    margin-top: 0.7em;
  }
  .form .input-extra-info {
    position: absolute;
    display: inline-block;
    max-width: 11em;
    min-width: 8em;
    margin-top: 5px;    
    bottom: -1.85em;
    right: 0;
    padding: 4px 0;
    font-size: 93%;
    text-align: center;
    color: var(--gray); 
    box-shadow: 0px 1px 9px rgba(165, 189, 224, 0.5);
  }
  .form-input-compact .input-div {
    margin-top: 1.12em;
  }
  .form-input-compact .form-section-title {
    margin-bottom: -0.42em;
    margin-top: 2.16em;
  }


  .form-admin {
    /* form-admin are the forms used in the admin (backend) panel */ 
    min-width: 500px; 
    width: 500px; 
    margin: 0.8em 0; 
    border-radius: 0;
  }
  .page-admin .form-backdrop {
    padding: 4em 1em;
    text-align: center; 

    background: linear-gradient(90deg, 
    rgba(240, 240, 254, 0.00) 0%, 
    rgba(230, 230, 245, 0.00) 100%), 
    url('../../media/img/bkgd/bkgd001.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
  }
  .page-admin .form-backdrop .form {
    margin-right: auto;
    margin-left: auto;
  }
  .form-admin .form-inner {
    padding: 1.72em 3.6em;
  }
  .form-admin .form-title {
    font-size: 1.86em; 
    line-height: 1.08; 
  }
  .form-admin .input-div {
  }
  .form-admin label {
    position: relative;
  }
  .form-admin-edit .form-inner {
    padding-right: 3.5em;
    padding-left: 3.4em; 
    padding-top: 1.96em;
    padding-bottom: 1.86em;
  }

  .form-a-link {
    position: absolute;
    display: inline-block;
    font-size: 90%; 
    padding: 5px 9px;
    padding-bottom: 6px;
    right: 3px;
    bottom: 6px;
    min-width: 5.1em;
    text-align: center;
    border-radius: 0.14em; 
    border: var(--border4); 
    color: var(--gray);  
    box-shadow: var(--boxshadow7);
    transition: var(--transitionfast);
  }
  .form-a-link:hover { 
    color: var(--white);  
    background-color: var(--darkgray);
    box-shadow: none;
  }

  .form-input-section {
    transition: var(--transitionfast);
  }
  .form .show-section-button {
    border-radius: 0.16em; 
    color: var(--darkgray);  
    color: var(--gray);  
    border: var(--border4); 
    background-color: var(--white) !important;
    box-shadow: var(--boxshadow7);
  }
  .form .show-section-button:hover {
    color: var(--white);  
    background-color: var(--bkgdlight1);

  }
  .form-admin .input-div input[type="submit"] {
    border: none; 
    padding: 14px 12px;
    padding-bottom: 14px;
    line-height: 1.15;
    font-size: 103%;
    width: 12.5em;
    border-radius: 0.1em;
    background-color: var(--blue2);
    background-color: var(--greenyellow);
    color: var(--offblack); 
    box-shadow: none;
    
  } 
  .form-public .input-div input[type="submit"] { 
    width: 13.235em;
    padding: 15px 12px;
    padding-bottom: 15px;
    border-radius: 0;
    line-height: 1.15;
    float: none;
  }

  .form-section-title {
    font-size: 1.16em; 
    margin-top: 2.05em;
    margin-bottom: -0.36em;
    font-family: fontheading;
    color: var(--offblack); 
  }
  }


@media all and (min-width: 0px) {
  .form-help-tip {

  }
  .form-help-tip .help-tip { 
    position: absolute;
    display: inline !important;
    top: 17px;
    padding-top: 0;
    color: var(--black);
    border: none; 
    background-color: var(--white);
    margin: 5px 5px;
  } 
  .form-help-tip .help-tip:hover { 
    /* color: var(--offwhite); */
    border: 0px solid var(--black) !important; 
    background-color: var(--fireyellow) !important;
  } 
.form-help-tip .help-text { 
    font-family: fontlight !important; 
  } 
  .form .help-tip:hover + .help-text { 
    display: inline-block !important;
    opacity: 0.98;
    position: absolute;
    margin: 28px 8%;
    z-index: 7;
    bottom: 0;
    left: 0;
    width: 84%;
    height: auto;
    max-height: 165px;
    padding: 1.12em 1.27em;
    padding-right: 2em;
    overflow: hidden;

    font-size: 17px;
    line-height: 1.35;
    border-radius: 1.2em;
    color: var(--offwhite);
    background-color: var(--darkgray);
  } 

  .input-div {
    position: relative;
  }
  .input-help-icon { 
    cursor: pointer;
    display: inline;
    right: 7px; 
    top: 3px;
    position: absolute; 
    padding-bottom: 0.3em;
    padding-left: 0.45em;
    font-weight: bold;
    font-family: fontheading;
    color: var(--darkolive);
    font-size: 1.14em;
    opacity: 0.8;
    transition: var(--transition2);
  }
  .input-help-text {
    height: 0.1em;
    opacity: 0.2; 
    overflow: hidden;
    color: var(--mediumgray);
    padding-left: 2px;
    padding-right: 1px;
    font-size: 0.97em;
    line-height: 1.2;
    transition: var(--transition2);
  }
  .input-help-icon:hover + .input-help-text {
    height: auto;
    height: 2.8em;
    overflow: visible;
    opacity: 0.9;
  }
  .input-help-text:hover  {
    height: auto;
    height: 2.8em; 
    overflow: visible;
    opacity: 0.9;
  }
  .input-help-icon:hover  {
    opacity: 1;
  }

  .form-guide-icon {
    cursor: pointer;
    font-size: 1.4em;
    border-radius: 50%;
    padding: 0.5em 0.5em; 
    position: absolute;
    right: -0.1em; 
    top: 0.1em;
  } 
  .form-guide-text-box {
    position: fixed; 
    padding: 1.2em 1.25em; 
    bottom: 1.5em; 
    bottom: -6em;
    margin: 0 0; 
    right: 30%; 
    left: 30%;
    border-radius: 1.6em; 
    width: 40%; 
    max-width: 93%;
    background-color: var(--white);
    transition: var(--transitionfast);
  }  
  .form-guide-text p:first-child { 
    margin-top: 0;
  }
  .form-guide-icon:hover + .form-guide-text-box {
    bottom: 1.5em;
  }
  .form-guide ol li {
    margin-left: 1.2em;
    list-style-type: disc; 
    margin-bottom: 4px;
  }


  .admin-page-section .page-desc {
    font-size: 105%;
  }

  .form-result-msg {
  }
  .form-result-msg .title {
    font-family: fontheading;
    font-size: 1.2em;
  }
  .form-result-msg .text {
    font-size: 1.00em;
  }
  form .msg-active {
    /* padding: 0.45em 0.75em; */
    /* padding-bottom: 0.45em;  */
    margin-top: 0.36em;
    margin-bottom: 2.16em;
    /* box-shadow: var(--boxshadow6); */
    /* border: var(--border5);  */
  }
  .msg-active .title {
    margin-bottom: 12px;
    display: inline-block;
    padding: 3px 10px;
    padding-top: 2px;
    line-height: 1.15;
    border: 2px solid var(--red); 
  }
  .msg-active .text {
    margin-bottom: 6px;
  }
  .msg-warning .title {
    color: var(--red);
  }




  .form-public {
    font-size: 103%; 
    max-width: 100%;
    min-width: 300px; 
    width: 480px; 
    margin: 0 auto;
    text-align: left;
    padding-right: 0;
    padding-left: 0;
  }
  .form-public .form-inner {
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .form-public .input-div {
    clear: both;
    display: block;
    width: 100%;
    border-bottom: 1px dashed var(--mediumsilver);
    margin-bottom: 0em;
    margin-top: 0;
    padding: 13px 0;
    padding-right: 2px;
  }
  #patient-signup-form .input-div { 
    border-bottom: none; 
  }

  .w50 {
    /* To have 2 form inputs on the same row, e.g., date and time */
    width: 50% !important; 
    clear: none !important;
    float: left;
  }
  .form-public .input-div-submit {
    border-bottom: none;
  }
  .form-public .input-div label {
    display: block;
    width: 30%;
    float: left;
    padding: 14px 6px;
    padding-left: 2px;
    padding-bottom: 13px;
  }
  .form-public .input-div input {
    display: block;
    width: 70%;
    float: left;
    color: var(--black);
    border-radius: 0.45em;
    padding-left: 11px;
    padding-bottom: 13px;
    border: 1px solid var(--mediumsilver); 
  }
  .form-public .input-div select {
    display: block;
    width: 70% !important;
    float: left;
    border: none;
    border: 1px solid var(--mediumsilver) !important; 
  }
  .form-public .input-div .select-w17em {
    width: 17em !important;
  }
  .form .input-div input[type="text"]:hover {
    border: 1px solid var(--darkblue2) !important;
  }
  .form-public .input-div select {
    display: block;
    float: left;
    margin-left: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding: 11px 9px;
    padding-bottom: 11px;
    border-radius: 0.45em;
    border: var(--border5);
  }
  .form-public .input-div select:hover { 
    border: 1px solid var(--darkblue2)
  }

  .form-public .form-text-bottom {
    /* border-top: 1px dashed var(--mediumsilver); */
    margin-top: 1.5em; 
    padding-top: 0.75em;
  }
  .form-text-bottom .disclaimer-text {
    color: var(--darksilver);
    font-size: 89%; 
    line-height: 1.15; 
  }
  .form-text-bottom .disclaimer-text a { 
    display: inline;
  }
          
} 


@media all and (min-width: 0px) { 
  .input-icon-image {
    display: inline;
    position: relative;
    right: -0.75em; 
  }
  .input-icon-image img {
    position: relative;
    height: 2.1em;
    width: auto;
    margin-top: 6px;
  }
}
  




/*
==============================
====================
MISC ELEMENT CSS
====================
==============================
*/
@media all and (min-width: 0px) {
  .fly-to-top {
    position: fixed;
    right: 1.24em;
    bottom: 1.5em;
    font-size: 93%;
    z-index: 6;
    padding: 7px 16px;
    padding-bottom: 7px;
    border-radius: 1.5em;
    color: #202020;
    font-family: fontlight;
    background-color: white;
    box-shadow: 0px 3px 15px rgba(84, 93, 119, 0.24);
    transition: 0.6s ease all;
  }
  .fly-to-top:hover {
    font-size: 100%;
    bottom: 1.4em;
    padding: 14px 16px;
    padding-top: 48px;
    border-radius: 0em;
    border-top-left-radius: 7em;
    border-top-right-radius: 7em;
  }
  .fly-to-top {
    display: none;
  }
  @media all and (max-width: 1080px) {
    .fly-to-top {
      font-size: 90%;
    }
  }
  @media all and (max-width: 720px) {
    .fly-to-top {
      font-size: 95%;
    }
  }


  .menu-three-lines { 
    display: none;
    position: absolute;
    z-index: 21;
    cursor: pointer;
    top: 0.01em; 
    right: 0.7em; 
    width: 2em;
    height: 2em; 
    font-size: 106%;
    padding: 0.2em 0.2em;
  }
  .menu-three-lines .line {
    width: 100%;
    height: 2px;
    margin: 7px auto;
    background-color: var(--darkblue);
  } 
  @media all and (max-width: 1000px) {
  .menu-three-lines { 
    display: block;
  }
  }
}

  
/* 
This is when the mobile menu and 
hamburger three line menu are displayed 
*/
  @media all and (max-width: 900px) {
  .menu-three-lines .line-white {
    background-color: var(--offwhite) !important;
  }
  .nav-header {
    position: relative;
    width: 300px;
    max-width: 100%;
    min-height: 70vh;
    margin: 0 auto; 
    opacity: 1;

    text-align: center;
    font-size: 1.12em;
    padding-top: 2.16em !important;
    padding-bottom: 1.5em !important;

    background: var(--gradient3);
    background-size: cover; 
    background-position: bottom left;
    transition: var(--transitionmedium);
  }
  .nav-header-show {
    height: auto;
    min-height: 80vh;
  }
  .nav-header-hide {
    height: 2.16em;
    min-height: 0em;
    padding-top: 0 !important; 
    padding-bottom: 0 !important;
    opacity: 0;
    overflow: hidden;
  }
  .nav-header ol { 
    width: 270px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  } 
  .nav-header ol li { 
    display: block;
    width: 100%; 
  } 
  .nav-header ol li a { 
    display: block;
    width: 100%; 
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    color: var(--white) !important; 
    transition: var(--transitionveryfast) !important;
  } 
  .nav-header ol li:hover { 
    background-color: var(--transparent) !important;
    border: 2px var(--offwhite) solid;
    /* box-shadow: var(--boxshadow2); */
  } 

  .header-darkgreen .nav-header ol li a {
    color: var(--white) !important;
  }
  } 


/* Tolltip, Support-tap, and Other  */
@media all and (min-width: 0px) {
  .support-tap {
    cursor: pointer;
    font-size: 90%;
    font-family: fb;
    position: fixed;
    z-index: 50;
    bottom: 1%;
    right: 1%;
    text-align: center;
    padding: 4px 10px;
    padding-bottom: 4px;
    color: rgb(68, 74, 85);
    transition: 0.7s cubic-bezier(0.3, 0.7, 0.5, 0.5) all;
  }
  .support-tap img {
    height: 2.5em;
    width: auto;
    transition: 0.7s cubic-bezier(0.3, 0.7, 0.5, 0.5) all;
  }
  .support-tap img:hover {
    height: 3.6em;
  }

  /* Tooltip container */
  .tooltip {
    position: relative;
    display: inline-block;
    /* border-bottom: 1px dotted black;  */
    /* ^ Border bottom - for dots under the hoverable text */
  }

  /* Tooltip text */
  .tooltip .tooltip-text {
    visibility: hidden;
    width: 140px;
    background-color: rgb(62, 68, 75);
    color: var(--lightsilver);
    line-height: 1.32;
    text-align: center;
    padding: 6px 6px;
    padding-bottom: 7px;
    border-radius: 6px;
    font-size: 97%;
    font-family: fontbody;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
  }
  form .tooltip .tooltip-text {
    width: 160px;
  }
  /* Tooltip arrow */
  .tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }

  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 0.96;
  }
  .tooltip-icon {
    width: 1.5em;
    height: auto;
    margin-bottom: -5px;
  }

  
  .help-tip {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 25px;
    height: 25px;
    cursor: pointer;

    text-align: center;
    font-family: fontbold;
    font-size: 20px;
    padding: 0;
    padding-top: 2px;
    line-height: 1.21;
    border-radius: 50%; 
    color: var(--brandcolor3);
    border: 2px solid var(--brandcolor3);

    transition: var(--transitionveryfast);
  }


  .stat-card .help-tip {
    height: 25px;
    line-height: 1;
  }
  .stat-card-white .help-tip {
    color: var(--darkgray);
    border: 2px solid var(--darkgray);
  }
  .help-tip .icon {
  }
  .help:hover .help-tip { 
    background-color: var(--yellow);
    border: 2px solid var(--yellow);
    color: var(--black);
  }
  .help .help-text {
    opacity: 0; 
    position: absolute;
    z-index: 0;
    width: 0em;
    top: 0;
    left: 0;
    overflow: hidden;

    font-family: fontbody;
    color: var(--black);
    font-size: 5px;
    line-height: 1.36;
    transition: var(--transitionmedium);
    border-radius: 1em;
  }
  .help-tip:hover {
    z-index: 8;
  }
  .help-tip:hover + .help-text {
    opacity: 0.9;
    position: absolute;
    width: 100%; 
    z-index: 7;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 120px;
    padding: 0.84em 1.02em;
    padding-right: 2.95em;
    overflow: hidden;

    font-size: 16px;
    color: var(--white);
    background-color: var(--darkgray);
  }

  .a-link {
    padding: 6px 6px;
    padding-top: 6px;
    min-width: 5.3em;
    margin: -6px 0;

    line-height: 1.12;
    color: var(--black); 
    background-color: var(--greenyellow); 
    text-align: center;
    font-size: 93%;
    border-radius: 0.02em;
    transition: var(--transitionfast);
  }
  .a-link:hover {
    color: var(--white); 
    background-color: var(--darkblue);
  }
  .table-ui-1 .a-link {
    font-size: 93%;
  }

  .page-note {
    display: inline-block;
    margin-top: 0.3em;
    line-height: 1.2;
    font-size: 90%;
    color: var(--gray);
  }

  .cta-box {    
    width: 420px;
    margin: 2em auto;
    padding: 32px 35px;
    padding-bottom: 33px;
    border-radius: 0;
    background-color: var(--white);
    font-size: 1.12em;
    text-align: center;
    /* box-shadow: var(--boxshadow9); */
  } 
  .cta-box .title {
    text-align: center;
    font-family: fontheading;
    margin-bottom: 18px;
    font-size: 1.54em;
  }
  .cta-box .title em {
    display: inline-block;
    padding: 3px 12px;
    line-height: 1.12;
    padding-bottom: 2px;
    border-radius: 1.2em;
    color: var(--white); 
    background-color: var(--blue); 
    /* border-bottom: 3px solid var(--darkblue); */
  }
  .cta-box .text {
  }
  .cta-box .text p {
    line-height: 1.25;
  }
  
  .cta-box .button {
    width: 100%;
    margin-top: 9px;
    background-color: var(--black);
  }
  .cta-box .button a {
    display: block;
    padding: 11px 10px;
    padding-bottom: 12px;
    /* margin-top: 9px; */
    color: var(--white); 
    min-width: 10em;
    transition: var(--transitionfast);
  }
  .cta-box .button a:hover {
    /* background-color: var(--darkblue); */
  }
}


@media all and (min-width: 0px) {
  .img-width-60em {
    width: 60em !important;
    height: auto;
  }
  .img-width-50em {
    width: 50em !important;
    height: auto;
  }
  .img-width-40em {
    width: 40em !important;
    height: auto;
  }
  .img-width-30em {
    width: 30em !important;
    height: auto;
  }
  .img-width-25em {
    width: 25em !important;
    height: auto;
  }
  .img-width-20em {
    width: 20em !important;
    height: auto;
  }
  .img-width-15em {
    width: 15em !important;
    height: auto;
  }
  .img-width-10em {
    width: 10em !important;
    height: auto;
  }
  .img-width-5em {
    width: 5em;
    height: auto;
  }
  .img-width-4em {
    width: 4em;
    height: auto;
  }
  .img-width-3em {
    width: 3em;
    height: auto;
  }
  
  

.line1 {
  display: block;
  width: 3.5em;
  height: 3px;
  background-color: var(--mediumsilver);
}
.line2 {
  display: block;
  width: 3.5em;
  height: 4px;
  background-color: var(--brandcolor5);
}
.line-a {
  display: inline-block;
  width: 20px;
  height: 3px;
  margin-right: 1px;
  margin-bottom: 2px;
  border-radius: 0.05em;
  background-color: var(--mediumsilver);  
}
.line-a1 {
  width: 24px;
}
.line-a2 {
  width: 18px;
}
.line-a3 {
  width: 12px;
}
.line-a4 {
  width: 7px;
}
}



@media all and (min-width: 0px) {  
.alert-side {
  position: fixed;
  z-index: 7;
  right: 1.12em; 
  top: 3.84em; 
  width: 20%;
  min-width: 16em;
  right: 40%;

  padding: 1.46em 1.45em; 
  padding-bottom: 1.57em;
  border-radius: 0.7em; 
  background-color: var(--white); 
  text-align: center;
  font-size: 1.16em; 
  box-shadow: var(--boxshadow7);
} 
.alert-side .alert-title {
  font-family: fontheading; 
  font-family: fontbody;
  letter-spacing: 0.014em;
  font-size: 1.6em; 
  margin-bottom: 14px;
}
.alert-title img {
  height: 2.25em; 
  width: auto;
  display: block;
  margin: 4px auto;
  margin-bottom: 20px;
} 
.alert-image img {
  height: 2.5em; 
  width: auto;
  display: block;
  margin: 4px auto;
  margin-bottom: 17px;
} 
.alert .alert-message {
  line-height: 1.24;
}


@media all and (max-width: 720px) {  
.alert-side {
  width: 60%;
  right: 20%;
}
}
@media all and (max-width: 540px) {  
.alert-side {
  width: 80%;
  right: 10%;
}
}


.page-warning {
  font-size: 1.16em; 
  width: 100%; 
  text-align: center;
  line-height: 1.27;
  padding: 1em 1em;
}

.test-msg {
  position: relative;
  z-index: 12;
  top: 0;
  margin: 0.25em auto;
  width: 45em;
  max-width: 100%;
  min-height: 5em;
  text-align: center;
  background-color: var(--white); 
  font-family: fontother; 
  line-height: 1.2; 
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.14em;
  padding: 0.5em 0.9em; 
  border-radius: 1.2em;
}

.msg-capsa {
  min-height: 36vh;
  max-height: 600px;
}
.msg-box {
  width: 17em;
  min-height: 8.6em;
  padding: 1.65em 1.24em;
  padding-bottom: 1.77em;
  background-color: var(--white);
  box-shadow: var(--boxshadow4);
  border-radius: 0.84em;
  font-size: 105%;
  line-height: 1.2;
  margin: 0 auto;
}
.msg-box-wide {
  width: 480px;
}
.msg-box-serious {
  border-radius: 0;
  min-height: 17.5em;
}
.msg-box .msg-title {
  font-family: fontheading;
  font-size: 1.4em;
  margin-bottom: 16px;
}
.msg-box .button-link {
  display: inline-block;
  cursor: pointer;
  padding: 9px 8px;
  padding-bottom: 11px;
  min-width: 8em;
  margin: 3px 3px;
  border-radius: 0.06em;
  color: var(--offwhite); 
  background-color: var(--offblack);
  border: var(--border1);
  transition: var(--transitionveryfast);
}
.msg-box .button-link:hover {
  border: 1px solid var(--silver);
  color: var(--offblack); 
  background: var(--gradient4);
}
.msg-box em {
  font-family: fontheading;
}
}





/*
==============================
====================
HEADERS, FOOTERS AND NAV MENU CSS
====================
==============================
*/

@media all and (min-width: 0px) {
  /* nav-header-public is the public-facing main navigational menu of the website and this is included in the public header */

  .nav-header {
    /* Base class applied to all navigational headers */
    /* Main public-facing top-positioned navigational menu, 
    inside the top main header  */
    padding: 0px 0px; 
    /* background-color: var(--white); */
    /* border-bottom: 1px solid var(--lightsilver);  */
  }

  .header-public-outer {
    position: fixed;
    z-index: 8;
    width: 36%;
    display: block;
    margin: 0 32%;
    padding: 0 6px;
    padding-bottom: 1px;
    font-family: fontbody;
    font-size: 103%;
    background: linear-gradient(280deg, 
    /* rgba(225, 52, 133, 0.84) 0%,  */
    /* rgba(70, 20, 207, 0.84) 100%),  */
    rgba(31, 172, 211, 0.84) 0%, 
    rgba(51, 20, 207, 0.82) 100%), 
    url('../../media/img/bkgd/texture-bkgd-02.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    box-shadow: var(--boxshadow11);   
    border-bottom-left-radius: 1.5em;
    border-bottom-right-radius: 1.5em;
  }
  @media all and (max-width: 1800px) {
    .header-public-outer {
      width: 40%;
      margin: 0 30%;
    }
  }
  @media all and (max-width: 1500px) {
    .header-public-outer {
      width: 50%;
      margin: 0 25%;
    }
  }
  @media all and (max-width: 1200px) {
    .header-public-outer {
      width: 60%;
      margin: 0 20%;
    }
  }
  @media all and (max-width: 1000px) {
    .header-public-outer {
      width: 70%;
      margin: 0 15%;
    }
  }
  @media all and (max-width: 800px) {
    .header-public-outer {
      width: 80%;
      margin: 0 10%;
    }
  }
  .nav-header {
  }
  .nav-header ol li {
    position: relative;
    float: right;
    transition: var(--transitionfast);
  }
  .nav-header-public ol li {
  }
  .nav-header ol li a {
    min-width: 5.5em;
    margin: 0px 2px;
    padding: 15px 10px;
    padding-top: 12px;
    line-height: 1.08;
    text-align: center;
    font-family: fontarticle;
    font-size: 100%;
    letter-spacing: 0.01em;
    color: var(--offwhite);
    transition: var(--transitionfast);
  }
  .nav-header ol li:hover a {
    color: var(--fireyellow);
  }
  .nav-header-ol-links {
    width: 100%;
    z-index: 7;
    float: right;
    /* animation: headerNavAnim1 3s ease-out 1s 1; */
  }
  
  .nav-header-logo {
    width: 0%;
    z-index: 6;
    position: relative;
    float: left;
    top: 6px;
    left: 6px;
    /* animation: headerNavAnim2 3s ease-out 1s 1; */
  }
  .nav-header-logo img {
    height: 2.1em; 
    width: auto;
    margin-top: -2px;
    margin-left: 9px;
  }

  @keyframes headerNavAnim1 {
    0% {
      width: 100%;
    }
    50% {
    }
    100% {
      width: 80%;
    }
  }
  @keyframes headerNavAnim2 {
    0% {
      width: 0%;
    }
    50% {
    }
    100% {
      width: 20%;
    }
  }

  }

  
  /* Embellishments for the header on certain webpages, such as policy article pages */
@media all and (min-width: 0px) {
  .bkgd-darkgreen {
    background-color: var(--brandcolor10) !important; 
    color: var(--white) !important;
  }
  .header-darkgreen {
    background-color: var(--brandcolor10) !important; 
  }
  .header-darkgreen-2 {
    background-color: var(--darkgreen2) !important; 
  }
  .header-darkgreen .nav-header ol li a {
    color: var(--lightsilver);
    font-family: fontheading;
  }
  .header-darkgreen .nav-header ol li a:hover {
    color: var(--offblack) !important;
  }
  .header-pagebkgd {
    /* background-color: var(--pagebackdrop) !important;  */
  } 
  .header-width-small {
    width: 54%; 
    min-width: 45em;
    margin: 0 auto;
    border-bottom-right-radius: 1.2em;
    border-bottom-left-radius: 1.2em;
    text-align: center;
  }
}




@media all and (min-width: 0px) {
  .footer {
    /* Slightly larger font size to make the links, phone numbers, and other specifics to be readable for elderly patients and for users using certain high resolution displays */
    font-size: 103%;
  }
  .footer li {
    color: var(--darkgray);
  }
  .footer a {
    font-family: fontarticle;
    color: var(--offblack);
  }
  .footer .footer-middle-section a {
    color: var(--offwhite);
    font-family: fontarticle;
  }
  .footer p {
    font-family: fontarticle;
    color: var(--darkgray);
  }
  .footer-top-section { 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat; 
    
    background-color: var(--pagebackdrop2);
    padding: 2em 2em;
    padding-bottom: 1em;
  }
  .footer-middle-section { 
    padding: 3.6em 2em;
    padding-bottom: 3.75em;

    /* background: linear-gradient(300deg,  
      rgba(16, 84, 211, 0.93) 0%, 
      rgba(21, 41, 97, 0.90) 100%),
      url("../../media/img/bkgd/bkgd004.jpg"); */
      background: linear-gradient(300deg, 
      /* rgba(225, 52, 133, 0.84) 0%,  */
      /* rgba(70, 20, 207, 0.84) 100%),  */
      rgba(31, 145, 211, 0.9) 0%, 
      rgba(18, 42, 197, 0.9) 100%), 
      url('../../media/img/bkgd/texture-bkgd-02.jpg');
    background-size: contain;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat; 
  }
  .footer-bottom-section {
    padding: 2em 2.4em;
    padding-top: 2.1em;
    text-align: center;
    background-color: var(--white);
  }
  .footer-bottom-section .text {
    line-height: 1.24;
  }
  .footer-logo .logo-img {
    height: 4em;
    width: auto;
    margin-bottom: 12px;
  }
  .footer .links {
    margin-bottom: 1.65em;
  }
  .footer .footer-contacts .icon img {
    display: block;
    display: block;
    height: 2.1em;
    width: auto;
    margin: 0 auto; 
    margin-bottom: 8px;
    padding-top: 0;
    font-family: fontlight;
    filter: invert(1);
  }
  .footer-links-outer {
    margin-top: 0em; 
    padding: 0 0.75em;
    padding-top: 1.5em;
    /* border-top: 1px solid var(--lightsilver); */
  }
  .footer .link {
    margin-top: 0px;
    margin-bottom: 7px;
    text-align: left;
    line-height: 1.32;
  }
  .footer-contacts .link {
    font-size: 105%;
  }
  .footer .links .link {
    text-align: center;
  }
  .footer-links .title {
    margin-bottom: 20px; 
  }
  .footer-links .title a {
    font-family: fontarticle;
    font-size: 108%; 
    letter-spacing: 0.012em;
  }
  .yellow-line {
    width: 2em;
    height: 3px;
    background-color: var(--yellow2);
  }
  .footer .yellow-line {
    margin-top: 4px;
  }
  .footer-emphasis {
    width: 640px;
    max-width: 100vw;
    margin: 0 auto;
    margin: 1em auto;
    margin-bottom: 2.4em;
    padding: 0.6em 0.7em;
    padding-bottom: 0.6em;

    border-top-left-radius: 6em;
    border-top-right-radius: 6em;
    /* background-color: transparent; */
    /* color: var(--offwhite);  */
    border: 1px solid var(--offwhite2); 
  }
  @media all and (max-width: 720px) {
  .footer-emphasis {
    width: 100%;
  }    
  }
  .footer-emphasis .item {
    width: 33.33%;
  }
  .footer-emphasis .item a {
    font-size: 112%;
  }
  .footer-emphasis .icon img {
    display: block;
    height: 2em;
    width: auto;
    margin: 0 auto; 
    margin-bottom: 10px;
  }
  .footer-pre-section {
    /* Section just above the footer to have a CTA */ 
    padding: 3.5em 1%; 
    text-align: center; 
    
    /* background: linear-gradient(300deg,  
      rgba(16, 84, 211, 0.90) 0%, 
      rgba(21, 41, 97, 0.87) 100%),
      url("../../media/img/bkgd/bkgd001.jpg"); */
    background-color: var(--nicesilver);
    /* background: var(--gradient4); */
  }
  .footer .cta-button { 
    width: auto; 
    height: auto;
    font-size: 1.6em;
    line-height: 1.1;
    padding: 0 0;
    cursor: pointer;
    border-radius: 0; 
    color: var(--gray);
    background-color: var(--offwhite);
    transition: var(--transitionfast);
  }
  .footer .cta-button:hover {
    background: var(--gradient5);
  }
  .footer .cta-button a { 
    font-family: fontlight;
  }
  .footer-segment-3 {
    width: 400px;
    max-width: 100vw;
    margin: 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .footer-segment-4 {
    padding-top: 1em;
    width: 400px;
    max-width: 100vw;
    margin: 0 auto;
  }
}



/*
==============================
====================
TABLE CSS
====================
==============================
*/

@media all and (min-width: 0px) {
  table {
    border-spacing: 0px;
    /* border: 1px dashed #b3bfc9 !important; */
    /* box-shadow: 1px 2px 7px rgba(152, 174, 207, 0.6); */
  }
  table tr {
  }
  table td {
    padding: 9px 10px;
    /* border-bottom: 1px solid var(--darkolive); */
  }
  table tr:last-child td {
    border-bottom: none;
  } 
  table .td-subtext {
    color: var(--grayblue); 
    font-size: 95%;
    margin-top: 3px;
  }



  .tableart3 {
    border-spacing: 0px;
    /* border: 1px dashed #b3bfc9 !important; */
    /* box-shadow: 1px 2px 7px rgba(152, 174, 207, 0.6); */
  }
  .tableart3 td {
    padding: 12px 12px !important;
    border-bottom: 1px dashed #aab3bb !important;
  }
  .tableart3 tr:last-child td {
    border-bottom: none !important;
  }

  .table-art-1 {
    border-spacing: 0px;
    border: 1px dashed #b3bfc9 !important;
    border: 1px solid #d0dae8 !important;
    /* box-shadow: 1px 1px 10px rgba(152, 174, 207, 0.36); */
  }
  .table-art-1 td {
    color: #505050;
    padding: 10px 12px !important;
    padding-top: 11px !important;
    border-bottom: 1px dashed #c7d3df !important;
  }
  .table-art-1 tr:last-child td {
    border-bottom: none !important;
  }
  .table-art-1 th {
    color: #333;
    padding: 12px 12px !important;
    padding-top: 12px !important;
    background-color: #eef1f5;
    font-family: fh;
    /* text-shadow: 2px 1px 32px #3b3e41; */
    /* border-bottom: 1px dashed #aab3bb !important; */
  }
  .table-art-1 th {
    text-align: left;
  }

  .table-art-3 {
    border-spacing: 0px;
    /* border: 1px dashed #b3bfc9 !important; */
    /* box-shadow: 1px 2px 7px rgba(152, 174, 207, 0.6); */
  }
  .table-art-3 td {
    padding: 12px 12px !important;
    border-bottom: 1px dashed #d0dae8 !important;
  }
  .table-art-3 tr:last-child td {
    border-bottom: none !important;
  }

  .td-compact-text {
    line-height: 1.2 !important;
    font-size: 95% !important;
  }
  #myTable td {
  }
  .logs-datatable tr td {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  
  /* For table td tags, including datatable td tags */
  .td-max-width-450 {
    width: 450px !important;
    max-width: 450px !important;
  }
  .td-max-width-400 {
    width: 400px !important;
    max-width: 400px !important;
  }
  .td-max-width-300 {
    width: 300px !important;
    max-width: 300px !important;
  }
  .td-max-width-240 {
    width: 240px !important;
    max-width: 240px !important;
  }
  .td-max-width-200 {
    width: 200px !important;
    max-width: 200px !important;
  }
  .td-max-width-180 {
    width: 180px !important;
    max-width: 180px !important;
  }
  .td-max-width-160 {
    width: 160px !important;
    max-width: 160px !important;
  }
  .td-max-width-120 {
    width: 120px !important;
    max-width: 120px !important;
  }
  .td-max-width-100 {
    width: 100px !important;
    max-width: 100px !important;
  }
  .td-max-width-80 {
    width: 100px !important;
    max-width: 100px !important;
  }
  .td-max-width-60 {
    width: 60px !important;
    max-width: 60px !important;
  } 
  .td-max-width-40 {
    width: 40px !important;
    max-width: 40px !important;
  }

 .max-width-1200 {
    /* For entire tables */
    max-width: 1200px !important;
  }
 .max-width-1080 {
    /* For entire tables */
    max-width: 1080px !important;
  }
 .max-width-1000 {
    /* For entire tables */
    max-width: 1000px !important;
  }
 .max-width-720 {
    /* For entire tables */
    max-width: 720px !important;
  }

  @media all and (min-width: 840px) {
  .td-min-width-500 {
    width: 500px !important;
    min-width: 500px !important;
  }
  .td-min-width-400 {
    width: 400px !important;
    min-width: 400px;
  }
  .td-min-width-360 {
    width: 360px !important;
    min-width: 360px;
  }
  .td-min-width-300 {
    width: 300px !important;
    min-width: 300px;
  }
  .td-min-width-240 {
    width: 240px !important;
    min-width: 240px;
  }
  .td-min-width-200 {
    width: 200px !important;
    min-width: 200px;
  }
  .td-min-width-160 {
    width: 160px !important;
    min-width: 160px;
  }
  .td-min-width-120 {
    width: 120px !important;
    min-width: 120px;
  }
  }

  .table-ui-1 { 
    /* Used mostly as the small tables in the units of the single appointment profile page */
    padding: 9px 9px;
    padding-bottom: 10px;
    background-color: var(--white);
  }
  .table-ui-1 td {
    padding: 9px 11px;
  }
  .table-ui-1 .label {
  }

  .public-datatable {
  }
  .doctors-public-datatable {
    max-width: 1500px !important;
  }
  .doctors-public-datatable #myTable tr td {
    background-color: var(--white) !important;
  }
  .doctors-public-datatable .doctor-name {
    font-family: fontbold;
    font-size: 103%;
    margin-bottom: 4px;
    display: inline-block;
  }
  .doctors-public-datatable .dt-results-msg {
    font-size: 103%;
  }
  .public-datatable .dt-view-link {
    padding: 12px 10px !important;
    padding-bottom: 12px !important;
    min-width: 9em !important;
    border: 1px solid var(--mediumsilver); 
    background-color: var(--darkblue);
  }
  #myTable #doctor-profile-button-public-dt {
    min-width: 8.2em !important;
    padding: 9px 8px !important;
    padding-bottom: 9px !important;
    line-height: 1.05;
  }
  #myTable #doctor-profile-button-public-dt:hover {
    color: var(--white) !important;
    border: 1px solid var(--blue3) !important; 
  }
  #myTable .dt-link-underlined {
    background-color: var(--transparent);
    border: none;
    border-bottom: 3px solid var(--greenyellow);
    padding: 0 0;
    line-height: 1.05 !important;
    padding-left: 0;
    min-width: auto;    
  }
  #myTable .dt-link-underlined:hover {
    background-color: var(--transparent);   
    color: var(--transparent);   
    border: none;
    border-bottom: 4px solid var(--greenyellow);
    padding: 0 0;
    line-height: 1 !important;
    padding-left: 0;
    min-width: auto;    
  }
  #myTable .dt-link-boxed { 

  }
  .dt-button-gradient {
    background-color: var(--darkblue);
    background: linear-gradient(230deg, #007bee, #0d4baf) !important;
    background-size: 400% 400%;  
  }
  .dt-button-gradient:hover {
    background: linear-gradient(230deg, #015fb7, #083479) !important;
    background-size: 400% 400%;
  }
  .page-doctors-public #myTable tr:hover {
    background-color: var(--white) !important;
  }
  .datatable .doctor-profile-picture {
    height: 3.75em;
    width: auto; 
    display: block;
  }

  .availabilty-time-table td:first-child {
    font-family: fontbold !important;
  }
  .availabilty-time-table .first-row td:first-child {
    font-family: fontbody !important;
  }
  .availabilty-time-table td:nth-child(1) {
    min-width: 6.8em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(2) {
    min-width: 5.4em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(3) {
    min-width: 6em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(4) {
    min-width: 6em !important;
    max-width: 10em;
  }
  .availabilty-time-table td:nth-child(5) {
    min-width: 5.4em !important;
    max-width: 10em;
  }
  .td-link-2 {
    color: var(--black);
    background-color: var(--white);
    border: var(--borderdark); 
    padding: 6px 11px;
    padding-bottom: 6px;
    line-height: 1.16;
    font-size: 93%; 
    transition: var(--transitionfast);
  } 
  .td-link-2:hover { 
    color: var(--offblack);
    background-color: var(--yellow2);
  }

  .table-w1000 #myTable {
    width: 1000px !important;
  }
  
  .td-link a {
    padding: 4px 9px;
    margin-top: -2px;
    min-width: 5.4em;
    border-radius: 0.84em; 
    text-align: center;
    line-height: 1.2;
    color: var(--gray);
    background-color: var(--white);
    box-shadow: var(--boxshadow2);
    transition: var(--transitionfast);
  }
  .td-link a:hover {    
    color: var(--offwhite);
    background-color: var(--darkgray);
  }
  

  #myTable td .dt-view-link {
    background-color: var(--lightblue2);
  }
}



/*
==============================
====================
IMAGE CSS
====================
==============================
*/
@media all and (min-width: 0px) {
  .image-banner {
    width: 100%;
    overflow: hidden;
    height: 27em;    
  }
  .image-banner-1 {
  background: linear-gradient(250deg, 
  rgba(0, 117, 219, 0.5) 10%, 
  rgba(6, 56, 148, 0.84) 20%, 
  rgba(12, 65, 163, 0.84) 50%, 
  rgba(2, 21, 54, 0.45) 100%), 
  url('../../media/img/bkgd/bkgd008.jpg');
  background-size: 100% auto;
  background-attachment: scroll;
  background-position: center bottom;
}
  .image-banner-2 {
}
.image-banner .page-header {
  font-size: 2em;
  text-align: center;
  color: var(--white);
}
.image-banner .page-header h1 {
  font-family: fontheading;
  text-shadow: var(--textshadow1);
  margin-bottom: 0.2em;
}
.image-banner .logo img {
  height: 3.4em; 
  width: auto;
}

.slideshow {
    margin: auto;
    width: 100%;
    padding: 0;
}
.slideshow img {
    display: block;
    width: 100%;
    height: 100%;
}

}




/*
==============================
====================
ARTICLE CSS
====================
==============================
*/
@media all and (min-width: 0px) {   
  .page-article { 
  }
  .page-policy .page-content {
    background: none;
  }
  .page-article .page-title {
    font-family: fontlight; 
  }
  .page-article .page-content { 
    max-width: 48em;
    margin: 2.00em auto; 
    margin-bottom: 3.75em;
    padding: 1.7em 3em;
    padding-bottom: 2.7em;
    /* border: var(--border6); */
  } 
  .page-policy .page-content {
    width: 64em;
    max-width: 95%;
    margin: 0 auto;
  }
  .page-policy .article-text-section {
    margin-top: 3em;
  }
  .page-policy .article p {
    color: var(--darkgray2); 
    font-family: fontarticle;
  }
  .article .subtext {
    font-family: fontarticle;
    letter-spacing: 0em;
  }

  body:has(.page-article) {
    background-color: var(--white);
  }
  .article p {
    font-family: fontlight;
    text-align-last: left;
    color: var(--offblack);
    line-height: 1.45; 
    margin-top: 1.08em;
    font-size: 114%;
  }
  .article header h1 {
    font-size: 3.75em;
    margin-bottom: 0.4em;
  }
  .article header h2 {
    font-family: fontheading;
    font-size: 2.8em;
    margin-top: 1.08em;
    margin-bottom: 0.7em;
  }
  .article .article-heading-2 {
  }
  .article .article-heading-2 h1 {
    position: relative;
    display: inline-block;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 2px; 
    padding-bottom: 17px;
    margin-bottom: 0;
    font-family: fontheading;
    font-weight: bold;
    border-radius: 0.05em;
    /* color: var(--white);  */
    /* text-shadow: var(--textshadow2); */
    /* background-color: var(--darkblue); */
  }
  .article .article-heading-2 h2 {
    display: inline-block;
    padding-right: 14px;
    padding-left: 13px;
    padding-top: 1px; 
    padding-bottom: 4px;
    font-family: fontheading;
    font-family: fontother;
    font-weight: bold;
    border-radius: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--darkblue);
  }
  .article .line-heading-yellow {
    position: relative;
    width: 12em;
    height: 6px;
    margin-top: -15px;
    z-index: 6;
    background-color: var(--yellow2);
  }

  .article figure img {
    width: 98.5%;
  }


  .page-policy .page-title {
    text-align: center;
  }
  .page-policy .article .article-header h1 {
    font-size: 2.7em;
  }
  .page-policy .article .article-header h2 {
    font-size: 1.7em;
  }
  .page-policy .page-title {
    font-family: fontheading;
    text-align: left;
  }
}



/*
==============================
====================
ANIMATION CSS
====================
==============================
*/
@media all and (min-width: 0px) {
  .slide-bottom {
    -webkit-animation: slide-bottom 4s ease-in-out both 900;
    animation: slide-bottom 4s ease-in-out both 900;
  }
  .slide-bottom-slow {
    -webkit-animation: slide-bottom 6s ease-in-out both 900;
    animation: slide-bottom 6s ease-in-out both 900;
  }
  .slide-bottom-fast {
    -webkit-animation: slide-bottom 3s ease-in-out both 900;
    animation: slide-bottom 3s ease-in-out both 900;
  }
  @keyframes slide-bottom {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(15px);
      transform: translateY(15px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  .slide-bottom-2 {
    -webkit-animation: slide-bottom-2 4.3s ease-in-out both 900;
    animation: slide-bottom-2 4.3s ease-in-out both 900;
  }
  @keyframes slide-bottom-2 {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(10px) translateX(3px);
      transform: translateY(10px) translateX(3px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  .slide-bottom-3 {
    -webkit-animation: slide-bottom-2 3.75s ease-out both 900;
    animation: slide-bottom-2 3.75s ease-out both 900;
  }
  @keyframes slide-bottom-3 {
    0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
    50% {
      -webkit-transform: translateY(9px) translateX(-3px);
      transform: translateY(9px) translateX(-3px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  @keyframes bkgd-color-anim-1 {
  0% {
    background-color: var(--black);
  }
  30% {
    background-color: var(--brandcolor2);
  }
  50% {
    background-color: var(--brandcolor1);
  }
  70% {
    background-color: var(--brandcolor2);
  }
  100% {
    background-color: var(--black);
  }
}
.bkgd-color-anim-2 {
    background: linear-gradient(265deg, #ffee00, #0074b6);
    background-size: 400% 400%;

    -webkit-animation: bkgd-color-anim-2 6s ease 2;
    -moz-animation: bkgd-color-anim-2 6s ease 2;
    animation: bkgd-color-anim-2 6s ease 2;
}

@-webkit-keyframes bkgd-color-anim-2 {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@-moz-keyframes bkgd-color-anim-2 {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@keyframes bkgd-color-anim-2 {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
}

@keyframes bkgd-color-anim-3 {
  0% {
    background-color: var(--black);
  }
  50% {
    background-color: var(--gray);
  }
  100% {
    background-color: var(--black);
  }
}

@keyframes pulse-anim-1 {
  20% {
    font-size: 100%;
  }
  50% {
    font-size: 120%;
  }
  80% {
    font-size: 100%;
  }
}


/*
==============================
====================
JQUERY MODAL POPUP CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  .blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 70;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
  }
  .blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em;
  }
  .blocker.behind {
    background-color: transparent;
  }
  .modal {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 71;
    max-width: 500px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left;
  }
  .modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
  }
  .modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px;
  }
  .modal-spinner > div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
  }
  .modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
  }
  .modal-spinner .rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
  }
  .modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
  }
  @-webkit-keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
      -webkit-transform: scaleY(0.5);
    }
    20% {
      -webkit-transform: scaleY(1);
    }
  }
  @keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
      transform: scaleY(0.5);
      -webkit-transform: scaleY(0.5);
    }
    20% {
      transform: scaleY(1);
      -webkit-transform: scaleY(1);
    }
  }

  .modal {
    /* padding-top: 12px; */
    text-align: center;
    line-height: 1.4;
    font-size: 0.95em;
    color: #4a5461;
    max-width: 420px;
    padding-bottom: 24px;
    margin-bottom: 3.5vh;
  }
  .modal em {
    display: block;
    margin-bottom: 9px;
    font-size: 2.16em;
    font-family: fh;
    text-align: center !important;
  }
  .okay-modal em {
    color: #404040;
    color: #04cc86;
  }
  .modal .button {
    font-size: 0.95em;
    margin: 10px;
    margin-top: 12px;
    color: #4a5461;
  }
  .modal .button:hover {
    font-size: 0.96em;
    color: white;
    font-family: fontheading;
  }
  .modal .button:first-of-type {
    margin-left: 0px !important;
  }
  .modal a.button {
    min-width: 135px;
  }
}

 
/*
==============================
====================
PROFILE PAGE CSS 
====================
==============================
*/
@media all and (min-width: 0px) {
  .page-profile {
    position: relative; 
  }
  .page-admin header .subtitle {
    font-size: 1.14em; 
    font-family: fontlight;
    margin-bottom: 6px;
    margin-top: 3px; 
    margin-left: 2px;
    letter-spacing: 0.024em;
  }
  .page-profile .page-title {
    margin-bottom: -1px;
  }
  .page-admin .admin-page-section {
    padding-top: 0;
    padding-bottom: 0; 
    text-align: left; 
    display: block;
    width: 100%;
    clear: both; 
  }
  .page-profile .profile-section {
    padding-top: 1em;
    padding-bottom: 0; 
    text-align: left; 
    display: block;
    width: 100%;

    /* Clearfix code */
    /* content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both; */
  }
  
  .page .page-left {
    position: relative;
    float: left;
    width: 18%; 
    min-width: 11.25em;
    height: 100vh; 
    min-height: 80vh; 
    top: -3vh; 
    border-bottom-right-radius: 1em;
    /* background-color: var(--white); */
  }
  .page .page-right {
    position: relative;
    float: right;
    width: 72%;
    padding: 0em 1.32em;
  }
  .page-profile .page-inner {
    padding: 0 0;
  }
  

  @media all and (min-width: 750px) {
    .page .page-left {
    width: 16.0%;
    }
  .page .page-right {
    width: 73.00%;
    padding-left: 0.5em;
    padding-right: 1em;
  }
  }
  @media all and (min-width: 800px) {
    .page .page-left {
    width: 16.50%;
    }
  .page .page-right {
    width: 73.00%;
    padding-left: 0.5em;
    padding-right: 1em;
  }
  }
  @media all and (min-width: 840px) {
    .page .page-left {
    width: 17%;
    }
  .page .page-right {
    width: 75.50%;
    padding-left: 0.5em;
    padding-right: 1em;
  }
  }
  @media all and (min-width: 900px) {
    .page .page-left {
    width: 18%;
    }
  .page .page-right {
    width: 76.50%;
    padding-left: 0.5em;
    padding-right: 1em;
  }
  }
  @media all and (min-width: 960px) {
    .page .page-left {
    width: 18%;
    }
  .page .page-right {
    width: 77.00%;
    padding-left: 0.7em;
    padding-right: 1em;
  }
  }
  @media all and (min-width: 1000px) {
    .page .page-left {
    width: 18%;
    }
  .page .page-right {
    width: 77.50%;
    padding-left: 0.7em;
    padding-right: 1.2em;
  }
  }
  @media all and (min-width: 1080px) {
    .page .page-left {
    width: 18.00%;
    }
  .page .page-right {
    width: 81.00%;
    padding-left: 0.7em;
    padding-right: 1.5em;
  }
  }
  @media all and (min-width: 1160px) {
    .page .page-left {
    width: 18.50%;
    }
  .page .page-right {
    width: 80.50%;
    padding-left: 0.7em;
    padding-right: 1.5em;
  }
  }
  @media all and (min-width: 1250px) {
    .page .page-left {
    width: 19.20%;
    }
  .page .page-right {
    width: 79.50%;
    padding-left: 0.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 1320px) {
    .page .page-left {
    width: 17.50%;
    }
  .page .page-right {
    width: 81.70%;
    padding-left: 0.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 1440px) {
    .page .page-left {
    width: 17.00%;
    }
  .page .page-right {
    width: 82.50%;
    padding-left: 1em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 1600px) {
    .page .page-left {
    width: 14.70%;
    }
  .page .page-right {
    width: 84.00%;
    padding-left: 1em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 1800px) {
    .page .page-left {
    width: 13.60%;
    }
  .page .page-right {
    width: 85.30%;
    padding-left: 1.2em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 2000px) {
    .page .page-left {
    width: 12.50%;
    }
  .page .page-right {
    width: 86.20%;
    padding-left: 1.2em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 2160px) {
    .page .page-left {
    width: 12.00%;
    }
  .page .page-right {
    width: 86.50%;
    padding-left: 1.2em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 2300px) {
    .page .page-left {
    width: 11.25%;
    }
  .page .page-right {
    width: 87.50%;
    padding-left: 1.4em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 2500px) {
    .page .page-left {
    width: 11.00%;
    }
  .page .page-right {
    width: 88.00%;
    padding-left: 1.4em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 2700px) {
    .page .page-left {
    width: 10.00%;
    }
  .page .page-right {
    width: 88.75%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 3000px) {
    .page .page-left {
    width: 9.00%;
    }
  .page .page-right {
    width: 90.00%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 3250px) {
    .page .page-left {
    width: 8.50%;
    }
  .page .page-right {
    width: 90.50%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 3500px) {
    .page .page-left {
    width: 7.75%;
    }
  .page .page-right {
    width: 91.25%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 3750px) {
    .page .page-left {
    width: 7.25%;
    }
  .page .page-right {
    width: 91.75%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 4000px) {
    .page .page-left {
    width: 6.75%;
    }
  .page .page-right {
    width: 92.25%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 4300px) {
    .page .page-left {
    width: 6.25%;
    }
  .page .page-right {
    width: 92.75%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }
  @media all and (min-width: 4500px) {
    .page .page-left {
    width: 5.75%;
    }
  .page .page-right {
    width: 93.25%;
    padding-left: 1.7em;
    padding-right: 1.7em;
  }
  }




  .page-admin .profile-section header {
    margin-bottom: 0.28em;
    margin-top: 0;
  }
  .page-admin .profile-section header h2 {
    font-family: fontheading; 
    font-size: 1.5em;
    padding-top: 6px;
    padding-bottom: 8px;
  }


  .stat-cards {
    padding: 0.2em 0em;
  }
  .stat-card {
    position: relative;
    width: 280px;
    height: 108px;
    padding: 0;
    padding-top: 1px;
    padding-left: 2px;
    margin-right: 2.5em;
    margin-bottom: 2.4em;
    text-align: left;
    
    border-radius: 0.54em;
    border: 1px solid var(--lightsilver); 
    font-size: 100%;    
    color: var(--offblack);
    background-color: var(--offblack);
    background-color: var(--offwhite3);
    /* box-shadow: var(--boxshadow11);  */
  }
  .stat-cards .stat-card:nth-child(1) {
    background-color: var(--bluegreendark5);    
  }
  .stat-cards .stat-card:nth-child(2) {
    background-color: var(--bluegreendark5);    
  }
  .stat-cards .stat-card:nth-child(3) {
    background-color: var(--blueblack);    
  }
  .stat-card .title {
    padding: 0.84em 1em;
    padding-bottom: 0.2em;
    line-height: 1.1;
    font-family: fontheading;
    font-family: fontlight;
    color: var(--lightsilver);
    color: var(--white);
  }
  .stat-card .value {
    position: relative;
    bottom: 0;
    padding: 0.08em 0.36em;
    padding-left: 0.4em;
    margin-top: 0.14em;
    
    font-family: fontlight;
    color: var(--white);
    font-size: 2.5em; 
    /* background-color: var(--bkgddark1);  */
  }
  .stat-card .value-large {
    font-size: 3.4em; 
    padding: 0.03em 0.32em;
    margin-top: 0em;
  }
  .stat-card .value-small {
    margin-top: 0.3em;
    padding: 0.12em 0.45em;
    padding-left: 0.5em;
    font-size: 2em; 
  }
  .stat-card-white {
    /* background-color: var(--white); */
    background-color: var(--greenyellow2);
    background-color: var(--bluesilver);
    /* background: var(--gradient6); */
  }
  .stat-card-white .title {
    color: var(--white);
  }
  .stat-card-white .value {
    color: var(--white);
  }
  .stat-card .help-tip {
    color: var(--offwhite3);
    border: none;
  }
  .stat-card-white .help-tip {
    color: var(--offwhite3);
    border: none;
  }
  .stat-card .help-tip:hover + .help-text {
    opacity: 0.87;
    position: absolute;
    width: 100%; 
    z-index: 7;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 108px;
    padding: 0.84em 1.02em;
    padding-right: 2.95em;
    overflow: hidden;

    font-size: 16px;
    color: var(--white);
    background-color: var(--darkgray);
  }

 .nav-header-outer {
    width: 100%;
    /* background-color: var(--white); */
  }
 .nav-header {
    width: 100%;
  }
 .nav-side-admin-outer {
    float: none;
    width: 93%;
    padding: 0.7em 0.0em;
    padding-right: 0.0em;
    padding-bottom: 1.05em;
    margin-top: 1.6em;
    margin-left: 1.05em;
    margin-bottom: 1.6em;
    border-radius: 0;
    border: var(--border4);
    background-color: var(--white); 
    box-shadow: var(--boxshadow7);
  }
  .nav-side-public-outer {
    padding-top: 0.6em;
  }
  .admin-side-nav li a {
    display: block;
    width: 100%;
    padding: 7px 8px;
    padding-left: 19px;
    line-height: 1.16;
    font-family: fontbody;
    color: var(--darkgray);
    transition: var(--transitionfast);
  } 
  .admin-side-nav  li a:hover {
    color: var(--offblack);
    background-color: var(--lightsilver);
  } 
  .admin-side-nav .control-buttons {
    padding: 8px 4px;
    padding-left: 19px;
    /* margin-top: 16px;   */
  }
  .admin-side-nav .list-title {
    margin-bottom: 0px;
    padding-top: 7px;
  }
  .admin-side-nav .list-title a {
    font-family: fontheading;
    font-size: 101%;
    color: var(--black);
  }

  .ims-control-board .button {
    border-radius: 0.1em; 
    margin: 0.75em 0.75em;
  }
  .ims-control-board .button-panel .button:hover { 
    /* background-color: var(--greenyellow); */
  }
  .ims-control-board .button-panel .button a:hover { 
    background-color: var(--blue);
  }
}



@media all and (min-width: 0px) {
  .page-profile .segment {
    width: 420px;
    min-height: 240px;
    float: left;
    padding: 12px 17px;
    padding-bottom: 12px;
    padding-left: 20px;
    margin-top: 0.3em;
    margin-bottom: 1.65em;
    margin-right: 4em;
    border-radius: 0.24em;
    text-align: left;  
    background-color: var(--white);
    box-shadow: var(--boxshadow4); 
  }
.page-profile .segment-wide {
    width: 860px;
  }
  @media all and (max-width: 1080px) {
.page-profile .segment-wide {
    width: 750px;
  }
  }
  @media all and (max-width: 900px) {
.page-profile .segment-wide {
    width: 750px;
  }
  }
  @media all and (max-width: 720px) {
.page-profile .segment-wide {
    width: 640px;
  }
  }
  @media all and (max-width: 600px) {
.page-profile .segment-wide {
    width: 95%;
  }
  }

  
  @media all and (max-width: 900px) {
    .page-admin {
      font-size: 0.8em;
    }
    .page .page-left {
    width: 14%;
    min-width: 9.6em;
    }
  .page .page-right {
    width: 82.75%;
    padding-left: 2.5%;
    padding-right: 0.5%;
  }
  }
  @media all and (max-width: 780px) {
    .page-admin {
      font-size: 0.8em;
    }
    .page .page-left {
    width: 14%;
    min-width: 9.6em;
    }
  .page .page-right {
    width: 79%;
    padding-left: 2.25%;
    padding-right: 0.25%;
  }
  }
  @media all and (max-width: 640px) {
    .page-admin {
      font-size: 0.8em;
    }
    .page .page-left {
    width: 14%;
    min-width: 9.3em;
    }
  .page .page-right {
    width: 77%;
    padding-left: 2.25%;
    padding-right: 0.25%;
  }
  .page-profile .segment {
    width: 375px;
  }  
  }
  @media all and (max-width: 570px) {
    .page-admin {
    }
    .page .page-left {
    width: 14%;
    min-width: 9.3em;
    }
  .page .page-right {
    width: 73%;
    padding-left: 2.25%;
    padding-right: 0.25%;
  }
  .page-profile .segment {
    width: 340px;
  }  
  }
  @media all and (max-width: 500px) {
    .page-admin {
      font-size: 0.78em;
    }
    .page .page-left {
    width: 14%;
    min-width: 9.3em;
    }
  .page .page-right {
    width: 70.5%;
    padding-left: 2.5%;
    padding-right: 0.25%;
  }
  .page-profile .segment {
    width: 98%;
  }  
  .profile-details-table tr td.value {
    min-width: 10.5em !important;
  }
  }
  @media all and (max-width: 430px) {
    .page-admin {
      font-size: 0.78em;
    }
    .page .page-left {
    width: 14%;
    min-width: 9.3em;
    }
  .page .page-right {
    width: 68%;
    padding-left: 3%;
    padding-right: 0.25%;
  }
  .page-profile .segment {
    width: 98%;
  }  
  .profile-details-table tr td.value {
    min-width: 8.6em !important;
  }
  }



  .profile-details-table {
    /* Non-interactive table displaying labels and values on each profile page */
  }
  .profile-details-table tr { 
  } 
  .profile-details-table tr td { 
    padding: 9px 4px;
    padding-bottom: 10px;
    padding-left: 1px; 
    font-family: fontlight; 
    font-family: fontbody;
    line-height: 1.27;
    font-size: 98%;
    border-bottom: 1px dashed var(--mediumsilver);
  } 
  .profile-details-table tr td.label {
    min-width: 7.7em; 
    font-size: 100%;
    color: var(--gray); 
    font-family: fontbody;
  }
  .profile-details-table tr td.value {
    min-width: 12em;
    font-size: 104%;
    font-family: fontbody;
    color: var(--offblack); 
    word-break: break-all; 
  }
  .profile-details-table tr td.value img {
    height: 1.12em;
    width: auto;
    margin-bottom: -3px;
    margin-left: 4px;
    filter: invert(1);
  }
  .page-profile .segment .segment-title h3 {
    letter-spacing: 0.05em; 
    padding-left: 2px; 
    margin-top: 8px;
    margin-bottom: 10px;
    margin-left: -1px;
    font-size: 1.17em;
    font-family: fontlight;
  }
  .page-profile .boxed-header {
    display: inline-block;
    max-width: 20em;
    padding: 0.3em 0.7em;
    padding-right: 0.72em;
    padding-bottom: 0.4em;
    border: 1px solid var(--nicesilver2); 
  }

  .profile-log-table {
    font-size: 95%;
    line-height: 1.2;
  }
  .profile-log-table {
    /* border: 1px solid var(--mediumsilver); */
  }
  .profile-log-table td {
    border-bottom: 1px solid var(--mediumsilver);
    min-width: 48px;
    color: var(--gray);
  }
  .profile-log-table thead td {
    font-family: fontlight;
    color: var(--offblack);
  }
  .profile-appointments-table td {
    color: var(--mediumgray); 
    padding-left: 3px !important;
    max-width: 16.5em;
  } 
  .profile-appointments-table td:nth-child(1) {
    min-width: 42px;
    color: var(--gray); 
  }
  .profile-appointments-table thead td:nth-child(1) {
    color: var(--offblack); 
  }
  
  
}


@media all and (min-width: 0px) {
  .page-appt {
    font-size: 1.00em;
  }
  .page-appt .unit {
    margin-bottom: 1.6em;
    margin-right: 1.6em;
  }
  .page-appt .unit table {
    min-width: 360px;
  }

  .recent-record {
    display: inline-block;
    width: auto;
    min-width: 340px;
    max-width: 90%;
    padding: 1.12em 1.16em;
    margin: 0.93em 0; 
    margin-right: 1.86em;
    background-color: var(--white);
  }
  .recent-record .col {
    float: left;
  }
  .recent-record table td {
    padding: 8px 8px;
  }
  .recent-record .col-title {
    font-family: fontheading;
    color: var(--offblack);
    font-size: 103%; 
    margin-bottom: 9px;
  }
  .recent-record .dt-view-link {
    margin-top: 0;
    margin-bottom: 0;
  }
  .col20 {
    width: 20%;
  }
  .col40 {
    width: 40%;
  }

  .appt-status-color-circle {
    display: inline-block;
    height: 0.77em;
    width: 0.77em; 
    margin-bottom: -1px;
    margin-left: 3px;
    border-radius: 1.2em;
    background-color: var(--mediumsilver);
  }
  .status-completed {
    background-color: var(--bluegreendark);
  }
  .status-ongoing {
    background-color: var(--green);
  }
  .status-issue {
    background-color: var(--red);
  }
  .status-rejected {
    background-color: var(--red);
  }
  .status-postponed {
    background-color: var(--purple);
  }
  .status-other {
    background-color: var(--mediumsilver);
  }
}



/*
==============================
====================
PUBLIC SEGMENTS CSS 
====================
==============================
*/


@media all and (min-width: 0px) {
  .page-login {
    padding: 6em 0.3em;
    min-height: 70vh;
    background: linear-gradient(90deg, 
    rgba(61, 126, 222, 0.3) 0%, 
    rgba(50, 196, 244, 0.3) 100%), 
    url('../../media/img/bkgd/bkgd-02.jpg');
    background-size: cover;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
  }
}



/*
==============================
====================
USER GUIDES CSS 
====================
==============================
*/ 




/*
==============================
====================
ABOUT AND TEAM CSS 
====================
==============================
*/ 


@media all and (min-width: 0px) {
  .landing-jumbo .inner {
    position: relative;
    padding: 2.4em 0.5em;
  }
  .landing-jumbo .wording {
    width: 40%;
    float: left;
    margin-top: -1.7em;
    font-size: 1.2em; 
    font-family: fontheading;
  } 
  .landing-jumbo .slogan {
    font-size: 3em; 
    font-family: fontheading;
    line-height: 1.03;
    text-align: left;
  } 
  .landing-jumbo .wording .link a {
    padding: 12px 32px;
    display: inline-block;
    width: auto;
    text-align: left;
    font-size: 1.12em;
    line-height: 1.16;
    margin: 0.2em 0;
    margin-top: 1.4em;
    left: 0.5em;
    position: absolute;
    background-color: var(--purple);
    background-color: var(--blue3);
    color: var(--white); 
    border-radius: 1.12em; 
  }
  .landing-jumbo .wording em {
    display: inline-block;
  }
  .landing-jumbo .wording .link em {
    display: inline-block;
    font-size: 1.25em;
    margin-top: -4px;
    margin-left: 4px;   
  }
  .landing-jumbo .images {
    width: 60%;
    position: relative; 
    float: right;
    right: 0;
    margin-top: 0;
    z-index: 2;
  }
  .landing-jumbo .images figure img {
    float: right;
    width: 90%;
    height: auto;
    margin: 0 auto; 
    margin-top: 0.3em;
  } 
  .landing-jumbo .images .pattern {
    position: absolute;
    top: -4em;
    left: 10em;
    z-index: 5;
    height: 7em;
    width: auto;
  } 
} 




/*
==============================
====================
LEADERBOARD CSS
====================
==============================
*/ 
@media all and (min-width: 0px) {
  .page-leaderboard {
    text-align: center;
  }
  .lb-table {
    margin: 0 auto;
    font-family: fontbody;
    text-align: left;
  }
  .lb-table th {
    padding: 9px 6px;
    font-family: fontheading;
  }
  .lb-table tr {
    display: block;
    /* width: 100%; */
    margin-bottom: 9px;
  }
  .lb-table td {
    padding: 8px 8px;
    /* min-width: 4.8em; */
    /* max-width: 120px; */
    background-color: var(--white); 
    border: 1px solid var(--white);
  }
  .lb-table-view-link {
    display: inline-block;
    position: relative;
    top: 6px;
    min-width: 4.8em;
    padding: 6px 7px;
    text-align: center;
    border-radius: 0.14em; 
    color: var(--offwhite);
    color: var(--offblack);
    background-color: var(--white); 
    border: 2px solid var(--offblack); 
    transition: var(--transitionveryfast);
  }
  .lb-table-view-link:hover {
    color: var(--offwhite);
    background-color: var(--darkblue);
    border: 2px solid var(--darkblue); 
  }
  .lb-table td .user-picture {
    display: block;
    width: 3.2em;
    height: 3.2em;
    border-radius: 50%; 
    margin-top: 4px;
  }
  .td-w100px {
    max-width: 100px;
  }
  .td-w200px {
    max-width: 200px;
  }
  

  .lb-table tr:nth-child(1) {
    font-family: fontheading;
    text-align: left;
  }

  .lb-table tr:nth-child(1) td {
    font-family: fontheading;
    font-size: 100% !important;
    color: var(--black) !important;
    text-align: left;
  }
  .lb-table td:nth-child(1) {
    width: 3.4em;
    padding-left: 12px;
  }
  .lb-table td:nth-child(2) {
    width: 100px;
  }
  .lb-table td:nth-child(3) {
    width: 140px;
  }
  .lb-table td:nth-child(4) {
    width: 100px;
  }
  .lb-table td:nth-child(5) {
    width: 250px;
    max-width: 250px;
  }
  .lb-table td:nth-child(6) {
    width: 140px;
  }
  .lb-table td:nth-child(7) {
    width: 125px;
  }
  .lb-table td:nth-child(8) {
    width: 125px;
  }
  .lb-table td:nth-child(9) {
    width: 150px;
    font-size: 95%;
    color: var(--gray);
  }
  .lb-table td:nth-child(10) {
    width: 70px;
  }
  .lb-table td:nth-child(11) {
    width: 120px;
  }

  .w100 {
    width: 100% !important;
  }
}



.why-home {
  font-size: 1.4em;
  padding: 3em 1%;
  text-align: center;
}
.why-home .title {
  font-size: 2.4em;
  font-family: fontheading;
}
.why-home .unit {
  margin: 2.5em 1%;
}
.why-home .unit-title {
  width: 50%;
  font-size: 1.12em;
  text-align: center;
  padding: 0.5em 12%;
  line-height: 1.32;
  font-family: fontbody;
}
.why-home .unit-image {
  width: 50%;
}
.why-home .unit-image img {
  width: 90%;
}

@media all and (max-width: 1200px) {
  .why-home .unit {
    font-size: 90%;
  }
}
@media all and (max-width: 720px) {
  .why-home .unit {
    font-size: 84%;
    margin: 1.2em 0;
  }
  .why-home .unit-title {
    width: 100%;
    padding-bottom: 1em;
  }
  .why-home .unit-image {
    width: 100%;
  }
  .why-home .unit-image img {
    max-width: 100%;
    width: 450px;
    margin: 0 auto;
  }
}