@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap'); 

:root {
  --primary: #EE4E18;
	--secondary: #00B37F;
  --shade: #FF5915;
	--white: #fff;
  --gray: #5B5B5B;
  --border: #E8E8E8;
	--light-gray: #919191;
  --light-primary: #A1A1A1;
	--gray-dark: #CBCBCB;
	--success: #219653;
	--info: #E9FAFF;
	--warning: #F4C000;
	--danger: #FF4E4E ;
	--light: #f8f9fc;
	--dark: #000000;
  --black:#141316;
	--form-border-color: #cbcbcb; 
	--bg-light: #FFF9F5;
  --bg-dark: #F3F3F3;
	--bg-color: #fff;
	--table-border: #F5F5F5;
  --dark-border-color: #CBCBCB;
	--border-color: #F3F3F3;
	--purple: #9B2B8B;
	--darkblue: #161820;
  --transparent-bg: #16182000;
  --hover-bg: #f4f4f4;
  
  --radius :  3px;
  --border-radius: 3px;
}
* {
  padding: 0;
  margin: 0;
  box-shadow: none;
}
*,
::after,
::before {
	box-sizing: border-box
}
.albert-sans {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body {
  position: relative;
  min-height: 100%;
  background-color: var(--white) !important;
  font-feature-settings: 'lnum' 1 !important;
  font-family: "Albert Sans", sans-serif !important;
  font-optical-sizing: auto;
}
::-webkit-scrollbar{
  width: 12px !important;
  background-color: var(--bg-color) !important;
}
::-webkit-scrollbar-track{
  border-radius: 3px !important;
  background-color: transparent !important;
}
::-webkit-scrollbar-thumb{
  border-radius: 5px !important;
  background-color: var(--light-primary) !important;
  border: 2px solid var(--light-primary) !important;
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--light-primary) var(--bg-color) !important;
}
a {
  color: var(--gray) !important;
}
h1 {
  color: var(--dark);
}
h2{
  font-size: 1.695rem !important;
}
h4{
  font-size: 1.325rem !important;
}
h5{
  font-size: 1.3rem !important;
  line-height: 27px;
}
h6{
  font-size: 1rem !important;
}
p{
  color: var(--gray);
  font-size: 0.975rem !important;
  line-height: 1.725rem !important;
  line-height: 21px !important;
}
a {
  text-decoration: none !important;
  cursor: pointer;
}
a.primary{
  color: var(--primary) !important;
}
.gray {
  color: var(--gray);
}
.dark {
  color: var(--dark);
}
.icon-clr i,
.primary {color: var(--primary) !important;}
.white {
  color: var(--white) !important;
}
.bg-white{
  background: var(--white);
}
.light-gray{color: var(--light-primary) !important;}
.form-control {
  color: var(--darkblue) !important;
  height: 45px;
}
.text-justify {
  text-align: justify;
}
.text-primary{
  font-size: 13px;
  color: var(--primary) !important;
}

.login-bg-fx{
  background: #333;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.login-header {
  text-align: center;
  border-bottom: 1px solid var(--border);
  padding-top: 19px;
  padding-bottom: 19px;
  width: 100%;
  background: #fff;
  margin-bottom: 100px;
}
.login-logo{
  width: 170px;
}
.login-card h1{
  font-weight: 700;
  font-size: 39px;
}
.login-card h3{
  font-size: 16px;
  color: var(--gray);
}
.login-card .border {
  border-top: 4px solid var(--primary) !important;
  border-radius: 15px !important;
  padding: 29px 20px;
}
.input-group span,
.login-card .input-group span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 24px;
  color: var(--primary);
  z-index: 99;
}
.login-card .border form a{
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 600;
}
.form-control:focus {
  background: none;
  color: var(--white);
  box-shadow: none !important;
}
.form-outline.form-textarea{
  align-items: baseline;
  border-radius: 20px !important;
}

.form-outline.select-outline{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.form-outline.select-outline select{
  border: none !important;
  color: var(--gray) !important;
  font-size: 14px !important;
}

.form-outline .intl-tel-input{width: 100% !important;}
.ntfn-min{width: 70px;}
/* .form-outline.form-textarea{
  min-height: 50px !important;
} */
.btn {
  border-radius: 4px !important;
  font-size: .975rem !important;
  font-weight: 500 !important;}

.btn-primary {
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  padding: .75rem .75rem !important;
  min-width: 150px;
}
.btn-outline-danger{
  color: var(--danger) !important;
  background-color: var(--white) !important;
  border-color: var(--danger) !important;
  padding: .75rem .75rem !important;
  min-width: 150px;
}
.btn-outline-danger:hover{
  color: var(--white) !important;
  background-color: var(--danger) !important;
  border-color: var(--danger) !important;
}
.form-control::placeholder {
  color: var(--light-primary) !important;
  opacity: 1;
}
.breadcrumb li{font-size: .875rem !important;}

.br{border-right: 1px solid  var(--dark-border-color);}
.min-h-auto{min-height: auto !important;}

.login-form form a img{
  width: 17px;
  margin-right: 10px;
}
.warning-icon{
  font-size: 90px !important;
  color: var(--warning);
}
.accept-icon{
  font-size: 90px !important;
  color: var(--success);
}
.error-icon{
  font-size: 90px !important;
  color: var(--danger) !important;
}
.invitation-wrapper h5{
  color: #ff6f6f;
}
/* .invitation-wrapper{
  padding: 15px;
  border: 1px dashed var(--dark-border-color);
  border-radius: var(--radius);
} */

.btn-success{
  color: var(--white) !important;
  background-color: var(--success) !important;
  border-color: var(--border-color) !important;
  padding: .75rem .75rem !important;
  min-width: 150px;
}
.btn-primary{
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--dark-border-color) !important;
  padding: 8px 25px !important;
  border: 1px solid var(--primary) !important;
  min-width: 130px;
  border-radius: 4px;
}
.btn-outline-primary,.btn-outline{
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-color: var(--dark-border-color) !important;
  padding: 8px 25px !important;
  border: 1px solid var(--primary) !important;
  min-width: 130px;
}
.btn-outline-normal{
  color: var(--primary) !important;
  background-color: var(--white) !important;
  padding: .75rem .75rem !important;
  border: 1px solid var(--primary);
  min-width: 150px;
}
.btn-outline-checkbox {
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-color: var(--primary) !important;
  border: 1px solid;
}
.web-card .No-polls h4{
  font-size: 35px !important;
  font-weight: 700 !important;
}
.web-card .No-polls h5{
font-size: 17px !important;
color: var(--gray);
}


/* .web-card.threshhold-card{
  background: linear-gradient(to right, #1d1717 0%, #4f4f4f 100%);
} */

.dropdownBody .input-group{
  background: var(--bg-dark) !important;
  border: none !important;
}
.gallery_wrapper .item{
  position: relative;
}
.gallery_wrapper .item span.material-symbols-outlined{
  color: var(--white);
  background: var(--primary);
  padding: 5px;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: none;
  transform: translateY(20px); 
  opacity: 0; 
  transition: transform 0.3s ease, opacity 0.3s ease; 
}
.gallery_wrapper .item:hover span.material-symbols-outlined {
  display: block;
  transform: translateY(0); 
  opacity: 1;
}

.carousel-control-prev-icon{
  background-image: url(../images/left-arrow.png) !important;
}
.carousel-control-next-icon{
  background-image: url(../images/right-arrow.png) !important;
}

/* Radio */

.radio-input input {
  display: none;
}

.radio-input label {
  border: 1px solid var(--dark-border-color);
  border-radius: 10px;
  width: 100%;
  padding: 1rem;
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
}

.radio-input input:checked + label {
  --border-color: var(--primary);
  border-color: var(--dark-border-color);
  border-width: 1px;
}
.radio-input label:hover {
  --border-color: var(--primary);
  border-color: var(--border-color);
}

.radio-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.userTypeInner img{
  width: 50px;
}

.userTypeInner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.userTypeInfo {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.calendar {
  border-radius: 10px;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: max-content;
  grid-auto-flow: row;
  color: #333;
  background-color: var(--white);
  gap: 3px;
  align-items: baseline;
}

.cell {
  width: 100%;
  padding: 0.4em 0.8em;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
}

.cell:hover, .cell:focus {
  color: var(--primary);
  background-color: var(--hover-bg);
  border-radius: 12px;
}

.cell:empty {
  width: 0;
  padding: 0;
}

.cell--unselectable {
  color: var(--primary);
  pointer-events: none; /* Prevents all interactions (click, hover, focus) */
}

.cell--unselectable:hover, 
.cell--unselectable:focus {
  color: var(--primary); /* Retain the base color */
  background-color: transparent; /* Ensure no hover background */
  outline: none; /* Removes focus outline, if applicable */
}
.cell.highlight{
  color: var(--white);
  background-color: var(--primary);
  border-radius: 10px;
  width: 40px;
}

.date-text {
  padding: 0em 0em 1em;
  grid-column: 1 / 5;
  justify-self: start;
  display: flex;
  align-items: center;
  font-size: 1.375rem !important;
  font-weight: 600;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.calendar .button {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--primary) !important;
  font-weight: 500;
}

.join-call img{height: 30px;width: 30px;}

.btn-primary:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
}
/* a.btn.btn-primary:hover {
  color: var(--white) !important;
} */
.btn-check:focus+.btn-primary, .btn-primary:focus {
  box-shadow: none !important;
}
.form-control:focus {
  border-color: var(--primary) !important;
}
ul.dropdown-menu {
  background: var(--bg-color);
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  /* color: var(--white); */
  /* min-width: 280px; */
  width: auto;
}
.page-item.active .page-link {
  z-index: 1 !important;
}
.notfctn-hd ul.dropdown-menu{
  min-width: 490px;
  max-height: 250px;
  overflow: scroll;
}
.profile-hd .dropdown-menu{
  min-width: 16rem;
}
.dropdown-item {
  color: var(--gray) !important;
  font-weight: 500;
  font-size: 0.875rem !important;
}
small {
  font-size: 0.875em !important;
  line-height: 24px;
  font-feature-settings: 'lnum' 1 !important;
  line-height: 24px;
}
.btn-check:focus+.btn, .btn:focus {
  box-shadow: none !important;
}
.nav.nav-pills{
  border-bottom: 1px solid var(--dark-border-color);
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-bottom: 1px solid var(--primary);
  border-radius: 0 !important;
}
.border-bottom-light{border-bottom: 1px solid var(--light-gray);}
.nav-link {
  display: block;
  padding: .5rem 1rem;
  color: var(--gray) !important;
}
.rating {
  display: inline-flex;
}
.rating input {
  display: none;
}
.rating label {
  float: right;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}
