﻿/*Calendar Panel*/
.calendar__panel {
    display: flex;
    flex-direction: column;
}
.calendar__panel > ul {
    display: flex;
    list-style-type: none;
    border-radius: 100px;
    border: 1px solid #DADADA;
    background: #FAFAFA;
    padding: 4px 8px;
    justify-content: space-between;
    grid-gap: 0 8px;
    margin: 8px;
}
.calendar__panel > ul > li {
    flex: 1;
}
.calendar__panel > ul > li > button{
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 6px;
}
.calendar__panel > ul > li.active > button {
    border-radius: 100px;
    background: #1D5558;
    color: #fff;
}
.calendar__patient--details {
    background: #E9F3F3;
    padding: 6px;
    display: flex;
    flex-direction: column;
    grid-gap: 6px 0;
    min-width: 1px;
}
.calendar__patient--details > h2 {
    color: #000;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 0;
}
.calendar__patient--details > p {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0
}
.calendar__patient--details > label {
    color: #609CF5;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0
}
.calendar__patient--details > label > span {
    color: #75CE7E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-left: 15px;
}
.calendar__insurance--table {
    padding: 6px;
}
.calendar__insurance--table > table {
    table-layout: fixed;
    width: 100%;
}
.calendar__insurance--table > table > tbody {
    border-bottom: 1px solid #d2d2d2;
}
.calendar__insurance--table > table > tbody > tr > td {
    padding: 4px
}
.calendar__insurance--table > table > tbody > tr > td > h2 {
    color: #1D5558;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.calendar__insurance--table > table > tbody > tr > td > label {
    color: #767676;
    font-size: var(--font-size-sm);
    font-style: normal;
    font-weight: 500;
    line-height: 2;
}
.calendar__insurance--table > table > tbody > tr > td > p {
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: 2;
    margin: 0;
}
/*----------------------------------------*/
.asc-model-header {
    background-color: #fff;
    box-shadow: 0px 0px 5.494px 0px rgba(0, 0, 0, 0.25);
    padding: 8px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d2d2d2;
}
.asc-model-header > h1,
.asc-header-pip > a > span {
    color: #1D5558;
     font-size: var(--font-size-5l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}
.asc-model-header > h3 {
    color: #000;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    flex: 1;
}
.asc-model-header > ul,
.asc-header-pip > ul {
    display: flex;
    align-items: center;
    margin: 0;
    grid-gap: 0 8px;
}
.asc-model-header > ul > li,
.asc-header-pip > ul > li {
    list-style-type: none;
}
.asc-model-header > ul > li > button,
.asc-header-pip > ul > li button {
    padding: 5px 10px;
    color: #FFF;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    height: 27px;
    text-transform: capitalize;
    min-width: 99px;
    position: relative;
}
.asc-model-header > ul > li > a {
    color: #000;
    font-size: var(--font-size-md);
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    padding: 4px 15px
}
.asc-model-header > ul > li > button.btn-d {
    background: #ef233c;
    box-shadow: 0 5px #d90429;
}
.asc-model-header > ul > li > button.btn-s {
    background: #1d5558;
    box-shadow: 0 5px #53c0c6;
}
.asc-model-header > ul > li > button.btn-u {
    background: #2d2d47;
    box-shadow: 0 5px #5a5a8c;
}
.asc-model-header > ul > li > button.btn-p {
    background: #343a40;
    box-shadow: 0 5px #212529;
}

.asc-model-header > ul > li > button.btn-d:hover {
    box-shadow: 0 3px #d90429;
    top: 1px;
}
.asc-model-header > ul > li > button.btn-d:focus {
    box-shadow: 0 0 #d90429;
    top: 3px;
}

.asc-model-header > ul > li > button.btn-s:hover {
    box-shadow: 0 3px #53c0c6;
    top: 1px;
}

.asc-model-header > ul > li > button.btn-s:focus {
    box-shadow: 0 0 #53c0c6;
    top: 3px;
}
.asc-model-header > ul > li > button.btn-u:hover {
    box-shadow: 0 3px #5a5a8c;
    top: 1px;
}

.asc-model-header > ul > li > button.btn-u:focus {
    box-shadow: 0 0 #5a5a8c;
    top: 3px;
}
.asc-model-header > ul > li > button.btn-p:hover {
    box-shadow: 0 3px #8998a7;
    top: 1px;
}

.asc-model-header > ul > li > button.btn-p:focus {
    box-shadow: 0 0 #8998a7;
    top: 3px;
}

.asc-model-body {
    padding: 8px 8px;
    background-color: #F2F2F2;
    position: relative;
}
.main-heading {
    color: #1D5558;
    font-size: var(--font-size-3l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 8px 0;
}
.asc-section {
    display: flex;
    flex-direction: column;
    background-color: #F0FEFF;
    border: 1px solid #D2D2D2;
    margin-bottom: 6px;
    border-radius: 6px;
}
.asc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 6px;
    border-bottom: 1px solid #D2D2D2;
    border-radius: 6px 6px 0 0;
}
.asc-section-header > h2 {
    color: #313131;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.asc-section-header > ul {
    margin: 0;
}
.asc-section-header > ul > li {
    list-style-type: none;
}
.asc-section-body {
    background-color: #fff;
    padding: 10px 10px;
    border-radius: 0 0 6px 6px;
}
.asc-input-group {
    border: 0.8px solid #D1D1D1 !important;
    display: flex;
    align-items: center;
    border-radius: 6px;
    overflow: hidden;
    width: 100%
}
.asc-input-group > input,
.asc-input-group > select {
    padding: 4px 4px;    
    border: none;  
    width: 100%;
}
.asc-input-group > input {
    background-color: #fff;
    color: #000;
}
.asc-input-group > select {
    background-color: #E6E6E6;
    color: #000000;
    font-weight: 600;
}
.asc-input-group > button {
    background-color: #E6E6E6;
    color: #1d5558;
    border: none;
    padding: 4px 10px; 
}
.asc-input-group > label,
.asc-list > li > label {
    color: #000;
    font-size: var(--font-size-md); 
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.asc-input-group > span {
    color: #BBB;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px 4px;
    background-color: #fff;
}
.asc-vitals-table {
    margin: 0;
    width: 100%;
    border-spacing: 2px 3px;
    border-collapse: separate;
}
.asc-vitals-table > tbody > tr > td > label {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: 1 !important;
}
.vitals-v1 {
    border-radius: 4px;
    background-color: #1D5558;
    padding: 4px;
    border-radius: 4px;
    color: #FFF;
    font-size: var(--font-size-2l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
}
.asc-list {
    margin: 0;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 8px 6px;
}
.asc-list > li {
    list-style: none;
    display: flex;
    align-items: center;
    grid-gap: 0px 6px;
}
.asc-list > li > b {
    color: #000;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.asc-tile {
    border-radius: 6px;
    border: 1px solid #CECECE;
    background: #FAFAFA;
    padding: 6px;
    margin: 8px 0;
}
.asc-tile-head {
    color: #2D2D47;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.asc-notes {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #DDD;
    background: #F3F3F3;
    padding: 4px 6px;
    color: #000;
}
.asc-vertical-list-items {
    margin: 0;
    display: flex;
    flex-direction: column;
    grid-gap: 4px 0;
}
.asc-vertical-list-items > li,
.asc-horizontal-list-items > li {
    padding: 4px 0px 2px 0px;
    list-style-type: square;
    line-height: 1;
    margin-left: 20px;
}
.asc-horizontal-list-items {
    margin: 0;
    display: flex;
    grid-gap: 0 4px;
    flex-flow: wrap;
}
.asc-search {
    position: relative;
    width: 100%;
}
.asc-search > input {
    border-radius: 6px;
    border: 1px solid #F6BB22;
    background: #FFF9D6;
    padding: 6px 12px;
    color: #4A4A4A;
    width: 100%;
}
.asc-instructions-button {
    color: #FFF;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 7px;
    background: #53ACDD;
    padding: 4px 16px;
    border: none;
}
.grid-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    grid-auto-rows: minmax(0, auto);
    grid-gap: 0px 16px;    
}
.asc-patient-profile {
    padding: 3px 6px;
    display: inline-flex;
    border-radius: 100px;
    border: 0.6px solid rgba(29, 85, 88, 0.20);
    background: #E9F3F3;
}
.asc-patient-profile > ul {
    margin: 0;
    display: inline-flex;
    align-items:center;
    grid-gap: 0px 8px;
}
.asc-patient-profile > ul > li {
    list-style: none;
    display: flex;
    align-items: center;
    grid-gap: 0 6px;
}
.asc-patient-profile > ul > li > img {
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #d2d2d2;
    margin-right: 4px;
}
.asc-patient-profile > ul > li > p {
    color: #0E0E0E;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    width: calc(20vw);
    max-width: calc(10vw);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.asc-patient-profile > ul > li > i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background-color: #1d5558;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.asc-patient-profile > ul > li > span {
    color: #4A4A4A;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.asc-patient-profile > ul > li > label {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


/*Facesheet Profile*/
.facesheet-list-label {
    margin-top: 8px;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 14px 10px;
}
.facesheet-list-label + .facesheet-list-label {
    margin-bottom: 8px;
}
.facesheet-list-label + .facesheet-list-label:last-child {
    margin-bottom: 0;
}
.facesheet-list-label > li {
    list-style: none;
}
.facesheet-list-label > li > label{
    color: #0E0E0E;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
}
.facesheet-list-label > li > span {
    color: #7A7A7A;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}
.facesheet-patientdetails {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 4px 25px;
    margin: 0;
}
.facesheet-patientdetails > li {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    grid-gap: 4px 6px;
}
.facesheet-patientdetails > li > h4 {
    color: #000;
    font-size: var(--font-size-3l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-transform: capitalize;
}
.facesheet-patientdetails > li > span {
    color: #1D5558;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.facesheet-patientdetails > li > label {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.fasesheet-accordion.panel-open > .panel-heading {
    background: #F0FAFA;
    position: relative;
    border-bottom: 1px solid #1d5558;
}
.fasesheet-accordion > .panel-heading {
    border-bottom: 1px solid #DDDDDD;
    background: #F2F2F2;
    position: relative;
}
.fasesheet-accordion > .panel-heading > h4 {
    font-weight: 700;
}
.fasesheet-accordion > div > .panel-body {
    background-color: #f2f2f2;
    padding: 4px;
    border-radius: 0px 0px 6px 6px;
}
.facesheet-header {
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px;
    border: 0.3px solid rgba(166, 166, 166, 0.39);
    background: #EBEEF3;
    height: 25px;
}
.facesheet-header > ul {
    display: flex;
    align-items: center;
    grid-gap: 0 6px;
    margin: 0;
}
.facesheet-header > ul > li {
    list-style: none;
}
.facesheet-header > h1 {
    color: #000;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.facesheet-header > a {
    color: #28ACB4;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.facesheet-body {
    padding: 6px;
}
.facesheet-yesno {
    margin: 0;
    border-radius: 6px;
    border: 1px solid #4a4a4a;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 98px;
}
.facesheet-yesno > li {
    list-style: none;
    flex: 1;
}
.facesheet-yesno > li > button {
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #F2F2F2;
    border: none;
    padding: 5px 5px;
    text-align: center;
    width: 100%;
}
.facesheet-yesno > li > button.active {
    background-color: #1d5558;
    color: #fff;
}
.facesheet-pov-single {
    display: block;
}
.facesheet-pov {
    display: flex;
    grid-gap: 8px;
    justify-content: flex-start;
    flex-flow: wrap;
}
.facesheet-pov-single > div {
    background-color: #fff;
    box-sizing: border-box;
    padding: 4px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.facesheet-pov > div {
    background-color: #fff;
    width: calc(100% * (1/2) - 5px - 0px);
    box-sizing: border-box;
    padding: 4px;
    border-radius: 4px;
}
.facesheet-pov-summary {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    justify-content: space-between;
    margin-top: 4px;
}
.facesheet-pov-summary > h2 {
    margin: 0;
    color: #2B5B6D;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.facesheet-pov-summary > ul {
    display: flex;
    align-items: center;
    grid-gap: 4px;
    margin: 0;
    background: #F0FAFA;
    padding: 4px;
    border-radius: 4px;    
}
.facesheet-pov-summary > ul > li {
    list-style: none;
    display: flex;
    align-items: center;
}
.facesheet-pov-summary > ul > li > button,
.facsheet-response-div > button {
    border-radius: 5px;
    background: #d2d2d2;
    padding: 2px 6px;
    color: #FFF;
    font-size: var(--font-size-3l);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: none;
    width: 65px;
    cursor: no-drop;
}
.pov-yes {
    background-color: #11810E !important;
}
.pov-no {
    background-color: #d90429 !important;
}
.facesheet-pov-summary > ul > li > span,
.facsheet-response-div > span {
    color: #A3A3A3;
    font-size: var(--font-size-xs);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.facesheet-pov-summary > ul > li > label,
.facsheet-response-div  > label {
    color: #313131;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*--------------------*/
.pov-summary-table > h2 {
    color: #000;
     font-size: var(--font-size-5l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.pov-summary-table > table {
    width: 100%;
    border: 1px solid #d2d2d2;
    margin-bottom: 6px;
}
.pov-summary-table > table > thead > tr > th {
    background-color: #fff;
    color: #080728;
    font-size: var(--font-size-3l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    vertical-align: middle;
    padding: 2px 6px;
}
.pov-summary-table > table > tbody > tr > td:first-child {
    padding: 2px 6px;
    border-right: 0.6px solid #9B9B9B;
    border-bottom: 0.6px solid #9B9B9B;
    background: #F2F2F2;
    vertical-align:middle;
}
.pov-summary-table > table > tbody > tr > td {
    background-color: #fff;
    padding: 2px 6px;
    color: #080728;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-right: 1px solid #d2d2d2;
    border-bottom: 1px solid #d2d2d2;
    vertical-align:top;
}
.pov-summary-table > table > thead > tr > th > ul {
    margin: 0;
}
.pov-summary-table > table > thead > tr > th > ul > li {
    list-style: none;
    color: #fff;
    display: flex;
    align-items: center;
}
.pov-summary-table > table > thead > tr > th > ul > li > b {
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
    display: flex;
    justify-content: center;
    color: #000;
    margin-right: 5px;
    align-items: center;
}
    .pov-summary-table > table > thead > tr > th > ul > li > span {
        color: #FFF;
        font-size: var(--font-size-md);
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        white-space: nowrap;
    }
.pov-summary-table > table > thead > tr > th > ul > li > label {
    color: #FFF;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    white-space:nowrap;
}
.alergies-facesheet {
    border: 1px solid #CBCBCB;
    border-radius: 6px;
    /*overflow: hidden;*/
    margin: 4px;
}
/*----------------------*/
.facesheet-Operative-Discharge {
    border-radius: 6px;
    border: 0.7px solid #CFCFCF;
    background: #FFF;
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin-bottom: 6px;
}
.facesheet-Operative-Discharge-text {
    color: #4A4A4A;
    font-size: var(--font-size-4l);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 7px 3px 4px;
    border-radius: 3px;
    padding: 5px 10px;
    background: #EBEEF3;
}
.facesheet-Operative-Discharge > table {
    border-spacing: 10px 12px;
    border-collapse: separate;
    width: 100%;
}
.facesheet-Operative-Discharge > table > tbody > tr > th {
    border-radius: 4px;
    background: #F0FAFA;
    border: 0.519px solid #F0FAFA;
    color: #000;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 5px 5px;
}
.facesheet-Operative-Discharge > table > tbody > tr > td {
    border-radius: 6.223px;
    border: 0.519px solid #CECECE;
    background: #FAFAFA;
    color: #000;
    font-size: 14.521px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 5px 5px;
}
.facesheet-Operative-Discharge > table > tbody > tr > td > span {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.facesheet-Operative-Discharge > table > tbody > tr > td > p {
    margin: 0;
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
.facesheet-OPSV-summary {
    background-color: #fff;
    border-radius: 6px;
    margin-bottom: 6px;
    padding: 4px 6px;
}
.facesheet-OPSV-summary > ul,
.facesheet-OPSV-summary > ol {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 2px 38px;
    margin-bottom: 4px;
}
.facesheet-OPSV-summary > ul > li,
.facesheet-OPSV-summary > ol > li {
    list-style: none;
    display: flex;
    align-items: center;
    grid-gap: 2px 6px;
}

.facesheet-OPSV-summary > ul > li > h3 {
    margin: 0;
    color: #1D5558;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.facesheet-OPSV-summary > ul > li > span {
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.facesheet-OPSV-summary > ul > li > label,
.facesheet-OPSV-summary > ol > li > label {
    color: #0E0E0E;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.facesheet-OPSV-summary > ul > li > p {
    color: #5a5a8c;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
.facesheet-OPSV-summary > ul > li > table,
.facesheet-OPSV-summary > table {
    width: 100%;
    text-align:center;
}
.facesheet-OPSV-summary > ul > li > table > thead > tr > th {
    color: #5a5a8c;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #fff;
    text-align: center;
    padding: 4px 3px;
}
.facesheet-OPSV-summary > ul > li > table > tbody > tr > th,
.facesheet-OPSV-summary > table > tbody > tr > th {
    color: #4a4a4a;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #fff;
    padding: 4px 3px;
}
.facesheet-OPSV-summary > ul > li > table > tbody > tr > td,
.facesheet-OPSV-summary > table > tbody > tr > td {
    color: #0E0E0E;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 4px 3px;
}
.facesheet-OPSV-summary > table > thead > tr > th {
    border-radius: 3px;
    border-bottom: 0.5px solid #636363;
    background: #FAFAFA;
    padding: 3px 6px;
    text-align: center;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.facesheet-OPSV-summary > ol {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #d2d2d2;
}
.facesheet-OPSV-summary > ol > li > h3 {
    color: #d90429;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
/*ASC List Patient list search*/
.patient-search-actions {
    margin: 6px 0;
    margin: 6px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}
.patient-search-filter {
    display: flex;
    align-items: flex-start;
    grid-column-gap: 8px;
}
.patient-search-filter > input,
.patient-search-filter > button {
    border-radius: 5px;
    background: #EBEDEF;
    color: #000;
    font-size: var(--font-size-xl);
    border: none;
    padding: 6px 12px;
}
.patient-search-actions > ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    grid-column-gap: 6px;
    padding: 6px 4px;
    cursor: pointer;
}

.patient-details-names > p {
    margin: 0;
    color: #369FA5;
    text-align: left;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.patient-details-names > h3 {
    color: #4A4A4A;
    text-align: left;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-overflow: ellipsis;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}
.patient-details-names{
    min-width:0;
}
.patient-details-names > span {
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: #000;
    margin-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display:block;
}
.patient-list > div,
.patient-search-actions > div {
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 5px;
    padding: 5px;
}
.patient-list > div.active,
.patient-search-actions > div.active {
    background-color: #E4F5F6;
    border-radius: 6px;
    border-bottom: none;
    width: calc(99%);
}
.patient-search-actions > ul > li > div > b {
    width: 100%;
    height: 26px;
    border-radius: 4px;
    text-align: center;
    color: #FFF;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center
}

.asc-list-container {
    border-radius: 10px;
    background: #F4F5F6;
    padding: 4px 12px;
}
.asc-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 4px 6px;
    margin-bottom: 6px;
}
.asc-list-header > h1 {
    color: #000;
    font-size: var(--font-size-3l);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}
.asc-list-header > ul {
    display: flex;
    align-items: center;
    grid-gap: 4px 6px;
    margin: 0;
}
.asc-list-header > ul > li {
    list-style: none;
    position: relative;
}
.asc-list-header > ul > li > button {
    border-radius: 5px;
    background: #369FA5;
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    border: none;
    color: #FFF;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    grid-gap: 6px;
}
.asc-list-header > ul > li > i {
    background-color: #369FA5;
    width: 32px;
    height: 32px;
    border-radius: 100px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
     font-size: var(--font-size-5l);
    position: absolute;
    left: -26px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.asc-list-header > ul > li > span {
    border-radius: 0px 30px 30px 0px;
    background: #369FA5;
    color: #FFF;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px 6px;
}
.asc-list-patient > p {
    color: #0E0E0E;
    font-size: var(--font-size-3l);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.asc-list-patient {
    display: flex;
    flex-direction: column;
    grid-gap: 4px 4px;
    min-width: 0;
    width: calc(75%);
}
.asc-list-patient > ul {
    display: flex;
    align-items: center;
    margin: 0;
    grid-gap: 0px 8px;
    flex-flow: wrap;
}
.asc-list-patient > ul > li {
    list-style: none;
}
.asc-list-patient > span {
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.asc-list-patient > ul > li > span {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.asc-list-patient > ul > li > label {
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.asc-all-status {
    margin: 0;
    border-radius: 5px;
    background: #F4F5F6;
    display: flex;
    flex-direction: column;
    grid-gap: 6px;
    flex: 1;
    padding: 6px;
    margin-top: 6px;
}
.asc-all-status > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.asc-all-status > li > a {
    line-height: 0;
}
.asc-all-status > li > span {
    color: #795548;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.asc-all-status > li > p {
    margin: 0;
    color: #2D2D47;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.asc-buttons-actions,
.asc-actions-buttons{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    grid-gap: 6px 4px;
}
.asc-buttons-actions > li,
.asc-actions-buttons{
    list-style: none;
}

.asc-buttons-actions > li > button {
    display: flex;
    width: 100%;
    height: 32px;
    padding: 8px 6px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 5px;
    background-color: #fff;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border: 1px solid #1D5558;
    color: #1d5558;
    text-align: center;
}
.asc-buttons-actions > li > button.default-outline-btn {
    border: 1px solid #F4F5F6;
    background: #1D5558;
    color: #fff;
}
.asc-buttons-actions > li > button.admit-btn-asc {
    background: #3C82C1;
    border: 0.8px solid #3C82C1;
    color: #fff;
}
.asc-buttons-actions > li > button.resched-btn-asc {
    background: #5AA7C3;
    border: 0.8px solid #5AA7C3;
    color: #fff;
}
.asc-buttons-actions > li > button.cancel-btn-asc {
    border: 0.8px solid #C71D27;
    background: rgba(199, 29, 39, 0.20);
    color: #C71D27;
}
.asc-buttons-actions > li > button.clear-btn-asc {
    border: 0.8px solid #9E9E9E;
    background: #F4F5F6;
    color: #9E9E9E;
}
.asc-buttons-actions > li > button[disabled] {
    background-color: #F4F5F6;
    color: #7a7a7a;
    border: 1px solid #F4F5F6;
}
.book-btn-history {
    border: 0.2px solid #DEDEDE !important;
    background: #FAFAFA !important;
}
.asc-actions-buttons > li > button {
    display: flex;
    width: 100%;
    height: 32px;
    padding: 8px 6px;
    align-items: center;
    justify-content: flex-start;
    color: #414167;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 5px;
    border: 0.8px solid #6C6CA2;
    background-color: #fff;
}
.asc-actions-buttons > li:hover > button,
.asc-buttons-actions > li:hover > button {
    font-weight: 700;
    transition: 1s;
}
.asc-table-details {
    margin-bottom: 8px;
    width: 100%;
}
.asc-table-details > thead > tr > th {
    border-radius: 4px;
    background: #EBEEF3;
    color: #4A4A4A;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px 6px;
    position: relative;
}
.asc-table-details > thead > tr > th > a {
    display: block;
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: flex;
    align-items: center;
}
.asc-table-details > tbody > tr > th {
    color: #7A7A7A;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #fff;
    width: 26%;
    padding: 4px 6px;
}
.asc-table-details > tbody > tr > td {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px 6px;
}
.Risk-fire-asc {
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    color: #000;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 100px;
    border: 1px solid #DDD;
    margin-top: 6px;
}
.Risk-fire-asc > span {
    color: #FF9D0A; 
}
/*ASC Pre/Post-OP Call Styles*/

.patient-details-list {
    padding: 8px 12px;
    margin: 5px;
    border-radius: 5px;
    background: #E9F3F3;
}
.patient-details-list > ul {
    padding:0;
    margin:0;
    list-style: none;
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}
    .patient-details-list > ul >li{
        display:flex;
        align-items:center;
        gap:5px;
    }
        .patient-details-list > ul > li > label {         
            font-size: var(--font-size-xl);
            font-weight: 600;
            line-height: 17.64px;
            text-align: left;
            color:#000;
        }

.details-vizhard > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center; 
    gap:10px; 
    margin: 10px 0;
}
.details-vizhard > ul>li{
    display:flex;
    gap:8px;
    align-items:center;
    cursor: pointer;
}
.details-vizhard > ul > li > span {
    border-radius:100px;
    width: 20px;
    height: 20px;
    border: 1px solid #ABB7C2;
    font-size: var(--font-size-xl);
    font-weight: 500;
    line-height: 17px;
    text-align: center;
    color:  #ABB7C2;
}
.details-vizhard > ul > li > label {
    font-size: var(--font-size-lg);
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: #ABB7C2;
}
.details-vizhard > ul > li.active > span{
    background:#1D5558;
    color:#fff;
}
.details-vizhard > ul > li.active > label{
    color: #1D5558;
}
.details-title {
    padding: 3px;
    background: #EBEEF3;
    border-radius:5px;
}
    .details-title > h2 {
        font-size: var(--font-size-xl);
        font-weight: 700;
        text-align: left;
        color: #4A4A4A;
        margin:0;
        line-height:32px;
    }
    
.preop-patient-details > ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
  grid-gap:9px;
}
.preop-patient-details > ul >li{
    display:flex;
    align-items:center;
    gap:8px;
    position: relative;
}
    
.response-list{
    display:flex;
    flex-direction:column;   
}
.response-list > label {
    font-size: var(--font-size-xl);
    font-weight: 500;
    line-height: 17.64px;
    text-align: left;
    color: #4A4A4A;
}
    .response-list > ul {
        padding: 0;
        margin: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
        margin: 8px 0;
    }
    .response-list > ul > li {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 6px 8px;
        border-radius: 6px;
        background: #F4F5F6;
    }
        .response-list > ul > li.active {
            border: 1px solid #1D5558;
            background: #DFECEC;
        }
        .response-list > ul > li:hover {
            background: #DFECEC;
        }
        .response-list > ul > li.active > label {
            color: #1D5558;
        }
        .response-list > div > textarea {
            height: 60px;
            padding: 8px;
            border-radius: 5px;
            border: 1px solid #DDDDDD;
            font-size: var(--font-size-md);
            font-weight: 400;
            text-align: left;
            color: #4a4a4a;
            width: 100%;
        }
.preop-btns{
    display:flex;
    gap:10px;
    align-items:center;
    justify-content:end;
    margin:10px;
}

.save-btn {
    padding: 5px 10px;
    gap: 10.52px;
    border-radius: 5px;
    border: 1px solid #1D5558;
    font-size: var(--font-size-xl);
    font-weight: 500;
    text-align: center;
    background:#1d5558;
    color:#fff;
}
.call-logs-panel {
    background: #F7F7F9;
    padding: 5px 6px;
    border-radius:10px;
}
.call-logs-header > h1 {
    font-size: var(--font-size-2l);
    font-weight: 600;
    line-height: 18.9px;
    text-align: left;
    color: #000;
    margin: 0;
}
    .call-logs-list {
        padding:0;
        margin: 0;
        list-style: none; 
       border-radius:8px;
       
    }
        
        .call-logs-list> li.active {
            background-color: #E0F2F2;
        }

        .call-logs-list > li {
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            gap: 10px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 2px 2px 5px 0px #D2D2D240;
            margin: 8px 0;
            padding: 10px 6px;
        }
        .call-logs-list > li > div{
            display:flex;
            align-items:center;
            justify-content:space-between;
            gap:10px;
            min-width:0;
        }
        .call-logs-list > li > div > label {
            font-size: var(--font-size-sm);
            font-weight: 400;
            line-height: 13.86px;
            text-align: center;
            padding: 5px 10px;
            border-radius: 30px;
        }
            .call-logs-list > li >div > b {
                font-size: var(--font-size-lg);
                font-weight: 600;
                line-height: 16.38px;
                text-align: left;
                color: #1d5558;
            }

            .call-logs-list > li > div > span {
                font-size: var(--font-size-sm);
                font-weight: 400;
                line-height: 12.6px;
                text-align: left;
                color: #4A4A4A;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .call-logs-list > li> div > p {
                font-size: var(--font-size-sm);
                font-weight: 400;
                line-height: 12.6px;
                text-align: left;
                color: #4A4A4A;
                margin: 0;
                white-space: nowrap;
                display: flex;
                align-items: center;
                gap: 5px;
            }
                .call-logs-list > li > div > span::before {
                    content: "\2022";
                    color: #7A7A7A;
                }

.operative-discharge-table > table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px 15px;
    background: #fff;
}
    .operative-discharge-table > table > tbody > tr > th {
        border-right: 0.519px solid #B3B3B3;
        color: #000;
        font-size: var(--font-size-xl);
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        padding: 5px 5px;
        border-bottom: 1px solid #E1E1E1;
    }
    .operative-discharge-table > table > tbody > tr > td {        
        color: #000;
        font-size: 14.521px;
        font-style: normal;
        font-weight: 400;
        border-bottom: 1px solid #E1E1E1;
        line-height: normal;
        padding: 5px 5px;
    }
.operative-discharge-table > table > tbody > tr > td > span {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
 .operative-discharge-table > table > tbody > tr > td > p {
            margin: 0;
            color: #000;
            font-size: var(--font-size-md);
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            text-transform: capitalize;
}

.allergies-list {
    display: flex;
    flex-direction: column;
    grid-gap: 4px 0;
    margin-left: 18px;
}

    .allergies-list > li > label {
        color: #1A977D;
        font-size: var(--font-size-xl);
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        vertical-align: initial !important;
    }

    .allergies-list > li > span {
        color: #262626;
        text-align: center;
        font-size: var(--font-size-xl);
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .allergies-list > li > p {
        margin: 0;
        color: #7A7A7A;
        text-align: left;
        font-size: var(--font-size-md);
        font-style: normal;
        font-weight: 400;
        line-height: 16px; /* 160% */
    }

        .allergies-list > li > p > b {
            color: #262626;
            font-size: var(--font-size-md);
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

.instructions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.instructions-list > p > span {
    font-size: var(--font-size-md);
    font-weight: 500;
    line-height: 18px;
    text-align: left;
    color: #0C8986;
}
    .instructions-list > p {
        font-size: var(--font-size-md);
        font-weight: 500;
        line-height: 18px;
        text-align: left;
        color: #0E0E0E;
        margin:0;
    }
            .instructions-list >ul {
                padding: 0;
                margin: 0;
                list-style: none;
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                gap: 10px;
            }
    .instructions-list >ul > li {
        padding: 5px;
        border-radius: 5px;
        background: #F7F7F9;
        font-size: var(--font-size-md);
        font-weight: 400;
        line-height: 15.12px;
        text-align: left;
        color: #4A4A4A;
    }

/*Call log  colors*/

.bg-call-green {
    background: #EBFAEC;
    color: #2FB23C;
}

.bg-call-blue {
    background: #3CA6D326;
    color: #3CA6D3;
}
/*Facesheet table data*/
.facesheet-data-table {
    table-layout: fixed;
    width: 100%;
    border: none;
}
.facesheet-data-table > tbody > tr > td > label {
    color: #1D5558;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.facesheet-data-table > tbody > tr > td > span {
    /*color: #4B8BA3;*/
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.facesheet-data-table > tbody > tr > td,
.facesheet-data-table > thead > tr > th,
.facesheet-data-table > tbody > tr > th {
    padding: 2px 6px;
    color: #0E0E0E;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #fff;
}
.facesheet-data-table > tbody > tr > td > select,
.facesheet-data-table > tbody > tr > td > input {
    border-radius: 5px;
    border: 0.8px solid #414141;
    background: #FFF;
    padding: 3px 8px;
    width: 100%;
    color: #0E0E0E;
    font-size: var(--font-size-lg);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.facesheet-data-table > tbody > tr > td > select[disabled],
.facesheet-data-table > tbody > tr > td > input[disabled],
.facesheet-pov-single > div > textarea[disabled]{
    border: 0.8px solid #D1D1D1 !important;
    background: #F2F2F2 !important;
}
.facesheet-previous-values {
    border-radius: 5px;
    border: 0.3px solid #E0E0E0;
    background: #fff;
}
.facesheet-previous-values > ul {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 4px 8px;
    margin: 0;
}
.facesheet-previous-values > ul > li {
    list-style: none;
    display: flex;
    align-items: center;
    grid-gap: 0 6px;
}
.facesheet-previous-values > ul > li > p {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    margin: 0;
    background: #EBEEF3;
    padding: 2px 8px;
}
.facesheet-previous-values > ul > li > span {
    color: #7A7A7A;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: left;
}
.facesheet-previous-values > ul > li > label {
    color: #0E0E0E;
    text-align: left;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.notes-facesheet-hover > p {
    margin: 0;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.notes-facesheet-hover{
    display:flex;
    flex-direction:column;
}
.notes-facesheet-hover > p > b {
    color: #0C8986;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.notes-facesheet-hover > span {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width:110px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    display:block;
}
    .notes-facesheet-hover > b {
        color: #0C8986;
        font-size: var(--font-size-md);
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

/*-------------------------------------------V&P Popup CSS code Remove and add in main area*/
.popup-container {
    display: flex;
    padding: 5px 0;
    width: 100%;
    flex-direction: column;
}
.tab-1 {
    display: block;
    width: 100%;
}
.tab-1 > ul {
    margin: 0;
    display: flex;
    align-items: center;
    border-top: 1px solid #CACACA;    
    background: #F2F2F2;
    width: 100%;
    border-bottom: 0.5px solid #1D5558;
    padding: 0 8px;
}
.tab-1 > ul > li {
    list-style: none;
    padding: 6px 0 0 0;
}
.tab-1 > ul > li > a {
    color: #353535;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    padding: 6px 12px;    
}
.tab-1 > ul > li.active > a {
    color: #1D5558;
    font-weight: 500;
    border-radius: 5px 5px 0px 0px;
    border-top: 0.5px solid #1D5558;
    border-right: 0.5px solid #1D5558;
    border-left: 0.5px solid #1D5558;
    background: #FFF;
    margin-bottom: -1px;
}
.vision-p-table {
    width: 100%;
    overflow: visible;
}
.vision-p-table > table {
    margin: 0;
    border: none;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 4px;
    width: auto;
}
.vision-p-table > table > thead > tr > th {
    background-color: transparent;
    color: #222;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
}
.vision-p-table > table > tbody > tr > th > label {
    padding: 4px;
    border-radius: 4px;
    width: 100%;
    color: #FFF;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}
.vision-p-table > table > tbody > tr > td {
    position: relative;
}
.vision-p-table > table > tbody > tr > td > input {
    border-radius: 6px;
    border: 1px solid #5F5F5F;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 4px 6px;
    text-align: center;
    color: #000;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
}
.vision-p-table > table > tbody > tr > td > input:focus {
    border: 1px solid #1A94C1;
}
.popup-container > .tab-content {
    padding: 0 8px;
}
.switch-sg-bg {
    background: rgba(242, 242, 242, 0.40);
    padding: 6px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 0 10px;
}
.switch-sg-bg > ul {
    margin: 0;
    display: inline-flex;
    align-items: center;
    border: 0.8px solid #1D5558;
    padding: 4px 6px;
    border-radius: 100px;
    grid-gap: 0px 6px;
}
.switch-sg-bg > ul > li {
    list-style: none;
}
.switch-sg-bg > ul > li > a {
    color: #1D5558;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    border-radius: 100px;
    padding: 4px 12px;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}
.switch-sg-bg > ul > li.active > a {
    background: #1D5558;
    color: #fff;
}
.summary-grid-table {
    width: 100%;
    display: block;
}
.summary-grid-table > table {
    width: 100%;
    table-layout: fixed;
}
.summary-grid-table > table > thead > tr > th {
    color: #000;
    text-align: center;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-bottom: 0.3px solid #A49D9D;
    background: #F2F2F2 !important;
    box-shadow: 0px 2px 4.8px 0px rgba(0, 0, 0, 0.16);
    padding: 6px 6px !important;
    position: sticky;
    top: 0;
    z-index: 1;
}
.summary-grid-table > table > tbody > tr > td {
    color: #000;
    text-align: center;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 6px;
    background-color: #fff; 
}
.summary-grid-table > table > tbody > tr > td > label {
    color: #E14A53;
    font-size: var(--font-size-xl);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.summary-grid-table > table > tbody {
    border-bottom: 1px solid #d2d2d2;
}

/*Drawing Pad*/
.drawing-actions {
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
    padding: 4px 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.drawing-actions > div {
    border-right: 1px solid #d2d2d2;
    padding: 0 8px;
    display: flex;
    justify-content: space-between;
    grid-gap: 5px 0;
    height: 50px;
    flex-direction: column;
}
.drawing-actions > div > ul,
.drawing-actions > div > ol {
    margin: 0;
    display: flex;
    align-items: center;
    grid-gap: 0 10px;
    justify-content: center;
}
.drawing-actions > div > label,
.drawing-actions > div > ol > li > label {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    text-align: center;
}
.drawing-actions > div > ul > li,
.drawing-actions > div > ol > li {
    list-style: none;
}
.drawing-actions > div > ol > li > span {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    display: block;
    cursor: pointer;
    border: 1px solid #d2d2d2;
}
.drawing-actions > div > ol > li > input {
    height: 20px;
    width: 40px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.drawing-actions > div > ul > li > button {
    background-color: #fff;
    border-radius: 5px;
    border: 0.8px solid #DDD;
    display: flex;
    flex-direction: column;
    grid-gap: 4px 0;
    justify-content: center;
    align-items: center;
    padding: 2px 6px;
}
.drawing-actions > div > ul > li > input {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: transparent;
    border: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}
.brush-draw-dropdown {
    width: 180px;
    max-width: 180px;
    margin-top: 40px;
}

.bg-black {
    background-color: #000;
}
.bg-red {
    background-color: #F0222E;
}
.bg-orange {
    background-color: #F2A206;
}
.bg-cyana {
    background-color: #2290A8;
}
.bg-brown {
    background-color: #804C2F;
}
.bg-green {
    background-color: #13B110;
}
.bg-blue {
    background-color: #2B1DC7;
}
.rotate-drawpad {
    background-color: #fff;
    padding: 8px;
    border-radius: 8px;
}
.rotate-drawpad > input[type=range][orient=vertical] {
    writing-mode: vertical-lr;
    direction: ltr;
    width: 16px;
    vertical-align: bottom;
    transform: rotate(180deg);
    margin: auto;
}
.interpretation-table {
    margin: 0;
    table-layout: fixed;
    width: 100%;
}
.interpretation-table > thead > tr > th,
.interpretation-table > tbody > tr > th {
    background-color: transparent;
    background: transparent;
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 6px;
}
.interpretation-table > thead > tr > th > label {
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.interpretation-table > tbody > tr > td {
    padding: 4px 6px;
}
.interpretation-table > tbody > tr > th > select,
.interpretation-table > tbody > tr > th > input {
    border-radius: 4px;
    border: 1px solid #0E0E0E;
    background: #FFF;
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
    padding: 4px 6px;
}
.interpretation-table > tbody > tr > td > select,
.interpretation-table > tbody > tr > td > input {
    border-radius: 4px;
    border: 0.787px solid #DDD;
    background: #fff;
    width: 100%;
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 4px 6px;
}
.book-patient-details {
    display: flex;
    align-items: center;
    grid-gap: 3px 6px;
    margin: 0;
    flex-flow: wrap;
    justify-content: space-between;
}
.book-patient-details > div {
    list-style: none;
    display: flex;
    align-items: center;
    grid-gap: 0 4px;
}
.book-patient-details > div > i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    border-radius: 100px;
    background-color: #1d5558;
    align-items: center;
    justify-content: center;
}
.book-patient-details > div > span {
    color: #000;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 250px;
    display: inline-block;
}
.book-insurance-list {
    display: flex;
    align-items: flex-start;
    grid-gap: 0px 10px;
    width: 100%;
}
.book-insurance-list > div {
    min-width: 1px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.book-insurance-list > div > p {
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.book-insurance-list > div > h2 {
    margin: 0 0 10px;
    color: #7A7A7A;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.book-insurance-list > div > h3,
.previous-visit-bappt > div > h3 {
    margin: 0 0 10px;
    color: #3EA6CD;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.book-insurance-list > div > label,
.previous-visit-bappt > div > label {
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    min-width: 1px;
}
.book-appointment-list {
    display: flex;
    align-items: flex-start;
    grid-gap: 8px 0;
    border-radius: 5px;
    border: 0.8px solid #DDD;
    background: #FFF;
    padding: 4px;
    width: 100%;
    margin-bottom: 6px;
}
.text-sneon {
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.previous-visit-bappt {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 3px 8px;
}
.previous-visit-bappt > div {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 3px 8px;
    min-width: 1px;
}
.previous-visit-bappt > div > label {
    display: flex;
    grid-gap: 0 4px;
    align-items: center;
}

.book-selected {
    background: #068cb0;
    color: #FFF;
    border: 0.6px solid #068cb0;
}
.book-avbl {
    color: #4A4A4A;
    border: 0.6px solid rgba(144, 144, 144, 0.6);
    background: linear-gradient(to bottom, #eee 0%, #ebeaea 100%);
}
.book-notavb {
    background: #A7A7A7;
    color: #4A4A4A;
    border: 1px solid #A7A7A7;
}
.book-maxslr {
    border: 0.6px solid #C71D27;
    background: rgba(199, 29, 39, 0.20);
    color: #C71D27;
}
.book-partvaliable {
    border: 0.6px solid #FABE2C;
    background: rgba(250, 190, 44, 0.10);
    color: #FABE2C;
}
.book-avability {
    display: flex;
    align-items: center;
    flex-flow: nowrap;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 4px;
}
.book-avability > div {
    display: flex;
    align-items: center;
    grid-gap: 4px 4px;
}
.book-avability > div > i {
    width: 8px;
    height: 8px;
    display: block;
}
.book-avability > div > label {
    color: #000;
    font-size: var(--font-size-xs);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.book-unblock-time {
    border-radius: 5px;
    background: rgba(199, 29, 39, 0.10);
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    padding: 8px 4px;
    margin: 4px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*Book Appt-end*/
.pre-ascfff > ul {
    margin: 0;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    grid-gap: 0 6px;
}
.pre-ascfff > ul > li {
    border: 1px solid #DDD;
    border-radius: 6px;
    padding: 6px;
    list-style: none;
}
.pre-ascfff > ul > li > p {
    color: #0E0E0E;
    font-size: var(--font-size-xs);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.pre-ascfff > ul > li > label {
    display: flex;
    align-items: center;
    grid-gap: 0 8px;
}
.pre-ascfff > ul > li > label > span {
    color: #717171;
    text-align: center;
    font-size: var(--font-size-xs);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    grid-gap: 0 6px;
}
.pre-ascfff > p {
    color: #4A4A4A;
    font-size: var(--font-size-xs);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-top: 5px;
}
.pre-ascfff > ol {
    display: flex;
    flex-flow: wrap;
    grid-gap: 4px 8px;
    margin: 0;
}
.pre-ascfff > ol > li {
    border-radius: 3px;
    border: 0.3px solid #D8D8D8;
    background: rgba(242, 242, 242, 0.60);
    display: flex;
    align-items: center;
    padding: 0px 6px;
    width: calc(100%*(1 / 4) - 0px - 0px);
    flex-grow: 1;
}
.pre-ascfff > ol > li > p {
    margin: 0;
    color: #0E0E0E;
    font-size: var(--font-size-md);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    flex-grow: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 200px;
}
/*Ag Grid CSS*/

.outer {
    display: flex;
    height: 100%;
}

.inner-col {
    flex-grow: 1;
    height: 300px;
}

.factory {
    padding: 10px;
    margin: 10px;
    flex-grow: 1;
}

.factory-red {
    background-color: #ffdddd;
    border: 1px solid #ff8888;
}

.factory-green {
    background-color: #ddffdd;
    border: 1px solid #88ff88;
}

.factory-blue {
    background-color: #ddddff;
    border: 1px solid #8888ff;
}

.green-row {
    background-color: #ddffdd !important;
}

.red-row {
    background-color: #ffdddd !important;
}

.blue-row {
    background-color: #ddddff !important;
}