@font-face {
    font-family: "Inter";
    src: url("../Inter-Regular.ttf");
}
@font-face {
    font-family: "Inter Medium";
    src: url("../Inter Medium.ttf");
}
* {
    font-family: "Inter";
}

pre{
    font-family: "Inter" !important;
    font-size: 14.4px !important;
}

.main-container {
    display: flex;
    overflow-x: hidden;
}

.separated-box {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #fff;
}

.horizontal-nav {
    width: 252px;
    min-width: 252px;
    height: 100vh;
    overflow: hidden;
}
.custom-page-relative{
    position: relative;
    z-index: 999;
}
.custom-page-load{
    background-color: #fff;
    position: absolute;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-page-load .background-loader{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.custom-page-load .centered-data{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.custom-page-load .centered-data h3{
    text-align: center;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
}
.custom-page-load.disappear{
    animation: vanish 0.5s forwards;
}
@keyframes vanish{
    100%{
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}
#app {
    width: 100%;
}

.horizontal-nav ul {
    padding: 0;
    width: 252px;
    max-width: 252px;
    overflow-y: auto;
}

.horizontal-nav ul::-webkit-scrollbar {
    display: none;
}
.horizontal-nav ul li {
    list-style: none;
    font-size: 14px;
    width: 206px;
    margin-left: 32px;
    margin-right: 25px;
    margin-bottom: 24px;
    padding: 10px 20px;
    border-radius: 10px;
}

.horizontal-nav ul li:hover,
.horizontal-nav ul li.active {
    background: #d4d4ce;
}

.horizontal-nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

.horizontal-nav {
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.horizontal-nav .logo-wrapper {
    width: 100%;
}

.horizontal-nav .logo-wrapper img {
    padding: 20px;
    width: 100%;
}

.navbar {
    background: #1a1a1a !important;
    height: 70px;
}

#dropdown_content, .dropdown_content {
    -webkit-transition: max-height 0.4s;
    -moz-transition: max-height 0.4s;
    -ms-transition: max-height 0.4s;
    -o-transition: max-height 0.4s;
    transition: max-height 0.4s;
    overflow: hidden;
    max-height: 0;
}

#dropdown_content.active, .dropdown_content.active {
    max-height: 500px;
}

#dropdown_content .dropdown-inner, .dropdown_content .dropdown-inner {
    display: flex;
    gap: 10px;
    max-height: 500px;
    flex-direction: column;
    padding: 16px 0 0 42px;
    transition: height 1s ease-in-out;
}

.sidebar_dropdown a {
    width: 45px;
    height: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #333333;
}

#navbarDropdown {
    color: #fff !important;
}

.search-bar {
    background: #666666;
    padding-left: 20px;
    border-radius: 10px;
    position: relative;
}

.search-bar input {
    background: #666666;
    outline: none;
    border: 0;
    height: 38px;
    width: 390px;
    color: #faf5f5;
}
.search-bar .searchBoxSuggestion{
    display: none;
    width: 100%;
    position:absolute;
    top: 43px;
    left: 0;
    z-index: 999;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.search-bar.active .searchBoxSuggestion{
    display: block;
}
.search-bar .searchBoxSuggestion .filterHeading{
    background: #ECECE9;
}
.search-bar .searchBoxSuggestion .filterHeading h3{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #55551D;
    padding: 4px 16px;
    margin-bottom: 0;
}
.search-bar .searchBoxSuggestion .filterCategoryBox{
    display: none;
}
.search-bar .searchBoxSuggestion .filterCategoryBox.active{
    display: block;
}
.search-bar .searchBoxSuggestion .filterTypes{
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}
.search-bar .searchBoxSuggestion .filterTypes > button{
    background-color: #FFFFFF;
    color: #55591D;
    border: 1px solid #7B7F29;
    border-radius: 8px;
}
.search-bar .searchBoxSuggestion .filterTypes > button:hover{
    background-color: #7B7F29;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}
.search-bar .searchBoxSuggestion .searchBoxCTA{
    display: none;
    background: #fff;
    flex-direction: column;
}
.search-bar .searchBoxSuggestion .searchBoxCTA.active{
    display: flex;
}
.search-bar .searchBoxSuggestion .searchBoxCTA .searchFilterCTA{
    max-height: 168px;
    overflow-y: auto;
}
.search-bar .searchBoxSuggestion .searchBoxCTA a{
    width: 100%!important;
    text-decoration: none;
    color:#000;
    border-bottom: 1px solid #7B7F29;
    padding: 4px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
    width: 101px;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.search-bar .searchBoxSuggestion .searchBoxCTA a span:first-child{
    font-weight: bold;
}
.search-bar .searchBoxSuggestion .searchBoxCTA a:hover{
    background-color: #7B7F29;
    color: #fff;
}
.search-bar .searchBoxSuggestion .searchBoxCTA a:last-child{
    border-bottom: 0;
}

.horizontal-nav a svg {
    margin-right: 9px;
}

@media screen and (min-width: 990px) {
    .horizontal-nav .logo-wrapper {
        max-width: 142px;
        margin: 32px 55px 60px;
    }

    .horizontal-nav .logo-wrapper img {
        padding: 0;
    }
}

@media screen and (min-width: 1555px) {
    .content-heading{
        align-items: center;
    }
}

.container .content-wrapper {
    padding-right: 15px;
    margin-top: 35px;
    margin-bottom: 90px;
}

.content-heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding: 0;
    gap: 22px;
}

.content-heading.content-inventory-wrapper {
    justify-content: unset;
}

.content-heading.orders {
    gap: unset;
}

.content-heading h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    min-width: auto;
    margin-bottom: 0;
}

.content-heading button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 9px 16px;
    gap: 10px;
    height: 38px;
    background-color: #7b7f29;
    border-radius: 10px;
    outline: 0;
    border: 0;
}

.content-heading button:hover {
    background-color: #55591d;
}

.content-heading button label {
    height: 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #ffffff;
    cursor: pointer;
    width: max-content;
}

.content-heading .filter {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    padding: 0px;
    gap: 10px;
}

.filter {
    width: fit-content;
}

.filter .button-search {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

.filter .search {
    padding: 9px 16px;
    padding-right: 0;
    gap: 8px;
    height: 38px;
    background: #ffffff;
    border: 1px solid #55551D;
    border-radius: 10px;
}
.filter .search input::placeholder{
    color: #55591D!important;
}
.button-search .placeholder-length,
.filter .search .placeholder-length {
    position: absolute;
    z-index: 0;
    opacity: 0;
    white-space: nowrap;
}

.filter input {
    outline: none;
    border: none;
    height: auto;
    overflow: hidden;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #55591D;
    position: relative;
    z-index: 1;
}

.filter .search input {
    padding: 0;
}
.filter .type input::placeholder,
.filter .search input::placeholder {
    color: #55591D;
}

.filter .type {
    position: relative;
}

.filter .type input {
    padding-right: 0px;
}

.filter .type svg {
    position: absolute;
    right: 6px;
    cursor: pointer;
    z-index: 1;
}
.filter .type > svg path{
    fill: #5C6145!important;
}
.type#order-alert-div {
    width:min-content;
    position: relative;
}

