:root {
  --primary-color: #00A3AD;
  --secondry-color: #394456;
  --tertiary-color: #58595B;
  --new-blue-color: #0077C8;
  --text-color: #667488;
  --text-red: #F4004D;
  --text-light: #FFFFFF;
  --light-bg: #F9FAFC;
  --dark-bg: #020104;
  --text-black: #171822;
  --radius-btn: 0.125rem;
  --z-index: 1;
  --z-index-header: 100;
  --z-index-popup: 1000;
  --primary-font: "Inter", sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-smedium: 600;
  --font-weight-bold: 700;
  --base-text: 16px;
  --font-style-italic: italic;
  --text-md: 1.125rem;
  --text: 1.0625rem;
  --text-sm: 1rem;
  --text-xs: 0.875rem;
  --text-small: 0.75rem;
  --text-tiny: 10px;
  --basic-text: 15.295px;
  --btn-line-height: 1.5rem;
  --h1:3.125rem;
  --h2:2.125rem;
  --h3:1.436rem;
  --h4:1.875rem;
  --h5:1.5rem;
  --h6:1.375rem;
  --h7:1.2215rem;
}

html.has-dom-loading, html.has-scroll-smooth {
  height: 100%;
  overflow: hidden;
}

html.has-scroll-smooth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main {
  overflow: hidden;
}

html {
  font-size: var(--base-size);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*, ::after, ::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  color: var(--dark-text);
  font-family: var(--primary-font);
  font-weight: var(--font-weight-regular);
  font-style: normal;
  font-size: var(--base-text);
  line-height: 1.45;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html, body, main#main {
  min-height: 100%;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 1.25rem;
  font-family: var(--primary-font);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}

p {
  margin-bottom: 1em;
  margin-top: 0;
  line-height: 1.35;
  font-weight: var(--font-weight-regular);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  line-height: 1.25;
}

h1, .h1 {
  font-size: var(--h1);
}

h2, .h2 {
  font-size: var(--h2);
}

h3, .h3 {
  font-size: var(--h3);
}

h4, .h4 {
  font-size: var(--h4);
}

h5, .h5 {
  font-size: var(--h5);
}

h6, .h6 {
  font-size: var(--h6);
}

.h7 {
  font-size: var(--h7);
}

.basic-text {
  font-size: var(--basic-text);
}

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text {
  font-size: var(--text);
  line-height: normal;
}

.text-md {
  font-size: var(--text-md) !important;
  line-height: 1.5rem;
}

.caption-text {
  color: var(--trietory-color);
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 600;
}
.caption-text::before {
  content: "";
  height: 0.8em;
  width: 0.8em;
  display: inline-block;
  background-color: currentColor;
  margin-right: 1.5em;
}

address {
  font-style: normal;
}

.text-small{
  font-size: var(--text-small) !important;
}

.text-tiny{
  font-size: var(--text-tiny) !important;
}

a {
  color: var(--dark-text);
  text-decoration: none;
  display: inline-block;
  transition: 0.5s all;
}

a:hover, input.btn:hover {
  color: var(--primary-color) !important;
}

button, a {
  outline: 0;
}

/* dl, ol, ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  list-style: none;
} */

