@charset "UTF-8";
@import url("ot.css");
@import url("lab.css");
@import url("doctorsNote.css");
@font-face {
  font-family: Montserrat;
  src: url("../fonts/montserrat/Montserrat-VariableFont_wght.ttf");
  font-size: 16px;
}

*:focus {
  outline: none;
}

:root {
  /* --bs-input-group: rgb(247, 247, 251); */
  --bs-input-group: #ebebeb !important;
  --bs-border-color-secondary: rgb(237, 241, 247);
  --bs-input-text-color: rgb(29, 30, 44);
  --bs-input-group-label-color: rgb(105, 112, 127);
  --bs-color-primary: #397b91;
  --bs-color-primary-hover: #499ab5;
  /* --bs-color-secondary: #ed2b2a; */
  --bs-color-secondary: #e7443c;
  --bs-border-radius-medium: 16px;
  --bs-border-radius-small: 8px;
  --bs-color-border: #5ba59b;
  --bs-font-size-regular: 14px;
  --bs-font-size-xsmall: 8px;
  --bs-font-size-small: 12px;
  --bs-font-size-medium: 16px;
  --bs-font-size-large: 24px;
  --bs-font-size-xlarge: 32px;
  --bs-padding-medium: 16px;

  --bs-margin-medium: 16px;

  --bs-bg-section: rgb(247, 247, 251);

  --bs-box-shadow-secondary: -1px 0px 9px rgba(91, 165, 155, 0.7);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px rgb(247, 247, 251) inset !important;
  box-shadow: 0 0 0 30px rgb(247, 247, 251) inset !important;
  font-size: 16px;
  font-family: "Montserrat";
}

body,
html,
#root {
  height: 100%;
  font-family: "Montserrat";
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-color: #f3f3f3;
}

/* General */

.block {
  display: block;
}

.right-arrow {
  width: 7px;
  height: 16px;
}

.top {
  z-index: 1000;
}
.w50 {
  width: 50px;
}
.w500 {
  width: 500px;
}
.w700 {
  width: 700px !important;
}
.w240 {
  width: 240px !important;
}
.w130 {
  width: 130px;
}
.w70 {
  width: 70px;
}
.text-left {
  text-align: left;
}

.radio-group {
  padding-top: var(--bs-padding-medium);
}

.multi-choice input,
.radio-group input {
  flex: 0 0 auto;
}

.hidden {
  display: none;
}

.no-padding {
  padding: 0px !important;
}

.pd-l-2 {
  padding-left: 8px;
}

.pd-r-2 {
  padding-right: 8px;
}

.w100 {
  width: 100%;
}

.video-player {
  width: 100%;
  height: 300px;
  background-color: black;
}

