/* @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap'); */

@font-face {
    font-family: 'Source Sans Pro';
    src: url('/static/master/css/fonts/SourceSans3-ExtraLight.ttf') format('truetype');
    font-weight: 200;   
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('/static/master/css/fonts/SourceSans3-Light.ttf') format('truetype');
    font-weight: 300;   
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('/static/master/css/fonts/SourceSans3-Regular.ttf') format('truetype');
    font-weight: 400;   
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('/static/master/css/fonts/SourceSans3-Regular.ttf') format('truetype');
    font-weight: 400;   
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('/static/master/css/fonts/SourceSans3-SemiBold.ttf') format('truetype');
    font-weight: 600;   
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('/static/master/css/fonts/SourceSans3-Bold.ttf') format('truetype');
    font-weight: 700;   
    font-style: normal;
}
@font-face {
    font-family: 'Source Sans Pro';
    src: url('/static/master/css/fonts/SourceSans3-Black.ttf') format('truetype');
    font-weight: 900;   
    font-style: normal;
}


@font-face {
    font-family: 'Font Awesome 5 Brands';
    src: url('/static/third-party/font-awesome/webfonts/fa-brands-400.eot');
    src: url('/static/third-party/font-awesome/webfonts/fa-brands-400.eot?#iefix') format('embedded-opentype'),
         url('/static/third-party/font-awesome/webfonts/fa-brands-400.woff2') format('woff2'),
         url('/static/third-party/font-awesome/webfonts/fa-brands-400.woff') format('woff'),
         url('/static/third-party/font-awesome/webfonts/fa-brands-400.ttf') format('truetype'),
         url('/static/third-party/font-awesome/webfonts/fa-brands-400.svg#fontawesome') format('svg');
    font-weight: 400;
    font-style: normal;
}


:root {
    --color-grey-dark: #777;
    --white: #ffffff;
    --color-light: #e4f1fe;

    --color-blue: #8dc6ff;

    --color-dark: #22313f;

    --color-dark-2: #34495e;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;

    box-sizing: inherit;
}

html {
    /* font-size: 62.5%;  */
    font-size: 50%;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    /* color: #777;
    color: 	#202020;
    color: 	#101010; */
    /* color: var(--color-grey-dark); */

    box-sizing: border-box;
}

.lineh1{
    position: absolute;
    left: 0;
    height: 3rem;
    
    display: none;
}
.lineh1.active{

    display: inline-block;
    width: 130rem;
    overflow: hidden;
}

@keyframes ticker {
    0% { transform: translateX(100%); } /* Start from right edge */
    100% { transform: translateX(-100%); } /* Move to left edge */
}

.ticker_singular_text {
    display: block;
    white-space: nowrap;
    font-size: 2rem;
    animation: ticker 30s linear infinite;
}

.ticker_core_text {

    padding: 0 1rem;
    border-radius: 2rem;
    margin-right: 2rem;
}

@keyframes lineH{
    0%{
        width: 0%;
    }
    100%{
        width: 95%;
        opacity: 0;
    }
}

.blinking {
    width: 6rem;
    height: 6rem;
    position: fixed;
    top: 4rem;
    /* right:.2cm; */
    -webkit-animation: 1s blink ease infinite;
    -moz-animation: 1s blink ease infinite;
    -ms-animation: 1s blink ease infinite;
    -o-animation: 1s blink ease infinite;
    animation: 1s blink ease infinite;
    display: none;
}

.blinking.active {
    display:  inline-block;
}

.heart-beat {
    animation: blink 1s linear infinite;
}

@keyframes "blink" {
    from, to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    from, to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-webkit-keyframes "blink" {
    from, to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-ms-keyframes "blink" {
    from, to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@-o-keyframes "blink" {
    from, to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.appointment_form_wrapper{
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, rgba(131,234,241,1) 0%, rgba(99,164,255,1) 93%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.appointment_form_div {
    width: 50%;
    height: 40rem;
    background-color: var(--white);
    border-radius: 5rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding: 5rem;
    font-size: inherit;
}
.appointment_div_heading {
    width: 100%;
    margin: 2rem auto;
    font-size: 400%;

}

.appointment_div_form {
    font-size: 150%;
}

#editor-code { 
    width:100%;
    height:40em;
    overflow:auto;
}



.appointment_form_wrapper_popup{
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, rgba(131,234,241,1) 0%, rgba(99,164,255,1) 93%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.appointment_form_div_popup {
    width: 90vw;
    height: 90vh;
    background-color: var(--white);
    border-radius: 5rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding: 5rem;
    font-size: inherit;
}
.appointment_div_heading_popup {
    width: 100%;
    margin: 0 0 1rem 0;
    font-size: 250%;
    text-align: center;
}

.appointment_div_form_popup {
    font-size: 150%;
}

#user-input-for-received-otp > * {
    display: none;
}



/* input[type='date']:in-range::-webkit-datetime-edit-year-field,input[type='date']:in-range::-webkit-datetime-edit-month-field,input[type='date']:in-range::-webkit-datetime-edit-day-field,input[type='date']:in-range::-webkit-datetime-edit-text{  color: transparent;} */

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}


.navigation {
    height: 5rem;
    background-color: transparent;
    width: 100vw;
    min-width: 133rem;
    font-size: 2rem;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding: .3rem 4rem .3rem 1rem;
    border: 1px solid green;

    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #F8F8F8; */
}

.navigation__items {
    display: flex;
    gap: .2rem;
    height: 100%;
    cursor: default;
    font-size: 1.8rem;
    align-items: center;
}


.navigation__item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    padding: 1rem 1.5rem;

    position: relative;
}

@keyframes menu-animate {
    0% {
        transform: translate(0,3rem);
    }
    50% {
        transform: translate(0,-.3rem);
    }
    100% {
        transform: translate(0,0rem);
    }
}
.dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + .15rem);
    background-color: white;
    padding: 0.75rem;
    border-radius: .5rem;
    pointer-events: none;
    /* box-shadow: 0 .2rem .5rem 0 rgba(0,0,0,0.1); */
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);

    opacity: 0;
    
    transition: opacity 200ms ease-in-out;

    z-index: 2;
}
.dropdown-menu.left {
    left: -50%;
}

