:root {

  --clr-grey-01: #575757;
  --clr-grey-02: #717171;
  /* color: #AAAAAA  */
  --clr-grey-03: #A1A1A1;
  --clr-grey-04: #B8B8B8;
  --clr-grey-05: #DBDBDB;
  --clr-grey-06: #FAFAFA;
  --clr-grey-07: #CECECE;
  /* [rgba(87, 87, 87, 0.2)] & [color: #465E82; opacity: 0.3;] */
  --clr-grey-08: #617593;

  --clr-blue-01: #314C74;
  /* color: #313774 */
  --clr-blue-02: #5574A7;
  --clr-blue-03: #7D7E8C;
  --clr-blue-04: #617594;
  --clr-blue-05: #7788A3;
  --clr-blue-06: #7F93B4;
  --clr-blue-07: #8FA3C1;
  /* color: #8397B6 */
  --clr-blue-08: #BCC8DA;
  --clr-blue-09: #E9EDF3;
  --clr-blue-10: #EAEFF7;
  --clr-blue-11: #F0F2F5;
  --clr-blue-12: #F8F9FC;
  --clr-blue-13: #838AA6;
  --clr-blue-14: #465E82;
  --clr-blue-15: #DFE3EA;

  --clr-green-01: #89A088;
  --clr-green-02: #A2B6AC;
  --clr-green-03: #C2D1BF;
  --clr-green-04: #CED8D2;
  --clr-green-05: #CBE6EA;
  --clr-green-06: #0f5132;

  --clr-purple-01: #9566A6;

  --clr-red-01: #DB4A4D;
  --clr-red-02: #DE7777;
  --clr-red-03: #E88F8F;
  --clr-red-04: #CC8A8A;
  --clr-red-05: #D78D8E;
  --clr-red-06: #DBAEAE;
  --clr-red-07: #E7CDCD;
  --clr-red-08: #F2E0E2;
  --clr-red-09: #F6DCDC;
  --clr-red-10: #E28B8B;
  --clr-red-11: #922121;
  --clr-red-12: #B75B5B;
  --clr-red-13: #E46C6C;

  --clr-brown-01: #CC6E39;
  --clr-brown-02: #D98759;
  --clr-brown-03: #C39E80;
  --clr-brown-04: #EB915E;
  --clr-brown-05: #E7AD8C;
  --clr-brown-06: #E9C3A9;
  --clr-brown-07: #ECCCB4;
  --clr-brown-08: #F4E6DD;
  --clr-brown-09: #F8E9DC;
  --clr-brown-10: #723D14;
  --clr-brown-11: #AC7C57;
  --clr-brown-12: #FAECE0;
  --clr-brown-13: #F4E6DA;

  --clr-white: #FFFFFF;
  --clr-black: #000000;

  /* font-sizes */
  --fs-900: 9.375rem;
  --fs-800: 6.25rem;
  /* 100 px */
  --fs-700: 3.125rem;
  --fs-600: 2rem;
  /* 32 px */
  --fs-500: 1.75rem;
  /* 28 px */
  --fs-450: 1.25rem;
  /* 20 px */
  --fs-400: 1.125rem;
  --fs-300: 1rem;
  /* 16 px */
  --fs-200: 0.875rem;
  /* 14 px */
  --fs-150: 0.750rem;
  /* 12 px */
  --fs-120: 0.625rem;
  /* 10 px (or 11 px)*/
  --fs-100: 0.500rem;
  /* 8 px (or 9 px) */
  --fs-50: 0.375rem;
  /* 6 px */

  /* font-families */
  --ff-sans-normal: "Poppins", sans-serif;

}

/* colors */

/* background-color */
.bg-white {
  background-color: var(--clr-white);
}

.bg-black {
  background-color: var(--clr-black);
}

.bg-dark-01 {
  background-color: var(--clr-grey-03);
}

.bg-dark-02 {
  background-color: var(--clr-grey-05);
}

.bg-light-01 {
  background-color: var(--clr-blue-10);
}

.bg-light-02 {
  background-color: var(--clr-blue-11);
}

.bg-light-03 {
  background-color: var(--clr-blue-12);
}

.bg-blue-01 {
  background-color: var(--clr-blue-01);
}

.bg-blue-02 {
  background-color: var(--clr-blue-05);
}

.bg-blue-03 {
  background-color: var(--clr-blue-06);
}

.bg-blue-04 {
  background-color: var(--clr-blue-07);
}

.bg-blue-05 {
  background-color: var(--clr-blue-15);
}

.bg-red-01 {
  background-color: var(--clr-red-02);
}

.bg-red-02 {
  background-color: var(--clr-red-04);
}

.bg-red-03 {
  background-color: var(--clr-red-07);
}

.bg-red-04 {
  background-color: var(--clr-red-08);
}


.bg-brown-01 {
  background-color: var(--clr-brown-04);
}

.bg-brown-02 {
  background-color: var(--clr-brown-07);
}

.bg-brown-03 {
  background-color: var(--clr-brown-12);
}

.bg-brown-04 {
  background-color: var(--clr-brown-13);
}

.bg-grey-01 {
  background-color: var(--clr-grey-02);
}

.bg-grey-02 {
  background-color: var(--clr-grey-06);
}

/* text-color */
.text-black {
  color: var(--clr-black);
}

.text-white {
  color: var(--clr-white);
}

.text-grey-01 {
  color: var(--clr-grey-01);
}

.text-grey-02 {
  color: var(--clr-grey-02);
}

.text-grey-03 {
  color: var(--clr-grey-03);
}

.text-grey-04 {
  color: var(--clr-grey-07);
}

.text-grey-05 {
  color: var(--clr-grey-08);
}

.text-green-01 {
  color: var(--clr-green-06);
}

.text-blue-01 {
  color: var(--clr-blue-01);
}

.text-blue-02 {
  color: var(--clr-blue-02);
}

.text-blue-03 {
  color: var(--clr-blue-04);
}

.text-blue-04 {
  color: var(--clr-blue-13);
}

.text-blue-05 {
  color: var(--clr-blue-14);
}

.text-blue-06 {
  color: var(--clr-blue-05);
}

.text-blue-07 {
  color: var(--clr-blue-03);
}


.text-red-01 {
  color: var(--clr-red-01);
}

.text-red-02 {
  color: var(--clr-red-04);
}

.text-red-03 {
  color: var(--clr-red-11);
}

.text-red-04 {
  color: var(--clr-red-12);
}

.text-red-05 {
  color: var(--clr-red-10);
}

.text-red-06 {
  color: var(--clr-red-13);
}

.text-brown-01 {
  color: var(--clr-brown-10);
}

.text-brown-02 {
  color: var(--clr-brown-11);
}


/* typography */

/* .ff-serif { font-family: var(--ff-serif); } */
/* .ff-sans-cond { font-family: var(--ff-sans-cond); } */
.ff-sans-normal {
  font-family: var(--ff-sans-normal);
}