/* .type#order-alert-div svg {
    right:5px!important;
    left:0!important;

} */
.button-search .addons-search-icon{
    position: relative;
    left: 5px;
    z-index: 5;
    min-width: 20px;
    min-height: 20px;
}
.filter .date {
    padding: 10px 15px;
    padding-right: 8px;
    /* width: min-content; */
    gap: 0 !important;
    height: 38px;
    background: #ffffff;
    border: 1px solid #2e331b;
    border-radius: 10px;
}
.filter .date input{
    cursor: text!important;
    color: transparent;
    text-shadow: 0 0 0 #55591D;
}
.filter .date input:focus{
    outline: none!important;
}

/* .filter .date .invoice-date-paid,
.filter .date .invoice-send-date {
    width: 100px !important;
} */

.radio-field-wrapper .button-search {
    display: flex;
    border-radius: 10px;
    border: 1px solid #55591D;
    align-items: center;
    padding: 8px 16px;
    padding-right: 0;
}

.radio-field-wrapper .button-search .delivery-date {
    max-width: 100px;
    border: 0;
    padding: 0;
}

.radio-field-wrapper .button-search .delivery-date:focus-visible {
    border: 0;
    outline: 0;
}

.date.order-date {
    /* width: min-content; */
    padding-right: 5px;
}

.filter .date svg:hover {
    cursor: pointer;
}

#PatientDateOfBirth {
    padding-right: 3px;
}

.date .invoice-send-date,
.date .invoice-date-paid,
.date .search-date,
.date .single-picker {
    outline: 0;
    border: none;
    padding: 0;
    /* width: 90%; */
    z-index: 99;
    cursor: pointer;
    /* height: 100%; */
}

.date label {
    width: 81px;
    height: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #5c6145;
}

.content-heading .type {
    padding: 9px 16px;
    gap: 8px;
    /* width: 86px; */
    height: 38px;
    background: #ffffff;
    border: 1px solid #2e331b;
    border-radius: 10px;
}
.content-heading .type.no-width{
    width: unset!important;
}
.content-heading .type2{
    width: unset!important;
}
.content-heading .type#order-colour-div {
    width: 96px;
}

.type label {
    width: 34px;
    height: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #5c6145;
}

.content-wrapper .app-content {
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 20px;
}

table>thead {
    height: 59.33px;
    top: 62px;
    background: #ffffff;
    box-shadow: 0px 8px 30px rgb(0 0 0 / 10%);
    border-radius: 10px 10px 0px 0px;
}

table>tbody {
    overflow-y: scroll;
}

table>thead>tr>th {
    padding: 0px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    color: #55551D ;
}
.c_invoice-table table > thead > tr > th:first-child{
    width: 7%;
}
.c_invoice-table table > thead > tr > th:nth-child(2){
    width: 30%;
}
.c_invoice-table table > thead > tr > th:nth-child(3),
.c_invoice-table table > thead > tr > th:nth-child(4),
.c_invoice-table table > thead > tr > th:nth-child(5){
    width: 10%;
}
.c_invoice-table table > thead > tr > th:nth-child(6){
    width: 8%;
}

table>tbody>tr>td {
    padding: 0px 10px;
}

table>tbody>tr {
    height: 60px;
    border-bottom: 1px solid #e7eaee;
}

#table-user-locations>tbody>tr {
    border-bottom: 0 !important;
}

table>tbody>tr:hover {
    background: #d4d4ce;
    border-bottom: 1px solid #e7eaee;
}

table>thead th {
    white-space: nowrap;
}

.ui-datepicker table>tbody>tr {
    height: unset;
    border-bottom: 0;
}

/* form setting */

.form-title {
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #000000;
}

.form-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 12px;
    width: 100%;
    height: 35.06px;
}

.form-progress .progress-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
}

.progress-title .progress-info {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 8.53px;
    width: 33.3%;
    position: relative;
    font-size: 12px;
}

.progress-info i {
    position: absolute;
    left: 0;
    font-size: 24px;
    color: #af0f0f;
    display: none;
}

.progress-info .elipse {
    box-sizing: border-box;
    width: 7.82px;
    height: 7.82px;
    left: 108.33px;
    top: 5.59px;
    /* background: #55591D; */
    border: 0.426531px solid #55591d;

    border-radius: 50%;
}

.elipse.active {
    background: linear-gradient(90deg,
            #55591d,
            #55591d 50%,
            rgb(250, 249, 249) 50%);
}

.elipse.accomplish {
    background: #55591d;
}

.form-progress .progress-bars {
    position: relative;
    width: 100%;
    height: 6.82px;
    top: 0px;
}

.progress-bars .bar-holder {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    border-radius: 30px;
    position: absolute;
    gap: 1px;
}

.progress-bars .bar {
    width: 33.3%;
    height: 6.82px;
    background: #d4d4ce;
}

.bar.active {
    background: #55591d !important;
}

.date svg.toggle-date {
    position: unset;
}

svg.toggle-date {
    position: absolute;
    right: 6px;
    z-index: 1;
}

.input-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.input-field label {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    letter-spacing: 0.1px;
}

.input-field input {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 20px;
    gap: 10px;
    background-color: white;
    border: 1px solid #e5e2da;
    border-radius: 10px;
    width: 100%;
    outline: 0;
    font-size: 12px;
    line-height: 0;
}
.small-input-wrapper #flat_rates .input-field label{
    white-space: unset!important;
}
.input-field .form-select:focus {
    box-shadow: none !important;
    border: 1px solid #e5e2da !important;
}

.input-field select {
    padding: 16px 20px !important;
    background-color: white !important;
    font-size: 12px !important;
    line-height: 20px !important;
    border: 1px solid #e5e2da !important;
    border-radius: 10px !important;
    width: 100%;
}

.modal-dialog .modal-content .modal-body {
    padding: 20px !important;
}

/* .input-field select:has(option:checked) {
    border: 1px solid #55591D !important;
} */

.input-field .has-selected {
    border: 1px solid #55591D !important;
}
.blank-input {
    border: 1px solid hsl(44, 17%, 88%)!important;
}

.selection {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.selection .select2-selection {
    width: 90% !important;
    border: 0 !important;
    min-height: auto !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin: 0 !important;
    padding-top: 8px !important;
}

[contentEditable="true"]:empty:not(:focus):before {
    content: attr(data-placeholder);
}

.input-field .multilineinput {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 10px;
    height: 262px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e2da;
    outline: #e1e0dd;
    border-radius: 10px;
    order: 1;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.4px;
    color: #666666;
    overflow-wrap: anywhere;
    resize: none;
}

.input-field .m-multilineinput {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 10px;
    height: 162px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e2da;
    outline: #e1e0dd;
    border-radius: 10px;
    order: 1;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.4px;
    color: #666666;
    overflow-wrap: anywhere;
    resize: none;
}

.multilineinput.required {
    border: 1px solid #e95555 !important;
}

.form-button {
    display: flex;
    justify-content: space-between;
}

.custom-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 16px;
    gap: 10px;
}

.table-btn-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.table-button {
    padding: 5px 16px !important;
    border-radius: 13px !important;
    letter-spacing: 0.25px;
    border: 0;
    outline: 0;
}

.btn-next,
.btn-cancel-user,
.btn-save,
.progress-next {
    background: #7b7f29;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #ffffff;
    border: 0;
    outline: 0;
}

.btn-info1,
.btn-cancel {
    background: #fffffc;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #5c6145;
    border: 1px solid #2e331b;
    outline: 0;
}

.btn-info1 {
    padding: 9px 16px;
}

.accordion-wrapper .btn-outsource {
    color: #55591D;
    background-color: #D4D4CE;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    border-radius: 4px;
    padding: 2px 10px;
    cursor: default!important;
}

.accordion-wrapper .btn-outsource:hover {
    background-color: #D4D4CE;
}