.rating label:before {
  content: '\2605';
  font-size: 30px;
  line-height: 1;
}
.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: var(--warning);
  transition: color 0.3s;
}
.comment_box{
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 10px;
  padding: 20px 0px;
  border-bottom: 1px solid var(--light-gray);
}
.comment_box:last-child{border-bottom: none;padding-bottom: 0px;}
.table-hover > tbody > tr:hover{
  --bs-table-accent-bg: var(--hover-bg) !important;
}
.table>:not(caption)>*>* {
  background: var(--bg-color) !important;
}
tbody, td, tfoot, th, thead, tr {
  vertical-align: middle;
}
td {
  font-size: 14px;
}
.table>:not(:last-child)>:last-child>* {
  border-bottom: 1px solid #A1A1A1 !important;
}
.border-top, .border-bottom, .border-left, .border-right {
  border-color: var(--border-color) !important;
}
.wrapper .border-bottom { border-bottom: 1px solid var(--border-color) !important;}
.wrapper .border-top { border-top: 1px solid var(--border-color) !important;}
.wrapper .border-right { border-right: 1px solid var(--border-color) !important;}
.wrapper .border-left { border-left: 1px solid var(--border-color) !important;}
.wrapper .border-primary {border-color: var(--light-primary) !important;}



/* 24/07/24 */

.login-form h1{
  font-size: 1.5rem;
  font-weight: 700;
}
footer{
  background: var(--white);
  color: var(--white) !important;
  padding: 12px 36px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 997;
  width: 100%;
  border-top: 1px solid var(--border);
  }
footer p{
  color: var(--dark) !important;
  margin: 0px;
  font-size: 11px !important;
}
.social-media{
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
}
.social-media i{color: var(--primary);font-size: 1.325rem !important;border-radius: 2rem;}
.login-tabs .nav-item{display: flex;flex-grow: 1;}
.login-tabs .nav-link{width: 100%;border-color: var(--dark-border-color) !important;border-radius: .685rem !important;padding: .75rem .75rem !important;transition: box-shadow 0.3s ease, transform 0.3s ease;  backface-visibility: hidden;
  transform-style: preserve-3d;}
