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

#clearOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: none;
    z-index: 2000;
}

.doc_popup {
    border-radius: 8px;
    bottom: 36px;
    box-shadow: -2px 0 4px rgba(0, 0, 0, .04), 0 0 2px rgba(0, 0, 0, .06), 0 0 1px rgba(0, 0, 0, .04);
    display: flex;
    left: 36px;
    overflow: hidden;
    position: fixed;
    right: 36px;
    top: 36px;
    background-color: #faf8f5;
    z-index: 2000;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 36px;
    z-index: 2000;
    width: 640px;
    height: initial;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #faf8f5;
    max-height: 80%;
    overflow: scroll;
}

h2.popupHeader {
    color: #333;
    margin: 0 0 12px 0;
    border-bottom: 1px solid hsla(36, 4%, 74%, .5);
}

h5.popupHeader {
    margin: 12px 0 0 0;
    font-size: 14px;
    color: black;
}

h5.popupLongHeader {
    margin: 12px 0 4px 0;
    font-size: 13px;
}

h5.popupRequired {
    color: #cc4d33;
    font-size: 12px;
    margin: 13px 0 0 12px;
}

.popupRow {
    display: flex;
    gap: 16px;
}

.popupItem {
    flex: 1;
    box-sizing: border-box;
}

input.popupInput {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

select.popupInput {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

textarea.popupInput {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

.popupSelectDiv {
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    background: white;
}

.popupSelect {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
}

.popup-action {
    margin-top: 40px;
}

.action_button {
    background-image: none;
    line-height: 12px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    padding: 14px 16px;
    border-radius: 6px !important;
    height: 40px !important;
    cursor: pointer;
    width: 138px;
}

.closePopup {
    color: #595956;
    border: 1px solid #595956;
    background-color: initial !important;
}

.savePopup {
    color: #fff;
    background-color: #007580;
    border: 0;
    margin-left: 20px;
}

.picture_block {
    background: #f2f0ed;
    border-radius: 4px;
    box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .05), inset 0 0 2px rgba(0, 0, 0, .06), inset 0 0 1px rgba(0, 0, 0, .04);
    display: flex;
    height: 152px;
    margin: 0 0 16px;
    width: 100%;
}

.profile_image {
    background: #fff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .05), inset 0 0 2px rgba(0, 0, 0, .06), inset 0 0 1px rgba(0, 0, 0, .04);
    height: 120px;
    margin: 16px;
    object-fit: cover;
    object-position: 50% top;
    width: 120px;
}

.upload_image_button_div {
    font-size: 16px;
    line-height: 20px;
    margin: auto 0;
}

.visually-hidden {
    clip: rect(0 0 0 0) !important;
    border: 0 !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}

.upload_image_label {
    color: #007580;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

.upload_img_msg {
    color: #807e7c;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch-mini {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 16px;
}

/* Hide default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-base {
    display: flex;
    align-items: end;
    margin-bottom: 8px;
}

/* The slider */
.slider,
.slider-mini {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.slider-mini:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

input:checked+.slider-mini {
    background-color: #2196F3;
}

input:checked+.slider-mini:before {
    transform: translateX(14px);
}

.switch-label {
    margin-left: 8px;
    /* Space between the switch and the text */
    vertical-align: middle;
    /* Aligns the text vertically with the switch */
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
    color: black;
}

.switch-label-mini {
    margin-left: 8px;
    /* Space between the switch and the text */
    vertical-align: middle;
    /* Aligns the text vertically with the switch */
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    color: black;
}

/* Upload Document */
.document_base_container {
    border-radius: 8px;
    box-shadow: -2px 0 4px rgba(0, 0, 0, .04), 0 0 2px rgba(0, 0, 0, .06), 0 0 1px rgba(0, 0, 0, .04);
    display: flex;
    overflow: hidden;
    height: 100%;
}

.document_zone_container {
    flex-grow: 1;
}

.styles_uploadContainer__QTUv2 {
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    color: #fff;
    flex-grow: 1;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
}

.styles_dropzone__KA5yq {
    align-items: center;
    bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

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

.styles_instructions__3fuYp {
    color: silver;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
}

.styles_actionButton__\+MUOS,
.styles_uploadButton__bVlBN {
    align-items: center;
    border: 2px solid hsla(0, 0%, 100%, .1);
    border-radius: 28px;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    padding: 16px 24px;
}

.styles_buttonText__DmkMR {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-left: 8px;
    text-transform: uppercase;
}

.styles_actionButtonHolder__Jw0r5 {
    bottom: 0;
    left: 0;
    margin: 24px;
    position: absolute;
}

.styles_actionButton__\+MUOS {
    background-color: initial;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    padding: 8px 12px !important;
    text-transform: uppercase;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

/* right side document */
.styles_sidebarContainer__-6Ff5 {
    background-color: var(--background);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    padding: 31px;
    position: relative;
    width: 384px;
}

.styles_sidebarContent__L1GSn {
    height: 100%;
    overflow-y: auto;
    padding: 1px;
}

.styles_sidebarTitle__BMVuy {
    border-bottom: 1px solid hsla(36, 4%, 74%, .5);
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 16px;
}

.styles_actionsContainer__OJREp {
    display: flex;
}

.card_shadow {
    border-radius: 8px !important;
    border: 1px solid #d9d7d4;
    background-color: #f2f0ed;
    padding: 24px !important;
    --tw-shadow: 1px 1px 1px rgba(0, 0, 0, .05), 0px 0px 2px rgba(0, 0, 0, .06), 0px 0px 1px rgba(0, 0, 0, .04) !important;
    --tw-shadow-colored: 1px 1px 1px var(--tw-shadow-color), 0px 0px 2px var(--tw-shadow-color), 0px 0px 1px var(--tw-shadow-color) !important;
    box-shadow: 0 0 #0000, 0 0 #0000, 1px 1px 1px rgba(0, 0, 0, .05), 0 0 2px rgba(0, 0, 0, .06), 0 0 1px rgba(0, 0, 0, .04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;

}

.action_button_holder {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
}

.styles_actionButton__Tmiut {
    align-items: center;
    display: flex;
    background: transparent;
    border: 1px solid #595956;
    border-radius: 4px;
    color: #595956;
    cursor: pointer;
    flex-basis: 50%;
    font-size: 9px;
    font-weight: 600;
    line-height: 10px;
    padding: 6px 12px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .15s ease-in-out;
}

.hidden_checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: none;
}

.note_label {
    align-items: center;
    background-color: #edebe8;
    border: 1px solid #d9d7d4;
    border-radius: 4px;
    color: #595956;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    justify-content: center;
    line-height: 16px;
    margin: 0 8px 8px 0;
    padding: 8px;
}

.mr-\[4px\] {
    margin-right: 4px !important;
}

.text-\[14px\] {
    font-size: 14px !important;
}

.font-medium {
    font-weight: 500 !important;
}

.leading-\[16px\] {
    line-height: 16px !important;
}

.note_label:hover {
    background-color: #595956;
    color: white;
}

.notes_icon {
    font-size: 20px;
}

.hidden_checkbox:checked+.note_label {
    background-color: #595956;
    border: 1px solid #595956;
    color: white;
}

.vital_input_container {
    align-items: center;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    display: flex;
    flex-grow: 1;
    height: 24px;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 12px;
}

.vital_input_container:hover {
    border: 1px solid teal;
}


.vitals_unitsLabel__suTfZ {
    color: var(--gray-08);
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    margin-left: 8px;
}

.vitals_label__vFOJh {
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    margin: 0 8px;
    white-space: nowrap;
}

.vitals_weightContainer__K83\+i {
    position: relative;
}

.relative {
    position: relative !important;
}

.styles_input__rJcAk {
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    width: 100%;
}

.vitals_input__WnyQf {
    background: transparent;
    border: transparent !important;
    border-bottom: 1px solid #a6a6a6 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    width: 64px !important;
    height: 24px;
    outline: none;
}

.vitals_select__aIx3O {
    font-size: 14px;
    margin-left: 8px;
    width: 184px;
}

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

/* Hide arrows in Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.css-b62m3t-container {
    position: relative;
    box-sizing: border-box;
}

.css-pdb6lw-control {
    -webkit-box-align: center;
    align-items: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    min-height: 38px;
    position: relative;
    transition: all 100ms ease 0s;
    background-color: white;
    border-color: #d8d8d8;
    border-radius: 6px;
    border-style: solid;
    border-width: 1px;
    box-shadow: none;
    box-sizing: border-box;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    outline: transparent double 1px !important;
}

.css-hlgwow {
    -webkit-box-align: center;
    align-items: center;
    display: grid;
    flex: 1 1 0%;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    padding: 2px 8px;
    box-sizing: border-box;
}

.css-1jqq78o-placeholder {
    grid-area: 1 / 1 / 2 / 3;
    color: rgb(128, 128, 128);
    margin-left: 2px;
    margin-right: 2px;
    box-sizing: border-box;
}

.css-19bb58m {
    visibility: visible;
    flex: 1 1 auto;
    display: inline-grid;
    grid-area: 1 / 1 / 2 / 3;
    grid-template-columns: 0px min-content;
    margin: 2px;
    padding-bottom: 2px;
    padding-top: 2px;
    color: rgb(51, 51, 51);
    box-sizing: border-box;
}

.clean_select {
    height: 80%;
    border: none;
    width: 100%;
    padding: 0 16px;
}

.date-border {
    padding: 24px;
    background-color: #f2f0ed;
    border: 1px solid #d9d7d4;
    border-radius: 8px;
}

.followUpActionCard {
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    background-color: #f2f0ed;
    padding: 24px;

}

.table_scroll__CmtCD {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    max-height: 100%;
    overflow-y: scroll;
}

.table_container__wnafa {
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .05), 0 0 2px rgba(0, 0, 0, .06), 0 0 1px rgba(0, 0, 0, .04);
    min-height: 0;
    padding: 8px;
}

.table_table__wCynn {
    border-collapse: initial;
    border-spacing: 0;
    color: #0f0f0f;
    max-height: 100%;
    overflow-y: auto;
    table-layout: fixed;
    width: 100%;
}

.vitalsHeadingRow {
    text-align: left;
    background: #f7f5f2;
    border-bottom: 1px solid #e3e0de;
}

.vitalsColumnHeading {
    color: #403f3d;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    padding: 12px 14px;
    text-transform: uppercase;
}

.table_table__wCynn th {
    background: #f7f5f2;
    border-bottom: 1px solid #d8d8d8;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 20%;
}

.td_vital_block {
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    padding: 14px !important;
    vertical-align: middle !important;
    font-size: 14px !important;
}

.td_vital_core {
    font-weight: 600 !important;
    color: #0f0f0f;
}

.td_vital_sub {
    font-weight: 500 !important;
    color: gray;
}

.td_vital_edit {
    border: 0 !important;
    margin: 0;
    cursor: pointer;
    white-space: nowrap !important;
    background-color: initial !important;
    padding: 0;
    color: gray;
}

.vital_row_hover {
    cursor: pointer;
}

.vital_row_hover:hover {
    background-color: #f5f5f5;
}

.empty_vitals_block {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    background-color: white;
    padding: 80px !important;
    color: gray;

}

.active_vital {
    background-color: #4ab5bf;
    color: white;
}

.styles_labelList__ZQ5r7 {
    grid-gap: 8px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}

.contactCardHeader,
.styles_card__fifmo {
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 1px 1px 0 rgba(0, 0, 0, .1);
    display: flex;
    transition: all .1s ease-in-out;
    align-items: center;
    padding: 8px 20px;
    gap: 12px;
}

.contactCardHeader {
    cursor: pointer;
    border-radius: 4px;
    color: #262626;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-align: center;
}

.styles_labelList__ZQ5r7 input:checked+.contactCardHeader {
    background: #4ab5bf;
    border: 1px solid #4ab5bf;
    color: #fff;
}

.popupBase {
    display: block;
    padding: 10px 40px;
    border: 1px solid lightgray;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.saveButton {
    background-color: #007580;
    color: white;
    margin-left: 20px;
}

.hidePop {
    background-color: white;
    color: black;
}

.radioSelection {
    padding: 4px 12px;
    border: 1px solid lightgray;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.removeDocumentButton {
    position: absolute;
    display: none;
    padding: 4px 8px;
    gap: 4px;
    border-radius: 40px;
    top: 4px;
    right: 32px;
    z-index: 99;
    align-items: center;
}

.removeDocumentButton:hover {
    background-color: #f0f0f0;
    color: black;
}

.in-button-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

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

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

.input-container {
    position: relative;
    /* Establishes a positioning context */
    display: inline-block;
    /* Fits the size of the contents */
    width: 100%;
}


.delete-row-button {
    position: absolute;
    right: 12px;
    top: 16px;
    border: none;
    background-color: #f8f8f8;
    cursor: pointer;
}