#order-top-button {
    gap: 10px;
}

.info-link {
    text-decoration: none;
    color: #000000;
    cursor: pointer;
}

.info-link:hover {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

/* got error using the select 2 */
/* .modal{
    z-index: 100000 !important;
} */

.select2-container--open {
    z-index: 9999999 !important;
}

.select2-holder {
    padding: 16px 20px;
    border: 1px solid hsl(44, 17%, 88%);
    border-radius: 10px;
    width: 100%;
    font-size: 12px;
    display: flex;
    height: 50px;
}
.select2-holder:has(select[multiple]){
    height: unset!important;
    padding: 14px 20px!important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #666666 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000 !important;
}

.select2-container-multiple {
    flex-wrap: wrap;
    align-content: center !important;
}

.select2-holder .select2-selection__rendered {
    line-height: 18px !important;
    padding-bottom: 0 !important;
}

.select2-holder .select2-selection__arrow {
    top: -5px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}

.select2-container .select2-search--inline .select2-search__field {
    padding-top: 0px !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: transparent !important;
}

.select2-holder:has(> span.select2-container--open){
    border: 1px solid #1a1a1a;
}
.select2-holder:has(> span.select2-container--below){
    border: 1px solid #55591d;
}
.input-field:not(:has(> .input-done)) > .select2-holder {
    border: 1px solid hsl(44, 17%, 88%);
}
.select2-holder.input-done {
    border: 1px solid #1a1a1a!important;
}

.input-done select{
    border: 1px solid #1a1a1a!important;
}
.input-state-normal.invalid-input > input{
    border: 1px solid #1a1a1a!important;
    color: #000!important;
}

.select2-holder:has(.select2-selection__choice__display){
    border: 1px solid hsl(44, 17%, 88%);
}
.select2-holder:has(.select2-container--disabled),
.select2-holder:has(.select2-selection__choice__display){
    border: 1px solid hsl(44, 17%, 88%);
}
.select2-container--default .select2-selection--multiple{
    padding: 0!important;
}
/* .select2-container--default .select2-selection--multiple {
    padding-bottom: 0!important;
} */

/* .select2-container--open .select2-dropdown--below {
    width: 464px!important;
    top: 15px;
    margin-left: -20px;
    padding: 5px 10px;
} */

.nav-tab.nav-heading {
    display: flex;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
    background: #ffffff;
    box-shadow: 0px 25px 40px rgb(0 0 0 / 8%);
    border-radius: 10px;
    /* width: 100%; */
    height: auto;
    width: fit-content;
    align-items: center;
}

.nav-heading ul {
    display: flex;
    flex-direction: row;
    /* padding: 10px 0px 10px 0px; */
    gap: 24px;
    list-style-type: none;
    width: 100%;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-heading ul>li {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    height: 100%;
    min-width: 133px;
}

.nav-heading ul>li>a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 10px;
    text-decoration: none;
    color: #1a1a1a;
}

.nav-heading ul>li.active {
    background: #d4d4ce;
    border-radius: 10px;
}

#form-account {
    padding: 20px;
    width: 445px;
    height: fit-content;
    background: #ffffff;
    box-shadow: 0px 25px 40px rgb(0 0 0 / 8%);
    border-radius: 10px;
}

table .sorting:before {
    bottom: 50% !important;
}

table .sorting:after {
    top: 53% !important;
}

table.dataTable tbody th,
table.dataTable tbody tr {
    background-color: #fff !important;
}

table.dataTable tbody tr:hover {
    background-color: #d4d4ce !important;
}

table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting:before {
    font-size: 24px !important;
}

/* table.dataTable tbody tr:hover td:first-child a{
    text-decoration: underline;
    text-underline-offset: 3px;
} */
.nav-item #navbarDropdown.dropdown-toggle::after {
    content: none !important;
}

.navbar-nav .nav-item.c-nav-item a{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #9ea435 !important;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.navbar-nav .nav-item #navbarDropdown {
    font-size: 16px !important;
    background-color: #9ea435 !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-collapse .navbar-nav {
    gap: 25px;
}

.navbar-nav .notif-bell-icon {
    position: relative;
}

.navbar-nav .notif-bell-icon .notif-count-wrapper {
    background-color: #d83a52;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    color: #fff;
    font-size: 10px;
    position: absolute;
    top: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container #app .navbar .container {
    padding-right: 35px;
    padding-left: 35px;
}

.modal .half-input-1 {
    padding-right: 0rem !important;
}

.modal .half-input-2 {
    padding-left: 0rem !important;
}

.cliniko-tooltip {
    display: flex;
    background: #7B7F29;
    width: 24px;
    height: 24px;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.sync-patient-btn {
    background-color: #fff;
    padding: 5px 16px;
    color: #5C6145;
    border: 1px solid #2E331B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.small-input-wrapper label {
    font-size: 16px !important;
    font-weight: 500;
    letter-spacing: 0.15px;
}

.small-input-wrapper input,
.small-input-wrapper select {
    padding: 8px 20px !important;
    width: 100%;
    border-color: #55591d !important;
    color: #000 !important;
}

.small-input-wrapper .position-relative .position-absolute {
    top: 3px;
    right: 5px;
}

.position-relative #standard_rate_div {
    width: 100%;
    border: #55591d solid 1px;
    padding: 16px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 11px;
}

.btn-clinic-status {
    padding: 2px 10px;
    border-radius: 4px;
    border: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.25px;
    font-style: normal;
}

.clinic-pending {
    background: #fef2f2;
    color: #991b1b;
}

.clinic-active {
    background: #ecfdf5;
    color: #064e3b;
}

/* Notification */
.notif {
    position: relative;
    width: auto;
}

.notif-card-content {
    display: flex;
    position: absolute;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    right: 0;
    left: auto;
    background: #ffffff;
    border: 1px solid #cccccc;
    box-shadow: 0px 25px 40px rgb(0 0 0 / 8%);
    border-radius: 4px;
    padding: 16px;
    gap: 16px;
    height: auto;
    width: 551px;
    max-height: 301px;
    z-index: 999;
}

.notif-body {
    padding: 0px 7px;
    min-height: 30px;
    max-height: 225px;
    overflow-y: auto;
    background: #fafafa;
}

.notif-body .notif-content {
    display: flex;
    flex-direction: column;
}

.notif-body .notif-content * {
    cursor: pointer;
}

ul#notif-body {
    list-style-type: none;
    padding: 0;
}

ul#notif-body li:not(:last-child) {
    margin-bottom: 3px;
}

#notif-body li.active {
    padding: 0px 6px;
    background-color: #7fa14438;
}

li>form>.notif-content {
    text-decoration: none;
    color: black;
}

form:hover .notif-title>label>b {
    text-decoration: underline;
}

.sub-title:hover {
    cursor: pointer;
}

.sub-title label {
    cursor: pointer;
}

.notif-content .notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notif-header .notif-title {
    gap: 7px;
    display: flex;
    align-items: center;
}

.notif-title>label {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    overflow-wrap: anywhere;
}

.notif-header>span {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #333333;
}

form.read-notification {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 13px 0px;
    border-bottom: 1px #8f8b8b57 solid;
    cursor: pointer;
}

form .sub-title {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    display: flex;
    align-items: center;
    letter-spacing: 0.4px;
    color: #333333;
    justify-content: space-between;
}