article li {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
article ul {
  margin-top: 1.5rem;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Font Weight */
.fw-light {
  font-weight: var(--font-weight-light);
}

.fw-regular {
  font-weight: var(--font-weight-regular);
}

.fw-medium {
  font-weight: var(--font-weight-medium);
}

.fw-smedium {
  font-weight: var(--font-weight-smedium);
}

.fw-bold {
  font-weight: var(--font-weight-bold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: var(--btn-text);
  line-height: var(--btn-line-height);
  font-weight: var(--font-weight-smedium);
  font-family: var(--primary-font);
  border-radius: 7px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 0.0625rem solid transparent;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  position: relative;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
}

.btn-bordered {
    background-color: transparent;
    color: var(--primary-color) !important;
    box-shadow: inset 0 0 0 1.5px var(--primary-color);
}

.btn-danger {
  color: #fff;
  background-color: var(--text-red);
  border-color: var(--text-red);
}

.btn-grey {
  background-color: #EFEFEF !important;
}

.btn-pink {
  background-color: #DD9CDF !important;
}

.btn-light {
  background-color: #F7F7F7 !important;
}

.btn-bordered svg path, .primary-color svg path{
    fill: var(--primary-color) !important;
}

.btn-bordered:hover svg path{
    fill: var(--text-light) !important;
}

.btn:hover{
  background-color: var(--secondry-color) !important;
}

.di__social_links a:hover {
  background-color: var(--secondry-color) !important;
}

.btn-bordered:hover, .btn-bordered.active {
    background-color: var(--primary-color) !important;
    color: var(--text-light) !important;
}

[type=button], [type=reset], [type=submit], button {
  appearance: button;
  -moz-appearance: button;
  -webkit-appearance: button;
}

.gradient-text {
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, rgb(255, 255, 255), rgba(249, 250, 251, 0.75));
  color: transparent;
}

.secondry-color {
  color: var(--secondry-color) !important;
}
.primary-color {
  color: var(--primary-color) !important;
}

.new-blue-color {
  color: var(--new-blue-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.tertiary-color {
  color: var(--tertiary-color) !important;
}
.tertiary-bg {
  background-color: var(--tertiary-color) !important;
}

.color-text {
  color: var(--text-color) !important;
}

.text-black {
  color: var(--text-black) !important;
}

.color-red {
  color: var(--text-red) !important;
}

.color-light {
  color: var(--text-light) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-dark {
  background-color: var(--dark-bg) !important;
}



.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  max-width: 1310px;
}


.p0 {
  padding: 0;
}

.m0 {
  margin: 0;
}

.notification_div_link {
  width: 100%;;
}


.section, .relative{
  position: relative;
}

.background-cover{
  background-repeat: no-repeat;
  background-size: cover;
}

.overlay-bg{
  position: relative;
  overflow: hidden;
}

.mx-auto{
  margin-right: auto;
  margin-left: auto;
}

.overlay-bg:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}

.close {
  cursor: pointer;
}
.cursor-pointer {
  cursor: pointer;
}

.di__header_inner{
  padding: 38px 0;
  gap: 30px;
}

.grey-text{
  color: #A5B4CB;
}

.bg-grey{
  background-color: #A5B4CB;
}

.di__account{
  gap: 10px;
  color: #A5B4CB;
}

.di__account svg{
  max-width: 19px;
}

@media (max-width: 767px){
  .di__account p, .color-text{
    font-size: 14px !important;
  }
  .di__header_inner{
    padding: 20px 0;
    gap: 20px;
  }
  h5, .h5{
    font-size: 1.2rem;
  }
  h2, .h2{
    font-size: 1.6rem;
  }
}

/*footer*/
footer{
  background-color: var(--light-bg);
  padding-top: 45px;
}
.di__social_links{
  gap: 50px;
  margin: 40px 0 50px;
}

.di__policy_link{
  gap: 97px;
}
.di__social_links a {
  width: 44px;
  height: 44px;
}
.di__footer_copyright{
  max-width: 950px;
  padding: 25px 0;
  border-top: 1px solid #A5B4CB;
  margin-top: 30px;
}

@media (max-width: 991px){
  h1, .h1{
    font-size: 2.7rem
  }
}
@media (max-width: 767px){

  h1, .h1{
    font-size: 2.5rem
  }
  .text-md{
    font-size: 1rem !important;
  }
  .di__policy_link {
    gap: 50px;
  }
  .di__social_links {
    margin: 20px 0 30px;
  }
  .di__account svg {
    max-width: 15px;
  }

  h4, .h4 {
    font-size: var(--h5);
  }

}
@media (max-width: 640px){
  .di__policy_link {
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 575px){
  h1, .h1{
    font-size: 2rem
  }
}

/**/
.form-label{
  margin-bottom: 1.05rem;
  line-height: 1.4;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-smedium);
  color: var(--secondry-color);
}

.form-control {
    border-radius: 10px;
    border: 0px;
    background: #F9FAFC;
    padding: 14px 20px;
    font-size: 14px;
    line-height: 20px;
    box-shadow: inset 0 0 0 1px #E4E9EF;
}

.form-control::placeholder {
    color: #667488;
}

.form-select, .select2-container--bootstrap-5 .select2-selection--single {
  border-radius: 10px;
  border: 0px;
  background-color: #F9FAFC;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 20px;
  box-shadow: inset 0 0 0 1px #E4E9EF;
  background-size: 10px;
  background-position: right 22px center;
  font-weight: 500;
  color: #394456;
  height: auto;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection, .select2-container--bootstrap-5.select2-container--open .select2-selection{
  background-color: #F9FAFC !important;
  box-shadow: inset 0 0 0 1px #E4E9EF !important;
  outline: 0;
}


.form-check-input:focus {
    border-color: rgba(0,0,0,.25);
    box-shadow: none;
}

.form-select:focus {
    border: 0;
    box-shadow: inset 0 0 0 1px #E4E9EF;
}

.form-control:focus {
  box-shadow: 0 0 0 2px rgba(0, 163, 173, 0.3);
}

.form-check-input:checked[type=radio] {
    background-color: transparent;
    border-color: #ffffff;
}

.form-check-input[type=radio], .di__carehome .form-check-input[type=checkbox]{
    background-color: transparent;
    border: 1px solid rgb(255 255 255);
}

.form-check-input:checked[type=radio] {
    background-size: 20px;
}

.form-check-input:checked[type=checkbox] {
    background-color: #F4004D !important;
    border-color: #F4004D;
}

.di__telephone{
    flex: 0 0 120px;
}

select+.select2-container--bootstrap-5 {
    width: 100% !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected, .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
    background-color: #F9FAFC !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    border-radius: 7px;
    color: #667488 !important;
    margin-bottom: 4px;
    padding: 6px 18px;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-color: transparent;
    margin-top: 10px;
    border-radius: 13px !important;
    padding: 14px 0;
    box-shadow: 8px 8px 18px 0px rgba(0, 16, 75, 0.08);
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options {
    max-height: 170px;
    overflow: auto;
    margin: 0 10px;
    padding: 0 17px 0 5px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options::-webkit-scrollbar-track
{
	border-radius: 10px;
	background-color: #F9FAFC;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options::-webkit-scrollbar
{
  border-radius: 10px;
	width: 7px;
	background-color: #F9FAFC;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: #E5EAF1;
}

.select2-container--bootstrap-5.select2-container--open.select2-container--below .select2-selection{
  border-radius: 10px;
}

.di__password_view, .di__password_hide {
    position: absolute;
    bottom: 15px;
    right: 22px;
    width: 17px;
    height: 17px;
}

.di__password_toggle .di__password_hide, .di__password_toggle.active .di__password_view {
  display: none;
}

.di__password_toggle.active .di__password_hide {
  display: block;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: #ffffff;
  color: #00a3ad !important;
}

.nav-pills {
  border-radius: 8px;
}


@media (max-width: 767px){
  .form-label {
    margin-bottom: 10px;
  }
}

@media (min-width: 1441px){
  .text-tiny{
    font-size: var(--text-xs) !important;
  }
  .text-sm{
    font-size: var(--text-md) !important;
  }
  .text-xs{
    font-size: var(--text-sm) !important;
  }
}


.di__red_radio .form-check-input[type=radio] {
  border-color: #E8ECEE;
}

.di__red_radio .form-check-input:checked[type=radio] {
  border-color: #F4004D;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23F4004D'/%3e%3c/svg%3e");
}

.di__bg_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
}

.di__bg_overlay.active {
  z-index: 3;
  opacity: 1;
}

.inner-dropdown ul {
  display:none;
    list-style: none;
}

.inner-dropdown .nav-link + .dropdown-arrow {
    position: absolute;
    right: 13px;
    top: 15px;
    transform: rotate(90deg);
}

.inner-dropdown {
    position: relative;
}

.inner-dropdown .nav-link:hover + .dropdown-arrow svg path, .inner-dropdown .nav-link.active + .dropdown-arrow svg path {
    fill: #ffffff;
}

.inner-dropdown .nav-link + .dropdown-arrow svg path {
    fill: #000000;
}

.di__clip svg{
  height: 20px;
  width: 20px
}

/*custom Toggle*/
.di__custom_toggle input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.di__custom_toggle label {
	cursor: pointer;
	text-indent: -9999px;
	width: 48px;
	height: 24px;
	background: #F7F7F7;
	display: block;
	border-radius: 100px;
	position: relative;
}

.di__custom_toggle label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 90px;
	transition: 0.3s;
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.20), 0px -1px 1px 0px rgba(0, 0, 0, 0.10) inset, 0px 2px 2px 0px #FFF inset;

}

.di__custom_toggle input:checked + label {
	background: #00A3AD;
}

.di__custom_toggle input:checked + label:after {
	left: calc(100% - 2px);
	transform: translateX(-100%);
}

.di__custom_toggle label:active:after {
	width: 30px;
}

.di__underline_position .text-decoration-underline {
    text-underline-offset: 5px;
}

.dropdown-toggle::after{
  content: none;
}


.di__red_link a {
  color: #F4004D;
}

.di__red_link a svg path {
  fill: #F4004D;
}

.form-check-input {
  flex: 0 0 1em;
}

.di_border{
  background-color: #E5E5E5 !important;
}

.error-message {
  color: red;
}

.error, .form-label {
  display: block;
}

/*02-02-2024*/
[type=button]:hover, [type=submit]:hover{
  color: #ffffff;
}

.select2-container--bootstrap-5 .select2-dropdown.di__telephone--select .select2-results__options {
  padding: 0 5px;
  margin: 0 5px;
}

.select2-container--bootstrap-5 .select2-dropdown.di__telephone--select .select2-results__options .select2-results__option {
  padding: 5px;
  font-size: 0.8rem;
}

.di__telephone--select + .select2-container--bootstrap-5 .select2-selection--single{
  background-position: right 15px center !important;
}

.search_btn svg path{
  fill: #ffffff;
}
#search_user{
  border-radius: 10px !important;
}
.di__password_view, .di__password_hide{
  cursor: pointer;
  top: 15px;
  bottom: auto;
}

.form-label{
  margin-bottom: 1.06rem;
}

/*08-02-2024*/
.di__image_upload img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.di__admin-forum_table tr td:nth-child(2), .di__admin-forum_table tr th:nth-child(2) {
    white-space: normal;
}
.pagination{
  gap: 10px;
}

.user_last_msg, .contact__name p:not(#chat_user_name){
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.group_last_msg {
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
}

div.dataTables_processing>div:last-child>div{
  background-color: var(--primary-color);
}

@media (min-width: 1366px){
  .di__footer_logo img {
    width: 331px;
  }
}

.di__dashboard:not(.di__forum_dashboard) .di__dashboard_search, .di__dashboard:not(.di__forum_dashboard) .di-search_icon {
  display: none !important;
}

.di__label {
  width: 130px;
  display: inline-block;
}

.msg_container pre {
  max-width: 100%;
  width: 100%;
  white-space: break-spaces;
}

.reply-message .msg_container pre {
  color: #ffffff;
}

.di__chat-footer textarea.form-control {
  max-height: 50px;
  height: auto;
  resize: none;
  appearance: none;
}

/*08-04-2024*/
.di__fee_card {
  position: relative;
}

.di__fee_card .delete-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  border: 0;
  border-radius: 30px;
  color: white;
  padding: 0;
  width: 20px;
  height: 20px;
  line-height: 0.5;
  font-size: 18px;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjMiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyMyAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMTYuNjE0MyIgeT0iNS42MTQyNiIgd2lkdGg9IjEuNDMwNTYiIGhlaWdodD0iMTUuMzc5NiIgdHJhbnNmb3JtPSJyb3RhdGUoNDUgMTYuNjE0MyA1LjYxNDI2KSIgZmlsbD0iI2ZmZmZmZiIvPgo8cmVjdCB4PSIxNy42MjYiIHk9IjE2LjQ4OTMiIHdpZHRoPSIxLjQzMDU2IiBoZWlnaHQ9IjE1LjM3OTYiIHRyYW5zZm9ybT0icm90YXRlKDEzNSAxNy42MjYgMTYuNDg5MykiIGZpbGw9IiNmZmZmZmYiLz4KPC9zdmc+Cg==")
center center / 15px #F4004D;
}

/*# sourceMappingURL=style.css.map */
.Uncategorised-btn:hover {
  background-color: white !important;
}

.WebsitePages{
  margin-top: 70px;
}

.di__forum_topic_table{
  border-spacing: 0 10px !important;
  border-collapse:separate !important;
}

.imageSize{
  color: #667488;
  font-weight: 600;
  font-size: 14px;
}

.imageSize span{
  font-weight: 400;
}

/* added by Akash Patel */
.ck.ck-reset.ck-editor.ck-rounded-corners a {
  color: #00a3ad !important;
  text-decoration: underline;
}
/* 23-04-2024 */

.btn-px{
  padding-left: 42px;
  padding-right: 42px;
}
.row_minus{
  margin-top: -20px;
}

.profile_wrap img{
  max-width: 127px;
  max-height: 127px;
  object-fit: cover;
}

@media(max-width:576px){
  .imageSize{
    text-align: center;
    max-width: 220px;
    margin: auto;
    margin-top: 10px;
  }
  .imageSize br{
    display: none;
  }
}
@media(max-width:768px){
  .row_minus{
    margin-top: 0px;
  }
}

/*29-04-2024*/
.di__dropzone {
  min-height: initial;
  display: none;
}
#di__editor svg path {
  fill: #00a3ad;
}

#di__editor .fr-toolbar.fr-top {
  background: #edf5f6;
}

#di__editor .fr-wrapper, #di__editor .fr-second-toolbar {
  background: #f6f9fc;
}

