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

:root {
	--white: #fff;
	--light-gray: #F3F3F3;
  --light-primary: #A1A1A1;
	--gray: #6B6B6B;
	--gray-dark: #CBCBCB;
	--primary: #181818;
	--secondary: #EBEBEB;
	--success: #219653;
	--info: #E9FAFF;
	--warning: #FFC700;
	--danger: #FF0000;
	--light: #f8f9fc;
	--dark: #181818;
	--form-border-color: #FFE3C9; 
	--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 :  .685rem;
}
* {
  padding: 0;
  margin: 0;
  box-shadow: none;
}
*,
::after,
::before {
	box-sizing: border-box
}
body {
  position: relative;
  min-height: 100%;
  font-family: "Raleway", sans-serif !important;
  padding: 20px;
  background-color: var(--light-gray) !important;
}
h1 {
  color: var(--dark);
}
h2{
  font-size: 1.695rem !important;
}
h4{
  font-size: 1.325rem !important;
}
h6{
  font-size: 1rem !important;
}
p{
  color: var(--gray);
  font-size: 0.975rem !important;
  line-height: 1.725rem !important;
}
a {
  text-decoration: none !important;
}
a.primary{
  color: var(--primary) !important;
}
.gray {
  color: var(--gray);
}
.dark {
  color: var(--dark);
}
.primary {color: var(--primary);}
.white {
  color: var(--white) !important;
}
.light-gray{color: var(--light-primary) !important;}
.form-control {
  color: var(--darkblue) !important;
}
/* input.form-control {
  border: 1px solid var(--border-color);
  background: var(--) !important;
  height: 50px;
  border-radius: 30px;
} */
.form-control:focus {
  background: none;
  color: var(--white);
  box-shadow: none !important;
}
textarea.form-control {
  border: 1px solid var(--primary);
  border-radius: 24px;
}

.form-outline.form-textarea{
  align-items: baseline;
  border-radius: 20px !important;
} 
.ntfn-min{width: 70px;}
/* .form-outline.form-textarea{
  min-height: 50px !important;
} */
.btn {border-radius:  .685rem !important;
  font-size: .975rem !important;
  font-weight: 500 !important;}

.btn-primary {
  color: var(--white) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  padding: .75rem .75rem !important;
  min-width: 160px;
}

.form-control::placeholder {
  color: var(--light-primary) !important;
  opacity: 1;
}
.breadcrumb li{font-size: .875rem !important;}

.login-form form a img{
  width: 17px;
  margin-right: 10px;
}

.btn-success{
  color: var(--white) !important;
  background-color: var(--success) !important;
  border-color: var(--border-color) !important;
  padding: .75rem .75rem !important;
  min-width: 160px;
}
.btn-outline-primary,.btn-outline{
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-color: var(--dark-border-color) !important;
  padding: .75rem .75rem !important;
  border: 1px solid;
  min-width: 160px;
}
.btn-outline-checkbox {
  color: var(--primary) !important;
  background-color: var(--white) !important;
  border-color: var(--primary) !important;
  border: 1px solid;
}

.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;
}

/* 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(--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);
}

.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(--white);
  background-color: var(--primary);
  border-radius: 12px;
}

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

.cell--unselectable {
  color: var(--primary);
  
}

.cell--unselectable:hover, .cell--unselectable:focus {
  color: hsl(231, 20%, 50%);
  background-color: transparent;
}

.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 {
  border: 1px solid var(--primary) !important;
  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: 20px;
  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;
}
.profile-hd .dropdown-menu{
  min-width: 20rem;
}
.dropdown-item {
  color: var(--gray) !important;
  font-weight: 500;
  font-size: 0.875rem !important;
}
/* .dropdown-item:focus, .dropdown-item:hover {
  color: var(--white) !important;
  background-color: #3a3a3a !important;
} */
.small, small {
  font-size: 0.8125em !important;
}
.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(--primary);
  color: var(--white) !important;
  padding: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
footer p{
  color: var(--white) !important;
  margin: 0px;
}
.social-media{
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.social-media i{color: var(--white);font-size: 1.325rem !important;border-radius: 2rem;}

.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;
  background-color: var(--light-gray) !important;
  height: 100% !important;
}


img.logo{
  max-width: 150px;
}
.fw-medium{
  font-weight: 600 !important;
}
.fw-middle{font-weight: 600 !important;}
.welcome-body{
  padding: 0px 30px;
}
.welcome-body h2{
  color: var(--white);
  font-weight: 500;
  margin: 0;
}
.welcome-body h3{
  font-size: 2.2rem !important;
  font-weight: 700;
  color: var(--white);
}
.welcome-body p,.welcome-body a{
  color: var(--white) !important;
}
table th{
  color: var(--dark) !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
}