.btn-notif-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.btn-notif-holder .btn-notif {
    display: flex;
    padding: 5px 16px;
    width: 101px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-notif.notif-close {
    background: #ffffff;
    border: 1px solid #55591d;
    color: #55591d;
}

.btn-notif.btn-dismiss {
    background: #7b7f29;
    border: 0 !important;
    outline: 0;
    color: white;
}

.dataTables_info,
.dataTables_length,
.dataTables_filter {
    display: none;
}

table.dataTable tbody tr:last-child {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

table.dataTable tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

table.dataTable tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.dataTables_wrapper {
    padding-bottom: 5px;
}

.dataTables_wrapper table {
    box-shadow: unset;
}

.dataTables_paginate {
    padding-top: 30px !important;
    display: flex;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button {
    background: #fff !important;
    border-radius: 4px !important;
    border: 1px solid #6b747d !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    height: 32px;
    width: 32px;
    padding: 0 !important;
}

#AddUpdateOrder .modal-body label {
    font-weight: 600;
}

#AddUpdateOrder .modal-body select {
    width: 100%;
}

@keyframes slide-left {
    from {
        right: -150px;
    }

    to {
        right: 40px;
    }
}

@keyframes slide-right {
    from {
        right: 40px;
    }

    to {
        right: -200px;
    }
}

.select2-search__field:focus-visible {
    outline: none !important;
}

.cus-alert {
    position: fixed !important;
    display: flex;
    width: fit-content;
    right: 40px;
    bottom: 40px;
    white-space: nowrap;
    background-color: white !important;
    color: #403838;
    border-radius: 10px !important;
    border: 0 !important;
    box-shadow: 0px 25px 40px rgb(0 0 0 / 8%);
    text-align: center;
    align-items: center;
    gap: 12px;
    height: 50px !important;
    padding: 10px !important;
    z-index: 999;
    animation: 1s slide-left;
}
.cus-alert.alert-success{
    color: #000000!important;
}
.cus-alert.slide-right {
    animation: 1s ease-out slide-right !important;
}
#UserTable th:last-child{
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

#load-more {
    display: flex;
    align-items: center;
    justify-content: center;
}

#load-more label {
    border: 1px solid #e5e2da;
    border-radius: 10px;
    padding: 3px 13px;
    width: fit-content;
    color: #0e0e0e;
    font-weight: 500;
    cursor: pointer;
}

#confirmReject {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 22px;
}

#confirmReject h1 {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    text-align: center;
    line-height: 36px;
    color: #000000;
}

#system-notification {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: height 500ms;
    transition: max-height 500ms;
}

#system-notification.active {
    transition: max-height 1000ms;
    max-height: 500px;
}

.c-top-beta-banner .c-banner-details{
    border-radius: 10px;
    padding: 8px 10px;
    margin-left: 25px;
}

.c-top-beta-banner .c-beta-wrapper{
    background: #9ea435;
}

.c-top-beta-banner .c-staging-wrapper{
    background: #fff;
}
.c-top-beta-banner .c-banner-details h2{
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.15px;
    margin: 0;
    color: #fff;
}
.c-top-beta-banner .c-staging-wrapper h2{
    color: #000;
    text-transform: capitalize;
}

.wide-notification {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    background: #d83a52;
    border-radius: 10px;
    padding: 10px 30px;
    gap: 30px;
    margin-bottom: 60px;
}

.wide-notification .system-message {
    width: 96%;
}

.system-message p {
    margin: 0;
    color: #ffffff;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
}

.div-card {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: white;
    border-radius: 10px;
    width: 556px;
}

.container1 {
    width: 100%;
    display: flex;
}

.div-card p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.5px;
    margin: 0;
    color: #000000;
}

.container2 p {
    text-align: left !important;
    width: 100%;
    font-family: "Inter";
    font-style: normal;
    letter-spacing: 0.5px;
    font-size: 12px;
    line-height: 15px;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 16px;
    border-radius: 10px !important;
    border: 0;
}

.btn-primary {
    font-family: "Inter" !important;
    font-style: normal;
    background: #7b7f29;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #ffffff;
}

/* toogle button  */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 30px;
    border: 1px solid #d4d4ce;
    border-radius: 100px;
}

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

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3.5px;
    bottom: 4px;
    background-color: #d4d4ce;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    background: #7b7f29;
}

/* Rounded sliders */
.slider.round {
    border-radius: 100px;
}

.slider.round:before {
    border-radius: 50%;
}

.toggle-div {
    display: flex;
    flex-direction: column;
}

.toggle-notif {
    display: flex;
    gap: 36px;
    border-bottom: 1px solid #e7eaee;
    padding-bottom: 12px;
}

.toggle-notif span {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    display: flex;
    align-items: center;
    letter-spacing: 0.4px;
    padding-left: 10px;
}

.toggle-holder {
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 12px 0px;
    border-bottom: 1px solid #e7eaee;
}

.toggle-holder span {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    font-family: "Inter";
    display: flex;
    align-items: center;
    letter-spacing: 0.1px;
}

.notification-modal .modal-content {
    width: 458px;
}

.notification-modal .form-title {
    font-family: "Inter" !important;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 22px !important;
    color: #000000;
}

.notification-modal label {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #141522;
}

.notification-modal .note {
    font-family: "Inter";
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.04px;
    color: #333333;
    margin-bottom: 22px;
}

.search-result-field {
    position: absolute;
    top: 52px;
    width: 90%;
    padding: 6px;
    background: whitesmoke;
    text-align: left !important;
    list-style: none;
    border-radius: 5px;
    z-index: 1;
    box-shadow: 0 4px 7px rgb(0 0 0 / 20%);
    cursor: pointer;
    max-height: 250px;
    height: auto;
    overflow-x: auto;
}

.search-result-field li {
    padding: 5px 10px;
    font-size: 14px;
    font-style: normal;
}

.search-result-field li:hover {
    background: rgb(198, 192, 192);
}

.reset {
    padding: 20px 20px !important;
}

#reset-email-input {
    width: 458px;
}

#reset-password {
    width: 458px;
}

#reset-title {
    padding: 0 0 30px;
    margin: 0;
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
}

#reset-form {
    margin: 0;
}

#reset-form .input-field {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

.reset>form>label {
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #141522;
    font-weight: 500;
    padding: 0px;
}

.reset>form>label:not(:first-of-type) {
    margin-top: 12px;
}

#reset-form input {
    margin: 12px 0 0;
}

#reset-form input {
    margin: 12px 0 0;
}

#reset-form .note-holder {
    margin-top: 22px;
}

#reset-form small {
    padding: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.4px;
    color: #333333;
}

#reset-form .form-button {
    margin-top: 30px;
    padding: 0;
}

.form-button a {
    text-decoration: none;
}

.btn-status {
    padding: 2px 10px;
    border-radius: 4px;
    border: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.25px;
    font-style: normal;
    text-transform: capitalize;
}

.cf-charcoal9 a {
    color: #191D23 !important;
}

.cf-charcoal9 span.draft,
.cf-charcoal9 span.active {
    border-radius: 4px;
}

.table td {
    color: #191D23 !important;
}

.status-inactive,.status-unpaid, .status-rejected {
    background: #FEF2F2;
    color: #991B1B;
    text-transform:capitalize;
}

.status-pending {
    background: #F7F4D4;
    color: #736700;
    text-transform:capitalize;
}

.status-active, .status-paid {
    background: #ECFDF5;
    color: #064E3B;
    text-transform:capitalize;
}

.order-status-overdue {
    background: #FEF2F2;
    border-radius: 4px;
    color: #991B1B;
    padding: 2px 10px;
}