.login-tabs .nav-link.active{
  border: 1px solid var(--primary) !important;
  color: var(--white) !important;
  background: var(--primary) !important;
}
.login-tabs .nav-link.active:hover {
  border: 1px solid var(--primary) !important;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.login-tabs .nav-link:hover ,.login-tabs .nav-link:focus{
 border: 1px solid var(--dark-border-color) !important;
 border-radius: .685rem !important;
}
.login-tabs .nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.main-head h4{
  font-size: 40px !important;
  font-weight: 700 !important;
}
.main-head h5{
  font-size: 17px !important;
  color: var(--gray) !important;
}
.wrapper .res-wrapper{
  padding: 10px 10px 40px 10px;
}
.sticky-top{
  position: sticky !important;
  top: 0 !important;
  padding-bottom: 20px;
}
.wrapper-container{
  padding:  0px 0px 20px !important;
  height: 100% !important;
  position: relative;
}
.disonnect-loader img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999 !important;
}
.disonnect-loader .modal-backdrop{
  background-color: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(2px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
img.logo{
  max-height: 55px;
  max-width: 160px;
}
.fw-medium{
  font-weight: 600 !important;
}
.fw-middle{font-weight: 500 !important;}
.loaderImg{width: 250px;}
.welcome-body{
  padding: 0px 30px;
}
.welcome-body h2{
  color: var(--gray);
  font-weight: 400;
  margin: 0;
  font-feature-settings: 'lnum' 1 !important;
}
.welcome-body h3{
  font-size: 1.75rem !important;
  font-weight: 600;
  color: var(--primary);
}
.welcome-body p,.welcome-body a{
  color: var(--gray) !important;
}
table th{
  color: var(--dark) !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  text-align: start;
}

table td{
  color: var(--gray) !important;
  font-weight: 400 !important;
  border-bottom: 1px solid var(--border-color);
  font-feature-settings: 'lnum' 1;
  text-align: start;
}
table td p{
  font-size: 0.975rem !important;
  margin-bottom: 0px;
}
table td.success-info{color: var(--success) !important;}
table td.error-info{color: var(--danger) !important;}
.user_info p{font-size: 14px !important;font-weight: 400 !important;width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 20px !important;
}
.user_info.appointment_info p{
  width: 180px;

}
.user_info img{
  width: 30px;
  height: 30px;
}
.tab_box{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tab_box .btn.btn-tab.active{
  background: var(--primary);
  color: var(--white);
  border-radius: 7px !important;
}
.tab_box .btn.btn-tab{
  border: 1px solid var(--dark-border-color) !important;
  border-radius: 7px !important;
  min-width: 130px;
  font-size: 0.875rem !important;
  transition: transform 0.2s ease-in;
}
.dropview_body.profileList{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.dropview_body.profileList p{
  margin-bottom: 0px;
}
.appointment_inner{
  background: var(--bg-dark);
  padding: 10px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
}
.appointment_inner > div:first-of-type{
  display: flex;
  gap: 10px;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--bg-color) !important;
}

.dropzone-wrapper{
  border: 2px dashed var(--light-primary);
  background: var(--bg-dark);
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: var(--radius);
}
.dropzone{
  border: 2px dashed #A1A1A1 !important;
  background: #F3F3F3 !important;
  height: auto;
  min-height: 200px !important;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: .685rem;
}
#cboxContent{
  border-radius: 1rem !important;
  padding: 1rem !important;
}
.cropwrp{
  font-feature-settings: 'lnum' 1 !important;
  background: var(--white) !important;
}
.cropwrp .dropzoneheader h4{
 margin: 0px 0px 10px;
}
.cropwrp .modal-title{
  margin: 0px 0px 10px;
}
.cropwrp .help-list ul li {
  font-size: 13px;
  margin-bottom: 5px;
  color: var(--gray);
  line-height: 24px;
}
.cropwrp .help-list h6{
  margin: 10px 0px;
}
.cropwrp .help-list ul {
  padding: 0px 10px !important;
  list-style: disc !important;
}
.cropwrp .panel-body{
  border: 2px dashed #A1A1A1 !important;
  background: #F3F3F3 !important;
  min-height: 180px !important;
  display: grid;
  place-items: center;
  border-radius: .685rem;
}
.dropzone .dz-preview .dz-remove{
  margin-top: 5px;
  color: var(--danger) !important;
}
.dropzone .dz-preview{
  padding: 10px;
  border-radius: var(--radius) !important;
}
.profile-remove-btn{
  position: absolute;
  bottom: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-remove-btn span{
  font-size: 17px !important;
  padding: 1px;
  color: var(--white);
}

.dz-processing.dz-image-preview img{
  width: 50px !important;
  height: 500px !important;
  object-fit: contain;
}

/* .files-container.profileLogo {justify-content: center;} */

.profileLogo .fileBody.profliefileBody{
  height: 200px;
  width: 200px;
  border: 1px solid var(--dark-border-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.files-container.profileLogo .fileBody img{
  height: 180px !important;
  width: 180px !important;
  border-radius: 5px;
}
.files-container.bannerImage .fileBody{
  height: 200px;
  width: 100%;
  justify-content: center;
}

.files-container.bannerImage .fileBody img{
  height: 93px;
  width: 100%;
  object-fit: contain;
  width: 500px;
  border-radius: 5px;
}

.files-container{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fileBody{
  display: flex;
  width: 160px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--dark-border-color);
  border-radius: 7px;
  padding: 5px;
}
.files-container.fileoptions-container{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.files-container.fileoptions-container .fileBody{
  width: auto;
}
.files-container.fileoptions-container .file_info span{width: 100px;}
/* .fileBody.profliefileBody{width: 80px;} */
.file_info{
  display: flex;
  align-items: center;
  gap: 3px;
}
.fileBody a{
  line-height: 0px;
}
.file_info span{
  display: block;
  width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 0.675rem;
}
.fileBody img{
  height: 25px;
  width: 25px;
  object-fit: contain;
}

.breadcrumb {
  background: var(--white);
  border-radius: 7px;
  padding: 5px !important;
  font-weight: 500 !important;
  margin: 0px !important;
}
.profileData.view_profile{
  /* background-image: url(../images/viewprofile_bg.png); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  padding: 25px;
  margin-top: -100px;
}
.profileData.patientProfile::before{
  content: "";
  background-image: url(../images/patient_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  height: 110px;
  width: 100%;
  z-index: 1;
}

.profileData.nurseData::before{
  content: "";
  background-image: url(../images/nurse_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  height: 110px;
  width: 100%;
  z-index: 1;
}
.profileData.doctorData::before{
    content: "";
    background-image: url(../images/doc_bg.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    height: 110px;
    width: 100%;
    z-index: 1;
}
.web-card.user-card.h-auto{min-height: auto !important;}
.profileData .user_details{position: relative;z-index: 2;}
.view_profile .user_details img{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.web-card.details-innercard{border-radius: var(--border-radius);}

.details-innercard .profileData.view_profile{margin-top: 0px;border-radius: var(--border-radius);}

.innercard-info{display: flex;align-items: center;gap: 5px;}

.details-innercard .border-right{border-right: 1px solid var(--gray) !important;}

.details-innercard .border-left{ border-left: 1px solid var(--gray) !important;}

.innercard-info i{font-size: 20px;}

.details-innercard .view_profile{background: linear-gradient(135deg, #EDEDED, #959595);}

.details-innercard img.user-img{width: 100px;height: 100px;object-fit: cover;}

.details-innercard .view_profile .btn-icon,.details-innercard .view_profile .opt-btn{background: var(--white);}

.details-innercard .innercard-info p{max-width: 400px;word-break:break-all;}


img.user-img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 50%;
  margin-bottom: 10px;
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.user_details img{
  width: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background: var(--white);
}
.btn-icon img{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  padding: 5px;
}
.btn-icon{
  border: 1px solid var(--dark-border-color);
  border-radius: var(--radius);
  padding: 5px 10px;
}
a.danger{cursor: pointer;position: relative;z-index: 9;}
.bootstrap-datetimepicker-widget .btn-primary{min-width: 50px !important;}
.detailsList h6{font-size: .875rem !important;}
.detailsList ol{padding-left: 15px !important;}
.detailsList ol::marker{ font-feature-settings: 'lnum' 1 !important;}

.profileData .btn.opt-btn{
  padding: 5px 10px !important;
  height: 45px;
  width: 45px;
}
.filter-btn{
  border-color: var(--dark-border-color) !important;
  color: var(--gray) !important;
  padding: .75rem .75rem !important;
  display: flex !important;
  align-items: center;
  gap: 5px;
}
.avilable-icon{color: var(--success);}
.avilable-icon span{
  height: 10px;
  width: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--success);
  margin-right: 5px;
}
.notavilable-icon{color: var(--gray);}
.notavilable-icon span{
  height: 10px;
  width: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gray);
  margin-right: 5px;
}
.decline-icon{color: var(--danger);}
.decline-icon span{
  height: 10px;
  width: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--danger);
  margin-right: 5px;
}
.pending-icon{color: var(--warning);}
.pending-icon span{
  height: 10px;
  width: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--warning);
  margin-right: 5px;
}
hr{
  opacity: unset !important;
  background-color: var(--dark-border-color) !important;
}

.user_inner{
  display: flex;
  align-items: center;
  gap: 10px;
}
.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary);
  border-radius: 50%;
}

.user_inner img{
  height: 43px !important;
  width: 43px !important;
  border-radius: 50%;
  object-fit: cover;
}

.pftl-txt h6{font-size: 1rem !important;}

.offcanvas-start {
  width: 300px !important;
}

.glyphicon-chevron-up::before {
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  font-weight: 900;
}

.glyphicon-chevron-down::before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
}

.glyphicon-chevron-up, .glyphicon-chevron-down {
  font-size: 16px; 
  color: #333;     
}

.offcanvas-header img{max-width: 170px;}

.create-profile a span{
  height: 29px !important;
  width: 29px !important;
  position: absolute;
  bottom: 10px;
  right: 0;
  margin: 0px !important;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  border-radius: 50%;
  transition: transform 0.2s ease-in;
  background: #DE3D06;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  border: 1px solid #fff;
}
.create-profile a img:hover{
    transform: scale(1.04);
}
.closecolorbox.btn-close {
  background: url(../images/close.png) no-repeat !important;
  background-size: contain !important;
  height: 20px;
  width: 20px;
  display: block;
  position: absolute;
  right: 0;
  top: 4px;
  transition: transform 0.2s ease-in;
}
.closecolorbox.btn-close:hover{
  transform: scale(1.09);
}
.dropzoneheader{
  position: relative;
}
.modal.lightbox .ratio {background: var(--white) !important;}
.modal.modal.lightbox .btn-close svg{display: none;}
.modal.lightbox .btn-close::before{
  content: '';
  background: url(../images/close.png) no-repeat !important;
  background-size: contain !important;
  height: 25px;
  width: 25px;
  display: block;
  position: absolute;
}
.modal.modal.lightbox .btn-close:focus{box-shadow: none !important;}

.web-card h4{font-weight: 600 !important;}

.form-group.otp-input{
  display: flex;
  justify-content: center;
  gap: 10px;
}
.form-group.otp-input input{
  height: 80px;
  width: 80px;
  border-radius: 50%;
  border: 1px solid var(--primary) !important;
  text-align: center;
}
.detailsList > div{align-items: baseline;}

.detailsList.cardList p{width: 200px;
  text-align: end;margin-bottom: 5px;}

.list_items li i{
  color: var(--white);
  background: var(--primary);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  font-size: 12px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.list_items{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list_items li{
  display: flex;
  gap: 10px;
  color: var(--gray);
}

.gallery_wrapper img{
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  border: 1px solid var(--form-border-color);
}
.gallery_wrapper .more_imgs{
  position: relative;
  cursor: pointer;
}
.gallery_wrapper .more_imgs img{
  filter: brightness(50%);
}
.more_imgs span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  color: var(--white);
  font-size: 1.475rem;
  transform: translate3d(-50%, -50%, 0);
}
.modal-gallery > div{
  --bs-gutter-y: 1.5rem;
}
.import_section.add_img a{
  position: absolute;
  top: 25px;
  right: 25px !important;
}

/* .map_body iframe{
  border-radius: var(--radius) !important;
} */
.map_body iframe:focus,.map_body iframe:focus-visible,.map_body iframe:focus-within{
  border: none !important;
}

/* end */



.modal-content {
  background-color: var(--white) !important;
  border-radius: 1rem !important;
  /* border: 1px solid var(--primary) !important; */
  /* overflow: hidden; */
}
.modal-dialog button.btn-close {
  border: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: absolute;
  right: -13px;
  top: -13px;
  display: flex;
  background: var(--white);
  opacity: 1;
  color: var(--dark);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
.modal-header {
  border-bottom: 0 !important;
}
label.form-label {
  font-size: .875rem;
  color: var(--gray);
}
.modal-footer {
  border-top: 1px solid var(--border-color) !important;
}




select.form-select {
  color: var(--darkblue) !important;
  height: 45px;
  border-radius: .25rem !important;
  border-color: var(--dark-border-color) !important;
}

span.select-icon {
  position: absolute;
  right: 15px;
  top: 13px;
}
.modal-footer {
  border-top: 0 !important;
}
.modal-title {
  margin-top: 20px;
}
.wrapper .border-primary {border-color: var(--light-primary) !important;}

.form-checked .form-check-input {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background-color: #25242c !important;
  border: 1px solid #fff !important;
}
label.form-check-label {
  margin-top: 3px;
  font-size: 0.875rem;
}
.cancel {
  color: var(--danger);
}
.warning {
  color: var(--warning);
}
.wrapper .bg-primary {
  background: var(--primary) !important;
}
.form-check.form-radio .form-check-input {
  background-color: #25242c;
  border: 1px solid #fff;
}
.mw-250 {min-width: 250px !important;}

.tab_box .btn-tab.active .badge{background: var(--white) !important;color: var(--primary) !important;}
.tab_box .btn-tab .badge{font-feature-settings: 'lnum' 1 !important;background: var(--primary) !important;color: var(--white) !important;}
.pagination {
  justify-content: end;
}
.page-link {
  padding: .375rem .75rem;
  margin: 0 6px;
  background-color: var(--light-gray) !important;
  color: #404B52 !important;
  border: 2px solid #F5F5F5 !important;
  border-radius: 5px;
}
.page-item.active .page-link {
  z-index: 3;
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.page-item:first-child .page-link, .page-item:last-child .page-link {
  background: var(--white) !important;
  border: none !important;
  color: var(--gray) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-item:first-child .page-link i, .page-item:last-child .page-link i{
  color: var(--primary) !important;
}
.page-link {
  padding: 0.175rem .75rem !important;
}
.sort-sec{
  display: flex;
  align-items: center;
}
.sort-sec select.form-select {
  border: 1px solid var(--primary) !important;
  width: 70px;
  font-size: 0.875rem;
  height: 35px;
}
.modal_list li{color: var(--gray) !important; font-size: 0.875rem !important;}

.btn-align{display: inline-flex !important;justify-content: center;align-items: center;gap: 5px;}

.silder_info img{height: 30px;width: 30px;object-fit: contain;}
  
.swal-footer{
  text-align: center !important;
}
.swal-button{
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  min-width: 120px;
}

.swal2-cancel.swal2-styled:hover{
  background: transparent !important;
}
.collapse-filter {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.collapse-filter.show {
  max-height: 190px;
  transition: max-height 0.5s ease-in-out;
}

span.paid{
  background: var(--success);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 70px;
  display: block;
  text-align: center;
}
span.unpaid{
  background: var(--danger);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 70px;
  display: block;
  text-align: center;
}

/* basic-end */

/* signin-page-style */

.signin-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.sign-in-left-sec {
  background: url(../images/login-bg.jpg) no-repeat;
  background-position: top;
  width: 100%;
  height: 90vh;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: baseline;
  filter: brightness(90%);
}
.sign-in-left-sec img{
  width: 335px;
  object-fit: contain;
}

.sign-in-right-sec {
  color: var(--white);
  min-height: 580px;
  height: 100%;
}


/*--- patient login start ----*/

.patient-sign-in-left-sec{
  background: url(../images/patient_signleft.jpg) no-repeat;
  background-position: top;
  width: 100%;
  height: 840px;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  padding: 30px;
}
.patient-sign-in-left-sec img{
  width: 250px;
  object-fit: contain;
}
.sign-in-right-sec {
  color: var(--white);
  min-height: 580px;
  height: 100%;
}


/*--- patient login end ---*/



.phone-form {
  display: flex;
  align-items: center;
  background: var(--dark);
  border: 1px solid var(--border-color);
  padding: 0 10px;
  border-radius: 15px;
  height: 50px;
  color: var(--white);
  width: 100%;
}
.login-img-txt h3{
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
}
.login-img-txt p{
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0px;
  color: var(--white);
}
/* .signin-page .form-select, .phone-form .form-control {
  width: 80px;
} */

.care-img{width: 85%;}

.form-select:focus{box-shadow: none !important;}


.signin-page .dropdown-toggle {
  color: var(--primary) !important;
  border-right: 1px solid var(--white);
  border-radius: 0 !important;
}
.signin-page .form-control:focus {
  background: none;
  color: var(--white);
  box-shadow: none;
}
.phone-form span {
  color: #4F4C58;
}
.sign-in-right-sec label {
  color: var(--white);
}

.otp-sec {
  display: flex;
  align-items: center;
}
.otp-sec input {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 10px 0 0;
}
.sign-in-right-sec a {
  color: var(--white);
}
.sign-in-right-sec a:hover {
  color: var(--primary) !important ;
}

.input-group-text {
  background-color: var(--bg-dark) !important;
  border: 0 !important;
  border-radius: 10px 0 0 10px !important;
  color: #B0B0B0 !important;
}

.web-card {
  padding: 30px;
  border-radius: 18px;
  position: relative;
  border: 1px solid var(--border);
}
.dash-service .card {
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
}
.login-modal.modal .login-form p{
  font-size: .925rem;
}
.dash-service .card p {
  font-size: 0.875rem;
}
.dash-service {
  overflow: hidden;
}
.phonenum_group{
  display: flex;
}
.phonenum_group select{
  border-right: 0px;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}
/* .phonenum_group .form-outline{
  border-left: 0px !important;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
} */
.intl-tel-input.separate-dial-code .selected-flag{
  background: var(--white) !important;
  padding-left: 0px !important;
}
.intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 10px !important;
  width: 30px;
}
.form-group.form-outline select.form-select {
  border: 0;
  height: 49px;
}
.form-control,.form-select {
  font-feature-settings: 'lnum' 1 !important;
}

.intl-tel-input .selected-flag .iti-arrow {
  right: 0px;
  border-left: 4px solid transparent !important;
  border-right: 4px solid transparent !important;
  border-top: 5px solid #555 !important;
}

div:where(.swal2-container) .swal2-html-container{
  line-height: 1.7rem !important;
  font-weight: 500 !important;
  font-feature-settings: 'lnum' 1 !important;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: var(--primary) !important;
  color: var(--white) !important;
  font-size: 1em;
}
.swal2-actions button{
  min-width: 120px;
}
.swal-button--cancel,.swal2-cancel{
  background-color: var(--white) !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
}
.swal-button:focus{
  box-shadow: none !important;
}
.swal-button-container > button,.swal2-actions > button{
  transition: transform 0.2s ease-in;
}
.swal-button-container > button:hover,.swal2-actions > button:hover{
  transform: scale(1.05);
  transition: transform 0.2s ease-out;
}
.swal-text{
  text-align: center;
}

.amount_body h3 {
  font-size: 4rem !important;
  font-weight: 600 !important;
  line-height: 1;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):focus-visible{
  box-shadow: none !important;
}
.form-control:focus{
  box-shadow: none !important;
}

.form-group{position: relative;}

.form-group label.error{
  color: var(--danger);
  font-size: 0.75rem !important;
  position: absolute;
  bottom: -22px !important;
  top: auto;
  left: 0;
  font-weight: 500;
}
.input-group.search-box label.error{
  color: var(--danger);
  font-size: 0.75rem !important;
  position: absolute;
  bottom: -20px;
}

.UPerror{
  color: var(--danger);
  font-size: 0.75rem !important;
  font-weight: 500;
  text-align: center;
}
.top-error .error{
  border: 1px solid var(--danger);
  color: var(--danger);
  width: 100%;
  border-radius: var(--radius);
  padding: 10px;
  position: absolute;
  top: -60px;
  left: 0;
}

.form-group.phoneregcls label.error{
  color: var(--danger);
  font-size: 0.75rem !important;
  position: absolute;
  bottom: -28px !important;
  left: -48px;
  font-weight: 500;
}
  
.form-group.otp-input label.error{width: 100%;}

.back_btn{
  display: flex;
  gap: 5px;
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
  padding: .75rem .75rem !important;
  height: 50px;
  border-radius: var(--radius);
}
.back_btn:hover{
  border: 1px solid var(--white);
  color: var(--white);
}

.web-card.dash-service::before {
  content: "";
  width: 130px;
  height: 130px;
  background: url("../images/banner-services/banner-service-icon-left.png") no-repeat ;
  top: 0;
  left: 0;
  position: absolute;
  display: inline-block;
  background-position: center;
  background-size: contain;
  }
  .web-card.dash-service::after {
  content: "";
  width: 130px;
  height: 130px;
  background: url("../images/banner-services/banner-service-icon-right.png") no-repeat ;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-position: center;
  background-size: contain;
  }

/* .lst-prfl {
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
} */
ul.profile-drpdown .dropdown-item  {
  font-size: .875rem;
  padding: .5rem 1rem;
}
/* ul.profile-drpdown .dropdown-item span {
  padding-left: 5px;
} */
/* .danger-btn, .danger-btn p, .danger-btn:hover {
  color: var(--gray) !important;
} */

.dropdown-menu.show li{
  transition: all 0.2s ease-in-out;
}
/* .dropdown-menu.show li:hover{
  background-color: var(--white) !important;
} */
.dropdown-item:hover {
 background-color: var(--white) !important;
}
.danger,.danger-btn .danger{color: var(--danger) !important;}
ul.ntfcn-dropdwn h4 {
  font-size: 18px !important;
  margin-bottom: 0;
}
.collapse-filter .form-select{height: 50px;}
.filter_Box .form-select{background-image: none;height: 50px;}
.filter_Box{position: relative;}
.filter_Box span {
  position: absolute;
  color: var(--primary);
  right: 5px;
  bottom: 12px;
}
ul{margin-bottom: 0px;list-style: none;}
.view-more-btn{font-size: 0.8125em !important;}
.notfctn-divider{
  height: 1px;
  background: var(--border-color);
  color: var(--border-color);
  width: 100%;
  position: relative;
  text-align: center;
}
.notfctn-divider span{
  border: 1px solid var(--border-color);
}
.or-divider{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 12px 0px 0px;
}
.notfcn-listing li:nth-child(1) .or-divider{margin-top: 0px;}

/* .ntfcn-dropdwn.show > li:last-child{
  border-bottom: none !important;
  padding-bottom: 0px !important;
} */

.or-divider p{
  background: var(--white);
  padding: 2px 20px;
  border: 1px solid var(--dark-border-color);
  margin: 0px;
  border-radius: 50px;
  font-size: 0.875rem !important;
}

.or-divider::before{
  content: '';
  height: 1px;
  background: var(--dark-border-color);
  flex: 1;
}
.or-divider::after{
  content: '';
  height: 1px;
  background: var(--dark-border-color);
  flex: 1;
}

.unread-notfctn {
  width: 10px;
  height: 10px;
  display: block;
  background: var(--primary);
  border-radius: 50%;
}

ul.ntfcn-dropdwn button.dropdown-item h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}
ul.ntfcn-dropdwn button.dropdown-item p {
  font-size: 13px;
  margin-bottom: 5px;
}
ul.ntfcn-dropdwn button.dropdown-item small {
  font-size: 11px;
}
span.btn-ntfcn {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  top: 3px;
  right: 0;
}
ul.ntfcn-dropdwn li {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin: 0px 0px 1px;
}
ul.ntfcn-dropdwn li:last-child{
  border-bottom: none !important;
  margin-bottom: 0px !important;
}
img.card-realtive {
  width: 100%;
  position: absolute;
  bottom: 0px;
  max-width: 430px;
  left: 50%;
  transform: translateX(-50%);
}
.pftl-txt-hd.pftl-txt p{
  color: var(--primary) !important;
  font-weight: 500;
}
/* .pftl-txt-hd.pftl-txt,.profileData.view_profile .user_details h5{
  overflow-wrap: break-word;
  white-space: normal;
  display: block;
  max-width: 300px;
} */

.profile_bg{
  background: #E9FAFF;
  height: 60px;
}
.profile_bg span{
  color: var(--primary);
  display: flex;
  align-items: flex-end;
  justify-content: end;
  height: 100%;
  padding: 10px;
  cursor: pointer;
}
/* .lst-prfl{
  flex-direction: column;
  margin-top: -33px;
} */
 
.web-card {
  min-height: 350px;
}
.web-card.user-card {
  min-height: 340px !important;
}
.navbar-brand.navbar-brand-mob {
  display: none;
}
.ntfctn-dtls {
  border-bottom: 1px solid var(--light-gray);
  padding:12px 0px;
}
.opt-btn {
  background: var(--white);
  border: 1px solid var(--dark-border-color) !important;
  color: var(--primary) !important;
  display: flex !important;
  align-items: center;
  height: 40px;
  width: 40px;
  justify-content: center;
  border-radius: 50% !important;
}
.arrow_btn{
  background: var(--white);
  border: 1px solid var(--dark-border-color);
  color: var(--primary) !important;
  border-radius: 50% !important;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow_btn span{
  transition: transform 0.5s ease;
}
/* .detailsList a.btn.opt-btn {
  height: 30px;
  width: 30px;
}
.detailsList .opt-btn .material-symbols-outlined{font-size:1.1rem !important;} */
.opt-btn .material-symbols-outlined{font-size:1.2rem !important;}
.opt-btn img{
  height: 40px;
  width: 40px;
}
.ntfctn-dtls h5 {
  font-size: 1rem;
}
.ntfcn_inner h5{
  font-size: 0.875rem !important;
  color: var(--dark) !important;
  font-weight: 600;
  margin-bottom: 0px;
}
.ntfcn_inner p{
  margin: 0px;
}
.ntfcn_inner small{
  line-height: 18px !important;
  display: block;
  color: var(--gray);
}

.ntfctn-dtls p {
  font-size: 0.875rem;
  color: var(--gray);
}
small.ntfcn-date {
  color: var(--gray);
}
.ntfctn-dtls-text {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
}
.web-card.wallet-card {
  background: var(--light-primary);
  min-height: 130px;
  border-radius: 20px !important;
  padding: 40px 30px;
  overflow: hidden;
}
.form-check-input:checked {
  background-color: var(--primary) !important;
  border-color: var(--white) !important;
}
span.debit {
  color: var(--danger);
}
span.credit {
  color: var(--success);
}
label {
  color: var(--gray);
  font-size: 0.9rem;
}
.contributors-sec {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.web-card.threshhold-card {
  min-height: auto;
}
.rchrg-sec h1 {
  color: var(--gray);
}
.rchrg-sec h1 span {
  color: var(--white);
}
.pay-card {
  position: relative;
  background-image: url(../images/card-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 357px;
  height: 184px;
  display: block;
  border-radius: 20px;
  padding: 15px;
  width: 100%;
}
span.card-logo {
  position: absolute;
  right: 15px;
  top: 15px;
}
.btn-group.card-option .dropdown-toggle {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
}
.btn-group.card-option .dropdown-toggle::after {
  display: none;
}
.btn-group.card-option ul.dropdown-menu {
  min-width: 170px;
  font-size: 0.875rem;
}

.form-check-input:focus {
  border-color: none !important;
  box-shadow: none !important;
}
.dark-card {
  background: #1B1921;
  border-radius: 20px;
  padding: 20px !important;
}
img.card-banner-img {
  width: 100%;
  max-width: 350px;
}
ul.dropdown-menu {overflow: hidden;}
button.dropdown-item span {
  width: 30px;
}
.categories-sec img {
  max-height: 120px;
  width: 100%;
  object-fit: contain;
}
.categories-sec p {
  width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
}
.rchrg-sec {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.web-card.wallet-card::before {
  content: "";
  width: 130px;
  height: 130px;
  background: url("../images/wallet-before.png") no-repeat;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-position: center;
  background-size: contain;
}
.web-card.wallet-card.modal-wallet-card::before {
  width: 80px;
  height: 80px;
}
.web-card.wallet-card.modal-wallet-card {
  padding: 15px;
  min-height: auto;
}

.btn-outline-primary:hover,a.btn-outline-primary:hover, a.btn-outline-primary.active ,.btn-outline:hover,.btn-outline.active{
  border: 1px solid var(--primary);
  color: var(--white) !important;
  background-color: var(--primary) !important;
}
a.btn-outline-sm {
  border: 1px solid var(--dark-border-color);
  color: var(--white) !important;
  padding: 2px 10px;
  min-width: 60px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 30px;
  font-size: .875rem;
}
a.btn-outline-sm:hover, a.btn-outline-sm.active {
  border: 1px solid var(--primary);
  color: var(--white) !important;
  background: var(--primary);
}
.btn.back-btn {
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
a.btn.back-btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
a.btn.back-btn i {
  background: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 7px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 5px;
}
.wallet-rchrg-pg p {
  font-size: .875rem;
}
.right-sec .notfctn-hd{
  border: 1px solid var(--dark-border-color);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-sec .notfctn-hd .loaderImg{
  width: 200px;
  height: auto;
}
.right-sec .notfctn-hd img,.ntfctn-dtls img{
  width: 25px;
  height: 25px;
}
.ntfcn_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.ntfn-min small{
  display: ruby;
}

.ntfcn-dropdwn span.material-symbols-outlined,.silder_info span.material-symbols-outlined{font-size: 16px !important;}

.ntfcn-dropdwn .btn,.silder_info .btn,.ntfctn-dtls .btn{
  min-width: 85px;
  font-size: 0.695rem !important;
  display: inline-flex;
  align-items: center;
  padding: .35rem .55rem !important;
  gap: 5px;
  justify-content: center;}
  
  .silder_info{
    padding: 10px;
    border-radius: var(--radius);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    animation: slideIn 0.8s ease-in-out forwards;
    opacity: 0;
    background: var(--white);
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

.profile-img{
  width: 120px;
  height: 120px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}
.profile-img > img {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  object-fit: cover;
}
.round {
  position: relative;
}
.round label {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  height: 28px;
  left: 0;
  position: absolute;
  top: 0;
  width: 28px;
}
.round label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}
.round input[type="checkbox"] {
  visibility: hidden;
}
.round input[type="checkbox"]:checked + label {
  background-color: #66bb6a;
  border-color: #66bb6a;
}
.round input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
button.btn.dropdown-toggle.primary-dropdown {
  background: var(--primary);
  min-height: 40px;
}
button.btn.dropdown-toggle.primary-dropdown::after {
  display: none;
}
button.btn.dropdown-toggle.primary-dropdown span {
  background: #fff;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
span.track-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #BEBEBE;
  border-radius: 50%;
  border: 1px solid var(--white);
}
span.trackline {
  border-left: 2px dashed var(--white);
  height: 70px;
  display: block;
  margin-left: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
}
span.track-icon.active {
  background: var(--light-primary);
}
.form-outline{
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-color: var(--dark-border-color) !important;
  border: 1px solid;
  padding: 6px 0px 6px 21px;
  border-radius: .685rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.form-outline.form-dropdown{
  padding: 6px 0px 6px 0px;
}
.form-outline.form-dropdown > i{
  position: absolute;
  left: 23px;
}
.form-group.form-outline input{
  border: none;
  border-radius: 2rem;
  z-index: 9;
  background: var(--transparent-bg);
}
.form-group.form-outline textarea{
  border: none !important;
  border-radius: 2rem;
  z-index: 9;
  background: var(--transparent-bg);
}
.form-group.form-outline i{
  color: var(--light-primary);
  font-size: 1rem !important;
}
.form-outline .dropdown-toggle::after{
  display: none;
}
.form-control::placeholder {
  color: var(--light-primary);
  font-weight: 500 !important;
  font-size: 14px;
}

.form-outline label{
  position: absolute;
  top: 19px;
  left: 50px;
  font-weight: 500;
  color: var(--light-primary);
  font-size: 14px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 1;
}
.form-outline label.active {
  top: -7px;
  left: 20px;
  font-size: 0.675rem;
  padding: 0px 4px;
  background: var(--white);
}
.form-outline .eye-icon{
  position: absolute;
  right: 0;
  padding-right: 10px;
}
.form-outline.pass_input{
  padding: 6px 30px 6px 23px !important;
}
.dropdownBody{
  width: 100%;
}
.dropdownBody .dropdown{
  padding: 6px 0px;
}
.dropdownBody .dropdown-toggle .material-symbols-outlined{
  position: absolute;
  right: 7px;
  top: 7px;
  color: var(--primary);
}
.dropdownBody .dropdown > a{
  margin-right: -5px !important;
}

.modal .modal-header a {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 9;
}
.modal .modal-header a span,.close-btn span{
  background: var(--primary);
  border-radius: 50%;
  font-size: 17px !important;
  padding: 1px;
  color: var(--white);
}
.close-btn{line-height: 0px;}
.modal .modal-body h4{
color: var(--dark);
}

.notfctn-hd {
  position: relative;
}
.notfctn-hd::after {
  content: "";
  display: block;
  border-right: 1px solid var(--dark-border-color);
  height: 100%;
  position: absolute;
  top: 0;
  right: -15px;
}
.dropview_body{
  background: var(--light-gray);
  padding: 10px;
  border-radius: var(--radius);
  cursor: pointer;
}
.dropview_body  img{
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}
.btn_alignbox{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.btn_inline{
  display: flex;
  align-items: center;
  gap: 5px;
}
.supportImg{
  width: 575px;
}
.import_section a{
  position: absolute;
  top: 25px;
  right: 50px;
}
.nav-top{justify-content: end;gap: 20px;}
.no-records-body img{
  max-width: 200px;
}
.no-records-body p{
  font-size: 1rem !important;
  font-weight: 500 !important;
}
.dropdown-menu {
  min-width: 9rem;
}
.filter_menu li.active a{
  color: var(--primary) !important;
}
.btn_inner{
  transition: transform 0.2s ease-in;
  display: inline-block;
}
.btn_inner:hover{
  transform: scale(1.06);
  transition: transform 0.4s ease-out; 
}
.dropdown-menu li a{  transition: transform 0.4s ease;}
.btn-tab:hover,.table-responsive .dropdown-menu.show .dropdown-item:hover,.dropdown-menu li a:hover,.ntfcn-dropdwn .view-more-btn:hover{
  transform: scale(1.04);
  transition: none;
}
.dropdown-menu.show .dropdown-item,.ntfcn-dropdwn .view-more-btn{
  transition: transform 0.2s ease-in;
}
.dropdownBody ul{
  max-height: 250px;
  overflow-y: auto;
}
.intl-tel-input .country-list{
    z-index: 9999 !important;
}
img.banner-img {
  width: 100%;
  max-height: 150px;
  height: 100%;
  object-fit: cover;
}
.btn-outline p { 
  color: var(--dark);
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.btn-outline:hover p {color: var(--white) !important;}
a.remove-img {
  position: absolute;
  right: 20px;
  bottom: 0;
  color: var(--white);
  background: var(--dark);
  width: 30px;
  height: 30px;
  font-size: 14px !important;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease; 
  display: none;
}
a.remove-img span { font-size: 18px;}
.gallery_wrapper .gallery-img:hover a.remove-img {
  transition: transform 0.5s ease; 
  bottom: 10px;
  display: flex;
  color: var(--white) !important;
}
.profile-files-container .fileBody {
  position: relative;
}
.profile-files-container .fileBody a.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
}
.profile-files-container .fileBody img {
  min-height: 80px;
  width: 100%;
  object-fit: cover;
}
.StripeElement {
  border: 1px solid #d0d0d0;
  padding: 15px;
  border-radius: 10px;
}
p.card-error {
  color: var(--danger);
  font-size: 13px !important;
  margin-bottom: 0;
}
.modal-content {
  padding: 1rem !important;
}
ul.upload-note {
  list-style: disc;
  padding-left: 1rem;
  margin-top: 10px;
}
ul.upload-note li {
  color: #8b8b8b;
}
.dropzone .dz-message .dz-button {display: flex !important;}
.table-note p {
  font-size: 13px !important;
  color: #a0a0a0;
  font-style: italic;
  background: #f8f8f8;
  padding: 5px 10px;
  border-bottom: 1px solid #e8e8e8;
}
a.note-link {
  font-size: 18px;
  color: #333;
}
.notfction-norecord img {
  width: 70px !important;
}


/* @keyframes bellRing {
  0% { transform: rotate(0deg); }        
  25% { transform: rotate(15deg); }      
  50% { transform: rotate(-15deg); }     
  75% { transform: rotate(10deg); }  
  100% { transform: rotate(0deg); } 
}

.unread .bell-ring {
  color: var(--danger);
  display: inline-block;
  animation: bellRing 1s ease-in-out infinite;
  transform-origin: top center; 
} */

.disabled{cursor: not-allowed;pointer-events: none;}

.pending-tag{
  background: var(--warning);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 100px;
  display: block;
  text-align: center;
}
.accepted-tag{
  background: var(--success);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 100px;
  display: block;
  text-align: center;
}
.rejected-tag{
  background: var(--danger);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 100px;
  display: block;
  text-align: center;
}

.unread .ntfctn-dtls{
  border-bottom: 1px solid #e3e3e3;
}
.unread .unread-icon{
  width: 15px;
  height: 15px;
  display: block;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid #fff;
}

.notftn-read .read-icon{
  width: 15px;
  height: 15px;
  display: block;
  background: var(--light-primary);
  border-radius: 50%;
  border: 2px solid #fff;
}

.notftn-read .unread-icon{display: none;}
.unread .read-icon{display: none;}
.card-table table{border: 1px solid #3330;}
.min-h-auto.card-table.inner-tb {
  border: 1px solid var(--dark-border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
.table .sub-tb > :not(caption) > * > * {
  background: #fff0 !important;
}
.table .sub-tb {
  background: var(--light-gray);
  border-radius: 6px;
  margin-bottom: 0;
}
.sub-tb tr th {
padding: 10px;
}
.sub-tb tr td {
  padding: 6px 10px;
}
.sub-tb tbody tr:hover{
  background: #ededed;
}
.arrow-r.active span{
  transform: rotate(90deg);
}


/*----- medical history start -----*/



.intaketab-text  p{
  margin-bottom: 0px;
  font-weight: 400;
}
.inputBox-divider{
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
}
.inner-history{
   border: 1px solid var(--form-border-color);
   padding: 15px;
   border-radius: var(--border-radius);
   margin-bottom: 10px;
}
.inner-history .history-info{
   background: #f3f3f3;
   padding: 15px;
   display: flex;
   gap: 5px;
   align-items: center;
   border-radius: var(--border-radius);
}

.opt-btn.danger-icon{
   border-color: var(--danger) !important;
}
.opt-btn.danger-icon .material-symbols-outlined{color: var(--danger);}

.success{color: var(--success);}

.intake-wrapper-tab .nav-link.active{background: transparent !important;}

.intaketab-text {
    max-width: 300px;
    min-height: 100px;
}


.medication-append label.error,.history-wrapperBody label.error,.inner-history label.error,.history-box label.error{
  color: var(--danger) !important;
  font-size: 0.75rem !important;
}

.inner-history label.error{
  color: var(--danger) !important;
  font-size: 0.75rem !important;
}
label.error,label.text-danger{
  color: var(--danger) !important;
  font-size: 0.75rem !important;
}

.login-container {
    padding-top: 65px;
}

.checkbox-wrapper .form-check-input {
    --bs-form-check-bg: var(--bs-body-bg);
    width: 1.2em;
    height: 1.2em;
}
.checkbox-wrapper .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.checkbox-wrapper .form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(56, 56, 56, 0.25);
}

.checkbox-wrapper {
    display: flex;
    justify-content: end;
    gap: 40px;
}

.hidden-checkbox {
    display: none;
}

.update-info{
    display: block;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background: var(--gray);
}

.inner-history .form-outline,.inputBox-divider .form-outline{
    padding: 6px 0px 6px 6px;
}

.checkbox-wrapper .form-check-inline{margin-right: 0px;}

.vaccine-append a.danger{line-height: 14px;}

.success-img{width: 500px;}

.align_middle{
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.history-tab .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--primary) !important;
    background-color: var(--white) !important;
    border-left: 1px solid var(--primary);
    border-radius: 0 !important;
    font-weight: 500;
    border-bottom: none;
}
.history-tab button {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
}
.history-tab {
    border-right: 1px solid var(--form-border-color);
    min-height: 550px;
    height: calc(100% - 35px)
}
.fileBody_inner{
  border: 1px solid var(--form-border-color);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.fileBody_inner.file-cabinet-inner {
  margin-bottom: 0;
  height: 100%;
  position: relative;
} 
.fileBody_inner.file-cabinet-inner .opt-btn {
  width: 35px;
  height: 35px;
}
.file-cabinet-inner  .btn_alignbox {
  position: absolute;
  right: 15px;
  gap: 5px;
}
/* .fileBody_inner.file-cabinet-inner .folderType {
  margin-top: 20px;
} */
.right-sec .user_info h6 {
  width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fileBody_inner .folderType{
  min-height: 130px;
  width: 100%;
  display: grid;
  place-items: center
}

.folderName small,.folderName p{
  font-size: 0.75rem !important;
  color: var(--gray);
  line-height: 1.3rem !important;
  margin-bottom: 0px;
}

.folderName h6{
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3rem !important;
}


.fileBody_inner .folderType img{width: 80px;}

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

.folderDataHead{
  background: #f3f3f3;
  padding: 15px;
  border-radius: var(--border-radius);
}

.fileResult_inner{
  display: flex;
  align-items: center;
  gap: 10px;
}

.fileResult_inner img{
  width: 40px;
  height: 40px;
  display: block;
}

.notftn-count{
  font-size: .70em !important;
  background-color: var(--danger) !important;
  color: var(--white) !important;
  height: 30px;
  width: 30px;
  border-radius: 50% !important;
  display: block;
}

.history-tab .nav-link{
  text-align: start;
}

.selected-condition{
  display: inline-flex;
  gap: 5px;
  background: var(--bg-color);
  border:1px solid var(--primary);
  border-radius: 30px;
  padding: 5px 10px;
}

.selected-condition p{
  font-size: 0.875rem !important;
  max-width: 190px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0px;
  
}
.selected-condition .remove-condition{
  box-shadow: none;
  border: none;
  background: transparent;
  color: var(--danger);
  line-height: 0px;
}
.selected-condition .remove-condition span{
  color: var(--danger);
  font-size: 18px !important;
}

.multi-wrapper{
  display: flex;
  flex-wrap: wrap;
  gap: 0px 5px;
}

.opt-view{background: var(--primary) !important;}
.opt-view span{color: var(--white);}

.pdf-tablelist{
  /* height: 600px !important;
  overflow: scroll; */
  word-wrap: break-word;
}

.nopreview-sec{
  height: 100%;
  background: var(--light-gray);
  display: grid;
  place-items: center;
  border-radius: var(--border-radius);
}
.preldr-img{
  height: auto;
  width: 400px;
}

.inner-history .form-group .float-label,.form-outer .float-label{
  left: 18px;
}

.form-outline.form-outer{padding: 6px 0px 6px 6px;}

.bootstrap-datetimepicker-widget table td span.active, .bootstrap-datetimepicker-widget table td i.active{color: var(--primary) !important;}

.cell{position: relative;}

.cell.appointment-date .apt-day{background: #4CEF40;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 5px;
}


.ui-menu .ui-menu-item-wrappe{width: 100% !important;display: block !important;}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  border: 1px solid var(--primary) !important;
  background: var(--primary) !important;
}

.ui-widget-content.ui-autocomplete span{width: 100% !important;display: block !important;}

.w-99{width: 95%;}

.badge.bg-info{
  background: #cef7fa !important;
  color: var(--primary);
}
.badge{font-weight: 500 !important;}

.badge.bg-danger {
  background-color: var(--danger) !important;
  color: var(--white) !important;
}
.badge.bg-warning {
  background-color: var(--warning) !important;
}
.unread {
  background: var(--light) !important;
  padding: 0px 7px;
}
.notftn-read{
  padding: 0px 7px;
}
.notfctn-hd .unread,
.notfctn-hd .notftn-read{
  padding: 7px 16px;
}
.notftn-read:hover,
.notfctn-hd .notftn-read:hover{
  background: #FAFAFA !important;
  transition: all .3s;
}
.unread:hover,
.notfctn-hd .unread:hover{
  background: #FAFAFA !important;
  transition: all .3s;
}
/*----- medical history end -----*/


input:-webkit-autofill,textarea:-webkit-autofill {
  background-color: var(--white) !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.stripe-info{
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.otp-input-field {
  -moz-appearance: textfield; /* Firefox */
}
.otp-input-field::-webkit-outer-spin-button,
.otp-input-field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.navbar-header .pftl-txt-hd.pftl-txt small{
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.clinicname,.profileData.view_profile .user_details h5{
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.form-group input,.form-group 
select,.form-group textarea{
  background-clip: text !important;
}
/* .portal-img{width: 250px;} */
.daterangepicker td.active, .daterangepicker td.active:hover,.daterangepicker .ranges li.active {
  background-color: var(--primary) !important;
  border-color: transparent;
  color: var(--white) !important;
}

.profileData.view_profile .btn-outline p{
  width: 100px;
}

.btn-icon{  height: 45px}



/* 12-3-2025 */
.No-polls-yet{
  width: 500px;
}
.crt-card-wp{
  border-top: 4px solid var(--primary) !important;
    border-radius: 15px !important;
    padding: 29px 20px;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.form-group .option-form span{
  position: absolute !important;
  top: 10px;
  right: 10px;
  color: var(--primary);
}
.form-group.add-dct a{
  color: var(--primary);
  font-size: 12px;
}
.form-group.add-dct a span{
  color: var(--primary);
  font-size: 22px;
}
.crt-card-wp .upload-doc{
background: var(--gray);
width: 200px;
height: 200px;
border: 1px solid var(--gray);
border-radius: 17px;
object-fit: contain;
}
.img-upload-stn{
  max-width: 200px;
}
.form-group.add-dct-form {
  display: flex;
  align-items: center;
}
.form-group.add-dct-form span{
  rotate: 180deg;
  color: var(--light-gray);
  font-size: 20px;
  margin-right: 6px;
  margin-bottom: 11px;
}

.form-switch .form-check-input:focus,
.form-check-input:focus {
  border-color: var(--border) !important;
}
hr{
  border: 1px solid var(--border);
}
.close-btn-optn {
  padding: 0 !important;
  display: flex !important;
  border-radius: 22% !important;
}
.close-btn-optn span{
  font-size: 15px;
  padding: 3px;
}
/* 12-3-2025 */

.details-wp h3{
  font-size: 27px;
  font-weight: 600;
}
.details-wp p{
  font-size: 20px;
  color: var(--gray);
}
.poll-opt {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 15px;
  margin-bottom: 10px;
}
.poll-opt input{
  height: 28px;
  width: 28px;
  border-radius: 10px !important;
  margin-right: 9px;
}
.poll-opt h6{
  font-size: 22px !important;
  margin-top: 8px;
  font-weight: 600;
  margin-bottom: 0px;
}
.poll-opt p{
  font-size: 14px !important; 
}
.member-list tr th{background: #e2e2e2 !important;}
.details-wp h4{
font-size: 18px !important;
font-weight: 700 !important;
}
.details-wp .dates{
  display: flex;
  align-items: center;
}
.details-wp small{
  font-size: 13px !important;
  color: var(--gray) !important;
}
.details-wp .dates span{
  color: var(--primary);
  font-size: 20px;
}
.details-wp .dates p{
  color: var(--black) !important;
}
.edit-poll table,
.details-wp table{
  border-collapse: separate;
  border-spacing: 0 3px;
}
.edit-poll table tr,
.edit-poll table thead tr th,
.details-wp table tr,
.details-wp table thead tr th{
 border: none; 
}
.edit-poll table tbody tr td,
.details-wp table tbody tr td{
  border-left: none;
border-top: 1px solid var(--border) !important;
border-bottom: 1px solid var(--border) !important;
border-right: none;
}

.edit-poll table tbody tr td:first-child,
.details-wp table tbody tr td:first-child{
  border-left: 1px solid var(--border) !important;
}
.edit-poll table tbody tr td:last-child,
.details-wp table tbody tr td:last-child{
  border-right:  1px solid var(--border);
}

.edit-poll table tr th,
.details-wp table tr th {
  background: #fff0 !important;
  font-size: 14px !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
}
.edit-poll .table > :not(:last-child) > :last-child > * ,
.details-wp .table > :not(:last-child) > :last-child > * {
  border-bottom: 1px solid #a1a1a100 !important;
}
.edit-poll table tbody tr,
.details-wp table tbody tr{
  border-bottom: 1px solid transparent;
}
.edit-poll table tbody tr td,
.details-wp table tbody tr td{
  color: var(--black) !important;
}
.candidate-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}
.navbar ul li.active a p,
.navbar ul li.active a span{
color: var(--primary);
}
.ctm-alert{
  color: #333 !important;
  background: #f3d1a5 !important;
  border: none;
}
table .btn-delete span{
  color: red;
}
table .btn-delete span:hover{
color: #cd0c0c;
}
.pending-tag{
  background: var(--warning);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 100px;
  display: block;
  text-align: center;
}
.accepted-tag{
  background: var(--success);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 100px;
  display: block;
  text-align: center;
}
.rejected-tag{
  background: var(--danger);
  color: var(--white);
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 15px;
  width: 100px;
  display: block;
  text-align: center;
}
#cboxContent {
  margin-top: 0px !important;
}
.profile-remove-btn i{
color: #fff !important;
  font-size: 16px;
}
.sweet-alert button.confirm{
  background-color: var(--primary) !important;
  color: var(--white) !important;
}
.alert-wrapper .alert {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInScale 0.3s ease-out, fadeOutScale 0.3s ease-in 3s forwards;
  height: 43px;
}
.alert-wrapper.reset-alert .alert {
  top: 10% !important;
}
.alert-wrapper .alert {
  background-color: var(--danger);
  color: var(--white) !important;
  border-left: 5px solid #ff7a4e;
}
.loader {
  position: fixed;
  background: #ffffffd4;
  width: 100%;
  right: 0;
  top: 0;
  z-index: 999;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 100vh;
}
.loader img{
  width: 140px;
}
.loader p{
  font-size: 25px !important;
  color: var(--white);
  margin-top: 11px;
}
.login-card img.user-img {
    border-radius: 10px !important;
  margin-bottom: 22px;
}
.login-header.set-paw {
  margin-bottom: 50px !important;
}
.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
}
.bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
  background: var(--primary) !important;
  cursor: pointer !important;
  color: var(--white) !important;
}
footer.fot{
  padding: 5px 36px !important
}
.mansge-signin{height: 100vh;}
/* -------- responsive-sec --------- */

@media (min-width:1550px){
  .signin-page .login-form {max-width: 550px;margin: auto;}
}

@media (min-width: 1360px) {
  .modal-xxl { max-width: 1350px  !important;}
}

@media (max-width: 1359px) and (min-width: 1024px) {
  .modal-xxl {  max-width: 900px  !important;}
}

@media (max-width: 1350px) {
  .btn_alignbox {flex-wrap: nowrap;}
  .opt-btn {width: 30px; height: 30px;}
  .opt-btn img {width: 30px; height: 30px;}
  .cell {padding: 0.4em 0.4em !important;}
  .date-text {font-size: 1.23rem !important;}
  .profileData.view_profile .user_details h5 { max-width: 285px;}
  .profileData.view_profile .btn-outline p {width: 100px;}
  .preldr-img{width: 300px;}
}

@media (max-width: 1023px) and (min-width: 768px) {
  .modal-xxl { max-width: 750px  !important;}
}

@media (max-width: 767px) and (min-width: 577px) {
  .modal-xxl {max-width: 550px  !important;}
}

@media (max-width:1550px){
  h2 { font-size: 1.395rem !important;}
  .web-card.user-card {  min-height: 350px !important;}
  .date-text{font-size: .975rem !important;}
  .cell {width: 100%; padding: 0.4em 0.6em; font-size: 14px; }
  .patient-sign-in-left-sec {height: 790px; }
  .patient-sign-in-left-sec img { width: 200px;}
  .care-img {width: 70%;}
  .contributors-sec .user_info h6 {  width: 140px;}
}


@media (max-width: 1399.98px) { 
  h2 { font-size: 1.275rem !important;}
  .sign-in-left-sec img { width: 250px;}
  section { margin-bottom: 4rem;}
  .user_info.appointment_info p { width: 120px;}
  .calendar .button{font-size: 12px;  font-weight: 600;}
  .cell{width: 25px;}
  .address-align {
    max-width: 230px;
  }
  
 }

/* Large devices (desktops, less than 1200px) */

@media (max-width: 1199.98px) { 
  .phone-form{max-width: 100%;}
  img.card-wallet {max-width: 150px;margin-bottom: 20px;}
  img.card-realtive {  max-width: 330px;}
  .user_info p {width: 230px;}
  .fileBody_inner .user_info p {width: auto !important;}
  .gallery_wrapper .item{margin-bottom: 25px;}
  .inner-history a.opt-btn{width: 30px;height: 30px;}
  .profileData.view_profile{margin-top: -125px;}
  .profileData .btn.opt-btn {padding: 5px 10px !important; height: 40px !important;width: 40px; }
  .wrapper{margin-top: 90px;}
  /* .navbar-header .clinicname{ max-width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;display: block;} */
  .profileData.view_profile .btn-outline p {width: 130px;}
  .profileData.view_profile .user_details h5 {max-width: 330px;}
}


/* Medium devices (tablets, less than 992px) */

@media (max-width: 991.98px) { 
  .sign-in-left-sec img {width: 200px;}
  .btn-primary {font-size: 0.875rem;}
  /* .web-card .border-right{border: none !important;} */
  .side-logo{height: 100px !important;width: 150px !important;object-fit: contain;}
  .btn_alignbox{justify-content: center !important;}
  .form-group.br{border: none;}
  .gallery_wrapper .item{margin-bottom: 10px;}
  .modal-gallery > div {--bs-gutter-y: 0rem;}
  .modal-xl{ max-width: 700px !important;padding: 10px;}
  .modal-dialog {  padding: 10px !important; }
  .sign-in-left-sec{display: none;}
  .logo_singin{width: 230px;margin-bottom: 15px;}
  .back_btn{ color: var(--primary); border: 1px solid var(--primary);}
  .back_btn:hover{color: var(--primary);border: 1px solid var(--primary); }
  .mob-logo{position: relative;}
  .mob-logo .back_btn{position: absolute;right: 0;top: -10px;}
  .top-error .error {  top: -220px; width: 100%;font-weight: 500; border-radius: 15px;padding: 10px;  background-color: rgba(355,355,355,0.135); backdrop-filter: blur(50px);}
  .profileData .user_details{text-align: center !important;}
  .profileData .btn_alignbox{margin-top: 20px;}
  .header-fixed {margin-top: 0px;}
  .user_info.appointment_info p { width: 250px;}
  .signin-page.patient-signin-page{background: url(../images/responsive_loginbg.jpg) no-repeat;width: 100%; height: 900px; border-radius: 30px;overflow: hidden;background-size: cover;padding: 10px;margin-bottom: 0px !important;}
 
  .signin-page .login-form p,.login-form h1,.signin-page .btn_inner a{color: var(--white) !important;}
  .login-form .form-outline label.active{border-radius: var(--radius);}
  .signin-page .form-group.otp-input .form-control:focus {background: var(--white) !important;}
  img.user-img {width: 125px; height: 125px;}
  .profileData.view_profile { margin-top: -95px;}
  .btn-icon img {width: 30px; height: 30px;}
  .folderName h6 { max-width: 180px;}
  .import_section a{ position: unset; display: inline-flex !important; margin: 10px 0px;}
  ul.social-media{justify-content: center;}
  .profileData.view_profile .user_details h5{margin: auto;}
  footer .social-media,
  footer img{display: none;}
  footer{padding: 3px;}
  footer p {font-size: 12px !important;}
}
 
/* Small devices (landscape phones, less than 768px) */

@media (max-width: 767.98px) {
  .sign-in-left-sec {height: 40vh;}
  .signin-page{  height: 650px;}
  .sign-in-left-sec img {width: 150px;}
  .right-sec {gap: 15px !important;}
  .pftl-txt-hd {display: none;}
  .dash-service::before, .dash-service::after { width: 90px;height: 90px;}
  .wallet-rchrg-pg .border-right { border-right: 0 !important;}
  .web-card.dash-service::before, .web-card.dash-service::after {display: none;}
  img.card-realtive {max-width: 300px;}
  img.card-wallet {max-width: 100px;}
  .btn-primary.res-menu{min-width: 50px !important;display: inline-flex;}
  .tab_box{display: grid !important;grid-template-columns: repeat(2, 1fr);gap: 10px;margin-top: 15px;}
  .sort-sec{margin-bottom: 15px;justify-content: center;}
  .notfctn-hd::after {right: -8px;}
  .pagination{justify-content: center;}
  .modal-xl{ width: 560px !important; }
  .user_details img {  width: 150px;}
  .navbar-list{overflow-y: scroll;overflow-x: hidden;}
  .fileBody_inner .user_info h6 { width: 120px;}
  .fileBody_inner .user_info p { width: 110px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
  .ui-menu.ui-widget-content.ui-autocomplete{width: auto !important;margin-right: 6px !important;}
  .portal-img{width: 250px;}

}

/* X-Small devices (portrait phones, less than 576px) */

@media (max-width: 575.98px) { 
  .logo_singin { width: 140px;}
  .back_btn{height: 35px;padding: 5px !important;font-size: 14px !important;display: flex; align-items: center; }
  .back_btn .material-symbols-outlined{font-size: 20px !important;}
  .modal-dialog { margin: 0rem !important; padding: 5px !important;}
  .modal-xl{ max-width: 100% !important;}

  body{padding: 10px;}
  #content-wrapper {padding: 10px 0 !important;}
  .web-card {padding: 15px;}
  /* .modal-content {margin: 0 15px;} */
.pay-card {width: 268px;height: 138px;}
.btn.opt-btn{ height: 30px !important;min-width: 30px !important;}
.nav-top { gap: 5px;}
.dash-service::before, .dash-service::after {display: none;}
.modal-dialog button.btn-close{right: 5px; top: 5px;}
.signin-page { padding: 15px;}
h2 {font-size: 1.395rem !important;}
.welcome-body h3 { font-size: 1.8rem !important}
h4 {font-size: 1.175rem !important;}
p{font-size: 0.795rem !important;}
.welcome-body { padding: 20px;}
footer p{font-size: 0.725rem !important;}
.social-media {gap: 15px;}
.social-media i {font-size: 1.1rem !important;}
#content-wrapper > .container-fluid{padding: 0px 5px !important;}
.silder_info > div:first-of-type{ display: inline-block !important;text-align: center !important;}
.silder_info .ntfcn_inner{flex-direction: column;}
.silder_info{text-align: center;}
.page-link {padding: 0.125rem .55rem !important;}
.form-group.otp-input input { height: 60px;width: 60px;}
.sidebar-wrapper { left: 245px !important;}
.modal-xxl { max-width: 100% !important;}
.header-fixed { width: calc(100% - 20px) !important;}
/* .wrapper { margin-top: 120px;} */

.user_info.appointment_info p { width: 230px;}
.signin-page.patient-signin-page {  height: 900px;}

.right-sec .notfctn-hd {height: 35px;width: 35px;}
.right-sec .notfctn-hd img, .ntfctn-dtls img { width: 20px;height: 20px;}
img.pfl-img {width: 35px !important;height: 35px !important;}
.right-sec {margin-left: 5px;}
.folderName h6 { max-width: 170px;}
.modal-content {padding: 0rem !important;}
.stripe-info {padding: 15px;}
h6 {font-size: .875rem !important;}

}

@media(max-width:450px){
  .user_info p {width: 160px;}
  .top-error .error {font-size: .625rem;}
  .signin-page.patient-signin-page {height: 930px;}
}

@media (min-width: 576px) {
  .modal-dialog.modal-lg{/* max-width: 700px !important; */margin: 1.75rem auto; }
  .modal-content { padding: 0.25rem !important;}
}

@media (min-width: 991.98px){
  .wrapper.res-wrapper {height: calc(100vh - 137px);overflow-y: scroll; scrollbar-width: none; }
  .wrapper.res-wrapper.manage{padding-left: 286px; }
  .wrapper.res-wrapper.manage.toggled {padding-left: 94px;}
}