/* .navigation__item > .link:hover + .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
} */

.navigation__item.active > .dropdown-menu {
    opacity: 1;
    transform: translate(0,0);
    pointer-events: auto;
    animation: menu-animate .3s ease-in;
}

.navigation__item:hover {
    transition: all .2s;
    background-color: rgba(119, 119, 119, 0.178);
    color: black;
}

.navigation__item.active {
    color: black;
}

.navigation__item > a {
    text-decoration: none;
    color: inherit;
}

.link {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    width: max-content;
}

.dropdown-links {
    font-size: 85%;
}

.dropdown-links > .link {
    padding: .3rem 1rem;
    border-radius: 2rem;
}

.dropdown-links > .link:hover {
    transition: all .2s;
    background-color: rgba(119, 119, 119, 0.178);
}

.dropdown-links a{
    display: block;
}

.navigation__item i{
    margin-left: .5rem;
    color: rgba(119, 119, 119, 0.622);
    transform: scale(0.8);
}

.information-grid {

    display: grid;
    grid-template-columns: repeat(1, max-content);
    padding: 2rem;
    gap: 2rem;
    max-height: 90vh;
    overflow-y: scroll;

}

.dropdown-heading {
    border-bottom: .2rem solid rgba(119, 119, 119, 0.178);
    margin-bottom: .3rem;
}

.functionality-wrapper {
    margin: 2rem 2.8rem 0 2.8rem;
    padding: 1rem;
    display: flex;
    font-size: 1.6rem;
    width: 100vw;
    min-width: 130rem;
}

.functionality-wrapper-basic {
    padding: .5rem;
    display: flex;
    font-size: 1.6rem;
}

.functionality-item > i {
    font-size: 2rem;
}

.functionality-item > span {
    width: max-content;
}

.functionality-item {
    margin: 0 1rem;
    padding: 1.2rem;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 2rem;
    border: none;
    font: inherit;
    font-size: inherit;
    background-color: rgba(119, 119, 119, 0.05);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.functionality-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}
.functionality-item:hover::before {
    left: 100%;
}

.functionality-item.small {
    margin: 0 .5rem;
    padding: .8rem;
    height: auto;
    display: flex;
    align-items: center;
    border-radius: 1.5rem;
    border: none;
    font: inherit;
    font-size: inherit;
    transition: all .3s;
    background-color: #cce5ff;
    color: #004085;
}

.functionality-item:hover {
    
    background-color: rgba(119, 119, 119, 0.178);
}
.functionality-item.small:hover {
    transform: scale(1.2);
    background-color: #cce5ff;
}

.functionality-item:focus {
    background-color: rgba(119, 119, 119, 0.178);
    
}

.functionality-item i{
    margin-right: 1.2rem;
}


.loading-spinner {
   display: none; 
}

.loading-spinner.active {
    display: inline-block; 
 }

@-webkit-keyframes rotating /* Safari and Chrome */ {
from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
@keyframes rotating {
from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}
}
.rotating {
-webkit-animation: rotating 1s linear infinite;
-moz-animation: rotating 1s linear infinite;
-ms-animation: rotating 1s linear infinite;
-o-animation: rotating 1s linear infinite;
animation: rotating 1s linear infinite;
}



/*  Room Category Master Start    */

.room-history-master-table-wrapper {
    height: max-content;
    max-height: 25rem;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 1.6rem;
}

.room-category-master-table-wrapper {
    height: max-content;
    max-height: 40rem;
    overflow-y: scroll;
    overflow-x: scroll;
    font-size: 1.6rem;
}
.pathology-sub-test-summary-table-wrapper {
    height: max-content;
    max-height: 25rem;
    overflow-y: scroll;
    /* overflow-y: hidden; */
    font-size: 1.6rem;
}

.full-length-table-wrapper {
    height: max-content;
    overflow-y: scroll;
    font-size: 1.6rem;
}

.room-category-master-table {
    padding: 1rem;
    border-collapse: collapse;
    width: 100%;
    /* border: .1rem solid rgba(119, 119, 119, 0.178); */
    /* box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1); */

}