.order-status-unpaid {
    background: #F7F4D4;
    border-radius: 4px;
    color: #736700;
    padding: 2px 10px;
}

.order-status-paid {
    background: #ECFDF5;
    border-radius: 4px;
    color: #064E3B;
    padding: 2px 10px;
}

.order-status-draft {
    background: #ECECE9;
    border-radius: 4px;
    color: #55591D;
    padding: 2px 10px;
}

/* #table-podiatrist .status-pending {
    background: #FEF2F2;
    color: #991B1B;
} */

.confirm p {
    font-size: 28px;
    margin-bottom: 22px;
    line-height: 36px;
}

.confirm small {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #333333;
    margin-bottom: 22px;
}

.confirm .form-button {
    margin-top: 22px;
}

.confirm p {
    font-size: 28px;
    margin-bottom: 22px;
    line-height: 36px;
}

.confirm small {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #333333;
    margin-bottom: 22px;
}

.confirm .form-button {
    margin-top: 22px;
}

/* .select2-container--open .select2-dropdown--below {
    width: 458px!important;
    top: 18px;
    margin-left: -20px;
    padding: 5px 10px;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
} */
.straight-range-container,
.tapered-container,
.custom-shape-container{
    /* display: none; */
}

.clinic-tooltip {
    position: relative;
    display: inline-block;
}
#cliniko-tooltip{
    text-align: center!important;
    cursor: pointer;
}

.clinic-tooltip .tooltiptext {
    visibility: hidden;
    /* width: 120px; */
    width: max-content;
    background-color: #7b7f29;
    color: #fff;
    border-radius: 6px;
    padding: 5px 7px;
    position: absolute;
    z-index: 1;
    top: -4px;
    left: 142%;
}

.clinic-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #7b7f29 transparent transparent;
}

.clinic-tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltiptext p {
    margin: 0 !important;
}

.show-archive,
.user-button-export,
.user-button-import {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: -41px;
    position: relative;
    z-index: 1;
    width: fit-content;
}
.user-button-import{
    margin-top: 0!important;
}
.show-archive {
    gap: 6.5px;
}

.user-button-export #order_details {
    margin-top: -3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-button-import #import-order {
    background: white;
    border: 1px solid #2e331b;
}

#import-order label {
    color: #5c6145;
}

table input[type=checkbox] {
    position: relative;
    border: 2px solid #7B7F29;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0px 6.5px 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px;
    -webkit-appearance: none;
}

.table-holder .scrollable-table-wrapper #order-table thead tr > th:first-child:after,
.table-holder .scrollable-table-wrapper #order-table thead tr > th:first-child:before
{
    content: none!important;
}

table input[type=checkbox]:checked {
    background-color: unset;
}
table input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 55%;
    top: 50%;
    width: 4px;
    height: 10px;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}
table input[type=checkbox]:checked::before {
    border: solid #7B7F29;
    border-width: 0 2px 2px 0;
}
/* Location Settings table input design */
table#clinic-admin-location-table input[type=checkbox] {
    position: relative;
    border: 1px solid #55591D;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 3px 6.5px 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 15px;
    width: 15px;
    -webkit-appearance: none;
}
table#clinic-admin-location-table input[type=checkbox]:checked {
    background-color: #55591D;
}
table#clinic-admin-location-table input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 54%;
    top: 50%;
    width: 4px;
    height: 10px;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}
table#clinic-admin-location-table input[type=checkbox]:checked::before {
    border: solid #FFF;
    border-width: 0 2px 2px 0;
}
/* End */
/* Checkbox for alert container */
.alert-filter-container{
    position: absolute;
    top: 32px;
    /* right: -167px; */
    left: 5px;
    width: 248px;
    background: #fff;
    border-radius: 4px;
    padding: 16px;
    border: 1px solid #CCCCCC;
    z-index: 5;
    flex-direction: column;
    gap: 16px;
    display: none;
}
.invoice-status .alert-filter-container{
    top: 36px;
    left: unset;
    right: 0;
}

/* For toolpath */
.update-toolpath-container{
    width: 400px !important;
}


.toggle-options-wrapper-daily .alert-filter-container{
    right: unset;
    left: -55px;
    top: 45px;
}
.toggle-options-wrapper-daily #dailyReports-btn:hover,
.toggle-options-wrapper-daily #dailyReports-btn{
    background: transparent!important;
    border: 1px solid #55591D!important;
    padding: 9px 16px!important;
    border-radius: 10px!important;
    color: #000!important;
}
.alert-filter-container.active{
    display: flex;
}
.alert-filter-container .filter-types-wrapper{
    padding: 7px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #ECECE9;
    max-height: 200px;
    overflow-y: auto;
}

.update-toolpath-container .filter-types-wrapper{
    overflow: hidden !important;
}


.alert-filter-container .filter-types-wrapper input[type="text"]{
    width: 50%!important;
    padding: 4px 8px;
    border: 1px solid #000;
    border-radius: 10px;
}

.update-toolpath-container .filter-types-wrapper input[type="text"]{
    width: 100%!important;
    padding: 4px 8px;
    border: 1px solid #000;
    border-radius: 10px;
}