#di__editor .fr-floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

#di__editor .fr-wrapper {
  border-bottom: 0;
}

#di__editor .fr-active, #di__editor .fr-btn:hover {
  background: #00a3ad;
}

#di__editor .fr-active svg path, #di__editor .fr-btn:hover svg path {
  fill: #ffffff;
}
/* added by ishita */
.dropzone#my-dropzone .dz-preview.dz-error .dz-error-mark {
  display: none;
}
.dz-filename {
  display: none;
}

.dz-size {
  display: none;
}

.dz-error-message {
  display: none;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
  display: none;

}

/* Summer note - 02/05/2024 start */
.di__editor .note-editor .btn:not(.btn-primary) {
  background: none;
  padding: 0 10px;
}

.di__editor .note-editor .btn i:before, .di__editor .note-editor .btn span {
  font-size: 16px;
  line-height: 1;
  color: #00A3AD;
}

.di__editor .note-editor.note-frame {
  border: 1px solid #E4E9EF;
  border-radius: 10px;
}

.di__editor .note-editor .note-toolbar {
  background: #EDF5F6;
}

.di__editor .note-editor.note-frame .note-editing-area .note-editable {
  background: #f6f9fc;
}

/* Summer note - 02/05/2024 end */
/*03-05-2024*/
.di__forum-form {
  padding: 25px 40px;
  background: #F6F9FC;
  border-radius: 7px;
}