.pathology-sub-test-summary-table {
    padding: 1rem;
    border-collapse: collapse;
    width: 100%;
    border: .1rem solid rgba(119, 119, 119, 0.178);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}

thead { 
    position: sticky; 
    top: 0px; 
    z-index: 1; 
    background-color: white;
    font-weight: 500;
} 

th, td {
    padding: .8rem .1rem;
    text-align: left;
    border-bottom: .1rem solid rgba(119, 119, 119, 0.178);
    word-wrap: break-word;
    font-weight: inherit;
}

tr .small {
    padding: .1rem .1rem;
}

tr .pd-left {
    padding-left: .5rem !important;
}

th.small, td.small {
    padding: .1rem .1rem;
    text-align: left;
    border-bottom: .1rem solid rgba(119, 119, 119, 0.178);
    word-wrap: break-word;
}

td.small.right {
    text-align: right;
}

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

td.right {
    text-align: right;
}

td.center {
    text-align: center;
}

tr {
    transition: all .2s ease-in;
}

tr:hover {
    transform: translate(1.2);
    background-color: rgba(119, 119, 119, 0.178);
    /* background-color: rgba(221, 42, 42, 0.178); */
}

tr:hover .hover_hidden {
    visibility:visible;
}

.hover_hidden {
    visibility: hidden;
}

td > i {
    padding: 0 .8rem;
}

.even {
    background-color: rgba(119, 119, 119, 0.045) !important;
}

.collection-summary-table{
    padding: 1rem;
    border-collapse: collapse;
    width: 100%;
    border: .1rem solid rgba(119, 119, 119, 0.178);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);

}

.collection-summary-table th, .collection-summary-table td {
    border: 1px solid black; /* Adds both horizontal and vertical borders to each cell */
    padding: .1rem; /* Add some padding for better appearance (optional) */
    padding-right: .5rem; /* Add some padding for better appearance (optional) */
    /* Align text to the left (optional) */
    /*text-align: center;*/
}

td.small.right {
    text-align: right;
}

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

td.right {
    text-align: right;
}

td.center {
    text-align: center;
}


/*  Room Category Master End    */


/*  IPD Registration Entry Start    */

.ipd-registration-form-wrapper {
    margin: 1.4rem;
    margin-top: 0;
    padding: .4rem;
    height: 100%;
    /* background-color: #e4f1fe; */
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 1rem;

    display: flex;

    flex-direction: column;
    width: 100vw;
    min-width: 130rem;
}

.ipd-registration-form-wrapper__heading {
    font-size: 2rem;
    font-weight: 300;
    margin: 1rem 1rem 1rem 1rem;
}

.ipd-registration-form-wrapper__form__wrapper__parent {
    display: flex;
    flex-direction: row;
    width: 100vw;
    min-width: 130rem;
}


.modal-form-wrapper__form__wrapper__parent {
    display: flex;
    flex-direction: row;
}

.ipd-registration-form-wrapper__form__wrapper {
    /* background-color: #8dc6ff42; */
    /* max-width: 70%; */
    /* flex-basis: 70%; */
    /* border: .2rem solid lightgrey; */
    margin: 0 .5rem 3rem .5rem;

    /* box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1); */
    box-shadow: 0px 3px 6px -1px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 2rem;

    font-size: 1.5rem;

}

.login_form__form__wrapper {


    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    padding: 2rem;

    font-size: 1.5rem;
    height: 100vh;
    display: flex;
    justify-content: center;
    /* background: linear-gradient(90deg, rgba(0, 255, 235, 1) 0%, rgba(7, 58, 187, 1) 100%); */
    /* background: linear-gradient(90deg, rgba(0, 255, 235, 0.6) 0%, rgba(7, 58, 187, 0.25) 100%); */

    background: linear-gradient(300deg,#75f7d3,#13c4f9);
    background-size: 120% 120%;
    animation: gradient-animation 2s ease infinite;

}

@keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }


.box div {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 6px solid rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
}
.box div:nth-child(1) {
    top: 12%;
    left: 42%;
    animation: animate 10s linear infinite;
}
.box div:nth-child(2) {
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}
.box div:nth-child(3) {
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}
.box div:nth-child(4) {
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}
.box div:nth-child(5) {
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}
.box div:nth-child(6) {
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}
.box div:nth-child(7) {
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}
.box div:nth-child(8) {
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}
.box div:nth-child(9) {
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}
.box div:nth-child(10) {
    top: 20%;
    left: 80%;
    animation: animate 5s linear infinite;
}
@keyframes animate {
    0% {
        transform: scale(0) translateY(0)  rotate(0);
        opacity: 1;
    }
    100% {
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: 0;
    }
}

.bg-img{
    width: 100vw;
    min-width: 133rem;
}

.login_form__form__wrapper_div {
    margin: 0 .5rem 3rem .5rem;

    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 2rem;

    font-size: 1.5rem;

    width: 40vw;
    height: 100vh;
    margin: auto;

    align-items: center;
    height: fit-content;
    background-color: white;

}

@media screen and (max-width: 750px) {

    .login_form__form__wrapper_div {
        width: 50vw;
    }
    .ipd-registration-form-wrapper__heading{
        display: flex;
    }
}