.alert-filter-container .event-filter{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.alert-filter-container .event-filter a{
    color: #000;
    text-decoration: underline;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.alert-filter-container .event-filter span.btn-cancel,
.alert-filter-container .event-filter span.btn-submit,
.alert-filter-container .event-filter button{
    padding: 5px;
    width: 101px!important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.5px;
    max-height: 26px;
    border-radius: 10px;
    text-decoration: none!important;
}
.alert-filter-container .event-filter-2{
    gap: 16px;
}
.alert-filter-container .event-filter span.btn-cancel,
.alert-filter-container .event-filter button.btn-cancel{
    background-color: #FFFFFF;
    color: #55591D;
    border: 1px solid #7B7F29;
}
.alert-filter-container .event-filter span.btn-cancel:hover,
.alert-filter-container .event-filter button.btn-cancel:hover{
    background-color: #7B7F29;
    color: #FFFFFF;
}
.alert-filter-container .event-filter span.btn-submit,
.alert-filter-container .event-filter button.btn-submit{
    background-color: #7B7F29;
    color: #FFFFFF!important;
    border: 1px solid #7B7F29;
}
.alert-filter-container .event-filter span.btn-submit:hover,
.alert-filter-container .event-filter button.btn-submit:hover{
    background-color: #FFFFFF;
    color: #7B7F29!important;
}
.alert-filter-container .filter-types-wrapper::-webkit-scrollbar{
    width: 4px;
}
.alert-filter-container .filter-types-wrapper::-webkit-scrollbar-thumb{
    background-color: #999999;
    border-radius: 10px;
}
.alert-filter-container .filter-types-wrapper > div{
    display: flex;
    align-items: center;
}
.alert-filter-container .filter-types-wrapper > div input{
    margin-top: 0;
}
.alert-filter-container .filter-types-wrapper > div .colour-swatch{
    width: 17px;
    height: 17px;
    border: 1px solid #000;
    border-radius: 50%;
    margin-right: 5px;
}
.alert-filter-container .filter-types-wrapper input{
    margin-right: 10px;
}
.alert-filter-container .filter-types-wrapper span,
.alert-filter-container .filter-types-wrapper label{
    width: 100%;
    text-align: left;
    color: #000;
    font-size: 12px;
    letter-spacing: 0.4px;
}
.alert-filter-container .filter-types-wrapper span{
    width: unset;
}
.alert-filter-container input[type=checkbox] {
    position: relative;
    border: 1px solid #7B7F29;
    border-radius: 4px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 3px 6.5px 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 20px;
    width: 20px!important;
    min-width: 20px!important;
    -webkit-appearance: none;
}
.alert-filter-container input[type=checkbox]:checked {
    background-color: #7B7F29;
}
.alert-filter-container input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 54%;
    top: 50%;
    width: 4px;
    height: 10px;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}
.alert-filter-container input[type=checkbox]:checked::before {
    border: solid #FFF;
    border-width: 0 2px 2px 0;
}
/* End */
.show-archive input[type=checkbox] {
    position: relative;
    border: 1px solid #7B7F29;
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 15px;
    width: 15px;
    -webkit-appearance: none;
}

.show-archive input[type=checkbox]:checked {
    background-color: #7B7F29;
    opacity: 1;
}

.show-archive input[type=checkbox]:before {
    content: '';
    position: absolute;
    right: 55%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

.clinic-admin-primary-checker {
    color: #191D23;
}

.show-archive label {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.5px;
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.filter-button .show-archive {
    margin-top: 0;
}

.table tr td input.bill-status-paid,
.accordion button.bill-status-paid {
    color: #064E3B;
    border: 0;
    background-color: #ECFDF5;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.25px;
    pointer-events: none;
}

.table tr td input.bill-status-unpaid,
.accordion button.bill-status-unpaid {
    color: #991B1B;
    border: 0;
    background-color: #FEF2F2;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.25px;
    pointer-events: none;
}

.bulk-edit-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bulk-edit-wrapper .bulk-edit-holder {
    display: flex;
    justify-content: space-between;
    height: 36px;
    border: 1px solid #55591D;
    align-items: center;
    padding: 9px 16px;
    gap: 22px;
    box-shadow: 25px 0px 45px rgba(0, 0, 0, 0.08), 0px 25px 45px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    position: absolute;
    top: -140px;
    background: white;
    z-index: 1;
    width: 100%;
    max-width: max-content;
    left: 50%;
    transform: translateX(-50%);
}

.bulk-edit-wrapper .bulk-edit-holder .print-options-menu{
    position: absolute;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
    width: 260px;
    flex-direction: column;
    top: -192px;
    left: -10px;
    display: none;
    gap: 16px;
    cursor: default;
}
.bulk-edit-wrapper .bulk-edit-holder .print-options-menu.active{
    display: flex;
}
.bulk-edit-wrapper .bulk-edit-holder .print-options-menu span{
    color: #000;
    text-decoration: underline;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: max-content;
}
.bulk-edit-wrapper .bulk-edit-holder .alert-filter-container::before,
.bulk-edit-wrapper .bulk-edit-holder .print-options-menu::before{
    content: '';
    position: absolute;
    display: inline-block;
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    left: 9px;
}
.bulk-edit-wrapper .bulk-edit-holder .alert-filter-container::after,
.bulk-edit-wrapper .bulk-edit-holder .print-options-menu::after{
    content: '';
    position: absolute;
    display: inline-block;
    top: initial;
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    left: 10px;
}

.bulk-edit-wrapper .bulk-edit-holder .export-options-menu .export-option{
    accent-color: #7B7F29;
    cursor: pointer;
}

.bulk-edit-wrapper .bulk-edit-holder .export-options-menu{
    cursor: pointer;
}

.bulk-edit-holder .bulk-edit {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.bulk-edit>* {
    cursor: pointer;
}

.bulk-edit-holder label {
    font-weight: 400px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #55591D;
}
.bulk-edit-wrapper .bulk-edit-holder .alert-filter-container{
    top: -195px;
    left: 0;
}

.select-all-order {
    cursor: pointer;
}

.archiving-modal-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.announce-button a {
    text-decoration: none;
    color: white;
}

.announce-button a:hover {
    background-color: #55591d;
    cursor: pointer;
    color: white;
}

.hero-img-upload {
    border: 1px dashed #b6b894;
    border-radius: 10px;
    padding: 33px;
}

.upload-img-button {
    background-color: #7b7f29;
    padding: 9.33px;
    border: 0;
    border-radius: 10px;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#btn-fileUpload a:hover {
    background-color: #55591d;
    cursor: pointer;
    color: white;
}

.textarea-text-size {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #FFFFFF;
    border: 0.602897px solid #2e331b;
    /* border-top-left-radius: 6.02897px;
    border-top-right-radius: 6.02897px; */
    border-radius: 6.02897px;
    width: 22px;
    box-sizing: border-box;

}

.text-editor {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
}

.text-editor .text-size {
    display: flex;
    align-items: center;
    gap: 4.2px;
}

.text-editor .text-size .text-input {
    width: 32px;
    text-align: center;
    padding: 6.02897px 7.23476px;
    border: 0.602897px solid #55591D;
}

.text-weight a {
    text-decoration: none;
    color: #000;
}

.text-weight a:hover {
    color: #000;
}

.text-list a {
    text-decoration: none;
    color: #000;
}

.text-list a:hover {
    color: #000;
}

.text-option a {
    text-decoration: none;
    color: #000;
    border: none;
}

.text-option a:hover {
    color: #000;
}

.text-editor .text-weight {
    gap: 10px;
    display: flex;
}

.text-editor .text-list {
    display: flex;
    align-items: center;
}

.styleBold:before {
    content: "B";
    font-weight: bold;
    font-style: normal;
}

.styleItalic:before {
    content: "I";
    font-style: italic;
}

.styleUnderline:before {
    content: "U";
    text-decoration: underline;
    font-style: normal;
}

div.announcement-card {
    height: fit-content;
    background: #ffffff;
    box-shadow: 0px 25px 40px rgb(0 0 0 / 8%);
    border-radius: 10px;
    border: none;
}


.card-img {
    width: 306px;
    height: 135px;
    object-fit: cover;
}
.scrollable-table-wrapper .custom-table-wrapper{
    max-width: calc(100vw - 319px);
    overflow-x: auto;
}
.scrollable-table-wrapper.report-scrollable .custom-table-wrapper{
    transform: rotateX(180deg);
}
.scrollable-table-wrapper.report-scrollable .c-table-reports{
    transform: rotateX(180deg);
}
.scrollable-table-wrapper .custom-table-wrapper::-webkit-scrollbar{
    height: 3px;
    width: 5px;
}
.scrollable-table-wrapper.report-scrollable .custom-table-wrapper::-webkit-scrollbar{
    height: 5px;
}
.scrollable-table-wrapper .custom-table-wrapper::-webkit-scrollbar-thumb{
    background-color: #E5E2DA;
}
.scrollable-table-wrapper .custom-table-heading,
.scrollable-table-wrapper .custom-table-heading td{
    background-color: #f8fafc;
}
.scrollable-table-wrapper .custom-table-heading .t-header-custom{
    text-align: center;
    background-color: #fff;
}
.scrollable-table-wrapper.scroll-xy .custom-table-wrapper{
    max-height: 75vh;
    overflow: auto!important;
}
.announcement-paginate-item a {
    border: 1px solid #6B747D;
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.announcement-paginate-item-active a {
    background-color: #7B7F29 !important;
    color: #fff;
    border: 1px solid #6B747D;
    box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    height: 32px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.announcement-paginate-item-active a:hover {
    background-color: #7B7F29 !important;
    color: #fff;
}

.announcement-paginate-item a:hover {
    background-color: #7B7F29 !important;
    color: #fff;
}

.card-b p.span {
    font-size: 16px;
}

#card-announcement-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 12.45px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    min-height: 51.19px;
}
#text-read{
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.5px;
    color:black;
    text-decoration: none;
}

#announcement_image{
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="white" class="bi bi-pen-fill" viewBox="0 0 16 16"><path d="m13.498.795.149-.149a1.207 1.207 0 1 1 1.707 1.708l-.149.148a1.5 1.5 0 0 1-.059 2.059L4.854 14.854a.5.5 0 0 1-.233.131l-4 1a.5.5 0 0 1-.606-.606l1-4a.5.5 0 0 1 .131-.232l9.642-9.642a.5.5 0 0 0-.642.056L6.854 4.854a.5.5 0 1 1-.708-.708L9.44.854A1.5 1.5 0 0 1 11.5.796a1.5 1.5 0 0 1 1.998-.001z"/></svg>'), auto;

}
#input-field-div{
    padding-top: 22px;
}
#readNowDiv{
    max-width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
}
#readNowDiv a:first-child{
    margin-right: 8px;
}
#readNowDiv a:last-child svg{
    width: 20px;
}
#readNowDiv.active a:first-child{
    color: #7B7F29;
    text-decoration: underline;
    margin-right: 11px;
}
#readNowDiv.active a:last-child svg > *{
    stroke: #7B7F29;
}
.order-title-container{
    display: flex;
    justify-content: center;
    gap: 24px;
}
.order-title-container .order-tooltip{
    position: relative;
}
.order-title-container .order-tooltip .tooltip-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7B7F29;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    cursor: pointer;
}
.order-title-container .order-tooltip .tooltip-message{
    display: none;
    position: absolute;
    top: 0;
    right: -170px;
    margin-left: 40px;
    border-radius: 8px;
    padding: 10px;
    background-color: #7B7F29;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    z-index: 1;
}
.order-title-container .order-tooltip .tooltip-message.active{
    display: block;
}
#order-table tbody .select-all-message{
    background-color: #E7EAEE!important;
}
#order-table tbody .select-all-message p{
    margin-bottom: 0!important;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #000000;
}
#order-table tbody .select-all-message p > span.select-all-order,
#order-table tbody .select-all-message p > span.remove-all-orders{
    color: #7B7F29;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}