table td{
  color: var(--gray) !important;
  font-weight: 400 !important;
  border-bottom: 1px solid var(--border-color);
}
table td p{
  font-size: 0.975rem !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_inner{
  display: flex;
  align-items: center;
  gap: 8px;
}

.user_info img{
  width: 30px;
  height: 30px;
}
.tab_box{
  display: flex;
  gap: 10px;
}

.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;
}

.dropview_body.profileList{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.appointment_inner{
  background: var(--light-gray);
  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: 140px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
}

.files-container{
  display: flex;
  gap: 15px;
}
.fileBody{
  display: flex;
  width: 155px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 7px;
  padding: 5px;
}
.file_info{
  display: flex;
  align-items: center;
}
.file_info span{
  display: block;
  width: 85px;
  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{
  background-image: url(../images/profile-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* height: 330px; */
  background-position: top;
}
.profileData.view_profile{
  background-image: url(../images/viewprofile_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}
.profileData.nurseData{
  background-image: url(../images/nurse_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  /* height: 330px; */
  background-position: top;
}
.user_details img{
  width: 220px;
}
.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;
}
.detailsList h6{font-size: .875rem !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;
}
hr{
  opacity: unset !important;
  background-color: var(--dark-border-color) !important;
}
.user_inner img{
  height: 43px;
  width: 43px;
  object-fit: contain;
}
.pftl-txt h6{font-size: 1rem !important;}

.offcanvas-start {
  width: 300px !important;
}
.offcanvas-header img{max-width: 170px;}

.create-profile a img{
  height: 30px;
  width: 30px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0px !important;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  border-radius: 50%;
}
.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;}

.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;
}
.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(--light-gray);
}
.modal-footer {
  border-top: 1px solid var(--border-color) !important;
}




select.form-select {
  /* background: var(--info) !important; */
  height: 50px;
  border-radius: .685rem !important;
  color: var(--primary);
  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;}
.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: 64px;
  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;}
  
 

/* basic-end */

/* signin-page-style */

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

.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-right-sec {
  color: var(--white);
  min-height: 580px;
  height: 100%;
}

.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);
}
.form-select:focus{box-shadow: none !important;}

.signin-page .form-select, .phone-form .form-control {
  width: 80px;
}
.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 ;
}

img.logo {
  width: 150px;
}

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

.web-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: var(--radius);
  position: relative;
}
.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;
}
.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;
  }


.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;
}

.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);
}

/* .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;
}
.filter_Box .form-select{background-image: none;}
.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;
}

.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 16px 10px;
}
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;
}
.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;
}
.navbar-brand.navbar-brand-mob {
  display: none;
}
.ntfctn-dtls {
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 20px;
  padding-bottom: 10px;
}
a.btn.opt-btn {
  background: var(--white);
  border: 1px solid var(--dark-border-color);
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
  justify-content: center;
  border-radius: 50% !important;
}
.opt-btn .material-symbols-outlined{font-size:1.45rem !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;
  margin-top: 5px;
  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;
}

.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;
}

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 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{
  max-width: 130px;
  margin: auto;
  margin-top: 15px;
  margin-bottom: 15px;
}
.profile-img > img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: contain;
  /* margin: 10px; */
}
.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 23px;
  border-radius: .685rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.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: 200 !important;

  font-size: 13px;
}

.form-outline label{
  position: absolute;
  top: 14px;
  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: -10px;
  left: 20px;
  font-size: 0.875rem;
  padding: 0px 2px;
  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);
}
.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
}
.supportImg{
  width: 575px;
}
.import_section a{
  position: absolute;
  top: 25px;
  right: 50px;
}
.nav-top{justify-content: end;gap: 20px;}
/* .profile-img .img_pointer {
  position: absolute;
  width: 45px;
  height: 45px;
  top: 10px; 
  right: 10px;

} */


/* responsive-sec */

@media (max-width:1550px){
  h2 {
    font-size: 1.395rem !important;
  }
}

/* X-Large devices (large desktops, less than 1400px) */
@media (max-width: 1399.98px) { 
  h2 {
    font-size: 1.275rem !important;
  }

 }

/* 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;
}
.gallery_wrapper .item{margin-bottom: 25px;}


 }

/* 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;}
  .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;}
  .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;}
}
 

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) { 
  .sign-in-left-sec {height: 40vh;}
  .signin-page{height: 100%;}
  .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: 5px;}
  .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;}

}
/* 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;}
 .wrapper .btn,.btn_alignbox .btn { font-size: 0.765rem !important;min-width: 130px !important;}
 /* .btn{ font-size: 0.765rem !important;min-width: 130px !important;} */
  #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: 40px !important;
  min-width: 40px !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;}
/* .navbar-list {height: calc(100vh - 270px) !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: 248px !important;
}

}

@media(max-width:450px){
  .user_info p {width: 160px;}
}

@media(min-width:991.98px) {
  .modal-body {
    padding: 2rem !important;
  }
  
}

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