@media screen and (max-width: 610px) {

    .login_form__form__wrapper_div {
        width: 80vw;
    }
    .ipd-registration-form-wrapper__heading{
        display: flex;
    }
}

.login_form__form__wrapper_div > input {

    background-color: white;

}

.ipd-registration-form-wrapper__form__wrapper.w-1 {
    max-width: 10%;
    flex-basis: 10%;
}

.ipd-registration-form-wrapper__form__wrapper.w-15 {
    max-width: 15%;
    flex-basis: 15%;
}

.ipd-registration-form-wrapper__form__wrapper.w-2 {
    max-width: 20%;
    flex-basis: 20%;
}

.ipd-registration-form-wrapper__form__wrapper.w-25 {
    max-width: 25%;
    flex-basis: 25%;
}

.ipd-registration-form-wrapper__form__wrapper.w-3 {
    max-width: 30%;
    flex-basis: 30%;
}

.ipd-registration-form-wrapper__form__wrapper.w-4 {
    max-width: 40%;
    flex-basis: 40%;
}

.ipd-registration-form-wrapper__form__wrapper.w-5 {
    max-width: 50%;
    flex-basis: 50%;
}

.ipd-registration-form-wrapper__form__wrapper.w-6 {
    max-width: 60%;
    flex-basis: 60%;
}

.ipd-registration-form-wrapper__form__wrapper.w-7 {
    max-width: 70%;
    flex-basis: 70%;
}

.ipd-registration-form-wrapper__form__wrapper.w-8 {
    max-width: 80%;
    flex-basis: 80%;
}
.ipd-registration-form-wrapper__form__wrapper.w-85 {
    max-width: 85%;
    flex-basis: 85%;
}

.ipd-registration-form-wrapper__form__wrapper.w-9 {
    max-width: 90%;
    flex-basis: 90%;
}

.ipd-registration-form-wrapper__form__wrapper.w-10 {
    max-width: 100%;
    flex-basis: 100%;
}

.sub-test {
    width: 30%;
    flex-basis: 30%;
    margin-bottom: 5rem;
    margin-left: 2rem;

    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 2rem;

    font-size: 1.6rem;

}

.ipd-registration-form-wrapper__form__wrapper__grid {

    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 6rem;
    /* grid-auto-rows: minmax(6rem, 1000rem); */
    
    /* row-gap: 1rem;
    column-gap: 1rem; */
    gap: .1rem;
}



.input-text-1 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 1;
}

.input-text-1.centre {
    display: flex;
    justify-content: center;
    align-items: center;
}


.input-text-2 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 2;
}

.mandate {
    /* border-bottom: 0.2rem solid;
    border-bottom-color: red !important;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem; */

    border-left: 0.2rem solid;
    /* border-right: 0.4rem solid; */
    /* border-radius: 1rem; */
    border-left-color: red !important;
    /* border-color: red !important; */
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.mandate.searchable {
    border-left: 0.2rem dashed;
    border-right: 0.2rem dashed;
    border-left-color: blue !important;
    border-right-color: blue !important;
    border-radius: 1rem !important;
}

.input-text-1 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 1;
}

.input-text-2 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 2;
}


.input-text-3 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 3;
}

.input-text-4 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 4;
}
.input-text-4-2 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 4;
    grid-row: span 2;
}

.input-text-5 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 5;
}


.input-text-6 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 6;
}

.input-text-6-2 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 6;
    grid-row: span 2;
}

.input-text-7 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 7;
}

.input-text-8 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 8;
}

.input-text-8-2 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 8;
    grid-row: span 2;
}

.input-text-8-4 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 8;
    grid-row: span 4;
}

.input-text-8-6 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 8;
    grid-row: span 6;
}

.input-text-8-8 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 8;
    grid-row: span 8;
}

.input-text-8-12 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 8;
    grid-row: span 12;
}




.input-text-9 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 9;
}

.input-text-10 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 10;
}

.input-text-11 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 11;
}

.input-text-12 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 12;
}

.input-text-13 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 13;
}

.input-text-14 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 14;
}

.input-text-15 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 15;
}

.input-text-16 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 16;
}

.input-text-17 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 17;
}

.input-text-18 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 18;
}

.input-text-19 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 19;
}

.input-text-20 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 20;
}

.input-text-21 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 21;
}

.input-text-22 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 22;
}

.input-text-23 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 23;
}

.input-text-24 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 24;
}


.input-text-24-8 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 24;
    grid-row: span 8;
}

.input-text-24-4 {
    position: relative;
    padding: .5rem;
    margin: .5rem;
    grid-column: span 24;
    grid-row: span 4;
}


.input-text-8 .variable-height {
    grid-row: 1 / -1;
}

.form__input {
    /* position: absolute;
    top: 0;
    left: 0; */
    /* border: none; */
    width: 100%;
    border: .2rem solid rgba(119, 119, 119, 0.583);
    /* border: .2rem solid black; */
    border-width: thin;
    border-radius: .5rem;

    outline: none !important;
    padding: 0 1.5rem;
    background: none;
    font-size: 125%;
    color: black;
    /* color: inherit; */
    transition: all 150ms ease-in;
    height: 4.2rem;
}