.addOnsTable th{
    cursor: pointer;
    position: relative;
    color: #55591D;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.5px;
}
.addOnsTable th::after, .addOnsTable th::before{
    position: absolute;
    display: block;
    opacity: .125;
    right: 10px;
    line-height: 9px;
    font-size: 24px !important;
}
.addOnsTable th::after{
    top: 53% !important;
    content: "▾";
}
.addOnsTable th.asc::before{
    opacity: 1!important;
}
.addOnsTable th.desc::before{
    opacity: .125!important;
}
.addOnsTable th.desc::after{
    opacity: 1!important;
}
.addOnsTable th.desc::before{
    opacity: .125!important;
}
.addOnsTable th::before{
    content: "▴";
    bottom: 50% !important;
}
.addOnsTable th, .addOnsTable td{
    padding: 10px;
}
.addOnsTable td{
    color: #191D23;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.5px;
}
.addOnsTable td.addons-price::before{
    content: "$";
}
#csv-import .upload-file-container{
    padding: 27px 24px 24px 24px;
}
#csv-import .message-filename{
    padding-top: 16px;
    /* padding-bottom: 10px; */
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.filter-types-wrapper svg{
    position:  relative !important;
    margin-left: 7.33px !important;

}
.full-size-input .custom-info-wrapper,
.input-field-t1 .custom-info-wrapper{
    display: flex;
    align-items: center;
    gap: 22px;
}
.full-size-input .custom-info-wrapper{
    justify-content: center;
    margin-bottom: 8px;
}
.input-field-t1 .custom-info-wrapper .order-tooltip{
    position: relative;
}
.camera-image-custom .custom-info-wrapper .order-tooltip .tooltip-btn,
.full-size-input .custom-info-wrapper .order-tooltip .tooltip-btn,
.input-field-t1 .custom-info-wrapper .order-tooltip .tooltip-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7B7F29;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    cursor: pointer;
}
.input-field-t1 .custom-text-area{
    width:100%;
    border-radius:10px;
    padding: 8px;
}
.text-bold{
    font-weight: 600!important;
}
.accordion-content label{
    font-weight: 500;
    font-size: 14px;
    color:#141522;
}
.accordion-content span{
    font-size: 12px;
    margin-top: 2px;
}
.accordion-content.order-details-accordion span{
    margin-top: 1px;
}
.import-input-field{
    padding-left: 24px;
    padding-right: 24px;
}
table .is_archive{
    display: none;
}
.order-type-wrapper .button-controls .form-button .btn-submit{
    display: none;
}.delay .modal-content{
    width: 458px;
}
.delay .modal-header{
    padding: 0px 0px 22px;
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    color: #000000;
    border: 0;
}
.delay .modal-message label{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: #141522;
    font-weight: 800;
    padding-bottom: 12px;
}
.orders-color{
    width: 15.57px;
    height: 15.57px;
    border-radius: 100%;
}
.orders-color.white{
    background-color: #FFFFFF;
    border: 1px solid #000000;
}
.orders-color.orange{
    background: #FBA11A;
}
.orders-color.lilac{
    background: #C8A2C8;
}
.orders-color.gray{
    background: #808080;
}
.orders-color.yellow{
    background: #EDF048;
}
.orders-color.light_green{
    background: #86E48A;
}
.orders-color.salmon{
    background: #FA8072;
}
.orders-color.light_blue{
    background: #ACDFFB;
}
.orders-color.pink{
    background: #F45AC9;
}
.orders-color.banana{
    background: #FEE8A5;
}
.orders-color.red{
    background: #D83A52;
}
.order-color-container .alert-filter-container{
    border-radius: 10px;
    right: -226px;
    top: 27px;
}
.order-color-container .alert-filter-wrapper{
    background-color: #efefef;
    align-items: center;
    border-radius: 10px;
}
.order-color-container .order-color-button{
    margin-top: 17px;
}

.order-color-container .order-color-button button{
    width: 100%;
    margin-top: 0px;
}
.orders-color.color-icon{
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    border: 2px solid rgb(89, 89, 29)!important;
}
.bulk-edit-wrapper .bulk-edit-holder .alert-filter-container.order-list-color-container{
    top: -235px;
}
.filter-types-wrapper.color-order-list{
    max-height: 114px;
}


.lab-specification {
    text-align: center;
}

.lab-order-detail {
    gap: 0 !important;
    align-items: flex-start !important;
}

.lab-order-detail h4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
    letter-spacing: 0.15px;
}

.lab-order-detail .justify-content-around {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}
.background-0{
    background: #ffff!important;
    color: #55591D!important;
    border:1px solid #55591D
}
.template-options{
    display: flex;
    align-items: center;
    gap: 19px;
}

table .hidden{
    display: none;
}