/* modal */
.modal1 {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 250px;
  height: 300px;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* General End */

/* Text */

p {
  margin: 0;
}

.text-small {
  font-size: var(--bs-font-size-xsmall);
}

.text {
  font-size: var(--bs-font-size-medium);
  color: black;
}

.text.xs {
  font-size: var(--bs-font-size-xsmall);
}

.text.sm {
  font-size: var(--bs-font-size-small);
}

.text.md {
  font-size: var(--bs-font-size-medium);
}

.text.lg {
  font-size: var(--bs-font-size-large);
}

.text.xl {
  font-size: var(--bs-font-size-xlarge);
}

.white {
  color: white;
}

.bold {
  font-weight: bold;
}

/* Text End */

.layout-wrapper {
  padding-bottom: 60px;
}

.page-form-container {
  display: flex;
  height: 100%;
  width: 100%;
}

.page-form-container .page-form-banner {
  height: 100%;
  flex-grow: 1;
}

.page-form-banner .sliders {
  width: 100%;
  height: 100%;
}

.page-form-banner .slider1 {
  background: url("../images/sliders/login-slider-1.jpg");
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.form-container {
  width: 500px;
  max-width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 30px 0px;
}

.form-container .form {
  text-align: center;
  padding: 16px;
  width: 400px;
  max-width: 100%;
}

.inline-form {
  width: 500px;
  max-width: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spacer-h {
  height: 32px;
  display: block;
}

.login .gj-btn-primary {
  border-radius: 30px;
  background-color: var(--bs-color-primary);
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  height: 54px;
  font-weight: 400;
}
.login .gj-btn-primary:hover {
  border: 1px solid var(--bs-color-primary);
}
.zIndex {
  z-index: 10;
}
.display {
  position: fixed;
  z-index: 1056;
  opacity: 0.7;
  width: 100%;
  display: none;
  background-color: #000000;
  height: 100%;
}

.gj-btn-secondary {
  border-radius: 5px;
  border: 1px solid var(--bs-color-secondary) !important;
  font-size: 16px;
  color: black;
  padding: 8px 16px !important;
  height: 40px;
}
.gj-btn-secondary:hover,
.gj-btn-secondary:focus {
  background-color: var(--bs-color-secondary) !important;
  color: white !important;
}

.gj-btn-primary {
  border-radius: 5px;
  background-color: var(--bs-color-primary);
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
}
.btn-pharmacy-disabled {
  border-radius: 5px;
  background-color: #ebebe4 !important;
  font-size: 16px;
  color: #141313;
  padding: 8px 16px !important;
  height: 40px;
}

.gj-btn-primary:hover,
.gj-btn-primary:focus {
  background-color: var(--bs-color-primary-hover) !important;
  color: #ffffff !important;
}
.gj-btn-primary:disabled {
  background-color: #397b91 !important;
  color: #f2f2f4;
  border: none;
}
h5 {
  font-size: 16px;
  font-weight: 600;
}

.flex {
  display: flex;
  width: 100%;
  column-gap: 16px;
  row-gap: 16px;
}

.remarks {
  height: 300px;
}

.grow {
  flex-grow: 1;
}

.edu-link {
  color: var(--bs-color-primary);
  cursor: pointer;
}

.underline {
  text-decoration: underline;
}

.no-padding {
  padding: 0px;
}

.form-logo {
  width: 100px;
  height: 100px;
}

.bg-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.welcome-msg {
  display: inline-block;
  margin-left: 16px;
}

.page-header .menus {
  display: flex;
  align-items: center;
  z-index: 1;
}

.menus .menu-item {
  margin: 0px 10px;
}

.menus .icon {
  cursor: pointer;
  height: 30px;
}

.h-spacer {
  display: block;
}

.h-spacer.xl {
  height: 40px;
}

.h-spacer.lg {
  height: 32px;
}

.h-spacer.md {
  height: 24px;
}

.h-spacer.sm {
  height: 16px;
}

.h-spacer.xs {
  height: 8px;
}

.h-divider {
  width: 100%;
  display: block;
  height: 1px;
  background-color: var(--bs-border-color-secondary);
}

.section-title {
  font-weight: bold;
  font-size: 16px;
}

.edc-carousel-content {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  overflow-x: auto;
}

.edc-card {
  background-position: center;
  background-size: cover;
  width: 300px;
  margin-right: 16px;
  border-radius: 8px;
  color: #ffffff;
  position: relative;
}

.quick-access-card {
  width: 300px;
  margin-right: 16px;
  padding: 16px;
  border-radius: 8px;
  position: relative;
}

.quick-access-card .card-icon {
  width: 40px;
  height: 40px;
  margin-right: 16px;
}

.edc-card .bg-overlay {
  border-radius: var(--bs-border-radius-medium);
  z-index: -1;
}

.edc-card-content {
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, 0.3);
  padding: var(--bs-padding-medium);
  height: 100%;
  border-radius: 12px;
}

.title {
  font-size: 16px;
  font-weight: bold;
}

.edc-card .description {
  font-size: 14px;
}

.edc-card .timing .date {
  display: block;
  font-size: 16px;
}

.edc-card .timing .time {
  font-size: 12px;
}

.add-new-card {
  border-radius: var(--bs-border-radius-medium);
  background-color: var(--bs-color-secondary);
  padding: var(--bs-padding-medium);
  color: #ffffff;
  display: flex;
  align-items: center;
  margin-right: var(--bs-margin-medium);
  cursor: pointer;
}

.scroll-x {
  overflow-x: auto;
}

.no-shrink {
  flex-shrink: 0;
}

.edc-carousel-content::-webkit-scrollbar {
  display: none;
}

.edc-carousel-content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.message-card {
  background-color: var(--bs-color-primary);
  padding: 16px;
  border-radius: var(--bs-border-radius-medium);
}

.message-card .message {
  color: white;
}

.search-box {
  border-radius: var(--bs-border-radius-medium);
  border: 1px solid var(--bs-color-secondary);
  padding: 8px 16px;
  align-items: center;
}

.search-box .search-input {
  color: var(--bs-color-secondary);
  font-weight: lighter;
  font-size: var(--bs-font-size-medium);
}

.search-box .search-icon {
  height: 30px;
  width: 30px;
}

.assignment-card,
.attachment-card,
.qa-card {
  padding: var(--bs-padding-medium);
  background: var(--bs-bg-section);
  border-radius: var(--bs-border-radius-medium);
  position: relative;
  height: 100%;
}

.qa-card {
  border: 1px solid var(--bs-border-color-secondary);
}

.attachment-card .card-icon {
  width: 40px;
  height: 40px;
  margin-right: var(--bs-margin-medium);
}

.v-align-center {
  align-items: center;
}

.status-circle {
  border-radius: 12px;
  width: 12px;
  height: 12px;
}

.status-circle.abs {
  top: 16px;
  right: 16px;
  position: absolute;
}

.status-circle.pending {
  background-color: red;
}

.status-circle.completed {
  background-color: green;
}

.ml-2 {
  margin-left: 8px;
}

.ml-3 {
  margin-left: 16px;
}

.tab-bar {
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid var(--bs-bg-section);
  background-color: #ffffff;
  z-index: 1000;
}

.tab-bar .tab {
  text-align: center;
  padding: 16px;
  cursor: pointer;
}

.tab-bar .tab img {
  width: 20px;
}

.tab-bar .tab span {
  font-size: 14px;
}

/* Class Detail */
.class-cover-container {
  height: 100%;
  position: relative;
}

.class-cover-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100000;
}

.class-info img {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.class-info .flex {
  align-items: center;
}

.class-info .title {
  margin-bottom: 0px;
}

.topic-card {
  align-items: center;
  background: var(--bs-bg-section);
  border-radius: var(--bs-border-radius-medium);
  padding: var(--bs-padding-medium);
  height: 100%;
}

.topic-card .topic-icon {
  width: 30px;
  height: 30px;
}

.topic-card .title {
  margin-bottom: 0px !important;
}

/* Class Detail End*/

/* Page */

.page {
  display: block;
}

.page-container {
  display: block;
  height: 100%;
  padding-bottom: 100px;
  /* background: #edf7f4; */
  background: #f3f3f3;
}

.page-content {
  display: block;
  margin: 0px auto;
  padding: 40px 40px 100px 40px;
  min-height: 100%;
  position: relative;
  z-index: 1000;
  background-color: white;
}

.custom-page-header {
  padding: var(--bs-padding-medium);
}

.curved-page-content {
  border-top-left-radius: var(--bs-border-radius-medium);
  border-top-right-radius: var(--bs-border-radius-medium);
}

.page-popup {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-popup .popup {
  position: absolute;
  z-index: 11;
  top: 0;
  right: 0;
  width: 425px;
  max-width: 100%;
  bottom: 0;
}

.page-popup .popup-header {
  height: 100px;
  position: absolute;
  z-index: 1001;
  padding: var(--bs-padding-medium);
  align-items: center;
  background-image: url("../images/sliders/login-slider-1.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
}

.page-popup .popup-content {
  bottom: 0px;
  right: 0px;
  left: 0px;
  position: absolute;
  z-index: 1001;
  top: 80px;
  border-top-left-radius: var(--bs-border-radius-medium);
  border-top-right-radius: var(--bs-border-radius-medium);

  overflow: auto;
  background-color: white;
  padding: var(--bs-padding-medium);
}

/* Page End*/

/* Page Header */

.page-header {
  height: 200px;
  background-image: url("../images/sliders/login-slider-1.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  position: relative;
  color: #ffffff;
  padding: 40px;
}

.page-header .brand {
  display: flex;
  z-index: 1;
  align-items: center;
}

.page-header .brand .logo {
  width: 100px;
  height: 100px;
}

.page-header .brand .use-info {
  font-size: 16px;
  font-weight: bold;
  display: block;
}

.page-header .brand .brand-info {
  font-size: 12px;
  display: block;
}

.page-header {
  display: flex;
  padding: var(--bs-padding-medium);
  align-items: center;
}

.back-btn {
  width: 16px;
  height: 14px;
  cursor: pointer;
  z-index: 1;
}

.page-title {
  font-size: var(--bs-font-size-large);
  margin-bottom: 0px;
}

.page-sub-title {
  font-size: var(--bs-font-size-medium);
  margin-bottom: 0px;
}
/* Page Header End */

/* Inputs */

.button-group {
  background-color: var(--bs-color-secondary);
  border-radius: 25px;
}

.button-group .button-group-item {
  padding: var(--bs-padding-medium);
  flex-grow: 1;
  color: #ffffff;
  text-align: center;
  text-decoration: underline;
}

.edc-input-group {
  background-color: var(--bs-input-group);
  text-align: left;
  border-radius: 4px;
  padding-left: 8px;
}

.edc-input-group .label {
  font-size: 12px !important;
  color: var(--bs-input-group-label-color);
  display: block;
}

.text-input {
  padding-left: 0px;
  border: none;
  background: none;
  color: var(--bs-input-text-color);
  font-size: 16px;
  padding: 0px;
}

.text-input:focus {
  border: none;
  background: none;
  outline-color: var(--bs-input-group);
  outline: none;
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.edc-text-area {
  border: 1px solid var(--bs-border-color-secondary);
}

.edc-text-area textarea {
  height: 100%;
  width: 100%;
}

.file-uploader {
  border: 1px solid var(--bs-border-color-secondary);
}

.file-uploader .file-selector {
  display: block;
  text-align: center;
  padding: 40px;
}

.file-selector .upload-icon {
  height: 40px;
}

.file-preview {
  position: relative;
  height: 75px;
  width: 75px;
  background-position: center;
  background-size: cover;
  margin-right: var(--bs-margin-medium);
  border-radius: var(--bs-border-radius-small);
  border: 1px solid var(--bs-border-color-secondary);
  box-shadow: var(--bs-box-shadow-secondary);
}

.file-preview .close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
}

.add-btn {
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.edit-btn {
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.cover-preview {
  height: 150px;
  display: block;
  background-position: center;
  background-size: cover;
  border-radius: var(--bs-border-radius-small);
}

.show-file-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background-color: black;
  z-index: 998;
}

.show-file-container .file {
  width: 100%;
  z-index: 999;
}

.show-file-container .file-details {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: var(--bs-padding-medium);
  z-index: 1000;
}

.show-file-container .close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  z-index: 1000;
  box-shadow: var(--bs-box-shadow-secondary);
}

.error {
  border: 1px solid red !important;
  border-radius: 8px;
}

/* Inputs End */

/* Login Start */

.wrapper {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  background-blend-mode: color;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}

.bg_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  -webkit-transform: scaleX(-1);
}

/* Login End */

/* Footer start */

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-shadow {
  box-shadow: 0px 0px 15px 6px rgb(91, 165, 155, 0.5);
}

.footer-text {
  color: #3b7e92;
  font-size: 12px;
}

/* Footer start */

/* Header start */

.brand-text {
  font-size: 8px;
  font-weight: 600;
}

.box-shadow {
  border-bottom: 1px solid #5ba59b;
}

/* Header start */

/* Fieldset start */

fieldset {
  border: 1px solid var(--bs-color-border) !important;
  border-radius: 8px;
  padding: 2px 15px 16px 15px;
  width: 100%;
}

legend {
  float: none !important;
  width: auto !important;
  margin-left: 1.1rem;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 13px !important;
  margin-bottom: 0px !important;
}

.form-select {
  height: 54px;
  background-color: rgb(241, 242, 242);
  border: 1px solid #cddcdc;
}

/* .form-group .form-control,
.form-group .form-select {
  height: 54px;
  padding-top: 25px;
  background-color: rgb(241, 242, 242);
  border: 1px solid #727373;
} */

.login .form-group {
  width: 100% !important;
  padding-left: 8px;
}

.login .form-label {
  padding-left: 8px;
}

.form-label {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 12px;
  font-weight: 600;
}

.form-group {
  width: 240px;
}

.grid {
  display: flex;
  flex-direction: column;
  column-gap: 16px;
  row-gap: 16px;
}

.form-group .form-control,
.form-group .form-select {
  height: 54px;
  padding-top: 25px;
  /* background-color: rgb(251, 250, 250) !important; */
  /* background-color: #f7f7fb !important; */
  background-color: #ebebeb !important;
  border: none;
  /* border: 1px solid #727373; */
}

.login .form-group {
  width: 100% !important;
  padding-left: 8px;
}
.login .form-label {
  padding-left: 8px;
}

.form-group .form-select {
  background-position: right 0.75rem bottom 8px;
  background-size: 20px 18px;
}

.scm-remarks {
  height: 195px;
}
.hgmi-remarks {
  width: 595px;
}
.hm-remarks {
  width: 255px;
}
.hgm-remarks {
  width: 252px;
}
.submenutext {
  width: 524px;
}

.menu-master {
  width: 971px;
}

.mm-remarks {
  width: 100%;
  height: 100px;
}

input[type="checkbox"] {
  margin-right: 8px;
  accent-color: var(--bs-color-secondary);
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 1px solid #154dda;
}
input[type="radio"] {
  margin-right: 8px;
  accent-color: var(--bs-color-secondary);
}
.multi input[type="checkbox"] {
  margin-top: 0px;
}

#__react-alert__ div div div {
  width: auto !important;
  border-radius: 16px !important;
  z-index: 9999 !important;
  margin-top: 64px !important;
  background-color: var(--bs-color-primary) !important;
  color: white !important;
}

#__react-alert__ div {
  position: sticky;
  z-index: 9999 !important;
}

.nav-link {
  font-weight: 600;
  color: black;
  width: 100%;
}
.list {
  z-index: 2;
  background-color: var(--bs-color-primary);
  height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
}

.list {
  z-index: 2;
  background-color: var(--bs-color-primary);
  height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
}

.list:hover {
  width: 200px;
}
.list:hover {
  width: 200px;
}
.navbar {
  --bs-navbar-hover-color: var(--bs-color-primary) !important;
  width: 100%;
  white-space: nowrap;
  white-space: nowrap;
}

.dropdown-menu {
  /* --bs-dropdown-link-hover-color: var(--bs-color-primary) !important;
  --bs-dropdown-link-hover-bg: none !important;
  --bs-dropdown-link-active-bg: var(--bs-color-primary) !important; */
  --bs-color-primary: #f3f3f3;
  background-color: #ffffff !important;
  max-height: 300px;
  overflow-y: auto;
}

.dropdown-toggle::after {
  display: none;
}

.nav-item {
  width: 100%;
}

.nav-item:active {
  --bs-navbar-active-color: var(--bs-color-primary) !important;
}
.nav-item:hover {
  background-color: var(--bs-color-primary) !important;
}
.dropdown-item:hover {
  background-color: var(--bs-color-primary) !important;
}

.header {
  position: fixed;
  z-index: 5;
}
.content {
  /* background-color: rgb(241, 242, 242); */
  background-color: #f3f3f3;
  padding: 54px 16px 34px 76px;
  /* height: 100vh; */
}

.content-for-emr {
  background-color: #f3f3f3;
  padding: 54px 0px 0px 60px;
}
.icon-search {
  position: absolute;
  right: 10px;
  top: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.uapremark {
  flex-grow: 1;
}
.rmremark {
  flex-grow: 1;
}
.dmremark {
  flex-grow: 1;
}

.boxy {
  border: 1px solid black;
  height: 130px;
  overflow-y: scroll;
}

.selheading {
  padding-left: 150px;
}
.react-dual-listbox {
  height: 150px;
}
.btnsearch {
  background-color: #4e4e4e;
}
.countryremark {
  width: 942px !important;
}
.countrywid {
  width: 350px;
}
.stateremark {
  width: 490px !important;
}
.statewid {
  width: 509px;
}

.confirm-bg {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
  opacity: 0.55;
  overflow: hidden;
  z-index: 3;
}

.small-box legend {
  margin-left: 4px;
  padding: 0px !important;
  margin-top: 0px;
}
.small-box .table {
  display: block;
  height: 125px;
  overflow-y: scroll;
}
.containerone {
  display: none;
  flex-direction: column;
  position: fixed;
  background-color: white;
  width: fit-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -75%);
  border-radius: 0.3rem;
  padding: 1rem;
  z-index: 5;
}
.confirm-bgo {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
  opacity: 0.55;
  overflow: hidden;
  z-index: 2;
}

.containeroneo {
  display: none;
  flex-direction: column;
  position: fixed;
  background-color: white;
  width: 90%;
  top: 70%;
  height: 80%;
  left: 50%;
  transform: translate(-50%, -75%);
  border-radius: 0.3rem;
  padding: 1rem;
  z-index: 5;
  overflow-y: scroll;
}

.confirmation-text {
  display: flex;
  color: black;
  margin: 0.5rem 0 2rem;
  text-align: center;
  line-height: 2rem;
  font-size: 1.1rem;
}

.button-container {
  display: flex;
  margin-top: auto;
  justify-content: flex-end;
  margin-right: 20px;
}

.confirmation-button,
.delete-button {
  display: inline-flex;
  background-color: var(--bs-color-primary);
  color: white;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 0.3rem;
  font-size: 1rem;
}

.cancel-button {
  background-color: #cc0000;
  display: inline-flex;
  color: white;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 0.3rem;
  font-size: 1rem;
  margin-right: 20px;
}
.table-secondary {
  --bs-table-bg: #46829e;
  color: white;
}

.usercreationremark {
  width: 300px;
}

.wizard {
  display: flex;
  position: fixed;
  padding-top: 24px;
  /* z-index: 1; */
}
.item {
  height: 54px;
  width: 230px;
  border-radius: 0 40px 0 40px;
  background-color: rgba(57, 123, 145, 0.2);
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--bs-color-primary);
}

.active {
  border: 1px solid var(--bs-color-primary);
  background-color: var(--bs-color-primary);
  color: white;
}
.staff {
  margin-top: 16px;
}

.staffcontent {
  margin-top: 64px;
}
.camera-icon {
  position: absolute;
  bottom: 0;
  right: 50px;
}

.wizard a {
  text-decoration: none;
  color: #000000;
  font-weight: 600;
}
.group {
  margin-right: 16px;
  display: flex;
  align-items: center;
  width: fit-content;
}
.check-group {
  margin-top: 16px;
}

.profilePicture {
  width: 160px;
  display: none;
}
.w-400 {
  width: 400px;
}
.w-474 {
  width: 476px;
}
.w-350 {
  width: 350px;
}
.w-280 {
  width: 280px;
}
.w-10{
  width: 10%;
}
.new {
  height: 54px;
}

.rounded-6{
 border-radius: 6px;
}

.bg-default{
  background: #f3f3f3;
  background-color: #f3f3f3;
}

.dataTables_filter {
  margin-bottom: 8px;
}
.drugsearch .drugser .form-group {
  width: 55px;
}
.drugsearch .drugser .icon-search {
  left: 10px;
  top: 14px;
}

.drugbrand {
  width: 403px;
}
.drugmanufacture {
  width: 159px;
}
.drugpresentation {
  width: 159px;
}
.drug {
  width: 70px;
  height: 54px;
}
.drugbox {
  width: 180px;
}
.drugnew {
  width: 67px;
  height: 54px;
}
.drugnews {
  width: 54px;
  height: 54px;
}
.druginstruction {
  height: 124px;
}
.drugusage .form-group {
  width: 398px !important;
}
.drugusage .icon-search {
  left: 350px;
  top: 16px;
  bottom: 17px;
}
.drugdepth {
  width: 229px;
  height: 124px;
}
.drugdetails {
  background-color: #5ba59b;
  height: 40px;
}
.scroll {
  overflow-y: scroll;
}

.box {
  border: 1px solid var(--bs-color-primary);
  border-radius: 8px;
}
.box-head {
  background-color: #9c9c9c;
  color: #ffffff;
  text-align: center;
  padding: 8px 0px;
  border-radius: 8px 8px 0px 0px;
}
.box-table {
  background-color: #5ba59b;
  color: #ffffff;
}
.box .table > thead {
  vertical-align: middle;
}
.depwid {
  width: 355px;
}
.depinp {
  width: 231px;
}
.dept-remark {
  height: 124px;
  width: 275px;
}

.buildwid {
  width: 620px;
}
.specialname {
  width: 500px;
}
.specialrm {
  width: 720px;
}
td {
  vertical-align: middle !important;
}
.star::before {
  content: "*";
  color: #fe0000;
  position: absolute;
  top: -2px;
  padding-left: 2px;
  width: 6px !important;
  height: 6px !important;
}
.w-240 {
  width: 240px;
}
.upload {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -6px;
}

.hide {
  display: none;
}

.video {
  z-index: 1;
}

.bankrm {
  width: 645px;
}
.baserm {
  width: 474px;
}

.bankad {
  width: 420px;
}
.banksm {
  width: 351px;
}
.bankname {
  width: 230px;
}
.branch {
  width: 204px;
}
.wizard-item {
  display: none;
  margin-top: 64px;
}

.searchInput .form-label {
  color: black;
}

.searchInput .resultBox {
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
  background-color: white;
  color: black;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.searchInput.active .resultBox {
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
}

.resultBox li {
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.searchInput.active .resultBox li {
  display: block;
}
.resultBox li:hover,
.resultBox li .list-hover {
  background: #0d6efd;
  color: white;
}

.resultBox span {
  list-style: none;
  padding-top: 0px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
  padding-left: 6px;
}

.searchInput.active .resultBox span {
  display: block;
}
.resultBox span:hover {
  background: #efefef;
}

.patinpage {
  width: 60px;
}

.error-message {
  float: right;
  background-color: var(--bs-color-primary);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 600;
}

.small-box fieldset {
  margin: 0px;
}

.list {
  background-color: #397b91;
  width: 100px;
}

.error-message {
  float: right;
  background-color: var(--bs-color-primary);
  color: white;
  padding: 4px 8px;
  border-radius: 8px;
  font-weight: 600;
}

.small-box fieldset {
  margin: 0px;
}
.sertype {
  height: 220px;
}
.eye-icon {
  position: absolute;
  top: 35%;
  right: 24px;
}

/* getting submenu by hover*/
.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
}
.dropdown-menu {
  left: 200px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
}

.link-hover a:hover {
  color: white !important;
}

.popover-bg {
  background-color: #073c54;
}

.link-hover:hover {
  color: white !important;
  border-radius: 4px;
  background-color: #397b91 !important;
}

.link-hover-sub {
  color: white;
  text-decoration: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  top: -8px;
  left: 158px;
  position: absolute;
}
/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
}

.list {
  background-color: #397b91;
  width: 100px;
}

.accompaniedclass {
  width: 170px;
}
.wi {
  width: 600px;
}
.servicebrandname {
  width: 332px;
}
.cptservice {
  width: 332px;
}
.categories Fieldset {
  margin: 0px;
}
.sertype {
  height: 220px;
}

.tableBorder {
  /* padding: 15px;
  text-align: left; */
  background-color: #e8f1e8;
  border: 3px solid #5ba59b;
  border-radius: 0px;
}

.consultation-status {
  border: 0.4px solid #397b91;
  border-radius: 8px;
}

.sgroup .form-group {
  width: 300px;
}
.sgroup .icon-search {
  left: 268px;
}
.dr-field Fieldset {
  margin-top: -15px;
}
.btn.btn-primary[disabled] {
  background-color: #ebebe4 !important;
  color: #1a2953;
  border: none;
}

.menu {
  z-index: 2;
}

.menu .navbar-nav {
  background-color: #2c3545 !important;
  height: 100%;
  position: fixed !important;
  top: 70px;
  transition: opacity 1s ease-out;
}
/* .gj-container{
  padding-left: 220px;
  padding-right: 8px;
} */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.nav-item .nav-link {
  display: none;
}

.navbar-nav li:hover > ul.dropdown-menu {
  display: block;
}

.navbar-nav:hover .nav-link {
  display: block !important;
  opacity: 1;
}

.pt-reg fieldset {
  width: max-content;
}
.margintopadjust {
  margin-top: -2em;
}

.nav-link a {
  text-decoration: none;
  color: white;
  padding-left: 8px;
}

.fullscreen {
  width: 90vw !important;
  max-width: none;
  height: 90% !important;
  margin: 0;
}

.show {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 8px;
  width: 100%;
}

.modal-body {
  /* background-color: #edf7f4; */
}
.modal-dialog {
  border-radius: 8px;
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f8f3f3;
  border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #5ba59b;
  border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #27a998;
}
.card {
  width: 100px !important;
  padding: 16px 16px 0px 16px;
}
.card-box a {
  color: #2c3545;
  text-decoration: none;
}
.card-title {
  font-size: 10px;
  font-weight: bold;
}

.card-title::second-line {
  white-space: nowrap;
}

.card:hover {
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: transform 500ms;
}

.card-box {
  height: 186px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4px;
}

.card-box .card-body {
  width: 80px;
  padding: 10px 0;
}
.patient-search {
  margin-top: -36px !important;
}
.Service-group-type .check-group,
.status .check-group,
.token .check-group,
.existing .check-group {
  margin-top: 0px;
}

.close-icon {
  cursor: pointer;
}

.close-icon-white {
  cursor: pointer;
  color: white !important;
}

/* Patient Appoinment page start */
.widthver1 {
  width: 784px;
}

.appoli Fieldset {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
.tokenwid {
  width: 474px;
}

.maximum-height {
  max-height: fit-content;
}

.bluish-green {
  color: #397b91;
}

/* overwrite background color  */
.overwrite-color {
  background-color: white !important;
}

.overwrite-color:hover {
  background-color: white !important;
}
.serviceWidth {
  width: 270px;
}
.selectedservice table {
  overflow-x: auto;
}

.price-form-group {
  width: 90px !important;
}
.service-width {
  width: 300px !important;
  white-space: nowrap;
}
.btn-focus:focus {
  border: 1px solid var(--bs-color-primary) !important;
}
/* .btn-focus {
  border: 1px solid rgb(233, 233, 233) !important;
} */
.existing {
  background-color: #8abdaa;
}
.selectedservice input {
  width: 60px;
}
/* .selectedservice select {
  height: 50px !important;
  width: 150px;
} */
.popup-alert {
  position: absolute;
  z-index: 1060;
}
table {
  font-size: small;
}
table.dataTable thead th,
table.dataTable tfoot th,
thead th,
tfoot th {
  font-weight: 500 !important;
}

td {
  font-weight: 600;
}
.table-height {
  width: 100%;
  height: 200px;
}
.o-type .check-group {
  margin-top: 0px;
}

table .check-group {
  margin-top: 0px;
}

.selectWidth {
  width: 240px !important;
}

.card-tile {
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5px;
}

.card-tile-card {
  width: 100px !important;
  height: 130px !important;
  border-radius: 5px;
  background-color: white;
  padding: 16px 16px 0px 16px;
}

.card-tile .card-body {
  width: 70px;

  /* padding: 4px 0; */
}
.card-tile.card-body.card-title {
  font-size: 10px;
  font-weight: bold;
}
.bed-background {
  background-color: #e1ebe6;
}
.bed-border {
  border: 2px solid #5ba59b;
}

.search-group {
  width: 270px;
}
/* service ordering start */
.addeditemwid {
  width: 577px;
}

.selectwid {
  width: 853px;
}

.fullwdithtable Fieldset {
  padding: 0px;
}
/* service ordering end */

/* create indent */
.fullwidthtable Fieldset {
  padding: 0px;
}
.loadcolor {
  background-color: #5ba59b;
  color: white;
}
.indentdetials {
  background: #397b91;
  color: white;
  height: 32px;
  border-top-right-radius: 13px;
  border-top-left-radius: 13px;
}
.widpart {
  width: 296px;
}
.widpar {
  width: 450px;
}
.tableheight {
  height: 177px;
}

/* op - Bill page */
.bordered {
  border: 1px solid #397b91;
  border-radius: 6px;
}

/* Browser INDENT */
/* .smallviewid1{
  width: 566px;
 } */
/* .smallviewid2{
  width: 524px;
 } */

/* EMR */
.emr-main-head {
  min-height: 80px;
  background-color: #ffffff;
}

.emr-main-kyc {
  border: 1px solid #4e4e4e;
  height: 25px;
  font-size: 11px;
  width: 118px;
  border-radius: 40px;
}
.emr-main-view-bill {
  color: #397b91;
  font-weight: 500;
}
.emr-main-calender {
  /* border-top: 1px solid #397b91;
  border-bottom: 1px solid #397b91; */
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chevron-bg {
  border-radius: 50%;
  color: black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chevron-bg:hover {
  background-color: #f3f1f1;
  transition: all 250ms ease-in-out;
}

.emr-main-list {
  border: 1px solid #397b91;
  min-height: 35px;
  border-radius: 8px;
}

.emr-main-list:hover {
  background-color: #397b91;
  color: white;
}

.emr-main-list-active {
  border: 1px solid #397b91;
  min-height: 35px;
  color: #ffffff;
  background-color: #397b91;
  border-radius: 8px;
}
.emr-main-bg {
  background-color: #ffffff !important;
}
.emr-main-search {
  position: relative;
}
.emr-main-search input {
  height: 44px;
  border: none;
  border-radius: 5px;
  padding-left: 34px;
  padding-right: 6px;
  background-color: #f3f1f1;
}
.emr-search-icon {
  width: 30px;
  position: absolute;
  top: 26px;
  left: 3%;
}
.no-border {
  border: none;
  background-color: transparent;
}

.nav-emr-main {
  min-height: 25px;
  width: auto;
  background-color: #1e5d7a;
  border-radius: 25px;
  color: #ffffff;
}

.ml-12 {
  margin-left: 2px;
}

.nav-emr1-main {
  min-height: 25px;
  width: auto;
  border-radius: 25px;
  border: 1px solid #5ba59b;
  color: black;
}

.nav-emr1-main:hover {
  background-color: #1e5d7a;
  color: white;
}

.emr-main-template {
  margin-top: -200px;
  line-height: 160%;
}
.navbar-emr {
  /* z-index: 4; */
  min-height: 55px;
  background-color: #ffffff;
  padding-bottom: 5px;
}
.nav-emr {
  min-height: 25px;
  width: 120px;
  background-color: #1e5d7a;
  border-radius: 25px;
  color: #ffffff;
}
.nav-emr1 {
  height: 25px;
  width: 120px;
  border-radius: 10px;
  color: black;
}
.nav-bar-emr {
  height: 40px;
  width: 130px;
  border-right: 1px solid #397b91;
  border-left: 1px solid #397b91;
  line-height: 1%;
}

.nav-arrow-emr {
  width: 50px;
  color: #397b91;
}

.nav-arrow-ot {
  color: #397b91;
}

.item-emr {
  height: 30px;
  width: 200px;
  border-radius: 0 40px 0 40px;
  background-color: rgba(57, 123, 145, 0.2);
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--bs-color-primary);
}

.active-emr {
  border: 1px solid var(--bs-color-primary);
  background-color: #5ba59b;
  color: white;
}

.wizard-emr {
  margin-top: -30px;
  position: relative;
}

.emr-left-boxes {
  min-height: 70px;
  border-radius: 5px;
  background-color: white;
}

.emr-main-box {
  min-height: 70px;
  border-radius: 5px;
  background-color: white;
}

.emr-right-boxes {
  min-height: 570px;
  border-radius: 5px;
  background-color: white;
  padding: 10px;
  margin-top: -15px;
}

.bg-white-for-preview {
  min-height: 60px;
  border-radius: 5px;
  background-color: white;
  padding: 10px;
}

.scrollable-container {
  max-height: 100vh;
  overflow-y: scroll;
}

.h-100vh {
  height: 100vh;
}

.emr-left-boxes-for-medical-history {
  padding: 10px;
  min-height: 30px;
  border-radius: 5px;
  background-color: white;
}

.emr-right-first {
  border-bottom: 1px solid #397b91;
}

.emr-right-dots {
  width: 25px;
  height: 25px;
  border-radius: 2px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dose-times {
  width: auto;
  font-size: 12px;
  height: 35px;
  border-radius: 5px;
  background-color: #e9eaea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dose-times-selected {
  font-size: 12px;
  width: auto;
  height: 35px;
  color: white;
  display: flex;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-color-primary);
}

.emr-right-quantity {
  width: 120px;
  height: 35px;
  border-radius: 5px;
  background-color: #e9eaea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.default-timing-field {
  border: none;
  width: 115px;
  height: 35px;
  border-radius: 5px;
  background-color: #e9eaea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.default-timing-field-2nd-switch {
  border: none;
  width: 55px;
  height: 28px;
  background-color: #e9eaea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -4px;
}

.default-timing-p-2nd-switch {
  height: 28px;
  padding: 2px;
  font-size: 14px;
}

.emr-right-table-1 {
  height: 30px;
  background-color: #ffffff !important;
}

.emr-right-table-1-selected {
  background-color: #397b91 !important;
  color: white;
}

.emr-right-table1-div {
  height: 60px !important;
}
.small-font {
  font-size: 10px;
  color: #397b91;
}

.emr-main-search-icon {
  position: absolute;
  top: 8px;
  right: 2%;
}
.span-bg-success {
  width: 90px;
  height: auto;
  background-color: #5ba59b;
  border-radius: 10px;
}

.span-no-bg {
  width: 120px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #5ba59b;
}
.top-border-success {
  border-top: 1px solid #5ba59b;
}
.bottom-border-success {
  border-bottom: 1px solid #5ba59b;
}

.text-color-theme {
  color: #5ba59b;
  margin: auto;
}

.text-color-blue {
  color: #0d7ecc;
}

.span-no-bg-medical {
  width: auto;
  /* height: 25px; */
  border-radius: 60px;
  border: 1px solid #5ba59b;
}
.span-bg-success-medical {
  width: auto;
  /* height: 25px; */
  background-color: #5ba59b;
  border-radius: 20px;
}
.span-bg-bold {
  width: auto;
  font-weight: 500;
  background-color: #46829e;
  border-radius: 20px;
}
.margin-top-adjust {
  margin-top: -10px;
}
.right-side-list {
  position: absolute;
  top: 25px;
  right: -50px;
  z-index: 3;
}

/* browse_indent */
.existingColor {
  background-color: #8abdaa !important;
}

/* Pharmacy Section */

.form-group-pharmacy .form-control,
.form-group .form-select {
  background-color: #f1f2f2;
  border: none;
}

.table-pharmacy {
  --bs-table-bg: #397b91;
  /* color: #fafeff; */
  font-weight: 900;
  /* text-align: center; */
}

.table-qty {
  --bs-table-bg: white;
  background-color: white;
  color: rgb(22, 21, 21);
  font-weight: 700;
  text-align: right;
  width: 0px;
}
.edit-btn-pharmacy {
  width: auto;
  margin-left: 10px;
  border-radius: 7px;
  outline: none;
  border: none;
  background: #06663c;
  color: white;
  padding: 5;
  transition: background-color 0.3s ease-in-out;
}
.pharmacy-select .form-control,
.pharmacy-select .form-select {
  height: 2pc;
  width: auto;
  background-color: rgb(255, 255, 255);
  border: 0.5px solid#ffffff;
  font-size: small;
  min-width: 5pc;
}

.pharmacy-btn {
  border-radius: 5px;
  background-color: var(--bs-color-primary);
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
  transition: all 0.2s ease-in-out;
}

.pharmacy-bill-btn {
  border-radius: 5px;
  background-color: #2060b4;
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 4px 8px !important;
  height: 30px;
  transition: all 0.2s ease-in-out;
}

.pharmacy-btnBold {
  border-radius: 5px;
  background-color: #2d6375;
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
  transition: all 0.2s ease-in-out;
}

.pharmacy-btn:hover,
.pharmacy-bill-btn:hover,
.pharmacy-btnBold:hover {
  background-color: #06663c;
  color: #fafafa;
  font-weight: 600;
  border: 1px solid white;
}

.modal-header .close {
  color: white;
}
.close-icon-pharmacy {
  display: inline-block;
  background-color: #dc3545;
  color: rgb(235, 235, 235);
  border-radius: 150%;
  padding-left: 25%;
  padding-right: 25%;
  padding-bottom: 10%;

  cursor: pointer;
}

.close-icon-pharmacy:hover {
  background-color: #923d39;
}
.border-checkbox:hover {
  background-color: whitesmoke;
}

.table-pharmacy-tr {
  background-color: #edf9fe;
  color: #073c54;
  font-weight: 900;
}

.table-pharmacy-tr tr:nth-child(even) {
  background-color: #edf9fe;
}

.table-pharmacy-tr tr:nth-child(odd) {
  background-color: white;
}

.table-pharmacy-sm {
  background-color: rgba(240, 240, 240, 0.726);
  color: rgb(44, 43, 43);
  font-weight: 100;
  font-size: small;
}

.table-pharmacy-th {
  background-color: #edf9fe;
  color: #1e5d7a;
  font-weight: 800;
}

.custom-padding {
  padding-left: 3px !important;
}

.gj-btn-dark-op {
  border-radius: 5px;
  background-color: rgb(48, 46, 46);
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
}

.gj-btn-light-op {
  border-radius: 5px;
  background-color: rgb(245, 241, 241);
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  font-weight: 600;
  color: #0f0000;
  padding: 8px 16px !important;
  height: 40px;
  border: 1px solid rgb(199, 198, 198);
}

.gj-btn-primary-op {
  border-radius: 5px;
  background-color: rgb(48, 124, 224);
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 16px !important;
  height: 40px;
}

.gj-btn-primary1-op {
  border-radius: 5px;
  background-color: rgb(79, 145, 136);
  border: 1px solid var(--bs-color-primary);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
  border: 1px solid rgb(91, 165, 155);
}

.table-pharmacy-th-op {
  background-color: #46829e;
  color: rgb(255, 253, 253);
  font-weight: bold;
  border-radius: 10px 10px 0px 0px;
}

.table-pharmacy-th-ns {
  background-color: #397b91;
  color: rgb(255, 253, 253);
  font-weight: bold;
  border-radius: 10px 10px 0px 0px;
}

.card-ph {
  width: 175px !important;
  padding-top: 10px;
  border-radius: 10px;
}

.card-ph:hover {
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
  transition: transform 500ms;
}

.btn-greenpalette {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4db457;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
  border: none;
}

.btn-greenpalettedit {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4db457;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
  border: none;
}

.btn-greenpalette1 {
  --bs-btn-color: #fff;
  --bs-btn-bg: #4db457;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
  border: none;
}

/* .btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: #dc3545;
    --bs-btn-border-color: #dc3545;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #bb2d3b;
    --bs-btn-hover-border-color: #b02a37;
    --bs-btn-focus-shadow-rgb: 225,83,97;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #b02a37;
    --bs-btn-active-border-color: #a52834;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #dc3545;
    --bs-btn-disabled-border-color: #dc3545;
} */

.btn-bluepalettedit {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2992c2d3;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
  border: none;
}

.btn-redpalette {
  --bs-btn-color: #fff;
  --bs-btn-bg: #fa554c;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
  border: none;
}

.btn-bluepalette {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2992c2d3;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
  border: none;
}

.btn-bluepaletteEdit {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2992c2d3;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
  border: none;
}

.btn-lighpalette {
  border-radius: 5px;
  background-color: #aec6cf;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
  border: none;
  outline: none;
}

.btn-greypalette {
  border-radius: 5px;
  background-color: #7a929b;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
  border: none;
  outline: none;
}

.btn-greypalette1 {
  border-radius: 5px;
  background-color: #67808a;
  color: #ffffff;
  padding: 8px 16px !important;
  height: 40px;
  border: none;
  outline: none;
}

.btn-greypaletteEdit {
  border-radius: 5px;
  background-color: #67808a;
  color: #ffffff;
  padding: 6px 16px !important;
  border: none;
  outline: none;
}

.btn-lighpalette:hover,
.btn-greypalette:hover {
  background-color: #4f6066;
}

.btn-greypaletteEdit:hover {
  background-color: #4f6066;
}

.maxheight-90 {
  max-height: 80vh;
}

.height50 {
  height: 50vh;
}

.height40 {
  height: 40vh;
}

.w-40 {
  width: 40%;
}

.w-35 {
  width: 35%;
}

.greenpalette {
  background: #77dd77 !important;
}

.redpalette {
  background-color: #ff6961 !important;
}
.redpalette-color {
  color: #ff6961;
}

.redpal {
  color: #ff6961;
}

.bluepalette {
  background-color: #aec6cf;
}

.bluepalette-color {
  color: #7a8f96;
}

.p-100 {
  font-size: x-small;
}

/* Pharmacy Section */

/* NS- Dashboard */

.w-10 {
  width: 10%;
}

.w-6{
  width: 6%;
}

.w-20 {
  width: 20%;
}

.w-15 {
  width: 15%;
}

.w-98 {
  width: 98%;
}

.alert-above-popup {
  position: relative;
  top: -50px;
}

.disabled-div {
  cursor: not-allowed;
}

.card-ns {
  width: 20%;
  padding: 16px 16px 0px 0px;
  max-height: auto;
  height: auto;
}
.card-ns-container {
  height: 17vh;
  width: 100px;
  border-radius: 0.7rem;
  text-align: center;
  transition: box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: whitesmoke;
}

.ok-icon-ns {
  display: inline-block;
  background-color: #77dd77;
  color: white;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  align-items: center;
  margin-left: 10px;
}

.ok-icon-ns:hover {
  background-color: #529952;
}

.p-200 {
  font-size: small;
}

.card-ns-container:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.textColor {
  color: #1e5d7a;
}

.ns-blue {
  background-color: #0d7ecc;
}
.ns-blue:hover {
  background-color: #345974;
}

.ns-green {
  background-color: #00930f;
}

.ns-yellow {
  background-color: #f4c004;
}

.ns-pink {
  background-color: #ff9090;
}

.ns-palblue {
  background-color: #5ba59b;
}

.ns-palgreen {
  background: #4db457;
}

.ns-brown {
  background-color: #bc7100;
}

.ns-primary {
  background-color: #397b91;
  color: white;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

.ns-sec {
  background-color: #5ba59b;
  color: white;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.f-600 {
  font-weight: 600 !important;
}

.f-500 {
  font-weight: 500;
}

.f-300 {
  font-weight: 500;
}

.fs-m {
  font-size: medium !important;
}

.fwb {
  color: #0a3a50;
}

.bg-smoke {
  background: whitesmoke !important;
}

.fs-s {
  font-size: small;
}

.fs-fifteen {
  font-size: 15px;
}

.fs-twelve {
  font-size: 15px;
}

.h-15 {
  height: 15vh;
  padding: 1%;
  margin-top: 0.5%;
}

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}
.bg-ph {
  background-color: #498f87;
}

.width-100 {
  min-width: 100% !important;
}

.h-40 {
  min-height: 40vh;
}

.h-50 {
  max-height: 50vh !important;
  min-height: 50vh !important;
}

.h40 {
  height: 80vh;
  max-height: 90%;
  overflow: auto;
}

.min-20 {
  min-width: 70px !important;
}

.h-28 {
  height: 20vh;
}

.bg-greywhite {
  background-color: rgb(233, 233, 233);
}

.disabled {
  opacity: 0.9;
}

.ns-OptionsStyle {
  max-height: 300px;
  width: 300px;
  background: white;
  position: absolute;
  border-radius: 10px;
  overflow: scroll;
  margin-bottom: 10px;
}

.text-color {
  color: #397b91;
}

.table-ns {
  --bs-table-bg: #397b91;
  color: #fafeff;
  font-weight: 900;
  text-align: center;
}

.primary-dark {
  background-color: #397b91;
}

.bg-smoke {
  background-color: #dde6ed;
}

.bg-smoke-disabled {
  background-color: #dde6ed;
  color: grey;
}

.hovered-ns {
  cursor: pointer;
}

.hovered-ns-disabled {
  cursor: pointer;
}

.hovered-ns:hover {
  background-color: #a1c7df !important;
  color: rgb(12, 9, 9);
}

/* .btn-success1 {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60,153,110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
} */

.btn-none {
  color: #000;
  padding: 8px 16px !important;
  height: 40px;
  border-radius: 5px;
}
.btn-none:hover {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #f6f9fa;
  background: #397b91;
}

/* NS- Dashboard */

/*Reorder-creation-start */
.reorder-add-item-mt {
  margin-top: -151px !important;
}

@media (min-width: 300px) and (max-width: 1199px) {
  .reorder-add-item-mt {
    margin-top: 0px !important;
  }
}
/*Reorder-creation-End */
/* store purchase request */
.store-purchase-request {
  margin-top: -20px !important;
}
/* modal */
.modal-custom {
  display: none;
  position: fixed;
  z-index: 1031;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content-custom {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 280px !important;
}
@media screen and (max-width: 305px) {
  .modal-content-custom {
    width: 250px;
  }
}
.close {
  color: #0e0606;
  text-align: right;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: right;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.text-modal-custom {
  text-align: center;
  color: #02050a;
  font-weight: bold;
  margin-top: 30px;
}
.btn-modal-custom {
  width: 30%;
  background-color: #5ba59b;
  color: #fefefe;
  margin: auto;
  border-radius: 19px;
  font-size: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  border: 0px;
}

.btn-modal-custom:focus {
  width: 30%;
  background-color: #5ba59b;
  color: #fefefe;
  margin: auto;
  border-radius: 19px;
  font-size: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  border: 1px solid #09e709;
}
.bg-blue {
  background-color: #397b91;
}

.select-box {
  padding-left: 13%;
  padding-top: 13%;
  padding-bottom: 13%;
  border-color: #cddeed;
  border-radius: 5px;
}

/* Item_Transfer */
.itemDescription {
  width: 493px;
}
.existingColor {
  background-color: #8abdaa !important;
}

.modal-fullscreened {
  width: 45vw !important;
  max-width: none;
  height: 35% !important;
  margin: 0;
}
.modal-content {
  border: 0;
  border-radius: 8px;
}

.modal-header {
  /* background-color: #edf7f4 !important; */
}
.modal-ph {
  display: none;
  position: fixed;
  z-index: 1031;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-content-ph {
  background-color: #e7e5e5;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 280px;
}
@media screen and (max-width: 305px) {
  .modal-content {
    width: 250px;
  }
}
.close {
  color: #0e0606;
  text-align: right;
  font-size: 28px;
  font-weight: bold;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.text-modal {
  text-align: center;
  color: #02050a;
  font-weight: bold;
}
.btn-modal {
  width: 30%;
  background-color: #5ba59b;
  color: #fefefe;
  margin: auto;
  border-radius: 19px;
  border: 0cm;
  font-size: 15px;
}
/* prq browser */
.tableSearchResult {
  overflow: auto;
}
.brandSelectigBox {
  width: 130px;
}
.w200 {
  width: 200px !important;
}
.w-150 {
  display: flex;
  flex-wrap: wrap;
  width: 150px !important;
}
.text-right {
  text-align: right;
}

@media (min-width: 576px) {
  .modal-dialog {
    height: 400px;
  }
}
.w150 {
  width: 100px;
}

.w300 {
  width: 300px !important;
}

.stylingDropDown {
  width: 130px;
  height: fit-content;
}

/* Purchase order Begin */
.prq-table {
  border: 2px solid #397b9145;
  border-radius: 10px;
  height: 500px;
}
.border-setup {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.fz-10 {
  font-size: 10px;
}
.bg-green {
  background-color: #397b91 !important;
}
.text-right {
  text-align: right;
}
@media (max-width: 840px) {
  .form-group {
    width: 100% !important;
  }
}
.key {
  margin-right: 8px;
}
.finalAmtContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Purchase order End */

/* Reception bill browser */
.widpartforReception {
  width: 390px;
}

/* Purchase Browser */
.disabled-color {
  background-color: rgba(103, 102, 102, 0.267) !important;
  color: rgba(0, 0, 0, 0.539);
}

@media (min-width: 576px) {
  .modal-dialog {
    /* height: 789px; */
    /* height: 100vh  !important; */
    margin: 147px !important;
  }
}
/* Purchase Browser End */
.stylingDropDown {
  width: 130px;
  height: fit-content;
}

/* Purchase order Begin */
.prq-table {
  border: 2px solid #397b9145;
  border-radius: 10px;
  height: 500px;
}
.border-setup {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.fz-10 {
  font-size: 10px;
}

@media (max-width: 840px) {
  .form-group {
    width: 100% !important;
  }
}
/* Purchase order End */

/* Reception bill browser */
.widpartforReception {
  width: 390px;
}

@media (min-width: 576px) {
  .modal-dialog {
    height: 400px;
  }
}
.w150 {
  width: 100px;
}
.w300 {
  width: 300px !important;
}
.grn-table {
  border: 2px solid #397b9145;
  border-radius: 10px;
  height: 200px;
}
/* / */
.gray-row {
  background-color: gray;
}

.table-responsive::-webkit-scrollbar {
  height: 5px !important;
}
.table-heightbrowse {
  width: 100%;
  height: 400px;
}
/* purchaseRequest */
.borderBox:focus {
  border-color: #7894bd !important;
  border-width: 7px !important;
}
.form-control-dropdown {
  display: block;
  width: 140px;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: rgb(241, 242, 242);

  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/* purchase Browser */
.w-200 {
  width: 200px;
}
.w-150 {
  width: 150px;
}
.w-100 {
  width: 100px;
}
.w-50 {
  width: 50px;
}
.mw-100 {
  min-width: 180px;
}

.mw-200 {
  min-width: 100px;
}
.mw-50 {
  min-width: 50px;
}
.mw-250 {
  min-width: 150px;
}
/* custom-modal */
.btn-modal-custom:focus {
  width: 30%;
  background-color: #5ba59b;
  color: #fefefe;
  margin: auto;
  border-radius: 19px;
  font-size: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  border: 7px solid #7894bd;

  border-width: 7px;
}

.widtheditor {
  width: 890px;
}
.tox-notifications-container {
  display: none;
}
.tox-tinymce {
  width: 100%;
}
.tox .tox-statusbar {
  display: none !important;
}
.widreceptionn {
  width: 288px;
}

.dataTables_length select:focus {
  box-shadow: 0 0 0 2px #b9d2f5;
}

.dataTables_length select {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 8.5% !important;
  border-color: #f3f3f3 !important;
}

.dataTables_filter input[type="search"]:focus {
  box-shadow: 0 0 0 3px #b9d2f5;
}

.dataTables_filter input[type="search"] {
  box-shadow: "0 0 0 4px #b9d2f5" !important;
  background-color: #ebebeb !important;
  border-radius: 8px !important;
  border-color: #f3f3f3 !important;
  /* padding-right: 1% !important; */
}

#dataTables_paginate:focus {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 3px #5ba59b !important;
}

.dataTables_filter {
  margin-top: 10px;
  padding-right: 10px;
}

.dataTables_info {
  padding-top: 1.5% !important;
  color: rgb(189, 176, 176) !important;
}

#tablelist_paginate {
  width: 37%;
  /* margin-right: 2%; */
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-shadow: "0 0 0 4px #b9d2f5" !important;
  background-color: #ebebeb !important;
  border-radius: 8px !important;
  border-color: #f3f3f3 !important;
  margin-top: 2%;
  margin-bottom: 2%;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 1px #7aaee6 !important;
  background: #9dbac4 !important;
  margin-top: 2%;
  margin-bottom: 2%;
}

.heights {
  height: auto;
}
.heighttwo {
  height: auto;
}
.heights {
  height: auto;
}
.heighttwo {
  height: auto;
}
/* ot resources */

.camera-icon-for-upload {
  position: absolute;
  bottom: 0;
  right: 2%;
  top: 40%;
}

.fielclass {
  opacity: 0;
  height: 3.5em;
  width: 15%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  right: 2%;
}
/* .marfin{
  margin-top: 10px;
} */

.sapnnned {
  bottom: 0;
  position: absolute;
}

.setting-border {
  border: 1px solid #727373;
  border-radius: 6px;
}
.setting-border:focus-within {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 5px #7aaee6 !important;
}

/* warning */
.gear-color {
  color: #397b91;
}

.white-color {
  color: white;
}

#crossimageotequipment {
  /* position: absolute;
  margin-left: 10px; */
  z-index: 1;
  margin-right: -11px;
}
#selectingimages {
  /* position:relative; */
  background: transparent;
  margin-top: -10px;
}
.imagecross {
  border: none;
}

.imagecross:focus {
  border: 1px solid rgb(143, 48, 48) !important;

  /* width: 20px;
  height: 20px; */
}
.button-tab {
  background-color: #5ba59b !important;
  color: white;
  border: none;
}

.fixingwidrh {
  width: 49.5%;
}

.marginleftauto {
  margin-left: auto;
}
.widtable {
  width: inherit !important;
}

.disss {
  display: flex;
  width: 100%;
  column-gap: 8px;
  /* row-gap: 16px; */
}
.cardss {
  width: 168px !important;
  padding: 0px 0px 0px 0px;
  background: transparent;
}

.cardss:hover {
  box-shadow: none;
  background: transparent;
}
.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}

/* VirtualKeyboard.css */
.virtual-keyboard {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.keyboard-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.keyboard-keys {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
}

.keyboard-row {
  display: flex;
  justify-content: space-between;
}

.keyboard-key {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: pointer;
}

.backspace-key {
  color: red;
}

.keyboard-key:hover {
  background-color: #ccc;
}

.keyboard-key:active {
  background-color: #aaa;
}

/* VirtualKeyboard.css */

/* Keyboard container */
.virtual-keyboard {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Input field */
.keyboard-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* Keyboard keys container */
.keyboard-keys {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 5px;
}

/* Keyboard row */
.keyboard-row {
  display: flex;
  justify-content: space-between;
}

/* Keyboard key button */
.keyboard-key {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
}

/* Special styling for the backspace key */
.backspace-key {
  color: red;
}

/* Hover effect */
.keyboard-key:hover {
  background-color: #ccc;
}

/* Active (clicked) effect */
.keyboard-key:active {
  background-color: #aaa;
}

.hg-theme-default .hg-row .hg-button-container,
.hg-theme-default .hg-row .hg-button:not(:last-child) {
  margin-right: 5px;
  background: #397b91;
  color: white;
}
.hg-theme-default .hg-row > div:last-child {
  margin-right: 0;
  background: #397b91;
  color: white;
}
.inputfieldkisok {
  height: 50px;
  width: 100%;
  border-radius: 15px;
}

.calculatorwid {
  width: 95px;
  height: auto;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: white;
  border: 1px solid #1c1e20;
  /* border-radius: 0.375rem; */
  /* border-radius: 91px; */
  /* border-radius: none !important; */
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  border-right: none !important;
}
.forminputprocess {
  border-left: none !important;
}
.inputforage {
  width: 12%;
  height: 3rem;
  margin-right: 4%;
  border-radius: 14px;
  border-color: black;
}

.widthfordateofbirthno {
  border-radius: 15px;
  width: 5rem;
  height: 3rem;
  text-align: center;
}

.widthfordateofbirthno::placeholder {
  text-align: center;
}
.widthfordateofbirthyear {
  border-radius: 15px;
  width: 6rem;
  height: 3rem;
  text-align: center;
}
.widthfordateofbirthyear::placeholder {
  text-align: center;
}
.widthfordateofbirthmonth {
  text-align: center;
}
.widthfordateofbirthmonth::placeholder {
  text-align: center;
}

.cardsesinspeciality {
  width: 300px !important;
  padding: 0px 0px 0px 0px;
  background: transparent;
}

.cardsesinspeciality:hover {
  box-shadow: none;
  background: transparent;
}
.cardforsuperspeciality {
  width: 258px !important;
  padding: 0px 0px 0px 0px;
  background: transparent;
}

.cardforsuperspeciality:hover {
  box-shadow: none;
  background: transparent;
}

.cardswelcome {
  width: 231px !important;
  padding: 0px 0px 0px 0px;
  background: transparent;
}
.cardswelcome:hover {
  box-shadow: none;
  background: transparent;
}

.inputfieldkisokforaddress {
  height: 50px;
  width: 74%;
  border-radius: 15px;
}

li:focus {
  background-color: red;
}
.list-hover {
  background: #0d7ecc !important;
  color: white !important;
}

#tablelist_paginate :focus {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 3px #5ba59b !important;
}
#doctortabledata_paginate :focus-visible {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 3px #5ba59b !important;
}

.form-autocomplete input {
  height: 43px !important;
}
#list-tables_paginate :focus {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 3px #5ba59b !important;
}
#tableslistsdatas_wrapper :focus-visible {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 3px #5ba59b !important;
}
.dataTables_wrapper :focus {
  box-shadow: 0 0 0 1px #ffffff, 0 0 1px 3px #5ba59b !important;
}

.placeholder-glow .placeholder {
  background-color: #5ba59b;
  height: 80px;
}

.w-250px {
  width: 250px;
}

.hover-effect:hover {
  background-color: #f0f0f0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Ensure the notched outline is styled correctly */
.mui-container .MuiOutlinedInput-notchedOutline {
  border: 1px solid #ced4da !important; /* Default MUI border */
  border-radius: 8px !important; /* Match your design */
  padding: 0 !important; /* Remove extra padding */
}

/* Adjust the legend to prevent overlap or cutting */
.mui-container legend {
  float: none !important;
  width: auto !important;
  margin-left: 14px !important; /* Align with MUI default */
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  padding: 0 !important;
  transition: all 0.2s ease-in-out; /* Smooth transition for label movement */
}


/* Fix focus state */
.mui-container .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #5ba59b !important; /* Match your theme's primary color */
  border-width: 2px !important; /* Thicken the border on focus */
}