.letter-spacing-1 {
  letter-spacing: 4.75px;
}

.letter-spacing-2 {
  letter-spacing: 2.7px;
}

.letter-spacing-3 {
  letter-spacing: 2.35px;
}

.uppercase {
  text-transform: uppercase;
}

.fs-900 {
  font-size: var(--fs-900);
}

.fs-800 {
  font-size: var(--fs-800);
}

.fs-700 {
  font-size: var(--fs-700);
}

.fs-600 {
  font-size: var(--fs-600);
}

.fs-500 {
  font-size: var(--fs-500);
}

.fs-450 {
  font-size: var(--fs-450);
}

.fs-400 {
  font-size: var(--fs-400);
}

.fs-300 {
  font-size: var(--fs-300);
}

.fs-200 {
  font-size: var(--fs-200);
}

.fs-150 {
  font-size: var(--fs-150);
}

.fs-120 {
  font-size: var(--fs-120);
}

.fs-100 {
  font-size: var(--fs-100);
}

.fs-50 {
  font-size: var(--fs-50);
}


.fw-300 {
  font-weight: 300
}

.fw-400 {
  font-weight: 400
}

.fw-500 {
  font-weight: 500
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}

.fs-900,
.fs-800,
.fs-700,
.fs-600 {
  line-height: 1.1;
}

.underline {
  text-decoration: underline;
}

.numbered-title {
  font-family: var(--ff-sans-cond);
  font-size: var(--fs-500);
  text-transform: uppercase;
  letter-spacing: 4.72px;

  font-family: var(--ff-sans-cond);
  font-style: var(--fs-500);
  text-transform: uppercase;
  letter-spacing: 4.72px;

}

.numbered-title span {
  margin-right: .5em;
  color: hsl(var(--clr-white) / 0.25);
}


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

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture {
  margin: 0;
}

table,
th,
td,
td:first-child {
  border: 0px;
  background: none;
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1ms !important;
    scroll-behavior: auto !important;
  }
}

/* make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* make form elements easier to work with  */
input,
button,
textarea,
select {
  font: inherit;
}

body {
  font-family: var(--ff-sans-normal);
  font-size: var(--fs-400);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  background: var(--clr-blue-12);
}

.preview {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 20;
  background: #FFFFFF;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: auto;
  margin: auto;
  max-height: 500px;
  min-height: 500px;
  min-width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: black;
}

/* primary button */
.button1 {
  background-color: var(--clr-grey-02);
  color: white;
  font-size: 12px;
  border-radius: 12px;
  border: 2px solid #717171;
  position: absolute;
  width: 130px;
  height: 30px;
  cursor: pointer;
}

/* secondary button 1 */
.button2 {
  background-color: white;
  color: var(--clr-blue-01);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid #8FA3C1;
  position: absolute;
  width: 155px;
  height: 30px;
  cursor: pointer;
}

/* secondary button 2 */
.button3 {
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  border: 0px;
  position: absolute;
  width: 155px;
  height: 30px;
  cursor: pointer;
}

/* secondary button 3 */
.button4 {
  background-color: white;
  color: var(--clr-blue-01);
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid #8FA3C1;
  position: absolute;
  width: 155px;
  height: 30px;
  cursor: pointer;
}

/* Dashboard features */
.dashboard {
  flex-wrap: wrap;
  flex-direction: row;
}

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-vertical {
  display: flex;
  flex-direction: column;
}

.flow>* {
  outline: 1px solid red;
}

.flow>*:where(:not(:first-child)) {
  margin-top: var(--flow-space, 1rem);
}

.floatright {
  float: right;
}

.container {
  padding-inline: 2em;
  /* padding: 0 2em; */
  margin-inline: auto;
  /* margin: auto; */
  max-width: 80rem;
}

.infocard {
  width: 260px;
  min-width: 260px;
  height: 175px;
  border-radius: 15px;
  padding-top: 40px;
  padding-left: 27px;
  padding-right: 27px;
  margin: 15px 5px 15px 5px
}

.clipboard-bgred {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0px 0px 2px var(--clr-red-05);
}

.clipboard-bgbrown {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0px 0px 2px var(--clr-brown-05);
}

.clipboard-bgblue {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin-top: 12px;
  box-shadow: 0px 0px 2px var(--clr-blue-08);
}

.clipboard {
  position: relative;
  height: 30px;
  font-size: 30px;
}

.createnewpopupiframe {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 5;
  background: #FFFFFF;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0px 0px;
  overflow: auto;
  margin: auto;
  max-height: 100%;
  min-height: fit-content;
  width: 380px;

  /* min-width: fit-content;
  width: 400px;
  max-width: 100%; */
}

.popupcontentiframe {
  background-color: #ffffff;
  margin: auto;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0px 0px;
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.previewiframe {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  z-index: 5;
  background: #FFFFFF;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: auto;
  margin: auto;
  max-height: 90%;
  min-height: 80%;
  min-width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: black;
}

.confirmationpopup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 40%; */
  z-index: 10;
  background: #FFFFFF;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: auto;
  margin: auto;
  max-height: 100%;
  min-height: 350px;
  /* min-width: fit-content; */
  width: 50%;
}

#previewstatus {
  display: none;
}

#previewclose {
  font-size: 14px;
  padding-top: 20px;
  padding-right: 20px;
}

#previewclose2 {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
}

.previewcontent {
  /* position: fixed; */
  background-color: #ffffff;
  margin: auto;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  height: 500px;
  overflow: auto;
}

.previewcontent span {
  padding-right: 20px;
  padding-top: 20px;
}

.previewcontent-field {
  height: 50px;
  width: 45%;
  padding-bottom: 10px;
}

.previewmessage {
  display: flex;
  flex-direction: column;
  min-height: 40%;
  padding-bottom: 10px;
  width: 100%"

}

.previewremarks {
  display: flex;
  flex-direction: column;
  /* min-height: 30%; */
  width: 100%;
  padding-bottom: 15px;
}

.preview#remarks {
  display: none;
  padding: 20px;
}

.confirmationpopupcontent {
  background-color: #ffffff;
  margin: auto;
  /* box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1); */
  /* border-radius: 15px; */
  height: 300px;
  /* width: 500px; */
  overflow: hidden;
}

#confirmpopupcontent,
#errorpopupcontent {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  padding-left: 20px;
}

#success {
  color: #89A088;
  box-sizing: border-box;
  font-size: 80px;
  vertical-align: middle;
  padding-top: 20%;
  padding-bottom: 20px;
}

#fail {
  color: #DE7777;
  box-sizing: border-box;
  font-size: 80px;
  vertical-align: middle;
  padding-top: 20%;
  padding-bottom: 20px;
}


/* #cancelpopupcontent{
    padding:0px;
  } */

#warningsign {
  color: white;
  font-size: 50px;
}