.di__forum-form .form-control {
  background: #ffffff;
}

.di__forum-form .btn-grey:hover {
  color: var(--primary-color) !important;
}

.di__forum-form .di__custom_toggle label {
  background: #E5E5E5;
}
/* 3-5-2024 */

.di__user_table tbody tr{
  cursor: pointer;
}

.sort_drop {
  width: 160px;
}

.di__user_table tbody tr,
.di__admin-forum_table tbody tr,
.di__forum_topic_table tbody tr,
.di__comment_table tbody tr{
  cursor: pointer;
}
.di__discussion_table tbody tr {
  cursor: pointer;
}
.di__postcodes_list .di__post_group.table tr th:first-child {
  padding-left: 28px;
}


/*08-05-2024*/
#di__forum_topic_table tbody tr:hover td, #board-topics-table tbody tr:hover td, .di__discussion_table tbody tr:hover td{
  background: rgba(0, 163, 173, 0.3);
}

@media (min-width: 1300px){
  .di__gap{
    column-gap: 2.5vw !important;
  }
}

@media (min-width: 1500px){
  .di__gap{
    column-gap: 4vw !important;
  }
}

/**/
#di__forum_topic_table .sorting_1 {
  word-break: break-all;
}

ui#contact-list {
  display: block;
  max-height: 350px;
  overflow: auto;
  margin: 20px 0;
  padding-right: 20px;
}