.order-type-list .order-type-holder{
    width: 100%;
    list-style: none;
    padding: 6px;
    background-color: #ECECE9;
    border-radius: 4px;
    margin: 0px;
}
.order-type-holder li{
    padding: 4px;
    font-size: 14px;
}
.order-type-holder li:hover{
    background-color: #D6D6D6;
    cursor: pointer;
    border-radius: 4px
}
.order-type-container .filter-types-wrapper{
    padding: 7px 0px;
}
.template-header{
justify-content: space-between;
}
.template-header .filter{
    width: 200px!important;
}
.selected-template{
    background: #d4d4ce;
    border-bottom: 1px solid #e7eaee;
}
.selected-template .info-link{
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.text-a-primary{
    color: #55591D!important;
}
.favorite-svg{
    cursor: pointer;
}
.favorite-svg.filled {
    fill: #55591D!important;
    stroke: #55591D;
}

/* for lab  */
.off-screen-input {
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}
.lab-error-holder{
    position: relative;
}
.lab-error-holder .alert{
    bottom: -74px;
    /* right: 0px!important; */
}
.close-alert{
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    padding: 2px;
}
.resolved-error svg{
    display: none;
}
.lab-log-error{
    width:auto!important;
}

.btn-progress span{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.25px;
    color: #fff;
}
.report-filter-container{
    z-index: 100;
}
.report-table-holder,.table-container{
    position: relative;
}
.custom-loading {
    display: none;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .loading-spinner {
    border: 7px solid rgba(0, 0, 0, 0.1);
    border-top: 7px solid #55591D;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .report-header button{
    padding: 6px 16px;
    background-color: #7B7F29;
    color: #fff;
    border: 1px solid #7B7F29;
    border-radius: 10px;
  }
.report-header button:hover{
    background-color: #fff;
    color: #7B7F29;
}
[x-cloak] {
    display: none !important;
}
.report-option{
    padding: 5px;
    border-radius: 10px;
    font-size: 14px;
    color: #212529;
}
.select-no-appearance{
    appearance: none!important;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
}
.home__dash-number .stat-sub{
    font-size: 15px;
}

.filter .option-holder button{
    padding-right: 6px;
    background: white;
    border: 1px solid #2e331b;
    color: #55591D;
}

.prod-error{
    display: flex;
    width:100%;
    gap:10px;
    align-items: center;
}
.prod-error .error-header{
    width: 50%;
}


#table-tooltip{
    font-size: 18px!important;
    display: flex;
    align-items: center!important;
}

#table-tooltip .tooltiptext{
    max-width: 337px;
    font-size: 15px;
    top: 32px;
    left: -159px;
    text-wrap: wrap!important;
}

.dash-custom{
    display: flex;
    align-items: center;
    gap: 5px;
}
#table-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: -3px;/* Changed 'bottom' to 'top' */
    right: 48%;
    margin-top: -5px; /* Adjusted margin for positioning */
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #7b7f29 transparent;/* Adjusted border-color */
}
.filter-options button{

z-index: 99;
}

.option-search-input input{
    border: 1px #a09494 solid;
    padding: 6px;
    border-radius: 6px;
}
.alert-filter-container .option-search-input input{
    border: 1px #a09494 solid;
    padding: 6px;
    border-radius: 6px;
    width: 100%!important;
}
  /* Hide spinner controls for number input */
  .lab-year input[type=number]::-webkit-inner-spin-button,
  .lab-year input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
  }

  .report-daily-container {
    min-width: 200px;
    width: auto;
    right: 0!important;
    left: -61px!important;
  }
  .report-daily-container a, .report-daily-container .option-content{
    color: #000000;
    text-decoration: none;
    padding: 5px 6px;
  }
  .report-daily-container a:hover, .report-daily-container .option-content:hover{
    background-color: #dbdbdb;
    color: #000000;
    text-decoration: none;
    cursor: pointer;
  }
  .report-daily-filter,.report-option {
    gap:0!important;
  }

  .error-type label {
    font-size: 16px;
  }
  .error-type {
    font-size: 14px;
  }

  .error-type .error-option {
    padding: 5px;
    border-radius: 6px;
  }

  .report-search-holder .search-input {
    font-size: 13px;
    border-radius: 10px;
    padding: 5px;
    border: #6f6f6f 1px solid;
    outline: none;
    color: #383737;
  }
  .report-header h3{
    margin: 0!important;
  }
  .table-link:hover{
    text-decoration: none;
  }
  .home__dash-list .dashboard-create{
    background: #9ea435;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: none;
    font-size: 26px;
    font-weight: 500;
  }
  .home__dash-list .dashboard-create:hover{
    background-color: #838926;
  }

  .search-bar .category-label{
    color: #cccccc !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }
  .search-bar input{
    padding-left: 0;
  }
  .no-result{
    align-items: center!important;
    padding-top: 5px!important;
    padding-bottom: 5px!important;
  }
    /* .required-input {
        border: red 1px solid!important;
        border-radius: 10px!important;
        transition: border 0.5s!important;
    } */

@keyframes inputAnimation {
    0% {
        border: 2px solid red;
    }

    50% {
        border: 2px solid transparent;
    }

    100% {
        border: 2px solid red;
    }
}

.input-animation {
    animation: inputAnimation 3s forwards;
    border-radius: 10px!important;
}

.btn-delete-draft{
    padding: 9px 15px!important;
    color:rgb(255 2 2)!important;
}
.cust-table-button {
    height: auto!important;
    padding: 7px 8px!important;
}
.cust-table-button label {
   font-size: 11px!important;
}


.reg-next[disabled]:hover{
    background-color: #7B7F29!important;
    color: #fff!important;
    border: 1px solid #7B7F29!important;
    cursor: not-allowed!important;
}
#page-2.not-allowed:hover{
    cursor: not-allowed!important;
}
.cust-icon{
    color: #ff0000cf;
    font-size: 8px;
}
.with-icon{
    display: flex!important;
    align-items: flex-start!important;
    gap: 3px;
    line-height: normal!important;
}
.input-field .patient-sex-select{
    padding: 15px 20px !important;
}
.input-field p span:has(br) {
    display: none;
}

.select2-holder:has(.select2-container--disabled):hover {

    cursor: not-allowed;
}

/* Style for a disabled select2-holder when hovering */
.select2-holder:hover .select2-container--disabled .select2-selection--single {
    cursor: not-allowed;
}

.select2-holder:hover .select2-container--disabled .select2-selection--multiple {
    cursor: not-allowed;
}
#general_details .btn-add-patient{
    border: 1px solid #7b7f29;
    color: #fff;
    background: #7b7f29;
}
#general_details .btn-custom-buttons.btn-add-patient{
    padding: 9px 15px;
    border-radius: 10px;
}

.table-holder .scrollable-table-wrapper #order-list-table thead tr > th:first-child:after,
.table-holder .scrollable-table-wrapper #order-list-table thead tr > th:first-child:before
{
    content: none!important;
}
#order-list-table tbody .append-message{
    background-color: #E7EAEE!important;
}
#order-list-table tbody .append-message p{
    margin-bottom: 0!important;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #000000;
}
#order-list-table tbody .append-message p > span.select-all-order,
#order-list-table tbody .append-message p > span.remove-all-orders{
    color: #7B7F29;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}
button[disabled]:hover{
    background-color: #7B7F29!important;
    color: #fff!important;
    border: 1px solid #7B7F29!important;
    cursor: not-allowed!important;
}

.message-container{
    position: absolute;
    top: 50%;
    display: none;
}
.no-data-report{
    justify-content: center;
    font-size: 13px;
}
.report input{
    cursor: text!important;
    color: #55591D!important;
}

#spinner-order-holder{
    position: absolute;
    z-index: 100;
    right: 0;
    margin-right: 5px;
}

#search-order-spinner{
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #55591D;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;

}
.no-data-report{
    justify-content: center;
    font-size: 13px;
}
.report input{
    cursor: text!important;
    color: #55591D!important;
}

#search-pod-patient{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

a.not-allowed{
    pointer-events: none;
}