.form__textarea {
    width: 100%;
    height: 100%;
    border: .2rem solid rgba(119, 119, 119, 0.583);
    /* border: .2rem solid black; */
    border-width: thin;
    border-radius: .5rem;
    outline: none !important;
    padding: .5rem 1.5rem;
    background: none;
    transition: all 150ms ease-in;
    font: inherit;
    font-size: 105%;
    color: black;
}

.form__input.small {
    width: 80%;
}
.form__input.p2 {
    padding: 1rem;
}
.icon_right {
    margin: .1rem;
}
.action__button {
    width: 100%;
    border: .2rem solid rgba(119, 119, 119, 0.583);
    border-width: thin;
    border-radius: .5rem;
    outline: none !important;
    padding: 0 .5rem;
    background: none;
    font-size: 105%;
    color: black;
    /* color: inherit; */
    height: 4.2rem;
    transform: translateY(0);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.action__button.success {
    color: #155724;
    background-color: #d4edda;
}

.action__button.danger {
    color: #721c24;
    background-color: #f8d7da;
}

.action__button.info {
    color: #856404;
    background-color: #fff3cd;
}

.action__button.alert {
    color: #004085;
    background-color: #cce5ff;
}

.action__button.small {
    border: none;
    width: 15%;
}

.action__button:active {
    transition: all .2s;
    transform: translateY(0);
}

.action__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.action__button:hover {
    transition: all .2s;
    transform: translateY(-.3rem);
    border: .5rem solid #8dc6ff;
    /* border: .5rem solid #8dc6ff; */
    box-shadow: 0 1rem 2rem rgba(0,0,0,.2);
}

.action__button:hover::before {
    left: 100%;
}

.action__button:focus {
    transition: all .2s;
    transform: translateY(-.3rem);
    border: .5rem solid #888;
    box-shadow: 0 1rem 2rem rgba(145, 143, 244, 0.2);
}

.action__button:active {
    transition: all .2s;
    transform: translateY(.2rem);
    background-color: #8dc6ff;
    box-shadow: 0 .6rem 1.2rem rgba(0,0,0,.2);
}

.form__input:hover {
    border-bottom: .5rem solid #8dc6ff;
}
.form__input:focus {
    border-bottom: .5rem solid #888;
    
}

.card_checkbox {
    height: 100%;
    width: 100%;
    margin-left: -1vw;

}

.card_checkbox:hover {
    border: .8rem solid #0b6aca;
}
.card_checkbox:focus {
    border: .8rem solid #8dc6ff;
}

.form__input:disabled {
    border: .2rem solid rgba(119, 119, 119, 0.1);
    /* color: #E8E8E8; */

}


.form__label {
    position: absolute;
    /* left: 1.4rem;
    top: 1.8rem; */

    left: 1.4rem;
    top: 25%;

    padding: 0 0.5rem;
    cursor: pointer;
    transition: top 200ms ease-in,
                left 200ms ease-in, font-size 200ms ease-in;
    background-color: #fff;
    pointer-events: none;
}

.form__input:disabled+.form__label {
    color: #E8E8E8;
}

.form__input::placeholder{
    font-size: 1.6rem;
}

.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown).form__input:not(:focus) ~ .form__label {
    top: -15%;
    left: 1rem;
    font-size: 1.4rem;
}


.form__textarea:hover {
    border: .2rem solid #8dc6ff;
    
}
.form__textarea:focus {
    border: .2rem solid #888;
}

.form__textarea:disabled {
    border: .2rem solid rgba(119, 119, 119, 0.1);
    color: #E8E8E8;

}

.form__textarea:disabled+.form__label {
    color: #E8E8E8;
}



.form__textarea:focus ~ .form__label,
.form__textarea:not(:placeholder-shown).form__textarea:not(:focus) ~ .form__label {
    top: -10%;
    /* left: 0.6rem; */
    left: 1rem;
    font-size: 1.2rem;
}

.form__label.small {

    font-size: 75%;
}



.patient-form-wrapper__form__wrapper {
    /* background-color: #8dc6ff42; */
    max-width: 70%;
    /* border: .2rem solid lightgrey; */
    margin-bottom: 1rem;

    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 2rem;
    font-size: 1.6rem;
}

.patient-form-wrapper__form__wrapper__grid {

    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 6rem;
    /* grid-auto-rows: minmax(6rem, 1000rem); */
    
    /* row-gap: 1rem;
    column-gap: 1rem; */
    gap: .1rem;
}

.updated-form-wrapper__form__wrapper__grid {

    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: repeat(24, 1fr);
    grid-auto-rows: 6rem;
    /* grid-auto-rows: minmax(6rem, 1000rem); */
    
    /* row-gap: 1rem;
    column-gap: 1rem; */
    gap: .1rem;
    /* font-size: 80%; */
}

.shortcuts_block {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-width: 130rem;
    flex-wrap: wrap;
}
.shortcuts_block > div {

    width: fit-content;
}

.info-block {
    margin: 1rem 2rem;
}


.action__button:disabled {
    border: .2rem solid rgba(119, 119, 119, 0.1);
    color: black;
}


#opd_entry_div_id {
    display: none;
}

#ipd_entry_div_id {
    display: none;
}