ui#contact-list.di__custom_scroll::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

ui#contact-list li:first-child {
  margin-top: 0 !important;
}

.di__notification_pannel .di__notification_content {
  max-height: 300px;
  overflow-y: auto;
}

@media (max-width: 1400px){
  #dayCareServicesSection .di__carehome {
    padding-inline: 25px;
}
}

/* 23-05-2024 added by Akash Patel */
#contactNumber-error, #directoryContactNumber-error {
  position: static;
  left: calc(var(--bs-gutter-x)* 9.6);
  top: 100%;
  font-size: 14px;
}

/*28-05-2024*/
@media (max-width: 575px) {
  .di__account svg {
      max-width: 25px;
  }
  .di__header_inner {
    gap: 9.5vw;
}
}
/*03-07-2024*/
.di__directory-wrap {
  flex: 0 0 calc(100% - 12.375rem);
  max-width: calc(100% - 12.375rem);
}

.di__directory-img img {
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  max-width: 9.375rem;
  margin-right: 3rem;
  object-fit: cover;
}

.di__directory .di__directory-directory-list .di__directory-directory a {
  word-break: break-all;
}

.di__flag{
  flex: 0 0 50px;
  align-self: center;
}

.di__directory-wrap > * {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media (max-width: 767px){
  .di__directory-directory .di__flex{
    flex-wrap: wrap;
  }
  .di__directory-wrap {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 1rem;
  }
}

/*05-09-2024*/
.select2-container--bootstrap-5 .select2-selection--multiple .select2-search {
  float: none !important;
  line-height: 1 !important;
  height: initial !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-search .select2-search__field {
  height: 21px;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  display: inline;
}

textarea::-webkit-inner-spin-button, textarea::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  border: 0;
  box-shadow: inset 0 0 0 1px #E4E9EF;
  border-radius: 5px;
  background-color: rgba(0, 163, 203, 0.13);
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.user-msg span {font-size: 12px;color: #6f8fbf;}



/* --- 11/11/2024 css start --- */

/* === Admission and Discharges Page css start === */

.di__admision--form .di__form {
  padding: 15px 55px 0;
}
.di__admision--form .dropzone.form-control {
  width: calc(100% / 2 - 15px);
  box-shadow: none;
  border: 1px dashed #8494AB;
}

p.file_type {
  font-size: 12px;
  color: #8494AB;
}
ul.hp_nav--tab .active .di__pharmacy--tab {
  background-color: #F4004D;
}

.light-grey{
  color: #545252;
}

.di__client_details .form-check-input:checked[type=radio] {
  border-color: #00A3AD;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUwIiBoZWlnaHQ9IjE1MCIgdmlld0JveD0iMCAwIDE1MCAxNTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxyZWN0IHdpZHRoPSIxNTAiIGhlaWdodD0iMTUwIiByeD0iNzUiIGZpbGw9IiMwMEEzQUQiLz4KPC9zdmc+Cg==');
  background-size: 8px;
}

.di__client_details .form-check-input{
  border-color: #E5E5E5;
}

@media(max-width:767px){
  .di__admision--form .di__form {
      padding-inline: 0;
  }
}

/* --- calendar css start --- */

  .calendar {
    width: 400px;
    margin-top: 20px;
    box-shadow: 1px 1px 10px #e7e7e79e;
    border-radius: 12px;
  }
  .calendar select {
    padding: 10px 15px;
    border: 0;
  }
  .calendar__opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
  }
  .calendar__opts {
    padding: 20px 15px;
  }

  .calendar__days {
    background-color: #fff;
    padding: 0 15px 10px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .calendar__days > div {
    text-align: center;
    font-weight: 700;
    font-size: 1.02rem;
    color: #c5c8ca;
  }
  .calendar__dates {
    padding: 10px 15px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  .calendar__date {
    --height: calc(400px / 6 - 15px);
    text-align: center;
    height: var(--height);
    line-height: var(--height);
    font-weight: 600;
    font-size: 1.02rem;
    cursor: pointer;
    position: relative;
  }
  .calendar__date::before {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0);
    width: 45px;
    height: 45px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    transition: background-color 0.3s ease;
  }
  .calendar__date:not(.calendar__date--selected):not(.calendar__date--grey):hover::before {
    background-color: #ededed;
  }
  .calendar__date--grey {
    color: #c5c8ca;
    cursor: not-allowed;
  }
  .calendar__date--selected {
    color: #fff;
  }
  .calendar__date--selected::before {
    background-color: var(--primary-color);
    border-radius: 0px;
  }
  .calendar__date--first-date::before {
    border-radius: 50px;
  }

  .calendar__date span {
    position: relative;
    z-index: 1;
  }
  .calendar__buttons {
    padding: 10px 25px 15px;
    text-align: end;
  }
  .calendar__button {
    cursor: pointer;
  }

  .calendar select,
  .calendar button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
  }

  .calendar select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOSA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMC41OTg2MzMgMC4yOTU4OThMNC42OTIzOCA0LjM4OTY1TDguNzg2MTMgMC4yOTU4OThIMC41OTg2MzNaIiBmaWxsPSIjNDk0NTRGIi8+Cjwvc3ZnPgo=");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: calc(80% - 10px) center;
    text-align: center;
  }

  .select_date input {
    background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='960px' height='560px' viewBox='0 0 960 560' enable-background='new 0 0 960 560' xml:space='preserve'%3E%3Cg id='Rounded_Rectangle_33_copy_4_1_'%3E%3Cpath d='M480,344.181L268.869,131.889c-15.756-15.859-41.3-15.859-57.054,0c-15.754,15.857-15.754,41.57,0,57.431l237.632,238.937 c8.395,8.451,19.562,12.254,30.553,11.698c10.993,0.556,22.159-3.247,30.555-11.698l237.631-238.937 c15.756-15.86,15.756-41.571,0-57.431s-41.299-15.859-57.051,0L480,344.181z'/%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    background-size: 19px;
    background-repeat: no-repeat;
    background-position: center right 12px;
}

/* 14/11/2024 css start */

.di__table_controls{
  padding-right: 30px !important;
}

/* 20/11/2024 */
.dz-preview:hover img {
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(4px);
    filter: blur(4px);
}

.dropzone-style .dz-preview .dz-success-mark, .dropzone-style .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
}