.input,
.select {
  width: 100%;
  height: 30px;
  background: rgba(242, 242, 242, 0.4);
  border: 1px solid rgba(97, 97, 97, 0.2);
  box-sizing: border-box;
  border-radius: 6px;
  text-indent: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

body input[type="text"] {
  width: 100%;
  height: 30px;
  background: rgba(242, 242, 242, 0.4);
  border: 1px solid rgba(97, 97, 97, 0.2);
  box-sizing: border-box;
  border-radius: 6px;
  text-indent: 6px;
  font-size: 12px;
  font-weight: 500;
}

.description {
  resize: none;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(97, 97, 97, 0.3);
  box-sizing: border-box;
  border-radius: 6px;
  padding: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

#footer {
  padding: 20px;
  padding-top: 0;
  max-height: 10%;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  align-items: center;
}

#footercontainer {
  display: flex;
  flex-direction: row;
  justify-content: right;
  padding-top: 50px;
}

#footercontainer2 {
  display: flex;
  flex-direction: row;
  justify-content: right;
  align-items: center;
  padding-top: 60px;
}

#footercontainer3 {
  display: flex;
  flex-direction: row;
  justify-content: right;
  padding-right: 10px;
}

.buttonsform {
  float: right;
  margin: 5px;
  background: #FFFFFF;
  /* mix-blend-mode: multiply; */
  border: 2px solid #8FA3C1;
  box-sizing: border-box;
  border-radius: 12px;
  min-width: 156px;
  min-height: 30px;
  cursor: pointer;
  font: var(--ff-sans-normal);
  font-weight: 600;
  font-size: 14px;
  line-height: 78%;
  color: #314C74;
}

#applyfilter {
  color: #FFFFFF;
  background-color: #8397B6;
  border: none;
}

.buttonsform:disabled {
  cursor: default;
  opacity: 0.2
}

.buttonsform2 {
  bottom: 0;
  margin: 10px;
}

.material-icons-outlined {
  vertical-align: middle;
}

.material-icons-outlined#confirmclose {
  float: right;
  padding: 10px;
}

.autocomplete-items {
  position: relative;
  background: rgba(242, 242, 242, 1);
  opacity: 1;
  /* border: 1px solid rgba(97, 97, 97, 1); */
  border: 0.2px solid #C6C6C6;
  border-bottom: none;
  border-top: none;
  z-index: 20;
  /*position the autocomplete items to be the same width as the container:*/
  /* top: 100%; */
  left: 0;
  right: 0;
  font-size: 12px;
  font-weight: 500;
  border-radius: 0px 0px 6px 6px;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background: rgba(242, 242, 242, 0.4);
  border-bottom: 1px solid rgba(97, 97, 97, 0.2);
  border-radius: 0px 0px 6px 6px;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background: DodgerBlue;
  color: #ffffff;
}


/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.closebutton {
  border: none;
  padding: 5px;
  float: right;
  background-color: white;
  cursor: pointer;
}

.previewpopupcontent {
  /* position: fixed; */
  background-color: #ffffff;
  margin: auto;
  padding: 10px;
  /* box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
    border-radius: 15px; */
  /* height: 500px;
    width: 400px; */
  overflow: auto;
}

#dateinfo {
  display: none;
  /* position: relative; */
  /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%; */
  z-index: 9999;

  overflow: hidden;
  margin: auto;
  /* max-height: 100%;
    min-height: 10px;
    min-width: fit-content; */

  position: absolute;
  /* top:-1px; */
  transform: translateX(-25%) translateY(-120%);
  /* transform: translate(-50%, -50%); */
  vertical-align: 5px;
  width: fit-content;
  height: 30px;
  background: #E5E9EF;
  mix-blend-mode: normal;
  border: 3px solid #E0E6EF;
  box-sizing: border-box;
  border-radius: 15px;
  color: #465E82;
  padding: 5px;
}

#infoicon {
  font-size: var(--fs-450);
  padding-left: 5px;
  cursor: pointer;
}

#appttime {
  background: rgba(242, 242, 242, 0.4);
  border: 1px solid rgba(97, 97, 97, 0.2);
  box-sizing: border-box;
  border-radius: 6px;
  height: 30px;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  padding-left: 5px;
}

.headerwarning {
  display: flex;
  justify-content: space-between;
  background: #314C74;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0px 0px;
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

/* #loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  } */
/*   
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  } */

.header {
  display: flex;
  justify-content: space-between;
  background: #314C74;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0px 0px;
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.refform p {
  margin-top: 1em;
  margin-bottom: 1em;
}

.refform {
  padding: 20px;
  padding-bottom: 10px;
  text-align: left;
  line-height: 2px;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 80%;
}

.refform p {
  margin-top: 1em;
  margin-bottom: 1em;
}

.refform #specialty {
  height: 50px;
}

.refform #subject {
  height: 50px;
}

.refform #message {
  display: flex;
  flex-direction: column;
  height: 40%;
}

.refform #remarks {
  display: flex;
  flex-direction: column;
  height: 30%;
}

.refform .container1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 15px;
}

.refform .container1 .container2 {
  height: 50px;
  width: 45%;
}

.refform .container3 {
  height: 50px;
  width: 45%;
  padding-bottom: 15px;
}

.refform .container4 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 15px;
}

.refform .container4 .container2 {
  height: 50px;
  width: 45%;
}

.refform .container5 {
  display: flex;
  flex-direction: column;
  min-height: 40%;
  padding-bottom: 15px;
  width: 100%
}

.refform .container6 {
  display: flex;
  flex-direction: column;
  min-height: 30%;
  width: 100%;
  padding-bottom: 15px;
}

.headerbuttons {
  float: right;
  padding: 1px 2px;
  cursor: pointer;
  font-size: 14px !important;
}

#createbutton {
  width: 100%;
  text-align: left;
  border: 0;
  color: #7D7E8C;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  margin-bottom: 0;
}

.createnewpopup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 20;
  background: #FFFFFF;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 0px 0px;
  overflow: auto;
  margin: auto;
  max-height: 100%;
  min-height: 500px;
  min-width: fit-content;
  width: 480px;
  max-width: 100%;
}

.popupcontentreferral {
  /* position: fixed; */
  background-color: #ffffff;
  margin: auto;
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  height: 500px;
  width: 480px;
  overflow: hidden;
}

::placeholder {
  color: #7D7E8C;
  font-size: 12px;
  font-family: "Poppins";
  /* font: sans-serif; */
  font-style: normal;
}

.navigation-section {
  min-width: 230px;
  width: 230px;
  max-width: 230px;
  height: 100vh;
  background-color: white;
  font-size: var(--fs-300);
}

.navigation-section img {
  width: 130px;
  position: relative;
  top: 50px;
  left: 50px;
}

.main-section {
  -webkit-box-flex: 88%;
  -ms-flex: 88%;
  flex: 88%;
  height: 100vh;
  background-color: #f8f8fc;
  padding: 0 30px;
  overflow: auto;
}