#lab_entry_div_id {
    display: none;
}

#daycare_entry_div_id {
    display: none;
}

/* .ipd-registration-form {
    display: flex;
    gap: 6rem;
}

.first-half {
    width: 40%;
}

.second-half {
    width: 40%;
}

.entry {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
} */

/* label {
    width: 12rem;
    color: grey;
} */

/* input, textarea {
    width: 97%;
} */






    /* grid-column-start: 1;
    grid-column-end: -1; */

    /* grid-column: 1 / -1; */
    /* grid-column: span 2; */
    /* grid-row: span 2; */


.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 200ms ease-in-out;
    border: .1rem solid #101010;
    border-radius: .5rem;

    z-index: 3;
    background-color: white;
    width: 90%;
    /* min-width: 100rem; */
    padding: 2rem;
    
    
    
    font-weight: inherit;
    font: inherit;
    font-size: 1.6rem;
    /* height: 60vh; */
    max-height: 90vh;
    overflow-y: scroll;
}

.modal.top {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);

}
.modal.o-visible {
    overflow: visible;
}

.modal.w-150 {
    width: 150rem;
}

.modal.w-100 {
    width: 150rem;
}

.modal.w-80 {
    width: 80rem;
}

.modal.active {
    transform: translate(-50%, -50%) scale(1);
}

.modal__header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #101010;
}

.modal__header .title {
    font-size: 2rem;
}
.modal__header .close-button {
    cursor: pointer;
    border: none;
    outline: none;
    background:none;
    font-size: 3.25rem;
}

.modal__body {
    padding: 1rem 0;
    font-size: inherit;
}

#overlay {
    position: fixed;
    transition: 200ms ease-in-out;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .05);
    pointer-events: none;
}

#overlay.active {
    pointer-events: all;
    opacity: 1;
}


.patient-details-div {
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 6rem;
    gap: .1rem;
}


#sub-test-summary {
    display: none;
}

#sub-test-div {
    display: none;
}


#test-details-block-div{
    display: none;
}

#medicine-details-block-div{
    display: none;
}



.room-status-wrapper__form__wrapper__grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    grid-auto-rows: 20rem;
    /* grid-auto-rows: minmax(6rem, 1000rem); */
    
    /* row-gap: 1rem;
    column-gap: 1rem; */
    gap: 1.2rem;
}


.room-block {

    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 2rem;

    font-size: 1.3rem;
    color: inherit;

    display: flex;
    flex-direction: column;
    text-align: center;

    transition: all .2s;

}

.room-block:hover {
    box-shadow: 0px 15px 20px -3px rgba(0,0,0,0.4);
    transform: translateY(-1.3rem) scale(1.05);
}

.room-block.occupied {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(204,229,255,1) 93%);
    color: #0c5460;
}

.room-block.available {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(212,250,221,1) 93%);
    color: #098882;
}

.room-block.house-keeping {
    background: linear-gradient(0deg, rgba(235,229,47,0.3786108193277311) 0%, rgba(255,255,255,0.0004595588235294379) 100%);
    /* background: linear-gradient(0deg, rgba(52,203,196,0.3786108193277311) 0%, rgba(255,255,255,0.0004595588235294379) 100%); */
    color: #bebb52;
}

.room-block.day-care {
    background: linear-gradient(0deg, rgba(254,201,86,0.6979385504201681) 0%, rgba(255,255,255,0.0004595588235294379) 100%);
    
    color: #755111;
}

.room-block.unavailable {
    background: linear-gradient(0deg, rgba(96,88,88,0.3029805672268907) 0%, rgba(255,255,255,0.0004595588235294379) 100%);
    color: #343434;
}

.room-block.shortcuts {
    /* background: linear-gradient(359deg, rgba(0, 255, 235, 0.3) 1%, rgba(7, 187, 187, 0.3) 100%); */
    /* background: linear-gradient(359deg, rgba(255, 137, 0, 0.3) 1%, rgba(7, 187, 187, 0.3) 100%); */
    /* background: linear-gradient(359deg, rgba(255, 137, 0, 0.3) 1%, rgba(7, 187, 187, 0) 100%); */
    background: linear-gradient(359deg, rgba(0, 143, 255, 0.3) 1%, rgba(7, 187, 187, 0) 100%);
    color: #343434;
}


.room-block .heading {
    font-size: 1.8rem;
    font-weight: 500;
}

.room-block .description {
    font-size: 1.2rem;
}

#room-status-patient-complete-description{
    padding: 2rem;
    display: flex;
}

.patient-status-action-div {
    margin-top: 5rem;
    padding: 2rem 0;
    display: flex;
}

.patient-details-table {
    border-collapse: collapse;
    width: 100%;
    /* border: .1rem solid rgba(119, 119, 119, 0.178); */
    /* box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1); */
}

.patient-details-table td {
    padding: .1rem .1rem;
    padding-left: 1rem;
    text-align: left;
    border-bottom: .1rem solid rgba(119, 119, 119, 0.178);
    word-wrap: break-word;
}


/* Horizontal swtichable Tabs Start */

.tabs-h {
    display: flex;
    flex-direction: column;
    font-size: 90%;
    /* height: 40rem; */
    height: auto;
    /* overflow-y: scroll; */
    width: 100%;
}