.dropzone-style .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px;
}

.dropzone-style a.dz-remove {
    text-align: center;
    display: block;
    padding: 6px 0;
}

.dropzone-style {
    width: auto;
}

.dropzone-style  .dz-message {
    text-align: center;
    margin: 2em 0;
}

.di__admision--form .dropzone-style.form-control {
    width: calc(100% / 2 - 15px);
    box-shadow: none;
    border: 1px dashed #8494AB;
}

.dropzone-style.dz-started .dz-message {
    display: none;
}

.dropzone-style .dz-image {
    border-radius: 20px;
    overflow: hidden;
}

/*29-11-2024*/

.di__filter-position div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0;
}

.di__hospital--scroll {
  max-height: 500px;
  overflow: hidden;
  overflow-y: auto;
  margin-block: 20px;
}

@media (min-width: 1100px){
  .di__filter-position .di__search-t input {
      position: absolute;
      top: -76px;
      right: 0;
  }
  .di__filter-position .di__search-r input {
    position: absolute;
    top: -76px;
    right: 180px;
  }
}

.export-btn {
  display: flex
;
  gap: 30px;
}

/* 11-04-2025 ( message seen feature for admission & discharge css start */
.view-seen-btn {
    background: none;
    margin-bottom: 8px;
    padding: 0;
}

.view-seen-btn:hover {
    background: transparent !important;
}

.view-seen-btn:hover img {
    filter: brightness(0);
}

/* 11-04-2025 css end */

/* 27-06-25 */
.custom-select-box {
  position: relative;
  /* width: 300px; */
  /* margin: 20px; */
}

.custom-select-box {
  background: #F6F9FC;
  padding: 15px;
}

.dropdown-list {
  /* border: 1px solid #007bff; */
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
  list-style: none;
  position: static;
  width: 100%;
  z-index: 10;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 10px;
}

.dropdown-list li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-list li:hover {
  background-color: #dff7ff;
}

li .remove {
  color: #8b8b89;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px;
}

/* 29-06-25 */
table.dataTable.di__head-radius thead th {
  white-space: nowrap;
}

.di__filter-position div.dataTables_wrapper div.dataTables_filter input{
    border: 2px solid #00a3cb !important;
    box-shadow: none;
}