.header-section {
  background-color: white;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.primary-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  background-color: #313896;
  color: white;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 28px;
  border-radius: 5px;
  border: 2px solid #313896;
  outline: none;
  margin: 5px;
}

.primary-button i {
  vertical-align: bottom;
  margin-right: 5px;
}

.primary-button:active,
.primary-button:hover {
  outline: none;
  background-color: white;
  color: #313896;
}

.secondary-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: #c4c4c4;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 30px;
  border-radius: 5px;
  border: 2px solid black;
  color: black;
  outline: none;
  margin: 5px;
}

.secondary-button:active,
.secondary-button:hover,
.tertiary-button:active,
.tertiary-button:hover {
  outline: none;
  background-color: white;
  color: black;
}

.secondary-button:disabled {
  border: 2px solid #a7a9c0;
  color: #a7a9c0;
}

.minimal-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: inherit;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 30px;
  border-radius: 5px;
  border: none;
  margin: 5px;
}

.minimal-button:active,
.minimal-button:hover {
  outline: none;
  background-color: white;
  color: black;
  border: 2px solid black;
}

.minimal-button:focus {
  outline: none;
  background-color: white;
  color: black;
  border: none;
}

.header-section label#display-username {
  font-size: 14pt;
  margin-right: 50px;
}

.header-section label#display-username i {
  vertical-align: text-bottom;
  margin-right: 5px;
}

.inline {
  display: inline;
}

#search-bar {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#search-bar input {
  line-height: 30px;
  width: 230px;
}

#search-bar button {
  vertical-align: middle;
}

#search-bar label#search-patient-msg {
  display: block;
  margin: 10px 0 0 65px;
}

#search-bar input#patientList_page {
  width: 50px;
  text-align: center;
}

#search-bar input#patientList_page:disabled {
  background: white;
  color: black;
  border: none;
}

#search-bar label[for="corporateSelect"] {
  font-size: 14pt;
  vertical-align: middle;
  margin-left: 20px;
}

#search-bar select#corporateSelect {
  height: 30px;
  font-size: 13px;
}

#content-patient {
  padding-top: 60px;
}

#content-patient #content-top-bar {
  text-align: right;
  margin-bottom: 10px;
}

#content-patient #patient-form {
  margin-right: 20px;
}

#content-patient #patient-form .grid-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 190px 300px;
  grid-template-columns: 190px 300px;
  margin-bottom: 10px;
}

#content-patient #patient-form .grid-item {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

label {
  font-size: 14px;
}

#content-patient #patient-form input#name {
  width: 284px;
}

#content-patient #patient-form input#dob,
#content-patient #patient-form select#gender,
#content-patient #patient-form select#ethnicity,
#content-patient #patient-form input#mobileNumber,
#content-patient #patient-form input#emailAddress {
  width: 180px;
}

#content-patient #medicalinfo-patient {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  padding: 10px;
  border-radius: 20px;
  width: 484px;
}

#content-patient #medicalinfo-patient input {
  font-size: 15px;
}

#content-patient #medicalinfo-patient input:-moz-read-only {
  outline-width: 0;
  border: none;
  background: inherit;
}

#content-patient #medicalinfo-patient input:read-only {
  outline-width: 0;
  border: none;
  background: inherit;
}

#content-patient #medicalinfo-patient .grid-container-patient {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 190px auto;
  grid-template-columns: 190px auto;
  margin-bottom: 10px;
}

#content-patient #medicalinfo-patient .grid-item-patient {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

#content-patient #medicalinfo-patient ul#patientCorporateList {
  font-size: 15px;
  list-style-type: none;
  margin: 0 0 0 -8px;
  padding: 0;
}

#content-patient #medicalinfo-patient ul#patientCorporateList li {
  margin-left: 10px;
}

#content-patient #medicalinfo-patient ul#patientCorporateList li span {
  vertical-align: super;
}

#content-patient #toggle-view-patient {
  margin: 20px 0;
}

#content-patient #toggle-view-patient h3 {
  margin: 0;
}

nav {
  position: relative;
  top: 80px;
}

nav ul {
  list-style-type: none;
  margin-left: -10px;
  padding-inline-start: 40px;
  margin-inline-start: -10px;
  margin-block-start: 1em;
  margin-block-end: 1em;
  line-height: normal;
}

nav ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

nav ul li i {
  vertical-align: bottom;
  margin-right: 5px;
  color: #a7a9c0;
  display: block;
}

nav ul li a {
  font-weight: bold;
  text-decoration: none;
  color: #a7a9c0;
  display: block;
  font-weight: 600;
  /*temporary solution for navigation sidebar*/
}

nav ul li a:hover {
  color: #33cccc;
}

#info-patient {
  background-color: #eeeff7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 58px 10px 10px;
}

#info-patient1 {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#info-patient a {
  vertical-align: middle;
  margin-right: 30px;
  color: blue;
}

#info-patient a:hover {
  color: #33cccc;
}

#info-patient input {
  background-color: inherit;
  border: none;
  font-size: 16px;
  width: 100px;
}

#info-patient1 input {
  background-color: inherit;
  border: none;
  width: 200px;
}

#info-patient input:last-child {
  width: auto;
}

#info-patient input:focus {
  outline-width: 0;
}

table#patientlisttable {
  border-collapse: collapse;
  width: 100%;
  -webkit-box-shadow: 0px 4px 4px 0px #c4c4c4;
  box-shadow: 0px 4px 4px 0px #c4c4c4;
}

table#patientlisttable td,
table#patientlisttable th {
  border: #c4c4c4;
  padding: 10px;
}

table#patientlisttable tr:nth-child(odd) {
  background-color: #eeeff7;
}

table#patientlisttable th {
  padding: 10px 0;
  text-align: left;
  background-color: white;
  border-bottom: 2px solid #303037;
}

table#patientlisttable td#data-id {
  width: 150px;
}

table#patientlisttable td#data-profile-link {
  width: 100px;
}

table#patientlisttable td#data-profile-link a {
  color: blue;
}

.searchfilter {
  background: white;
  max-width: 100%;
  margin-top: 15px;
  margin-bottom: 110px;
  padding: 10px;
  padding-top: 30px;
  font-size: 12px;
  min-height: 150px;
  border-radius: 0px 0px 15px 15px;
}

.searchfilterrows {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 15px;
}

.searchfilterfields {
  height: 50px;
  width: 45%;
}

.searchfilterperiodstart {
  width: 45%;
  margin-right: 5px;
}

.searchfilterperiodend {
  width: 45%;
  margin-left: 5px;
}

.searchfilternames {

  font-family: var(--ff-sans-normal);
  font-size: var(--fs-150);
  font-weight: 700;
  line-height: 14px;
  color: #717171;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 10px;

}

.relativeposition {
  position: relative;
}

.searchbutton {
  padding: 10px;
}

.searchbaricon {
  right: 2px;
  top: 5px;
  position: absolute;
  color: #A1A1A1;
  font-size: 20px;
}