.tabs__sidebar-h {
    height: 15%;
    flex-shrink: 0;
}

.tabs__button-h {
    font: inherit;
    /* display: block; */
    width: fit-content;
    padding: 1rem 2rem;
    /* background: #eeeeee; */
    background: rgba(119, 119, 119, 0.05);
    border: none;
    /* width: 100%; */
    outline: none;
    cursor: pointer;
    border-radius: 1rem;
    margin-right: 2rem;
}

.tabs__button-h > i {
    margin-right: .6rem;
}

.tabs__button-h:active {
    background: #dddddd;
}

.tabs__button-h:focus {
    background: #dddddd;
}

.tabs__button-h:not(:last-of-type) {
    border-bottom: .1rem solid #cccccc;
}

.tabs__button-h.active {
    font-weight: 500;
    font-size: 115%;
    border-bottom: .2rem solid #009879;
    background: #dddddd;
    background: rgba(119, 119, 119, 0.178);
}

.tabs__content-h {
    padding: 1.5rem 0;
    font-size: .8rem;
    display: none;
    margin-top: 0;
    font: inherit;
    height: 85%;
}

.tabs__content-h textarea {
    font-size: 2rem;
} 


.tabs__content-h.active {
    display: block;
}

.tabs__content-h > :first-child {
    margin-top: 0;
}


/* Horizontal swtichable Tabs End */


/* Vertical swtichable Tabs Start */
.tabs {
    display: flex;
    /* flex-direction: column; */
    font-size: 90%;
}

.tabs__sidebar {
    width: minmax(15rem ,15%);
    flex-shrink: 0;
    /* flex-direction: column; */
}

.tabs__button {
    font: inherit;
    display: block;
    padding: 1rem;
    background: #eeeeee;
    border: none;
    width: 10rem;
    outline: none;
    cursor: pointer;
}

.tabs__button:focus {
    background: #dddddd;
}

.tabs__button:active {
    background: #dddddd;
}

.tabs__button:not(:last-of-type) {
    border-bottom: .1rem solid #cccccc;
}

.tabs__button.active {
    font-weight: 500;
    font-size: 115%;
    border-right: .2rem solid #009879;
    background: #dddddd;
}

.tabs__content {
    padding: 0 1.5rem;
    font-size: .8rem;
    display: none;
    margin-top: 0;
    font: inherit;
    width: 100%;
}

.tabs__content.active {
    display: block;
}

.tabs__content > :first-child {
    margin-top: 0;
}
/* Vertical swtichable Tabs End */




.form__input.margin-side {
    width: 80%;
    text-align: center;
    height: 3rem;
}


.price-info-table {
    width: 100%;
}
.price-info-table td {
    text-align: center;
}

.price-info-table td span {
    font-size: 120%;
}
#remark-div {
    display: none;
}

#opd-voucher-notification-div{
    background-color: #ddffdd;
    border-radius: .8rem;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#voucher-notification {
    display: none;
}

#sample-collection-details-block-div {
    display: none;
}


.dot {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.accordion {
    width: 100%;
}
.accordion .contentBox {
    position: relative;
    /* margin: 1rem 2rem; */

}
.accordion .contentBox .label {
    position: relative;
    padding: 1rem;
    background-color: #2694af;
    /* background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12); */
    border-radius: 2rem;
    color: #fff;
    cursor: pointer;
    /* font-size: 1.5rem; */
}

.accordion .contentBox .label.fs-1 {
    font-size: 1.5rem;
}

.accordion .contentBox .label.br-1 {
    border-radius: 1rem;
}

.accordion .contentBox .label.fs-2 {
    font-size: 2rem;
}




.mt-2 {
    margin-top: 2rem;
}

.accordion .contentBox .label::before {
    content: "+";
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-size: 4.2rem;
    
}

.accordion .contentBox.active .label {
    border-radius: 1.5rem;
}


.accordion .contentBox.active .label::before {
    content: "-";
}


.accordion .contentBox .content {
    position: relavtive;
    padding: .5rem;
    background: transparent;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
    overflow-y: auto;
}

.accordion .contentBox.active .content {
    height: 20rem;
    padding: 1rem;
}

.ipd_registration_graphical_room_selection{
    height: 90vh;
}

.icon {
    font-size: 1.6rem;
    transition: font-size 0.3s ease; /* Add smooth transition effect */
  }



  .icon:hover {
    font-size: 3.2rem; /* Increase the font size on hover */
  }

  .icon-ml {
    font-size: 2rem;
    transition: font-size 0.3s ease; /* Add smooth transition effect */
  }

  .icon-ml:hover {
    font-size: 3rem; /* Increase the font size on hover */
  }

  .icon-l {
    font-size: 3rem;
    transition: font-size 0.3s ease; /* Add smooth transition effect */
  }

  .icon-ll {
    font-size: 2.4rem;
  }

  .icon-l:hover {
    font-size: 4rem; /* Increase the font size on hover */
  }




.form-switch {
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form-switch i {
  position: relative;
  display: inline-block;
  margin-right: .5rem;
  width: 46px;
  height: 26px;
  background-color: #e6e6e6;
  border-radius: 23px;
  vertical-align: text-bottom;
  transition: all 0.3s linear;
}
.form-switch i::before {
  content: "";
  position: absolute;
  left: 0;
  width: 42px;
  height: 22px;
  background-color: #fff;
  border-radius: 11px;
  transform: translate3d(2px, 2px, 0) scale3d(1, 1, 1);
  transition: all 0.25s linear;
}
.form-switch i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  transform: translate3d(2px, 2px, 0);
  transition: all 0.2s ease-in-out;
}
.form-switch:active i::after {
  width: 28px;
  transform: translate3d(2px, 2px, 0);
}
.form-switch:active input:checked + i::after { transform: translate3d(16px, 2px, 0); }
.form-switch input { display: none; }
.form-switch input:checked + i { background-color: #4BD763; }
.form-switch input:checked + i::before { transform: translate3d(18px, 2px, 0) scale3d(0, 0, 0); }
.form-switch input:checked + i::after { transform: translate3d(22px, 2px, 0); }

#modal-ipd-patient-details {
    overflow-y: scroll;
}

.permissions_container {
    max-height: 60rem;
    overflow-y: scroll;
}

.charge-search-input {
    font-size: 1.5rem;
    text-align: left;
    font-weight: 400;
    color: red;
}

.charge-search-input::placeholder {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: black;
}

.icon-button {
    border: none; /* Remove button border */
    background: none; /* Remove button background */
    padding: .5rem; /* Remove any padding */
    cursor: pointer; /* Change cursor to pointer on hover */
}

/* 
.icon-button:focus {
    outline: none; 
} 
*/

span.pointer {
    cursor: pointer;
}

#video {
    width: 100%;
    border-radius: 2rem;
}
.container {
    text-align: center;
}