.subheader {
  color: #70829D;
}

#dashboard-referral {
  margin-top: 15px;
}

#limitdashboardreferrals {
  font-size: 12px;
  float: right;
  padding-right: 5px;
}

#dashboardreferralpage {
  width: 25px;
  float: right;
}

table#hsrecordtable,
table#hsreporttable,
table#referralrecordtable,
table#referraltable,
table#patientlisttablenew {
  border-collapse: collapse;
  width: 100%;
  -webkit-box-shadow: 0px 4px 4px 0px #c4c4c4;
  box-shadow: 0px 4px 4px 0px #c4c4c4;
}

table#hsrecordtable thead,
table#hsreporttable thead,
table#referralrecordtable thead,
table#referraltable thead,
table#patientlisttablenew thead {
  background-color: #7788A3;

  font-family: var(--ff-sans-normal);
  font-size: var(--fs-200);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  border-bottom: 3px #FFFFFF;

}


table#hsrecordtable tbody,
table#hsreporttable tbody,
table#referralrecordtable tbody,
table#referraltable tbody,
table#patientlisttablenew tbody {
  background-color: #f3f4f7;
  font-family: var(--ff-sans-normal);
  font-size: var(--fs-150);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;

}

table#referralrecordtable tbody tr {
  height: 33px;
}

table#hsrecordtable tbody tr,
table#hsreporttable tbody tr,
table#referralrecordtable tbody tr,
table#referraltable tbody tr,
table#patientlisttablenew tbody tr {
  border-bottom: 3px #FFFFFF;
  color: #7D7E8C;
  height: 33px;
}

table#hsrecordtable tr {
  height: 64px;
}

table#hsrecordtable thead td,
table#hsreporttable thead td,
table#referralrecordtable thead td,
table#referraltable thead td,
table#patientlisttablenew thead td {
  /* color: #000; */
  color: white;
  border-bottom: 3px solid white;
  height: 52px;
}

table#hsrecordtable td,
table#hsreporttable td,
table#referralrecordtable td,
table#referraltable td,
table#patientlisttablenew td {
  height: 36px;
  padding: 0px 8px;
  border-bottom: 2px solid white;
  text-align: left;

}

table#hsrecordtable td a,
table#hsreporttable td a,
table#referralrecordtable td a,
table#referraltable td a,
table#patientlisttablenew td a {
  /* color: blue; */
  color: #314C74;
  text-decoration: underline;
  cursor: pointer;
}

#referralmessage {
  white-space: pre;
}

#referralpreview {
  padding: 20px;
}

#referralpreview button {
  /* position: fixed; */
  right: 0.7em;
  bottom: 0.7em;
}

.aligncenter {
  display: flex;
  align-items: center;
}

#hsbutton {
  border: 0px;
  color: #617594;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  border-bottom: 4px solid #E1E7EF;
}

#refbutton {
  border: 0px;
  color: #70829D;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  cursor: pointer;
  opacity: 0.6;
}

.success-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  background-color: #33cccc;
  border: 2px solid #33cccc;
  color: white;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border-radius: 5px;
  margin: 5px;
}

.success-button:active,
.success-button:hover {
  outline: none;
  background-color: white;
  color: #33cccc;
}

.success-button:focus {
  outline: none;
  background-color: white;
  color: #33cccc;
}

.success-button:disabled {
  color: #a7a9c0;
  background: inherit;
  border: 2px solid #a7a9c0;
  opacity: 50%;
  cursor: default;
}

.dottedactionbutton {
  color: #ABABAB;
  border: 0px;
  font-size: 30px;
  background-color: #f3f4f7;
  border: 0px;
  cursor: pointer;
}

.actions {
  z-index: 1;
  position: absolute;
  background: #FFFFFF;
  border: 0.2px solid #C6C6C6;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}


.actions button {
  display: block;
  min-width: max-content;
  width: 100%;
  border: 0.2px solid #C6C6C6;
  background-color: transparent;
  padding: 8px;
  text-align: left;
}

.actions button:enabled {
  cursor: pointer;
  color: #575757;
}

#actionDropdown {
  display: none;
  z-index: 1;
  position: absolute;
}

.primary-navigation {
  --gap: 8rem;
  --underline-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-navigation a {
  text-decoration: none;
}

.primary-navigation a>span {
  text-decoration: none;
  margin-right: .5em;
}

.underline-indicators {
  width: 100%;
  text-align: left;
  border: 0;
  color: #7D7E8C;
  text-decoration: underline;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
}

.underline-indicators>* {
  cursor: pointer;
  padding: var(--underline-gap, 1rem) 0;
  border: 0;
  border-bottom: .2rem solid hsl(var(--clr-white) /0);
}

.underline-indicators>*:hover,
.underline-indicators>*:focus {
  border-color: var(--clr-white) / 0.5;
}


.underline-indicators>.active,
.underline-indicators>[aria-selected="true"] {
  color: hsl(var(--clrwhite) / 1);
  border-color: hsl(var(--clr-white) / 1);
}

.margin {
  margin-bottom: 30px;
}

.dashboard-icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 15px;
}

.referral {
  width: 500px;
  height: 400px;
  border-radius: 15px;
}

.totalreferral {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 100%;
  /* justify-content: space-between; */
}

.referralgraph {
  max-width: 100%;
  height: 580px;
  border-radius: 15px;
  padding-top: 25px;
  padding-left: 35px;
  margin-top: 15px;
  margin-bottom: 110px;
}

.blank_row {
  height: 10px !important;
  /* overwrites any other rules */
  background-color: #FFFFFF;
}

.pie {
  /* height: 20em;
  width: 33em; */
  height: 330px;
  width: 393px;
  margin: 15px 15px 0px 0px;
  padding-top: 25px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 35px;
  border-radius: 15px;
}

th {
  text-align: left;
}

table#testtable td:nth-of-type(1),
table#testtable2 td:nth-of-type(1) {
  table-layout: fixed;
  width: 180px;
}

.referraltable {
  position: relative;
  /* height: 20em;
  width: 33em; */
  height: 330px;
  width: 393px;
  margin: 15px 15px 0px 0px;
  border-radius: 15px;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 35px;
  /* overflow: auto; */
}

.container-table {
  position: relative;
  height: 190px;
  width: 340px;
  /* padding-right: 20px; */
  overflow-y: scroll;
}

.container-table::-webkit-scrollbar {
  width: 10px;
}

.container-table::-webkit-scrollbar-track {
  background: #FFFFFF;
  /* border-radius: 20px; */
}

.container-table::-webkit-scrollbar-thumb {
  background: #E8E8E8;
  border-radius: 20px;
}

.bar-graph {
  position: relative;
  height: 527px;
  /* max-width: 100%; */
  /* padding-right: 20px; */
  /* overflow-y: scroll; */
  overflow-x: scroll;
  /* width: 100%; */
}

.bar-graph::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.bar-graph::-webkit-scrollbar-track {
  background: #FFFFFF;
  margin: 10px;
  /* border-radius: 20px; */
}

.bar-graph::-webkit-scrollbar-thumb {
  background: #E8E8E8;
  border-radius: 20px;
}

ul.breadcrumb li a:visited {
  text-decoration: none;
  color: var(--clr-blue-01);
}

ul.breadcrumb li a:hover {
  text-decoration: none;
  color: var(--clr-blue-01);
}

ul.breadcrumb li a:focus {
  text-decoration: none;
  color: var(--clr-blue-01);
}

ul.breadcrumb li a:hover,
a:active {
  text-decoration: none;
  color: var(--clr-blue-01);
}

ul.breadcrumb {
  padding: 0;
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}

ul.breadcrumb li {
  display: inline;
  color: var(--clr-blue-01);
}

ul.breadcrumb p {
  display: inline;
}

.dropdown {
  float: left;
  overflow: visible;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  border-radius: 10px;
  min-width: 220px;
  color: rgba(242, 242, 242, 0.4);
  z-index: 1;
}

.dropdown-content a {
  position: relative;
  background-color: hsl(var(--clr-blue-15), 0, 40%);
  float: none;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* .specialtydropdown {
  float: left;
  overflow: visible;
  position: relative;
}

.specialtydropdown-content {
  display: none;
  position: absolute;
  border-radius: 10px;
  min-width: 220px;
  color: rgba(242, 242, 242, 0.4);
  z-index: 1;
}

.specialtydropdown-content a {
  position: relative;
  background-color: hsl(var(--clr-blue-15), 0, 40%);
  float: none;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
} */

/* .dropdown:hover .dropdown-content {
  display: block;
} */

.dropbtn {
  display: flex;
  align-items: center;
  border-width: 0;
  outline: none;
  background-color: inherit;
  margin: 0;
}

/* .specialtydropbtn {
  display: flex;
  align-items: center;
  border-width: 0;
  outline: none;
  background-color: inherit;
  margin: 0;
} */

.ExecButton {
  margin-top: 800px;
  margin-left: 48%;
}

.semiTransparenDiv {
  width: 100%;

  /*-Lets Center the Spinner-*/
  position: absolute;
  /* position: fixed; */
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  /*Centering my shade */
  /* margin-bottom: 40px;
    margin-top: 90px; */

  background-color: rgba(255, 255, 255, 1.0);
  z-index: 9999;
  display: none;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.semiTransparenDiv::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 35px;
  height: 35px;
  border-style: solid;
  border: 3px solid #E9E9E9;
  border-top-color: #7F93B4;
  border-width: 5px;
  border-radius: 50%;
  margin: -10px 0 0 -10px;
  -webkit-animation: spin .8s linear infinite;

  /* Lets make it go round */
  animation: spin .8s linear infinite;
}

.referralloader {
  /* width: 100%; */
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;

  /*-Lets Center the Spinner-*/
  /* position: absolute; */
  /* position: fixed; */



  /*Centering my shade */
  /* margin-bottom: 40px;
  margin-top: 90px; */
  /* 
  background-color: rgba(255, 255, 255, 1.0); */
  z-index: 9999;
}

.referralloader::after {
  content: '';
  display: block;
  /* position: absolute; */
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border: 3px solid #DBDBDB;
  border-top-color: #575757;
  border-width: 5px;
  border-radius: 50%;
  margin: -10px 0 0 -10px;
  -webkit-animation: spin .8s linear infinite;

  /* Lets make it go round */
  animation: spin .8s linear infinite;
}

.authorization {
  display: block;
  /* position: relative; */
  /* top: 60%; */
  /* left: 2rem; */
  border-radius: 15px;
  text-align: center;
  /* padding-left: 1rem; */
  /* padding-right: 1rem; */
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #E5E9EF;
  color: #465E82;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 8px;
  line-height: 11px;
  width: 70%;
}

#bluroverlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.selectdropdown {
  width: 155.02px;
  height: 21.65px;
  font-family: Poppins;
  text-align: left;
  text-indent: 5%;
  border: 1.01939px solid rgba(97, 97, 97, 0.2);
  border-radius: 6.11635px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAPCAYAAAAGRPQsAAAA4WlDQ1BzUkdCAAAYlWNgYDzNAARMDgwMuXklRUHuTgoRkVEKDEggMbm4gAE3YGRg+HYNRDIwXNYNLGHlx6MWG+AsAloIpD8AsUg6mM3IAmInQdgSIHZ5SUEJkK0DYicXFIHYQBcz8BSFBDkD2T5AtkI6EjsJiZ2SWpwMZOcA2fEIv+XPZ2Cw+MLAwDwRIZY0jYFhezsDg8QdhJjKQgYG/lYGhm2XEWKf/cH+ZRQ7VJJaUQIS8dN3ZChILEoESzODAjQtjYHh03IGBt5IBgbhCwwMXNEQd4ABazEwoEkMJ0IAAHLYNoSjH0ezAAAACXBIWXMAABJ0AAASdAHeZh94AAAA4klEQVQ4jaWTwVHDMBREdzOMzymBEigBH9dV4BJSAbgDSnAH4ujxhdCJSnAD+j8XmzHCOInY09fO6GlXGhGzxnF8MrNXAEeUKT4sk5kFAI+FIADAYRlIlib6DUspdf+Fcb0YhuETwHMJyN27Q2a0JKcCVpT09gMmKd5bl+Tk7jWwurNFTdO8AzjfCkspdZLiJgy4va67f82H40+YpGhmpyusCOBlbWzCZmBP8mMn1Xe9qzAAqKqqnRPk6iX1ubkLq+t6cvc2s6O7b774LgwAJJ2XzSQnMzvl9e5WCOEYQtj9vxf1cV/Bak5/CQAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 5% 30%;
}

#limitpatientreferrals {
  width: 45px;
  color: #313774;
  background-size: 0.6rem 0.5rem;
  text-align: center;
}


/* #avgtatcard:hover {
  background-color: #000000;   #E5E9EF; 
} */

/* .unblur {
  filter: blur(0px);
} */

/* body {
  filter: blur(2px)
} */

/* body :not(#referralpreview *) {
  filter: blur(2px)
}

body :not(#referralpreview) {
  filter: blur(2px)
} */

/* body :not(.unblur) {
  filter: blur(2px)
} */

/* body :not(.unblur),
body :not(.unblur *) {
  filter: blur(2px);
}

body :not(.unblur) * {
  filter: blur(2px);
}
.blurbg {
  filter: blur(8px);
  opacity: 0.5;
  background: rgba(0, 0, 0, 0.5);
} */

a.togglelinks {
  font-size: 1.17em;
  padding: 0 16px;
}

a.inactive {
  cursor: default;
  color: #303037;
  text-decoration: none;
}

a.active {
  cursor: pointer;
  color: #33cccc;
}