.camera {
    margin-bottom: 20px;
}

.photo_container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo_container_lab{
    width: 15rem;
    position: absolute;
    right: 1%;
    top: 1%;
}
#photo_lab {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    border: .5rem solid #cce5ff;
}

#photo {
    width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 2rem;
    border: .5rem solid #cce5ff;
}

#photo_aadhar {
    width: 100%;
    height: auto;
    margin: 2px 0;
    border-radius: 2rem;
    border: .5rem solid #cce5ff;
}

#photo-nursing {
    width: 100%;
    height: auto;
    margin-bottom: -1rem;
    border-radius: 1.4rem;
    border: .2rem solid #cce5ff;
}
#photo2 {
    width: 60%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 2rem;
    display: flex;
    align-self: center;
    justify-content: center;
    border: .5rem solid #cce5ff;
}

#photo_container_patient_status_ipd {
    width: 13rem;
    position: absolute;
    left: 20pt;
    top: 50pt;
}
#photo_patient_status_ipd {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    border: .5rem solid #cce5ff;
}

#photo_container_patient_status_day_care {
    width: 12rem;
    position: absolute;
    left: 20pt;
    top: 50pt;
}
#photo_patient_status_day_care {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    border: .5rem solid #cce5ff;
}


textarea {
    width: 100%;
    height: 100px;
    margin-top: 10px;
}

.patient-master-photo-capture-div-border {
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 3px, transparent 3px) 0% 0%/8px 8px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 3px, transparent 3px) 100% 0%/8px 8px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 3px, transparent 3px) 0% 100%/8px 8px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 3px, transparent 3px) 100% 100%/8px 8px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 10px) calc(100% - 16px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 16px) calc(100% - 10px) no-repeat,
    radial-gradient(at 10% 89%, transparent 0%, rgba(159,176,172,0.41) 9.841%, #c6e8e0 37.069%, rgba(226,249,244,0.95) 100%) 58% 21%/146% 124%,
    linear-gradient(120deg, #38dab4 0%, #3af4c9 45.09%, #b5eee1 45.09%, #f3fbf9 68.003%, #69f9d7 100%);
    border-radius: 8px;
    padding: 9px;
    box-sizing: border-box;
}
  
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

#preview_image{

    display: none;
    max-width: 100%;
    max-height: 100%;
    border: .5rem solid #cce5ff;
    padding: .2rem;
    border-radius: 2rem;
}

#file-upload-label {
    display: inline-block;
    width: 100%;
    border: 2px dotted #ccc;
    border-radius: 2rem;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

#file-upload-label:hover {
    background-color: #f0f0f0;
}

.voucher_button {
    border:none;
    padding:0 .5rem;
    margin:0 .2rem;
    cursor:pointer;
    border-radius:.5rem;
}

.settled {
    color:#155724;
    background-color:#d4edda;
}
.unsettled {
    color:#856404;
    background-color:#fff3cd;
}
.ctr {
    color:#004085;
    background-color:#cce5ff;
}

.fs-80 {
    font-size: 80%;
}
.fs-70 {
    font-size: 70%;
}
.col-red {
    color: red;
}

@keyframes borderFlash {
    0% { transform: translateX(10%) }
    50% { transform: translateX(-10%) }
    100% { transform: translateX(0%) }
}

.border-animate {
    animation: borderFlash .5s cubic-bezier(0.3, 0.8, 0.3, 2.3) 1; /* Runs for 1 sec, repeats 2 times */
}