/* tables */
.tablerecords {
  border-collapse: collapse;
  width: 100%;
  -webkit-box-shadow: 0px 4px 4px 0px #c4c4c4;
  box-shadow: 0px 4px 4px 0px #c4c4c4;
}

.tablerecords thead {
  background-color: #7788A3;
  position: relative;
  height: 52px;
  font-family: var(--ff-sans-normal);
  font-size: var(--fs-200);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;
  border-bottom: 3px #FFFFFF;

}


.tablerecords tbody {
  background-color: #f3f4f7;
  font-family: var(--ff-sans-normal);
  font-size: var(--fs-150);
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0em;
  text-align: left;

}

.tablerecords tbody tr {
  border-bottom: 3px #FFFFFF;
  color: #7D7E8C;
  height: 33px;
}

.tablerecords thead td {
  /* color: #000; */
  color: white;
  border-bottom: 3px solid white;
  height: 52px;
}

.tablerecords td {
  height: 36px;
  padding: 0px 8px;
  border-bottom: 2px solid white;
  text-align: left;

}

.tablerecords td a {
  /* color: blue; */
  color: #314C74;
  text-decoration: underline;
  cursor: pointer;
}

.tableaddbtn {
  font-size: 20px;
  cursor: pointer
}

/* end of tables */

/* pagination for tables */
.pagination-container {
  align-items: center;
}

.pagination-container2 {
  justify-content: end;
  align-items: center;
}

.pagination-label {
  padding-top: 2px;
  padding-right: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;

  display: flex;
  align-items: center;

  color: #7D7E8C;
}

.pagination-dropdown {
  height: 30px;
  width: 60px;
  margin-right: 15px;
  background: rgba(242, 242, 242, 0.4);
  border: 1px solid rgba(97, 97, 97, 0.2);
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 14px;
  display: flex;
  align-items: center;
  text-align: center;

  color: #313774;
}

.pagination-pagenumber {
  width: 25px !important;
  background: #E8EBF1 !important;
  box-shadow: 0px 1px 3px rgba(230, 234, 238, 0.6);
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 14px;
  align-items: center;
  color: #313774;
}

.pagination-button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  /* font-family: "Roboto", sans-serif; */
  background: #E8EBF1;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 30px;
  box-shadow: 0px 1px 3px rgba(230, 234, 238, 0.6);
  border-radius: 6px;
  color: #313774;
  /* border: 2px solid black; */
  /* color: black;
  outline: none; */
  border: 2px solid rgba(97, 97, 97, 0.2);
  font-weight: 500;

  margin: 5px;
}

.pagination-button:active,
.pagination-button:hover {
  outline: none;
  background-color: white;
  /* color: black; */
}

.pagination-button:disabled {
  background-color: white;
  color: #a7a9c0;
  cursor: auto;
  border: 1px solid #a7a9c0;
}

/* end of pagination for tables */

/* oidc */
/* oidc login */
#signinLogo a {
  display: block;
  max-width: 180px; 
  margin: 0 auto;
}

#signinLogo img {
  width:  100%;
}

.oidc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 25rem;
  /* border: 1px solid black; */
}

.oidcinput {
  width: 412px;
  height: 37px;
  margin-top: 15px;
}

/* .oidcinputoverall {
  background-color: var(--clr-white);
  border-radius: 5px;
} */

.oidcinput input[type="text"] {
  /* width: 376px; */
  height: 37px;
  background-color: var(--clr-white);
  border-radius: 5px;
  padding-left: 36px;
}

.oidcinput input[type="password"] {
  /* width: 376px; */
  height: 37px;
  background-color: var(--clr-white);
  border-radius: 5px;
  padding-left: 36px;
  width: 100%;
  border: 1px solid rgba(97, 97, 97, 0.2);
  box-sizing: border-box;
  text-indent: 6px;
  font-size: 12px;
  font-weight: 500;
}

.oidcinput input[type="text"]::-webkit-input-placeholder {
  color: #7D7E8C;
  font-size: 12px;
  font-family: "Poppins";
  /* font: sans-serif; */
  font-style: normal;
}

.oidc-cancel-btn{
  font-family: "Poppins";
  font-style: normal;
  color: #718FBF;
  font-weight: 700;
  font-size: 11px;
  inline-size: 15px;
  text-align: left;
  margin-top: 13px;
}

input#id_organization {
  font-family: "Poppins";
}

.oidcfunctions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 0.9rem;
  /* align-items: center; */
}

.oidcinput input[type="checkbox"] {
  /* -moz-appearance:none;
  -webkit-appearance:none;
  -o-appearance:none; */
  /* position: absolute;
  opacity: 0; */
  cursor: pointer;
  height: 11px;
  width: 11px;
  visibility: visible;
  /* height: 11.25px;
  width: 11.25px;
  border: 1.32px solid #D4D4D4;
  border-radius: 2.63541px; */
}

.oidcfunctions.checkmark {
  position: absolute;
  /* left:10px */
  height: 15px;
  width: 15px;
  border: 1px var(--clr-grey-02);
  border-radius: 6px;
  z-index: 10;
  background-color: var(--clr-white);
}

.oidcfunctions input:checked~.checkmark {
  background-color: var(--clr-blue-11);
}

.oidcfunctions input:checked~.checkmark:after {
  display: block;
}

.oidcfunctions .checkmark:after {
  left: 2px;
  top: 0.5px;
  width: 3px;
  height: 6px;
  border: 0.1px solid #D4D4D4;
  border-width: 0 1.7px 1.7px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.oidcfunctions .checkmarklabel1 {
  padding-left: 1rem;
  position: relative;
}

.oidcbutton {
  border-radius: 5px;
  border: 0px;
  position: absolute;
  width: 412px;
  height: 37px;
  cursor: pointer;
  margin-top: 1rem;
}

.oidcbutton2 {
  border-radius: 5px;
  border: 0px;
  width: 130px;
  height: 30px;
  cursor: pointer;
}

.oidcbutton3 {
  border-radius: 5px;
  border: 0px;
  /* width: 200px; */
  /* width: 100%; */
  /* height: 30px; */
  cursor: pointer;
}

.oidctext {
  width: 25rem;
  height: 37px;
  margin-top: 15px;
  text-align: center;
}

.oidctext img {
  display: inline-block;
  mix-blend-mode: multiply;
  height: 15rem;
  width: 15rem;
}

/* #id_token input[type="text"]{
  background-color: white;
} */

/* end of oidc login */

/* package selector */
.packageheader {
  display: flex;
  /* justify-content: space-between; */
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  padding: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: auto;
  color: white;
  font-weight: 700;
  font-size: 12px;
  align-items: center;
  justify-content: center;
}

.packageselector {
  /* display: flex;
  flex-wrap: wrap; */
  height: 25rem;
  overflow: auto;
}

.packageselector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}

.packageselector::-webkit-scrollbar {
  width: 10px;
}

.packageselector::-webkit-scrollbar-track {
  background: var(--clr-grey-06);
  /* border-radius: 20px; */
}

.packageselector::-webkit-scrollbar-thumb {
  background: #E8E8E8;
  border-radius: 20px;
}

.packagecontentleft {
  background: var(--clr-white);
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 15px 15px;
  margin-left: 1.5rem !important;
  margin-right: 0.7rem !important;
  overflow: auto;
  margin: auto;
  height: fit-content;
  min-width: fit-content;
  width: 47%;
  max-width: 100%;
}

.packagecontentright {
  background: var(--clr-white);
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 15px 15px;
  margin-left: 0.7rem !important;
  margin-right: 1.5rem !important;
  overflow: auto;
  margin: auto;
  height: fit-content;
  min-width: fit-content;
  width: 47%;
  max-width: 100%;
}

.largepackagecontent {
  background: var(--clr-white);
  box-shadow: 0px 0px 8.77px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 15px 15px;
  overflow: auto;
  margin: auto;
  height: fit-content;
  min-width: fit-content;
  width: 95.5%;
  max-width: 100%;
}

.packagebody {
  padding-left: 20px;
  padding-top: 30px;
  padding-bottom: 50px;
  font-weight: 500;
  font-size: 10px;
  line-height: 26px;
}

.packageflex {
  display: flex;
  flex-direction: horizontal;
  justify-content: center;
  padding-bottom: 50px;
}

.packageselector-header input {
  background-color: var(--clr-white) !important;
}

.packagebody input[type="checkbox"] {
  /* -moz-appearance:none;
  -webkit-appearance:none;
  -o-appearance:none; */
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  /* height: 11.25px;
  width: 11.25px;
  border: 1.32px solid #D4D4D4;
  border-radius: 2.63541px; */
}

.checkmark {
  position: absolute;
  /* left:10px */
  height: 11.25px;
  width: 11.25px;
  border: 2px solid #D4D4D4;
  border-radius: 2.6px;
  z-index: 10;
  background-color: var(--clr-white);
  left: -5px;
  margin-top: 8px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  /* left: -10px */
}

.packagebody input:checked~.checkmark {
  background-color: var(--clr-blue-11);
}

.packagebody input:checked~.checkmark:after {
  display: block;
}

.packagebody .checkmark:after {
  left: 2px;
  top: 0.5px;
  width: 3px;
  height: 6px;
  border: 0.1px solid #D4D4D4;
  border-width: 0 1.7px 1.7px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkmarklabel {
  padding-left: 20px;
  position: relative;
}

/* .packagebody input[type="checkbox"]:checked{
  
  background-color: #F0F2F5;
  height: 11.25px;
  width: 11.25px;
  border: 1.32px solid #D4D4D4;
  border-radius: 2.63541px;
} */

.packagecontainer {
  background-color: var(--clr-grey-06);
  width: 90%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.packageinput {
  /*predictive search*/
  width: 460px;
  height: 30px;
  padding-left: 20px;
}

/* end of package selector */

/* new popup */
.displayinlineblock {
  display: inline-block;
}

.displayinline {
  display: inline;
}

.errormsgred {
  font-family: "Poppins";
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #B34141;
}

.footerpopupdivleft{
  justify-content: left; 
  align-items: center; 
  width: 50%;
}

.footerpopupdivright{
  justify-content: right; 
  align-items: center; 
  width: 50%;
}
/* end of new popup */

/* preview popup */
.previewelements {
  justify-content: space-between; 
  padding-bottom: 15px;
}

.previewinput {
  height: 50px; 
  width: 45%;
}

.previewtextinput {
  height: 100%; 
  padding-bottom: 15px;
  width: 100%;
}

.previewremarksinput {
  height: 70%; 
  width: 100%;
}

.previewfooterleft {
  justify-content: left; 
  align-items: center;
  width: 50%;
}

.previewfooterright {
  justify-content: right; 
  align-items: center;
  width: 50%;
}
/* end of preview popup */

/* confirmation popup */
.warningbg {
  background: #DE7777;
}

.warningcolor {
  color: #DE7777;
}

.warningheadertext {
  padding-top: 15px; 
  font-size: 18px; 
  font-weight: 600;
}

.warningheaderbutton {
  float: right; 
  padding:10px; 
  cursor: pointer;
}
/* end of confirmation popup */

.authorizationmsgbutton {
  width: 160px;
}

/* checkboxes for table header and table rows */

.tablecheckbox {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 20px;
  width: 5px;
}

.tablecheckboxdisabled {
  display: block;
  position: relative;
  cursor: auto;
  font-size: 20px;
  width: 5px;
  opacity: 0.3;
}

/* Hide the default checkbox */
input[type=checkbox] {
  visibility: hidden;
}

/* Creating a custom checkbox
based on demand */
.tablecheckmark {
  position: absolute;
  top: 5px;
  left: 6px;
  height: 10px;
  width: 10px;
  background-color: #7788A3;
  border-color: #FFFFFF;
  border-width: 0.5px 0.5px 0.5px 0.5px;
  border-style: solid;
  border-radius: 3px;
}

.tablerowcheckmark {
  position: absolute;
  top: 5px;
  left: 6px;
  height: 10px;
  width: 10px;
  background-color: #FFFFFF;
  border-color: #7D7E8C;
  border-width: 0.5px 0.5px 0.5px 0.5px;
  border-style: solid;
  border-radius: 3px;
}

/* Specify the background color to be
shown when hovering over checkbox */
.tablecheckbox:hover input~.tablecheckmark {
  background-color: #7788A3;
  border-color: #FFFFFF;
  border-width: 0.5px 0.5px 0.5px 0.5px;
  border-style: solid;
  border-radius: 3px;
}

/* Specify the background color to be
shown when checkbox is active */
.tablecheckbox input:active~.tablecheckmark {
  background-color: #7788A3;
  border-color: #FFFFFF;
  border-width: 0.5px 0.5px 0.5px 0.5px;
  border-style: solid;
  border-radius: 3px;
}

/* Specify the background color to be
shown when checkbox is checked */
.tablecheckbox input:checked~.tablecheckmark {
  background-color: #7788A3;
  border-color: #FFFFFF;
  border-width: 0.5px 0.5px 0.5px 0.5px;
  border-style: solid;
  border-radius: 3px;
}

/* Checkmark to be shown in checkbox */
/* It is not be shown when not checked */
.tablecheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

.tablerowcheckmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Display checkmark when checked */
.tablecheckbox input:checked~.tablecheckmark:after {
  display: block;
}

.tablecheckbox input:checked~.tablerowcheckmark:after {
  display: block;
}

/* Styling the checkmark using webkit */
/* Rotated the rectangle by 45 degree and 
        showing only two border to make it look
        like a tickmark */
.tablecheckbox .tablecheckmark:after {
  left: 4px;
  bottom: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tablecheckbox .tablerowcheckmark:after {
  left: 4px;
  bottom: 2px;
  width: 6px;
  height: 12px;
  border: solid #7D7E8C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* checkboxes for table header and table rows */
