@font-face {
	font-family: "Roobert";
	src: url("../../fonts/Roobert/Roobert.woff2") format("woff2"),
		url("../../fonts/Roobert/Roobert.woff") format("woff"),
		url("../../fonts/Roobert/Roobert.ttf") format("truetype");
}
@font-face {
	font-family: "Roobert-Regular";
	src: url("../../fonts/Roobert-Regular/Roobert-Regular.woff2") format("woff2"),
		url("../../fonts/Roobert-Regular/Roobert-Regular.woff") format("woff"),
		url("../../fonts/Roobert-Regular/Roobert-Regular.ttf") format("truetype");
}

:root {
	--primary-main: #13b4b3;
	--primary-light: #e8f1f1;
	--secondary-main: #775F25;
	--secondary-light: #C6B669;
	--white: #fff;
	--warning: #e8900d;
	--danger: #fb4166;
	--info: #219fff;
	--dark-1: #073836;
	--dark-2: #344342;
	--dark-4: #bed6d3;
	--dark-5: #f1f5f5;
	--dark-5a: #e5f1f1;
	--dark-x: #d0e7e7;
	--gray: #6a807e;
}
body {
	color: #666666;
	/* font-family: "Roboto", sans-serif; */
	font-family: "Roobert-Regular";
	font-size: 16px;
	font-weight: 400;
}
.text_bold {
	font-family: "Roobert";
}

p {
	color: var(--gray);
	margin: 0;
}

.list-group{
	border-radius: 15px !important;
}

.text_xs {
	font-size: 10px;
}
.text_sm {
	font-size: 12px;
}
.text_13 {
	font-size: 13px;
}
.text_14 {
	font-size: 14px;
}
.text_16 {
	font-size: 16px;
}
.text_md {
	font-size: 18px;
}
.text_lg {
	font-size: 20px;
}
.text_xl {
	font-size: 22px;
}
.text_24 {
	font-size: 24px;
}
.text_26 {
	font-size: 26px;
}
.text_xxl {
	font-size: 32px;
}
.text_xxxl {
	font-size: 36px;
	line-height: 50px;
}
.text_dark {
	color: var(--dark-1) !important;
}

.text_dark2 {
	color: var(--dark-2) !important;
}

.text_warning {
	color: var(--warning);
}
.text_danger {
	color: var(--danger);
}
.text_info {
	color: var(--info);
}
.text_light {
	color: var(--white);
}

.text_primary {
	color: var(--primary-main);
}

.rounded-8 {
	border-radius: 8px;
}

.rounded-16 {
	border-radius: 16px;
}

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.pstl_card {
	padding: 40px;
	border-radius: 16px;
	background-color: var(--white);
}

.card_primary{
	color: var(--white);
	background-color: var(--primary-main);
}

.lang_icon{
    border-radius: 1px;
	min-width: 24px;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary-main) !important ;
    color: var(--white) !important;
	/* padding: 10px 0px */
}

.pstl_btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    border-radius: 10px;
    border: none;
    padding: 14px 25px 14px 25px;
    background-color: transparent;
    color: var(--dark-2);
    vertical-align:middle;
    box-shadow: 2px 2px 10px #4b4b4b37;
	white-space: nowrap;        /* Prevents the text from wrapping to the next line */
    overflow: hidden;           /* Hides the overflow content */
    text-overflow: ellipsis;    /* Adds ellipsis (...) when text overflows */
    /* margin: 5px 8px; */
}
.pstl_btn.btn_block{
    width:100%;
}

.pstl_btn.btn_md{
    height: 42px;
    padding: 5px 15px 5px 15px;
}
.pstl_btn.btn_sm{
    height: 32px;
    padding: 5px 15px 5px 15px;
}

.pstl_background {
	background-color: var(--dark-5);
}

.pstl_stepper_mute {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	padding-right: 8px;
	padding-left: 8px;
	background: var(--white);
	border: 1px solid #666;
	text-align: center;
}

.pstl_btn.btn_block {
	width: 100%;
}

.pstl_btn .disabled {
	cursor: not-allowed;
}
.pstl_btn .disabled:hover {
	cursor: not-allowed;
}

.pstl_btn_primary_light:hover{
    background-color: #007373;
    color: var(--primary-light);
}

.pstl_btn_primary_outline{
    color: var(--primary-main);
	box-shadow: none;
    background-color: var(--white);
    border: 1px solid var(--primary-main);
}

.pstl_btn_primary_outline:hover{
    background-color: #007373;
    color: var(--primary-light);
}
.pstl_btn_danger_outline{
	color: var(--danger);
	box-shadow: none;
	background-color: var(--white);
	border: 1px solid var(--danger);
}

.pstl_btn_danger_outline:hover{
	background-color: #df3154;
	color: var(--primary-light);
}
.pstl_btn_secondary{
    background-color: var(--secondary-main);
    color: var(--white);
}

.pstl_btn_secondary:hover{
    color: var(--white);
    background-color: var(--secondary-light);
}

.pstl_btn_primary {
	background-color: var(--primary-main);
	color: var(--white);
}

.pstl_btn_primary:hover {
	background-color: #007373;
	color: var(--white);
}

.pstl_btn_white {
	background-color: var(--white);
	color: var(--primary-main);
}

.pstl_btn_white:hover {
	background-color: var(--white);
	color: #007373;
}

.pstl_btn_danger {
	background-color: var(--danger);
	color: var(--white);
}

.pstl_btn_danger:hover {
	background-color: #df3154;
	color: var(--white);
}

.pstl_btn_primary_light {
	color: var(--primary-main);
	background-color: var(--primary-light);
}

.pstl_btn_primary_light:hover {
	color: #007373;
	background-color: var(--primary-light);
}
.pstl_btn_white_light {
	color: var(--primary-main);
	background-color: var(--white);
}

.pstl_btn_white_light:hover {
	background-color: var(--primary-main);
	color: var(--white);
}

.pstl_tbl_button {
	padding: 10px 14px 10px 14px;
	border-radius: 5px;
	border: 1px solid #13b4b3;
	height: fit-content;
	background-color: #13b4b3;
	color: #ffffff;
}

.pstl_tbl_button:hover{
	background-color: rgba(19, 180, 179, 0.8);
}

.pstl_service_bar {
	background-color: var(--dark-5);
	padding: 7px 20px 7px 20px;
	margin: 10px 0px;
	border-radius: 10px;
}

button.pstl_btn.disabled {
	background-color: #eaeaea;
	color: #b2b2b2;
	border: none;
}

.stepper {
	display: flex;
	align-items: center;
}

.step {
	display: flex;
	align-items: center;
}

.step-number {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  background-color: var(--white); 
  border-radius: 50%; 
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-right: 10px;
}
.step-number.active {
	background-color: var(--primary-main);
	border: none;
	color: white;
}

.pstl_sidebar {
	padding-top: 20px;
	height: 100vh;
	background-color: var(--white);
	/* Custom */
	position: fixed;
	top: 0;
	left: 0;
	width: 250px;
	padding-top: 74px;
	color: #fff;
}

.pstl_container {
	padding: 30px 40px;
	margin-top: 74px;
}

.pstl_sidebar_menu_text {
	margin-left: 8px;
}

.stepper-divider {
    width: 54px; 
    height: 2px; 
    background-color: #ccc; 
    margin: 10px; 
  }

.navbar-logo-img {
    height: 50px !important; 
    width: 130px !important;
}

.pstl_avatar{
    padding: 1px;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #13b4b3;
    object-fit: cover;
}

.multi-line-text-truncate {
	overflow: hidden;
	max-width: 400px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin: 20px auto;
	height: 3.5em;
  }
.one-line-text-truncate {
	overflow: hidden;
	max-width: 400px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	margin: 20px auto;
  }

.pstl_avatar.no_border{
    border: none;
}
.pstl_avatar.md{
	width: 52px;
    height: 52px;
}
.pstl_avatar.sm{
	width: 32px;
    height: 32px;
}

.overlay-container{
    position: relative;
    width: 100px;
    max-width: 400px;
}

.overlay{
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    height: 96px;
    width: 96px;
    border-radius: 50%;
    opacity: 0.4;
    transition: .3s ease;
    background-color: black;
}
.icon-overlay {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
/* Breakpoints */
/* Super extra small devices (phones, 325px and down) */
@media only screen and (max-width: 325px) {

    .navbar-logo-img {
        display: none;
    }
	.pstl_card {
		padding: 20px;
	}
}
/* Super extra small devices (phones, 400px and down) */
@media only screen and (max-width: 400px) {

	.pstl_card {
		padding: 20px;
	}

    .navbar-logo-img {
        height: calc(50px - 10px) !important; 
        width: calc(130px - 28px) !important;
    }

    .step-label {
        text-align: left;
    }
    
    .step-label.active{
        font-weight: bold;
        color: var(--primary-main);
    }
    .pstl_sidebar {
        width: 250px;
    }
    .pstl_sidebar_menu_text{
        display: none;
    }
    .pstl_container{
        padding: 30px 0px;
    }
    .stepper {
        display: block;
    }
    .stepper-divider {
        width: 2px; 
        height: 10px; 
    }
}
/* Extra small devices (phones, 600px and up) */
@media only screen and (max-width: 600px) {

    .navbar-logo-img {
        height: calc(50px - 10px) !important; 
        width: calc(130px - 28px) !important;
    }

    .step-label {
        text-align: left;
    }
    
    .step-label.active{
        font-weight: bold;
        color: var(--primary-main);
    }
    .pstl_sidebar {
        width: 250px;
    }

	.step-label.active {
		font-weight: bold;
		color: var(--primary-main);
	}
	.pstl_sidebar {
		width: 250px;
	}

    .pstl_container{
        padding: 30px 5px;
    }
    .stepper {
        display: block;
    }
    .stepper-divider {
        width: 2px; 
        height: 10px; 
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	.step-label {
		text-align: center;
	}

	.step-label.active {
		font-weight: bold;
		color: var(--primary-main);
	}
	.pstl_sidebar {
		width: 250px;
	}
	.pstl_sidebar_menu_text {
		display: none;
	}
	.pstl_content {
		padding: 0px 10px;
		width: 100%;
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
	.step-label {
		text-align: center;
	}

	.step-label.active {
		font-weight: bold;
		color: var(--primary-main);
	}

	.pstl_sidebar {
		width: 70px;
	}
	.pstl_content {
		margin-left: 70px;
		padding: 0px 10px;
		width: calc(100% - 70px);
	}
	.pstl_sidebar_menu_text {
		display: none;
	}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
	.step-label {
		text-align: center;
	}

	.step-label.active {
		font-weight: bold;
		color: var(--primary-main);
	}

	.pstl_sidebar {
		width: 280px;
	}
	.pstl_content {
		margin-left: 280px;
		padding: 0;
		width: calc(100% - 280px);
	}
	.pstl_sidebar_menu_text {
		display: inline;
	}

	.menu-tooltip{
		display: none;
	}
}

.textLink:hover {
	cursor: pointer !important;
}

.modal-content{
	border-radius: 20px !important;
}

.tooltip span,
.tooltip {
    z-index: 9999999990;
}

.tooltip {
    opacity: 1 !important;
}

.tooltip {
    max-width: 240px;
}

.tooltip .tooltip-inner {
    padding: 16px;
    font-size: 12px;
    line-height: 1.5;
    opacity: 1 !important;
    max-width: 400px;
    color: var(--dark-1);
	border-radius: 10px;
    background-color: var(--dark-5a);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.16);
    text-align: left;
}

.tooltip.bs-tooltip-top .tooltip-arrow:before {
    border-top-color: var(--dark-5a);
}

.tooltip.bs-tooltip-end .tooltip-arrow:before {
    border-right-color: var(--dark-5a);
}

.tooltip.bs-tooltip-start .tooltip-arrow:before {
    border-left-color: var(--dark-5a);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow:before {
    border-bottom-color: var(--dark-5a);
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	.step-label {
		text-align: center;
	}

	.step-label.active {
		font-weight: bold;
		color: var(--primary-main);
	}
	.pstl_sidebar {
		width: 280px;
	}
	.pstl_content {
		margin-left: 280px;
		padding: 0;
		width: calc(100% - 280px);
	}
}

.divider {
	width: 100%;
	height: 1px;
	margin-top: 24px;
	margin-bottom: 24px;
	background: #0738361a;
}
.divider-vertical {
	margin-top: 24px;
	margin-bottom: 24px;
	width: 1px;
	height: 100%;
	background: #0738361a;
}

.title-md {
	font-size: 18px;
	font-weight: bold;
	margin: 0px;
}

.title-sm-light {
	font-size: 12px;
	margin: 0px;
}

.chips-container {
	display: flex;
	gap: 10px; /* Spacing between chips */
	flex-wrap: wrap;
}

.chip {
	width: max-content;
	height: 40px;
	padding: 7px 20px;
	border-radius: 500px;
	background-color: var(--dark-5);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-wrap: break-word;
}
.chip:hover {
	cursor: pointer;
	background-color: #11b7b72b;
}

.chip.active {
	background-color: var(--primary-main);
	color: white;
}

.chip.disabled {
	background-color: #f8f8f8;
	color: rgb(189, 189, 189);
}

.chip.active:hover {
	cursor: pointer;
	background-color: #007373;
}

.chip-primary-light {
	background-color: #11b7b72b;
	color: var(--primary-main);
}

.action-container{
    margin-top: 70px;
    position: relative;
}
.actions {
	margin-top: 24px;
	position: absolute;
	bottom: 0;
	right: 0;
}
.rescheduling-policy-control {
    margin-top: 24px;
    position: absolute;
    top: -95;
    left: 0;
}
.profile-container {
	width: 170px; /* (160px + 2px border on each side) + 5px gap on each side */
	height: 170px; /* (160px + 2px border on each side) + 5px gap on each top and bottom */
	border: 2px solid var(--primary-main); /* Colored border */
	border-radius: 50%; /* Makes it rounded */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden; /* Hide any content that overflows */
}

.profile-picture {
	width: 160px; /* Desired width */
	height: 160px; /* Desired height */
	border-radius: 50%; /* Ensures the picture is rounded */
	overflow: hidden; /* Hide any content that overflows */
	/* You can add your profile picture content styles here, such as background-image or other properties */
}

.profile-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Make the image cover the entire container */
	object-position: center; /* Center the image */
}

.center-card {
	display: flex;
	justify-content: center; /* Horizontally center align the child */
	align-items: center; /* Add border or other styling as needed */
}

.price-text {
	font-size: 18px;
	font-weight: bold;
	color: #000;
}

.doctor-name {
	margin-top: 24px;
	margin-bottom: 16px;
	font-size: 24;
	font-weight: bold;
}

.doctor-description {
	margin: 24px 3px;
}

.spinner-primary {
	color: var(--primary-main);
}

.table-smaller-padding td,
.table-smaller-padding tr {
	padding: 0.25rem;
}

/* Payment page */

@media (min-width: 768px) {
	.bd-placeholder-img-lg {
		font-size: 3.5rem;
	}
}
.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-link {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: var(--primary-main);
	background-color: #fff;
	border: 1px solid #dddfeb;
  }
  .page-link:hover {
	z-index: 2;
	color: var(--primary-main);
	text-decoration: none;
	background-color: #eaecf4;
	border-color: #dddfeb;
  }
  .page-link:focus {
	z-index: 3;
	outline: 0;
	box-shadow: 0 0 0 0.2rem var(--primary-light-25);
	/* box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25); */
  }
  .page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: 0.35rem;
	border-bottom-left-radius: 0.35rem;
  }
  .page-item:last-child .page-link {
	border-top-right-radius: 0.35rem;
	border-bottom-right-radius: 0.35rem;
  }
  .page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: var(--primary-main);
	border-color: var(--primary-main);
  }
  .page-item.disabled .page-link {
	color: #858796;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dddfeb;
  }
  .pagination-lg .page-link {
	padding: 0.75rem 1.5rem;
	font-size: 1.25rem;
	line-height: 1.5;
  }
  .pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: 0.3rem;
	border-bottom-left-radius: 0.3rem;
  }
  .pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: 0.3rem;
	border-bottom-right-radius: 0.3rem;
  }
  .pagination-sm .page-link {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
  }
  .pagination-sm .page-item:first-child .page-link {
	border-top-left-radius: 0.2rem;
	border-bottom-left-radius: 0.2rem;
  }
  .pagination-sm .page-item:last-child .page-link {
	border-top-right-radius: 0.2rem;
	border-bottom-right-radius: 0.2rem;
  }

.pstl_sidebar .nav-link {
	padding: 10px 15px;
	border-radius: 10px;
	color: #6a807e;
}

.pstl_sidebar .nav-link:hover {
	background-color: #e5f1f1;
	color: var(--dark-1);
}
.pstl_sidebar .nav-link:focus {
	background-color: #e5f1f1;
	color: var(--dark-1);
}
.pstl_sidebar .nav-link.active {
	/* font-family: "Roobert"; */
	background-color: var(--dark-5a);
	color: var(--dark-1);
	font-weight: bold;
}

.pstl_slot {
	background-color: var(--dark-5);
	padding: 16px 15px 16px 15px;
	border-radius: 12px;
	width: 270px;
	position: relative;
}

.pstl_slot .slot_delete_button {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--primary-main);
	color: var(--white);
	padding: 3px 7px 3px 7px;
	border-radius: 10px;
}
.pstl_slot .slot_delete_button:hover {
	cursor: pointer;
}

.horizontal-list-container {
	width: 100%;
	overflow: auto;
	white-space: nowrap;
}

.horizontal-list-container.row-cart-items{
	display: flex; align-items: baseline; gap: 10px;
}

.cart-icon {
	position: relative;
	width: 24px;
}

.cart-count {
	position: absolute;
	top: -5px;
	right: -10px;
	background-color: var(--danger);
	padding: 2px;
	border-radius: 50%;
	height: 20px;
	width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	color: var(--white);
}

#toast-container > div {
	opacity: 1 !important;
	border-radius: 20px;
}
#toast-container > div:hover {
	box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 15%) !important;
}
.toast {
	border: solid 1px transparent;
	background-color: #e2f8fc !important;
}
.toast-success {
	color: var(--primary-main) !important;
	border-radius: 10px !important;
	border-color: var(--primary-main) !important;
	background-color: var(--white) !important;
	box-shadow: 0px 0px 15px #13b4b480 !important;
}
.toast-success:after {
	color: #fff;
	content: "\f058";
	width: 35px;
	height: 35px;
	text-align: center;
	font-size: 22px;
	line-height: 35px;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	border-radius: 13px;
	background-color: var(--primary-main);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.toast-error {
	color: var(--danger) !important;
	border-radius: 10px !important;
	border-color: var(--danger) !important;
	background-color: #fcedea !important;
	box-shadow: 0px 0px 15px rgba(248, 218, 212, 0.5) !important;
}
.toast-error:after {
	color: #fff;
	content: "\f071";
	width: 35px;
	height: 35px;
	text-align: center;
	font-size: 18px;
	line-height: 35px;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	border-radius: 13px;
	background-color: var(--danger);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.toast-info {
	color: #333c48 !important;
	border-radius: 10px !important;
	border-color: #b3d2f2 !important;
	background-color: #e5effa !important;
	box-shadow: 0px 0px 15px rgba(179, 210, 242, 0.5) !important;
}
.toast-info:after {
	color: #fff;
	content: "\f05a";
	width: 35px;
	height: 35px;
	text-align: center;
	font-size: 22px;
	line-height: 35px;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	border-radius: 13px;
	background-color: #006ce5;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.toast-warning {
	color: #333c48 !important;
	border-radius: 10px !important;
	border-color: #fae1b5 !important;
	background-color: #fef7ea !important;
	box-shadow: 0px 0px 15px rgba(250, 225, 181, 0.5) !important;
}
.toast-warning:after {
	color: #fff;
	content: "\f071";
	width: 35px;
	height: 35px;
	text-align: center;
	font-size: 22px;
	line-height: 35px;
	left: 7px;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	border-radius: 13px;
	background-color: #ef9400;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.toast-top-right {
	top: 60px !important;
	right: 20px !important;
}

.horizontal-list-item {
	display: inline-block;
	padding: 10px 0px 10px 0px;
	margin: 0;
}

.pstl_form_dash_primary {
	background-color: var(--primary-light);
	border: 1px dashed var(--primary-main);
	border-radius: 8px;
	color: var(--primary-main);
	font-size: 14px;
	color: var(--primary-main);
	padding: 6px 18px;
	text-align: center;
	width: 100%;
}
.pstl_form_dash_primary::placeholder {
	color: var(--primary-main);
	opacity: 1; /* Firefox */
}

.pstl_form_dash_primary::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: var(--primary-main);
}

.input-group {
	margin-bottom: 20px;
}

.input-group input.pstl_form,
.input-group select.pstl_form {
	position: absolute;
	padding: 10px 10px 10px 50px;
	border: none;
	outline: none;
	width: 100%;
	border-radius: 4px !important;
	color: var(--dark-1);
	border: 1px solid var(--dark-4);
}
.input-group input.pstl_form.error,
.input-group select.pstl_form.error {
	border: 1px solid var(--danger);
}
.input-group input.pstl_form.form_sm,
.input-group select.pstl_form.form_sm {
	padding: 5px 5px 5px 5px;
}

.input-group input.pstl_form.form_light,
.input-group select.pstl_form.form_light {
	background-color: var(--dark-5);
}

.input-group input.pstl_form.form_rounded,
.input-group select.pstl_form.form_rounded {
	border-radius: 16px;
}

.input-group input.pstl_form.form_borderless,
.input-group select.pstl_form.form_borderless {
	border: none;
}

.input-group input::placeholder {
	color: var(--dark-4);
	font-family: "Roobert-Regular";
}

.input-group i {
	z-index: 999;
	padding: 10px;
	position: relative;
	left: 10px;
	top: 5px;
	color: var(--dark-1);
	margin-right: 0;
}

.input-group input.pstl_form:focus {
	border: 1px solid var(--primary-main);
}

.form-label {
	color: var(--dark-1);
	font-weight: bold;
}

.avatar{
    height: 30px;
    width: 30px;
    background-color: var(--primary-main);
    border-radius: 50%;
    margin: 0px .5rem 0px 0px !important;
    padding-top: 2.5px;
    text-align: center;
    vertical-align: middle;
    font-family: 'Roobert';
    color: var(--white);
}

.badge_text {
	top: 0px;
	width: 15px;
	height: 15px;
	right: -5px;
	border-radius: 50%;
	position: absolute;
	background-color: var(--primary-main);
	/* line-height: 17px; */
	border: solid 1.5px var(--white);
	font-size: 7px;
	font-weight: bold;
	color: var(--white);
}

.pstl_divider_x {
	margin: 10px 0px;
	width: 100%;
	height: 1px;
	background-color: var(--dark-x);
}

.pstl_dropdown {
	background-color: var(--white);
	border: none;
	display: flex;
	align-items: center;
}

.pstl_switch_bar {
	background-color: #eeeeee;
	border-radius: 4px;
	width: 100%;
	align-content: center;
	align-items: center;
	margin: 0;
}
.pstl_switch_bar_item {
	width: 100%;
	text-align: center;
	border-radius: 4px;
	padding: 10px;
	align-items: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 13px;
}
.pstl_switch_bar_item:hover {
	color: black;
}
.pstl_switch_bar_item.active {
	background-color: #13b4b3;
	color: white;
}

.pstl_form1 {
	box-shadow: none !important;
	background-color: white !important;
	height: 46px;
	border: 1px solid #bed6d3 !important;
	color: #073836 !important;
}
.form-control.pstl_form1:hover {
	border: 1px solid var(--primary-main) !important;
}

.pstl_session_container {
	padding: 10px;
	/* height: 365px; */
	border: 1px solid #0738361a;
	border-radius: 15px;
	margin-bottom: 24px;
	text-align: center;
}
.pstl_session_banner {
	position: relative;
	text-align:center;
}
.pstl_session_banner img {
	/* height: 180px; */
	height: 240px;
	/* width: 100%; */
	border-radius: 10px;
	/* object-fit: cover; */
}

.pstl_info {
	padding: 8px;
}

.pstl_session_id_text {
	position: absolute;
	top: 8px;
	right: 8px;
	background-color: var(--info);
	border-radius: 4px;
	color: var(--white);
	padding: 4px 15px;
	font-size: 12px;
}

.pstl_action_btn{
    border: none;
    color: var(--dark-1);
    border-bottom: 1px solid #0738361A;
    background-color: var(--white);
    padding: 4px 10px 4px 10px;
    width: 100%;
}

.pstl_action_btn:hover,
.pstl_action_btn.active {
	border-bottom: 1px solid var(--primary-main);
	background-image: linear-gradient(
		0deg,
		var(--primary-main) 2%,
		#13b4b43e 0%,
		#13b4b422 35%,
		#ffffff 100%
	);
}
.pstl_action_btn_lg{
    color: var(--dark-1);
    border: none;
    height: 48px;
    border-bottom: 1px solid #0738361A;
    background-color: var(--white);
    padding: 4px 10px 4px 10px;
    width: 100%;
}

.pstl_action_btn_lg:hover,
.pstl_action_btn_lg.active {
	border-bottom: 1px solid var(--primary-main);
	background-image: linear-gradient(
		0deg,
		var(--primary-main) 2%,
		#13b4b43e 0%,
		#13b4b422 35%,
		#ffffff 100%
	);
	cursor: pointer;
}

.pstl_start_session_btn {
	border: 1px solid var(--primary-main);
	color: var(--primary-main);
	border-radius: 8px;
	padding: 8px, 16px, 8px, 16px;
	width: 100%;
	height: 32px;
	background-color: var(--white);
	font-size: 13px;
}

.pstl_start_session_btn:hover {
	background-color: var(--primary-main);
	color: var(--white);
	cursor: pointer;
}
.pstl_start_session_btn.active {
	background-color: var(--primary-main);
	color: var(--white);
}

.modal-backdrop.show {
	background-color: #063131d5 !important;
	opacity: 1 !important;
}

.pstl_img_upload {
	padding: 6px 18px 6px 18px;
	border-radius: 5px;
	border: none;
	background-color: #e8f1f1;
	color: #13b4b3;
}
.pstl_img_upload:hover {
	background-color: rgba(232, 241, 241, 0.7);
}
.input_text_group {
	background-color: var(--white);
	border: 1px solid #bed6d3;
	border-radius: 10px;
	padding: 8px 15px 8px 25px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input_text_group:focus-within, .input_mobile_group:focus-within, .input_text_group textarea:focus-within, textarea:focus-within{
	border-color: var(--primary-main);
	border-width: 1px;
	box-shadow: 0px 0px 3px var(--primary-main);
}
.input_text_group textarea {
    box-shadow: none; /* Ensure no shadow on the textarea itself */
    border: none; /* Remove border from textarea inside the group */
    outline: none;
}
.input_text_group textarea:focus {
    box-shadow: none; /* Ensure no shadow on the textarea itself */
    border: none; /* Remove border from textarea inside the group */
    outline: none;
}
.input_mobile_group {
	background-color: var(--white);
	border: 1px solid #bed6d3;
	border-radius: 10px;
	padding: 0px 15px 0px 10px;
}
.input_mobile_group .iti__selected-flag {
	width: 50px;
	top: 15px;
	padding: 0px 0px 0px 16px;
}
.input_mobile_group input {
	padding: 8px 0px 8px 0px;
	outline: none;
	border: none;
	width: 100%;
}
.text_mobile_no {
	outline: none;
	border: none;
	width: 100%;
}
.input_text_group input {
	outline: none;
	border: none;
	width: 100%;
}
.input_text_group select {
	outline: none;
	border: none;
	width: 100%;
	padding: 3px 0px 2px 0px;
}
.input_text_group i {
	padding: 5px 8px 0px 0px;
	color: #666666;
}
.input_text_group img {
	padding: 3px 8px 0px 0px;
}
.pstl_button {
	padding: 10px 35px 10px 35px;
	border-radius: 10px;
	border: none;
	height: fit-content;
	background-color: var(--primary-main);
    color: var(--white);
    vertical-align:middle;
    box-shadow: 2px 2px 10px #4b4b4b37;
}
.pstl_button:hover {
	background-color: #007373;
    color: var(--primary-light);
}
.pstl_lg_button {
	padding: 10px 35px 10px 35px;
	border-radius: 10px;
	border: none;
	background-color: #13b4b3;
    color: var(--white);
    vertical-align:middle;
    box-shadow: 2px 2px 10px #4b4b4b37;
	width: 310px;
}
.pstl_lg_button:hover {
	background-color: #007373;
    color: var(--primary-light);
}
.pstl_cancel_button {
	padding: 10px 35px 10px 35px;
	border-radius: 10px;
	/* border: 1px solid #dc3b2c; */
	border: none;
	height: fit-content;
	background-color: #dc3b2c;
	color: #ffffff;
	vertical-align:middle;
	box-shadow: 2px 2px 10px #4b4b4b37;
}
.pstl_cancel_button:hover {
	background-color: rgba(220, 59, 44, 0.8);
}
.pstl_button img,
.pstl_lg_button img,
.pstl_sec_button img,
.pstl_receipt_download_button img {
	padding-left: 3px;
	padding-bottom: 3px;
}
.pstl_button i,
.pstl_lg_button i,
.pstl_sec_button i {
	padding-left: 3px;
	padding-bottom: 3px;
}
.mobile_dial_code {
	padding-bottom: 10px;
}
.boxFormModal {
	padding: 20px 0px 20px 0px;
}
.modal-center {
	top: 50% !important;
	transform: translateY(-50%) !important;
}
.otp_container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 10vh;
}
.otp_input {
	width: 60px;
	/* border: none;  */
	/* border-bottom: 3px solid rgba(0, 0, 0, 0.5);  */
	border: 1px solid var(--gray);
	color: #0cb8b6;
	/* margin: 0 10px; */
	text-align: center;
	font-size: 24px;
	cursor: not-allowed;
	pointer-events: none;
	cursor: pointer;
	pointer-events: all;
	border-radius: 5px;
}
.otp_input:focus {
	color: #0cb8b6;
	border: 3px solid #0cb8b6;
	outline: none;
}
.otp_input:nth-child(1) {
	cursor: pointer;
	pointer-events: all;
}
#timer {
	font-size: 18px;
	text-align: center;
	margin: 10px;
	color: black;
	text-decoration: underline;
}
/* Customize the progress element's appearance */
.pstl_progress_bar {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--dark-4); /* Light background color */
}

/* Style for WebKit-based browsers (Chrome, Safari) */
.pstl_progress_bar::-webkit-progress-bar {
    background-color: var(--dark-4); /* Background color */
}

.pstl_progress_bar::-webkit-progress-value {
    background-color: var(--primary-main); /* Filled part */
    border-radius: 10px; /* Rounded corners */
}

/* Style for Firefox */
.pstl_progress_bar::-moz-progress-bar {
    background-color: var(--primary-main); /* Filled part */
    border-radius: 10px;
}


.vertical-separator {
	border-left: 1px solid #ccc;
	height: 50px;
	margin: 0 20px;
}
.custom-number-input {
	background: #ffffff;
	width: 100px;
	text-align: center;
}
.button-container {
	position: relative;
	display: inline-block;
}
.invisible-button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	background-color: transparent;
	border: none;
}

.plus-minus-div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #bed6d3;
	border-radius: 10px;
	padding: 8px 15px 8px 15px;
}
.plus-minus {
	font-size: 20px;
	line-height: 1;
	user-select: none;
}

.pstl_back_btn {
	padding: 8px;
	background-color: white;
	border-radius: 8px;
}
.menuRight li a.sidemenu_link {
	color: var(--gray);
}
.menuRight li a.active {
	background-color: white;
	border-left: 3px solid var(--primary-main);
	color: var(--primary-main);
}
.menuRight li a.sidemenu_link:hover {
	background-color: white;
	color: var(--gray);
	border-left: 3px solid var(--primary-main);
}
/* .pstl_table {
    width: 100% !important;
} */


.pstl_table thead th {
	background-color: #c2f5f5;
	color: #344342;
	font-size: 13px;
	border: none !important;
	padding: 10px 8px 10px 8px;
}
.pstl_table tbody tr td {
	color: #344342;
	font-size: 13px;
	border: none !important;
	padding: 10px 8px 10px 8px;
}
.pstl_table .even {
	background-color: #f0f8f6;
}
.pstl_modal_close {
	position: absolute;
	border: none;
	background-color: transparent;
	top: -15px;
	right: -15px;
}
textarea {
	width: 100%;
	border: 1px solid #bed6d3;
	border-radius: 10px;
	padding: 8px 15px 8px 25px;
}

.pagination-container {
	display: flex;
	list-style-type: none;
	/* background-color: red; */
	/* border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);  */
	height: 8vh;
	width: 400px;
}
.pagination-item {
	padding: 0 8px;
	height: 32px;
	text-align: center;
	margin: auto 4px;
	color: #333333;
	display: flex;
	box-sizing: border-box;
	align-items: center;
	letter-spacing: 0.01071em;
	border-radius: 16px;
	line-height: 1.43;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: bold;
	min-width: 32px;
}
.selected {
	background-color: var(--primary-main);
}

.pagination-btn {
	color: #13b4b3;
}

.pstl_sec_button {
	padding: 10px 35px 10px 35px;
	border-radius: 10px;
	border: 1px solid #13b4b3;
	background-color: #ffffff;
	color: #13b4b3;
}
.pstl_sec_button:hover {
	background-color: var(--primary-main);
	color: var(--white);
}
/* category button */
.pstl_cate_button {
	padding: 10px 35px 10px 35px;
	border-radius: 10px;
	border: none;
	/* border: 1px solid #E2E2E2; */
	background-color: var(--dark-5);
	color: var(--gray);
}
.pstl_cate_button:hover {
	background-color: var(--primary-main);
	color: var(--white);
	border: none;
}
.pstl_cate_button.active {
	background-color: var(--primary-main);
	color: var(--white);
	border: none;
}
@media (max-width: 640px) {
	.pstl_cate_button {
	  padding: 12px; 
	}
  }
  
/* end category button */

.pstl_ter_button {
	padding: 10px 35px 10px 35px;
	border-radius: 10px;
	border: none;
	background-color: var(--primary-light);
	color: var(--primary-main);
}
.pstl_ter_button:hover {
	background-color: var(--primary-main);
	color: var(--white);
}

.pstl_bulk_timezone {
	background-color: rgba(19, 180, 179, 0.1);
	border: none;
	padding: 5px 20px 5px 20px;
	border-radius: 10px;
	color: #13b4b3;
}

.pstl_pricing {
	background-color: rgba(19, 180, 179, 0.1);
	border: none;
	padding: 5px 20px 5px 20px;
	border-radius: 10px;
	color: #13b4b3;
}

.pstl_receipt_download_button {
	background-color: rgba(19, 180, 179, 0.1);
	border: none;
	padding: 5px 20px 5px 20px;
	border-radius: 5px;
	color: #13b4b3;
}
.pstl_receipt_download_button:hover {
	background-color: rgba(19, 180, 179, 0.2);
	cursor: pointer;
}

.pstl_status_success {
	background-color: rgba(19, 180, 179, 0.1);
	border: none;
	padding: 5px 20px 5px 20px;
	border-radius: 10px;
	color: #13b4b3;
}
.pstl_status_warning {
	background-color: rgba(240, 173, 78, 0.1);
	border: none;
	padding: 5px 20px 5px 20px;
	border-radius: 10px;
	color: #f0ad4e;
}
.pstl_status_danger {
	background-color: rgba(217, 83, 79, 0.1);
	border: none;
	padding: 5px 20px 5px 20px;
	border-radius: 10px;
	color: #d9534f;
}

.col-center {
	text-align: center;
}

/*
    Calendar box
*/
/* --top: 509.75px
--left: 355.5px */

#ui-datepicker-div{
	border-radius: 8px !important;
	box-shadow: 0, 0, 10px gray !important;
	border: 1px solid var(--primary-main);
	box-shadow: 0px 0px 3px var(--primary-main) !important;
    /* top: 509.75px !important;
    left: 355.5px !important; */
	/* position: fixed !important;
    z-index: 1056 !important;
    display: block !important; */
}
.ui-datepicker {
	background-color: var(--white) !important;
	box-shadow: none !important;
	/* border-width: 3px !important;
    border-color: #E8F1F1 !important; */
}
.ui-datepicker-calendar {
	background-color: var(--white) !important;
	border-radius: 8px !important;
}
.ui-datepicker-header {
	background-color: var(--white) !important;
}
.ui-datepicker-title {
	color: var(--dark-2) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
}
.ui-datepicker-next {
	color: var(--dark-2) !important;
	box-shadow: none !important;
	background-color: var(--white) !important;
}
.ui-datepicker-prev {
	color: var(--dark-2) !important;
	box-shadow: none !important;
	background-color: var(--white) !important;
}
.ui-datepicker-calendar thead th span {
	color: var(--dark-2) !important;
}

a.ui-state-default.ui-state-active {
	background-color: var(--primary-main);
	color: var(--white);
}

.meanmenu-reveal.meanclose{
	content: '' !important;
	visibility: hidden !important;
	color: #000 !important;
    /* position: relative !important; */
}
.meanmenu-reveal.meanclose::after{
	visibility: visible !important;
    content: '\d7' !important;
    color: #073836 !important;
    top: 0 !important;
    right: 0 !important;
    font-size: 35px;
    font-weight: 100;
    font-family: sans-serif;
    display: ruby-text;
}

/* .ui-datepicker-calendar td a, .ui-datepicker-calendar td span{
	background-color: var(--primary-main);
} */
.ui-datepicker-calendar td a:hover, .ui-datepicker-calendar td span:hover{
	background-color: var(--primary-main);
	color: var(--white);
}

/*
* slot date box
*/
.date-box {
	background-color: #f5f5f7;
	border-radius: 10px;
}

.pstl_ilus_md {
	width: 240px;
	height: 240px;
}

.pstl_approve_btn {
	padding: 3px 7px 5px 7px;
	border-radius: 5px;
	border: none;
	height: fit-content;
	background-color: #13b4b3;
	color: #ffffff;
}

.pstl_reject_btn {
	padding: 3px 7px 5px 7px;
	border-radius: 5px;
	border: none;
	height: fit-content;
	background-color: #dc3b2c;
	color: #ffffff;
}

.pstl_diagnosis_item {
	width: 320px;
	height: fit-content;
	border: 1px solid #e2e2e2;
	border-radius: 50px;
	padding: 5px 0px 5px 0px;
	cursor: pointer;
	margin-bottom: 15px;
}
.pstl_diagnosis_item p {
	color: #000;
}

.pstl_diagnosis_item:hover {
	width: 320px;
	height: fit-content;
	background-color: #13b4b3;
	border: 1px solid #13b4b3;
	border-radius: 50px;
	padding: 5px 0px 5px 0px;
	cursor: pointer;
	margin-bottom: 15px;
}
.pstl_diagnosis_item:hover p {
	color: #fff;
}

.pstl_diagnosis_item_active {
	width: 320px;
	height: fit-content;
	background-color: #13b4b3;
	border: 1px solid #13b4b3;
	border-radius: 50px;
	padding: 5px 0px 5px 0px;
	cursor: pointer;
	margin-bottom: 15px;
}
.pstl_diagnosis_item_active p {
	color: #fff;
}

.recommend_img {
	cursor: pointer;
}

.img_container {
	position: relative;
	width: 100%;
}
.video-container {
	border-radius: 10px;
	overflow: hidden;
	object-fit: cover;
}
#therapist_video_modal_video {
	border-radius: 10px !important;
}

.img_container .play_btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	/* background-color: #555; */
	color: #13b4b3;
	font-size: 50px;
	border: none;
	cursor: pointer;
	/* border-radius: 5px; */
}

.exclusive-promo-card {
	cursor: pointer;
	border-radius: 10px;
}

.exclusive-promo-card:hover {
	box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

/* Datepicker from main.css */
/* jQuery UI Datepicker moving pixels fix */
table.ui-datepicker-calendar {
	border-collapse: separate;
}
.ui-datepicker-calendar td {
	border: 1px solid transparent;
}

/* jQuery UI Datepicker hide datepicker helper */
#ui-datepicker-div {
	display: none;
}

/* jQuery UI Datepicker emphasis on selected dates */
.ui-datepicker .ui-datepicker-calendar .ui-state-highlight a {
	background: #31c2c0 none;
	color: white;
}
.ui-datepicker-calendar {
	width: 100%;
	text-align: center;
}
.ui-datepicker-header {
	position: relative;
	background-color: #e1faf9;
	border-radius: 10px;
	padding: 10px 10px;
	margin-bottom: 15px;
}
.ui-datepicker-calendar {
	font-size: 12px;
	font-weight: 500;
}
.ui-datepicker-calendar td a,
.ui-datepicker-calendar td span {
	width: 30px;
	height: 30px;
	color: #333333;
	line-height: 30px;
	display: block;
	border-radius: 50%;
	text-align: center;
}
.ui-datepicker-calendar td a.ui-state-highlight {
	border: 1px solid var(--primary-main) !important;
}

.ui-datepicker-calendar td.ui-datepicker-unselectable.ui-state-disabled span.ui-state-default {
	color: #eaeaea !important;
}

.ui-datepicker-calendar td.ui-datepicker-unselectable.ui-state-disabled span.ui-state-default:hover {
	cursor: not-allowed;
}

.ui-datepicker-calendar thead th span {
	width: 30px;
	height: 30px;
	color: #0cb8b6;
	list-style: 30px;
	display: block;
	border-radius: 50%;
	text-transform: uppercase;
	text-align: center;
}
/* .ui-datepicker-calendar td a.ui-state-active{
    background-color: #0cb8b6;
    color: #FFF;
    font-weight: bold;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2); 
} */
.ui-datepicker .ui-datepicker-title {
	text-align: center;
	color: #0cb8b6;
	font-weight: 700;
	text-transform: uppercase;
	font-size: 12px;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 50%;
	border-radius: 50%;
	width: 25px;
	cursor: pointer;
	height: 25px;
	transform: translateY(-50%);
	background-color: #fff;
	z-index: 1;
	font-size: 0px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.ui-datepicker .ui-datepicker-prev {
	left: 10px;
}
.ui-datepicker .ui-datepicker-next {
	right: 10px;
}

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
	content: "";
	top: 50%;
	left: 50%;
	border-radius: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
	position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	top: 50%;
	left: 50%;
	font-size: 10px;
	transform: translate(-50%, -50%);
	position: absolute;
}
.ui-datepicker .ui-datepicker-prev:before {
	content: "\f053";
}
.ui-datepicker .ui-datepicker-next:before {
	content: "\f054";
}

/* Loading from main.css */
.loading-btn {
	font-size: 0px !important;
	cursor: not-allowed !important;
	pointer-events: none;
}
.loading-btn:before {
	content: "\f2f1";
	font-size: 15px;
	margin-left: 5px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	animation: loading 0.9s infinite linear;
	-webkit-animation: loading 0.9s infinite linear;
}
.loading-btn:after {
	content: "Loading...";
	display: inline-block;
	font-size: 14px;
}
.loading-btn .loading {
	animation: loading 0.9s infinite linear;
	-webkit-animation: loading 0.9s infinite linear;
}
@-webkit-keyframes loading {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes loading {
	from {
		transform: scale(1) rotate(0deg);
	}
	to {
		transform: scale(1) rotate(360deg);
	}
}


/* Join as specialist start */

.eoi_container{
    /* padding: 30px 0px; */
    margin-top: 50px;
}

.bg-1{
   background-color: #F1F8F8;
}

.bg-2 {
    background-image: url(../images/banner/doctors.png);
}

.eoi_container .career {
    margin-bottom: 2px;
    font-weight: 700;
}

.eoi_container p {
    font-size: 16px;
    font-weight: 400;
}

.joinWithArea {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 70px 60px;
}

.joinWithArea .join-content-card {
    /* width: 300px; */
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); 
    /* margin-top: 200px;
    margin-bottom: 200px; */
    margin-left: 30px;
}

.joinWithArea .join-content-card h2 {
    font-size: 40px;
    line-height: 56px;
    /* font-weight: 700px; */
}

.joinWithArea .join-content-card span {
    font-size: 42px;
    line-height: 56px;
    font-weight: 700px;
    color: #13B4B3;
}

.whatWeLookFor {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;      
    padding: 70px 60px;
}

.whatWeLookFor h2 {
    font-size: 36px;
    font-weight: 700;
    color: #13B4B3;
}

.benefitsOfJoining {
    padding: 70px 60px;
}

.benefitsOfJoining h2 {
    font-size: 36px;
    font-weight: 700;
    color: #13B4B3;
}

.benefitsOfJoining p {
    padding: 0px 100px;
}

.benefitsOfJoining .first-row {
    margin-bottom: 30px;
}

.custom-list {
    list-style-type: none;
}

.custom-list li {
    margin-bottom: 10px;
    margin-left: 30px; /* Adjust as needed to accommodate the image */
    position: relative; 
}

.custom-list li img {
    position: absolute; /* Position the image absolutely within the list item */
    left: -30px; /* Adjust as needed to align the image */
    top: 0;
}

ul.list{
    margin-bottom: 50px;
}
ul.list li{
    position: relative;
    padding-left: 30px;
}
ul.list li + li{
    margin-top: 14px;
}
ul.list li:before{
    position: absolute;
    content: "\f0ff";
    left: 0px;
    top: 0px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #0cb8b6;
}

.benefits-card {
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0px 15px 40px rgba(22, 8, 49, 0.1); /* Adjust shadow as needed */
    background: linear-gradient(to right, #E4FFFF, #F7FFFF); 
    color: #ffffff;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.benefits-card img{
    margin-bottom: 10px;
    width: 40px; 
    height: 40px;
}

.benefits-card p{
    padding-left: 10px;
    padding-right: 10px;
}

.testimonials-area {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;      
    padding: 70px 60px;
}

.testimonials-area h2 {
    font-size: 36px;
    font-weight: 700;
    color: #13B4B3;
}

#expressionForm .group-span-filestyle{
    position: absolute;
    right: 0px;
    top: 8px;
}

#expressionForm .group-span-filestyle .btn{
    right: 9px;
    z-index: 1;
    width: 32px;
    height: 30px;
    color: #FFF;
    line-height: 32px;
    min-width: inherit;
    border-radius: 5px;
    padding: 0px;
    font-size: 12px;
    background-color: #0cb8b6;
}
#expressionForm .group-span-filestyle .btn i{
    font-size: 14px;
}

#expressionForm .btnClose.closeSlot{
    font-size: 11px;
    width: 20px;
    height: 20px;
    right: -7px;
    top: -8px;
    padding: 0px;
    border:none;
    line-height: 21px;
}
#expressionForm .btnCloseUpload{
    padding: 0px;
    border:none;
    width: 20px;
    border-radius: 50% !important;
    height: 20px;
    font-size: 11px;
    border-radius: 15px;
    line-height: 20px;
    text-align: center;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}

#expressionForm .btnClose.closeSlot:hover{
    color: #FFF;
}

#expressionForm .group-span-filestyle i{
    z-index: 999;
    padding: 10px;
}

#expressionForm .input_mobile_group .iti__selected-flag{
    width: 100px;
    top:0px;
    padding: 0px;
}
#expressionForm .iti__flag-container{
    position: absolute;
}
#expressionForm .input_mobile_group input{
    padding-left: 96px !important;
    outline: none;
    border: none;
    width: 100%;
}

.modal-content .btnClose,
.btnClose, button .btnClose {
	position: absolute !important;
	right: 15px !important;
	top: 15px !important;
	z-index: 100 !important;
	text-align: center !important;
	color: var(--gray) !important;
	width: 35px !important;
	height: 35px !important;
	font-weight: bold !important;
	line-height: 28px !important;
	border-radius: 50% !important;
	background-color: transparent !important;
	border: none !important;
	background-color: #ffffffc4 !important;
	box-shadow: 0 0 10px 5px var(--white) !important;
}
.btnClose .fa-times {
	font-size: 24px !important;
}

/* footer area start */

.footer-new {
    bottom: 0px;
    width: 100%;
    line-height: 60px;
}

.footer-area-new {
    background-color: rgba(7, 56, 54, 1);
}

.logo-area-new {
    margin-bottom: 30px;
    padding-right: 60px;
    margin-right: 10px;
}
.logo-area-new img {
    margin-bottom: 30px;
}

.logo-area-new p {
    color: #ffffff;
    font-size: small;
    margin-bottom: 30px;
}
/* .logo-area-new .newsletter-form {
    position: relative;
} */

.logo-area-new .newsletter-form .email-input{
    position: relative;
}

.logo-area-new .newsletter-form .form-control {
    height: 53px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

/* .logo-area-new .newsletter-form .error .form-control {
    background-color: transparent;
    color: #ffffff;
} */

#newletter-form .error .form-control, .error.form-control{
    border-color: red !important;
    /* width: 100%; */
    background-color: transparent !important;
}

.logo-area-new .newsletter-form .default-btn {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 10px;
    height: 100%;
    display: flex;
    align-items: center;
} 

.logo-area-new .newsletter-form .default-btn::before {
    border-radius: 10px;
}

.logo-area-new .newsletter-form .validation-danger {
    color: #e96060;
    margin-top: 10px;
}

.contactWUs-new {
    margin-bottom: 20px;
}
  
.contactWUs-new h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}
  
.contactWUs-new .social-content {
    text-align: left;
}
  
.contactWUs-new .social-content ul {
    padding-left: 0;
    margin-bottom: 0;
}
  
.contactWUs-new .social-content ul li {
    display: inline-block;
    margin-right: 10px;
}
  
.contactWUs-new .social-content ul li:last-child {
    margin-right: 0;
}
  
.contactWUs-new .social-content ul li span {
    color: #ffffff;
}
  
.contactWUs-new .social-content ul li a {
    color: white;
    font-size: 25px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.contactWUs-new .social-content ul li a:hover {
    color: #0cb8b6;
}

.quick-link-new {
    margin-bottom: 20px;
}

.quick-link-new h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.quick-link-new ul {
    padding-left: 0;
    margin-bottom: 0;
}
  
.quick-link-new ul li {
    list-style-type: none;
    position: relative;
    padding-left: 20px;
    padding-top: 15px;
    /* margin-bottom: 13px; */
}
  
.quick-link-new ul li i {
    position: absolute;
    left: 0;
    top: 0;
    color: #cacaca;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
  
.quick-link-new ul li p {
    color: #cacaca;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
  
.quick-link-new ul li:last-child {
    margin-bottom: 0;
}
  
.quick-link-new ul li:hover i {
    color: #0cb8b6;
}
  
.quick-link-new ul li:hover p {
    color: #0cb8b6;
}

.copyright-new {
    background: rgba(19, 180, 179, 1);
    padding: 10px 0;
}

.copyright-new .copy p {
    color: rgba(255, 255, 255, 1);
    text-align: center;
}

.copyright-new .copy p a {
    color: #0cb8b6;
}

/* footer area end */

/* header area start */

.siteHeader .navbar{
    display: flex;
    justify-content: space-between;
}

.siteHeader .navbar .button{
    order: 2;
}
/* header area end */

.others-options .btn {
    text-transform: none;
}

.new_testimonials {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;      
    padding: 70px 0px;
}

.new_testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    color: #13B4B3;
}

.new_testimonials .career {
    margin-bottom: 2px;
    font-weight: 700;
}

.new_testimonials .owl-carousel .item {
    background-color: #ffffff; 
    padding: 60px 40px; 
    margin: 30px 10px;
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.new_testimonials .owl-carousel .item {
    background-color: #ffffff; 
    padding: 60px 40px; 
    margin: 30px 10px;
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.new_testimonials .owl-carousel .item p{
    padding: 10px 15px; 
}

.new_testimonials .owl-carousel .item span{
    padding: 10px 15px; 
    /* font-size: 60px; */
    font-weight: 1000;
}

.new_testimonials .right-icon{
    position: absolute;
    right: 12px;
    bottom: -10px;
    font-size: 60px;
    font-weight: 500;
    color: #1DAAA9;
}

.new_testimonials .left-icon{
    position: absolute;
    left: 12px;
    top: -10px;
    font-size: 60px;
    font-weight: 500;
    color: #1DAAA9;
}

.thankyou-modal{
    padding: 30px 100px;
}

.thankyou-modal p{
    padding: 0px 100px;
}

@media only screen and (min-width: 1025px) and (max-width: 1250px) {
    .joinWithArea .join-content-card .pstl_btn {
        padding: 10px;
    }
}

@media only screen and (min-width: 821px) and (max-width: 1024px) {
    .joinWithArea {
        padding: 70px 40px;
    }

    .joinWithArea .join-content-card {
        margin-left: 0px;
        padding: 40px 30px;
    }

    .joinWithArea .join-content-card .pstl_btn {
        padding: 10px;
    }

    .whatWeLookFor {
        padding: 70px 40px;
    }

    .benefitsOfJoining {
        padding: 70px 40px;
    }
    
}

@media only screen and (min-width: 820px) and (max-width: 991px) {
    .benefitsOfJoining .first-row {
        margin-bottom: 0px;
    }
}

@media only screen and (min-width: 601px) and (max-width: 820px) {
    .joinWithArea {
        padding: 70px 50px;
    }

    .joinWithArea .join-content-card {
        margin-left: 0px;
        padding: 40px 30px;
    }

    .whatWeLookFor {
        padding: 70px 50px;
    }

    .benefitsOfJoining {
        padding: 70px 50px;
    }

    .benefitsOfJoining p {
        padding: 0px 40px;
    }

    .benefitsOfJoining .first-row {
        margin-bottom: 0px;
    }

    .thankyou-modal{
        padding: 20px 50px;
    }
}

@media only screen and (max-width: 600px) {
    .joinWithArea {
        padding: 70px 20px;
    }

    .joinWithArea .join-content-card {
        margin-left: 0px;
        padding: 30px 20px;
    }

    .whatWeLookFor {
        padding: 70px 20px;
    }

    .benefitsOfJoining {
        padding: 70px 20px;
    }

    .benefitsOfJoining p {
        padding: 0px 10px;
    }

    .benefitsOfJoining .first-row {
        margin-bottom: 0px;
    }

    .thankyou-modal p{
        padding: 0px 40px;
    }
}

@media only screen and (max-width: 300px) {

    .joinWithArea .join-content-card h2 {
        font-size: 36px;
        line-height: 50px;
    }

    .joinWithArea .join-content-card span {
        font-size: 36px;
        line-height: 50px;
    }

    .thankyou-modal p{
        padding: 0px 10px;
    }
}
/* join as specialist end */

/* onboarding form start */

#onBoardingForm .dropzone-custom {
    display: flex;
    justify-content: center; 
    align-items: center;
}

@media only screen and (max-width: 991px) {
    #onBoardingForm #upload-img{
        margin-top: 20px;
    }

    #onBoardingForm #OnboardingVerify{
        margin: 10px 0px;
    }

    #onBoardingForm #OnboardingSend{
        margin: 10px 0px;
    }
}

.partner_logo_container{
	padding: 20px;
	background-color: var(--white);
	border-radius: 8px;
	height: 120px;
	width: 120px;
	justify-content: center;
	align-items: center;
	display: flex;
}

@media only screen and (max-width: 500px) {
    .partner_logo_container {
        height: 90px;  /* Smaller height for mobile */
        width: 90px;   /* Smaller width for mobile */
        padding: 10px; /* Reduced padding for mobile */
    }
}



.partner_logo_container img{
	object-fit: cover;
	margin: auto;
}

.partner_promo_card{
	padding: 40px;
	background: rgb(3,149,148);
	background: linear-gradient(126deg, rgba(3,149,148,1) 0%, rgba(17,160,159,1) 45%, rgba(57,195,194,1) 100%);
	border-radius: 8px;
	width: 100%;
	/* height: 414px; */
}
.partner_promo_card.secondary{
	background: rgb(198,182,105);
	background: linear-gradient(320deg, rgba(198,182,105,1) 0%, rgba(169,144,78,1) 45%, rgba(149,130,81,1) 100%);
}
.partner_promo_card img{
	object-fit: cover;
	margin-bottom: -40px;
}
.review_box {
	border: 1px solid #C2F5F5; 
	border-radius: 10px; 
	background-color: #fff; 
	padding: 20px;
}

/* onboarding form end */

/* Shop */

  .card-category {
	/* width: 500px; */
	height: 210px;
	padding: 20px;
	border-radius: 20px;
	background-color: var(--primary-main);
	background-repeat: no-repeat;
	background-position: bottom right;
	/* background-size: 150px 150px;  */
	position: relative;
	overflow: hidden;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
	margin-bottom: 10px;
	z-index: 1;
  }
  
  .card-content-category h5 {
	/* font-size: 28px; */
	color: var(--white);
	margin: 0 0 10px 0;
  }
  
  .card-content-category p {
	font-size: 18px;
	color: var(--white);
	margin: 0 0 20px 0;
  }
  
  .explore-link-category{
	color: var(--white);
	background-color: var(--primary-main);
	padding: 8px 10px;
	border-radius: 10px;
	font-weight:700;
	border: 1px solid var(--white);
   }
   .explore-link-category:hover{
	color: var(--primary-main);
	background-color: var(--white);
   }

  
/* Apply an overlay background to the last card-category */
.row .card-item-category:last-child .card-category {
	color: white; /* Keep text color for contrast */
  }
  
  /* Create the overlay effect for the last card */
  .row .card-item-category:last-child .card-category::after {
	content: "";
	position: absolute; /* Overlay must be positioned absolutely */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(244, 255, 250, 0.649); /* Yellow overlay with some transparency */
	border-radius: 20px; /* Match the card's border radius */
	z-index: 1; /* Position it above the card background but below the content */
  }
  
  /* Ensure content is above the overlay */
  .row .card-item-category:last-child .card-content-category {
	position: relative; /* Ensure content is positioned correctly */
	z-index: 2; /* Position content above the overlay */
  }

  .row .card-item-category:last-child .card-content-category h5,
  .row .card-item-category:last-child .card-content-category p {
    color: var(--dark-1); /* Ensure text inside the last card is readable */
  }
  .row .card-item-category:last-child .card-content-category .explore-link-category{
	border: none;
  }

  .purchaseListContainer{
    padding: 30px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.purchaseItem{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.purchaseItemImageContainer{
    position: relative;
}

.purchaseItemImage{
    width: 100%;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.purchaseItemIndex{
    color: white;
    background-color: #13B4B3;
    font-weight: bold;
    font-size: calc(18/16 * 1rem);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* End Shop */

/* Prescription start */
.no-additional-note {
	background-color: #F9F9F9;
	border: 1px dashed #BED6D3;
	border-radius: 10px;
	padding: 30px 0px 30px 0px;
}
/* Prescription end */

.remove-decoration,
.remove-decoration:hover {
	text-decoration: inherit;
	color: inherit;
	background-color: #ffffffb8;
	padding: 4px 4px;
	border-radius: 2px;
	  
}

.alertWhatsapp {
	position: fixed !important; /* Fixed/sticky position */
	bottom: 10px; /* Place the button at the bottom of the page */
	right: 140px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */

	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 7px 10px; /* Some padding */
	font-size: smaller;
	/* background-color: #f6f7f5; */
	/* display: inline-block; */
}

.alertWhatsappWithFilter {
	position: fixed !important; /* Fixed/sticky position */
	bottom: 60px; /* Place the button at the bottom of the page */
	right: 140px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */

	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 7px 10px; /* Some padding */
	font-size: smaller;
	background-color: #f6f7f5;
	/* display: inline-block; */
}

.btnWhatsapp {
	position: fixed !important; /* Fixed/sticky position */
	bottom: -5px; /* Place the button at the bottom of the page */
	right: 60px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */

	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	/* display: inline-block; */
}

.btnWhatsappWithFilter {
	position: fixed !important; /* Fixed/sticky position */
	bottom: -5px; /* Place the button at the bottom of the page */
	right: 60px; /* Place the button 30px from the right */
	z-index: 99; /* Make sure it does not overlap */

	cursor: pointer; /* Add a mouse pointer on hover */
	padding: 15px; /* Some padding */
	/* display: inline-block; */
}

.dataTables_scrollBody{
	min-height: 180px;
}

/* app launch */

.app-area .app-content {
	padding: 40px 20px;
  }

.signed-up-pill {
	display: inline-block;
	background-color: white;
	color: #073836;
	border: 2px solid #13B4B3;
	border-radius: 50px;
	padding: 10px 20px;
	font-size: 16px;
	text-align: center;
  }

  .sticky-top{
	z-index: 90;
  }



.add-more-btn {
	text-align: center;
	width: 100%;
	padding: 10px 20px;
	border: 1px solid var(--primary-main);
	border-radius: 10px;
	background-color: transparent;
	color: var(--primary-main);
}

.add-more-btn:hover {
	text-align: center;
	width: 100%;
	padding: 10px 20px;
	border: 1px solid var(--primary-main);
	border-radius: 10px;
	background-color: var(--primary-main);
	color: var(--white);
	cursor: pointer;
}


.remove-row-btn {
	padding: 0 10px;
	background-color: #FFEFEA;
	display: flex;
	align-items: center;
	cursor: pointer;
	border-radius: 0px 10px 10px 0px;
}

.back-btn {
	font-size: 16px; 
	font-weight: 600; 
	color: #073836;
	border-radius: 10px;
	padding: 10px 35px 10px 35px;
	border: none;
}

.back-btn:hover {
	font-size: 16px; 
	font-weight: 600; 
	color: var(--primary-main);
	background-color: var(--dark-x);
}
.back-btn+i { 
	color: #073836;
}

.tg-dialog-body{
	color: var(--gray);
}
.tg-dialog .tg-dialog-header .tg-dialog-title{
	font-family: "Roobert" !important;
}
.tg-dialog .tg-dialog-footer button.tg-dialog-btn{
	border-radius: 10px !important;
	border: none !important;
}

.tg-dialog .tg-dialog-dots>span.tg-dot.tg-dot-active{
	background: var(--primary-main) !important;
}
.tg-dialog .tg-dialog-footer button.tg-dialog-btn#tg-dialog-next-btn {
	background-color: var(--primary-main) !important;
	color: var(--white) !important;
}
.tg-dialog .tg-dialog-footer button.tg-dialog-btn#tg-dialog-next-btn:hover {
	background-color: var(--dark-4) !important;
	color: var(--primary-main) !important;
	cursor:pointer !important;
}

.tg-backdrop{
	box-shadow: rgba(0, 49, 41, 0.849) 0 0 0 1000vh !important;
	border: 2px solid var(--primary-main) !important;
	border-radius: 15px !important;
}

.row-div {
	margin: 16px 0;
	background-color: #F9F9F9;
	border: 1px solid #E2E2E2;
	border-radius: 10px;
	display: flex;
}


/* input[type="date"] {
	padding: 0px 5px;
	height: auto;
} */


.container_close{
	position: absolute;
	right: 5px;
	top: 5px;
	z-index: 10;
	text-align: center;
	color: #fff;
	line-height: 28px;
	border: none;
  	background-color: transparent;
}

/* datatable */

.dataTables_wrapper .dt-buttons{
	margin-bottom: 0;
	text-align: right;
	position: absolute;
	right: 230px;
	width: auto;
	top: 0px;
}
.dataTables_wrapper .dt-buttons .dt-button {
	margin-left:5px;
}
.dataTable {
	font-size: 14px;
}
.table .thead-light th{
	background-color: #f5f5fd;
	border-color: #f5f5fd;
}
.dataTables_paginate{
	/* background-color: #FFF;
	border-radius: 40px;
	padding: 8px;
	display: table;
	margin: 20px auto 25px auto !important;
	box-shadow: 0px 0px 30px rgb(0 0 0 / 12%);
	float: none !important; */
	/* margin-top: 35px; */
	float:right;
}

html body .dataTables_wrapper .dataTables_paginate .paginate_button{
	display: inline-block;
	top:0px !important;
	cursor: pointer;
}
    
html body .dataTables_wrapper .dataTables_paginate .paginate_button.previous, html body .dataTables_wrapper .dataTables_paginate .paginate_button.next {
	border: none !important;
	/* color: var(--primary); */
	color: #0cb8b6;
	font-size: 0px !important;
	width: 40px;
	position: relative;
	height: 40px;
	padding: 0px;
	top:0px;
	line-height: 40px;
	font-weight: bold;
	text-align: center;
	padding-top: 4px !important;
	/* border-radius: 50% !important;
	background: #e5fffe !important; */
}

html body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled, html body .dataTables_wrapper .dataTables_paginate .paginate_button.disabled{
	display: inline-block;
} 

html body .dataTables_wrapper .dataTables_paginate .paginate_button.previous{
	margin-right: 8px !important;
}
html body .dataTables_wrapper .dataTables_paginate .paginate_button.next{
	margin-left: 8px !important;
}
html body .paginate_button.previous:after, html body .paginate_button.next:after{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	top:50%;
	/* color: var(--primary); */
	color: #0cb8b6;
	left: 50%;
	font-size: 15px !important;
	transform: translate(-50%,-50%);
	position: absolute;
}
html body .paginate_button.previous:after{
	content: "\f053";
}
html body .paginate_button.next:after{
	content: "\f054";
}
.table  th:first-child {
	border-radius: 10px 0px 0px 10px !important;
}
.table  th:last-child {
	border-radius: 0px 10px 10px 0px !important;
}
.table  th {
	color: var(--primary) !important;
	border: none !important;
	background-color: #e5fffe !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover, .dataTables_wrapper .dataTables_paginate .paginate_button{
	border:none !important;
	/* color: var(--primary) !important; */
	color: #31c2c0 !important;
	font-size: 14px;
	width: 40px;
	height: 40px;
	position: relative;
	top:4px;
	padding: 0px !important;
	padding: 0px;
	line-height: 40px;
	font-weight: bold;
	text-align: center;
	background: transparent !important;
	border-radius: 50% !important;
}
html body .dataTables_wrapper .dataTables_paginate .paginate_button.current, html body .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
	/* color: var(--primary) !important; */

	color: #FFF !important;
	background-color: #31c2c0 !important;
}

html body .dataTables_wrapper .dataTables_paginate .paginate_button:hover{
	color: #31c2c0 !important;
	box-shadow: none !important;
	background-color: transparent !important;
}
.dataTables_paginate .paginate_button.first, .dataTables_paginate .paginate_button.last{
	display: none !important;
}
/* html body .dataTables_wrapper .dataTables_paginate .paginate_button:hover{
	color: var(--primary) !important;
} */
.dataTables_wrapper .dataTables_info{
	text-align: center;
	display: table;
	margin: 0 auto;
	float: none !important;
	padding-top: 25px !important;
	margin-bottom: 20px;
	/* display: none; */
}
.dataTables_length label{
	margin-bottom: 20px !important;
}
table.dataTable button.btn {
	padding-left: 10px;
	padding-right: 10px;
	min-width: 60px;
	/* height: 30px; */
	line-height: 15px;
	font-size: 14px;
	letter-spacing: 0.2px;
}
html body table.dataTable.no-footer{
	border-bottom: 1px solid #d6d6d6;
}
table.dataTable tbody tr:first-child td{
	border-top:none;
}
table.dataTable td{
	vertical-align: middle;
}
table.dataTable tbody th, table.dataTable tbody td{
	/* padding: 8px 18px !important; */
	padding: 8px 18px;
}
.dataTables_wrapper .dataTables_length select{
	margin: 0 8px;
}
.dataTables_wrapper .dataTables_filter input{
	margin-left: 10px;
}


html body .dataTables_filter input[type="search"]{
	font-size: 14px;
	margin: 0px;
	color: #333333;
	padding: 11px 18px;
	padding-left: 40px;
	border-radius: 5px;
	/* background-color: #F9F9F9; */
	background-color: #FFF;
	border: 1px solid #E9E9E9;
	font-weight: 400;
	width: 100%;
	position: relative;
	line-height: 1.5;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
html body .dataTables_filter input[type="search"]:focus{
	/* border-color: var(--primary); */
	background-color: #FFF;
	z-index: 1;
	/* box-shadow: 0px 0px 30px rgb(136 140 196 / 40%); */
}
html body .dataTables_filter label{
	font-size: 0px;
	display: block;
	position: relative;
	margin-bottom: 20px;
}
html body .dataTables_filter label:before{
	/* right: 4px; */
	top: 6px;
	cursor: pointer;
	position: absolute;
	min-width: 37px;
	z-index: 2;
	/* border-radius: 5px; */
	height: 33px;
	/* color: #FFF; */
	line-height: 33px;
	font-size: 14px;
	padding: 0px 15px;
	/* background-color:var(--primary); */
	/* box-shadow: 0px 3px 10px rgb(0 0 0 / 20%); */
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f002";
}
html body .dataTables_filter label:after{
	/* content: "Search"; */
	/* left: 20px; */
	left: 40px;
	top: 12px;
	opacity: 0.8;
	position: absolute;
	font-size: 14px;
}

table.dataTable thead .sorting_disabled.sorting_asc{
	background-image: none !important;
}
.dataTables_wrapper .dataTables_length select{
	/* background-color: #F9F9F9 !important; */
	border: 1px solid #E9E9E9 !important;
	padding: 10px 10px !important;
	border-radius: 5px !important;
	height: 45px !important;
	width: 70px;
	display: inline;
}

table.dataTable button.btn{
	height: 30px !important;
	padding: 0px 10px;
	line-height: 1;
	font-size: 14px;
	white-space: pre;
}

.dataTables_wrapper .dt-buttons .download{
	height: 45px;
	margin: 0px !important;
}

.tableBox .table{
	margin-left: 0px;
	margin-right: 0px;
}
table.dataTable thead th, table.dataTable tfoot th{
	font-size: 13px !important;
	font-weight: 600 !important;
}
#dataTableForWalletLedger{
	width: 100% !important;
}
#dataTableForWalletLedger tbody tr td:nth-child(4) {
	max-width: 75px !important;
	word-wrap: break-word;
	font-size: 12px;
	white-space: normal !important;
}

/* for edit/deactivate option buttons on datatable */

.action-buttons {
	display: none; 
	position: absolute;
	z-index: 1000;
}

.action-buttons button {
	display: block;
	width: 100%; 
	margin-bottom: 0.5px;
	padding: 14px 24px; 
	border: 0.5px solid #F1F5F5; 
	background-color: #FFFFFF; 
	color: #333; 
	cursor: pointer;
	text-align: left;
	font-size: 13px;
}

.action-buttons button:hover {
	background-color: #e0e0e0; 
}

.action-icon {
	cursor: pointer;
}

/* for option buttons on datatable */

.profile-box{
	background: #F9F9F9;
	border: 1px solid #E2E2E2; 
	border-radius: 10px; 
	padding: 20px;
}
/* for program */
.input-group {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
  }
  .input-group > .custom-file,
  .input-group > .custom-select,
  .input-group > .form-control,
  .input-group > .form-control-plaintext {
	position: relative;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	margin-bottom: 0;
  }
  .input-group > .custom-file + .custom-file,
  .input-group > .custom-file + .custom-select,
  .input-group > .custom-file + .form-control,
  .input-group > .custom-select + .custom-file,
  .input-group > .custom-select + .custom-select,
  .input-group > .custom-select + .form-control,
  .input-group > .form-control + .custom-file,
  .input-group > .form-control + .custom-select,
  .input-group > .form-control + .form-control,
  .input-group > .form-control-plaintext + .custom-file,
  .input-group > .form-control-plaintext + .custom-select,
  .input-group > .form-control-plaintext + .form-control {
	margin-left: -1px;
  }
  .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
  .input-group > .custom-select:focus,
  .input-group > .form-control:focus {
	z-index: 3;
  }
  .input-group > .custom-file .custom-file-input:focus {
	z-index: 4;
  }
  .input-group > .custom-select:not(:first-child),
  .input-group > .form-control:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
  }
  .input-group > .custom-file {
	display: flex;
	align-items: center;
  }
  .input-group > .custom-file:not(:first-child) .custom-file-label,
  .input-group > .custom-file:not(:last-child) .custom-file-label {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
  }
  .input-group:not(.has-validation)
	> .custom-file:not(:last-child)
	.custom-file-label::after,
  .input-group:not(.has-validation) > .custom-select:not(:last-child),
  .input-group:not(.has-validation) > .form-control:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
  }
  .input-group.has-validation
	> .custom-file:nth-last-child(n + 3)
	.custom-file-label::after,
  .input-group.has-validation > .custom-select:nth-last-child(n + 3),
  .input-group.has-validation > .form-control:nth-last-child(n + 3) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
  }
  
.input-group-append,
.input-group-prepend {
  display: flex;
}
.input-group-append .btn,
.input-group-prepend .btn {
  position: relative;
  z-index: 2;
}
.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
  z-index: 3;
}
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px;
}
.input-group-prepend {
  margin-right: -1px;
}
.input-group-append {
  margin-left: -1px;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6e707e;
  text-align: center;
  white-space: nowrap;
  background-color: #eaecf4;
  border: 1px solid #d1d3e2;
  border-radius: 0.35rem;
}
.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
  margin-top: 0;
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control:not(textarea) {
  height: calc(1.5em + 1rem + 2px);
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control:not(textarea) {
  height: calc(1.5em + 0.5rem + 2px);
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation
  > .input-group-append:nth-last-child(n + 3)
  > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation)
  > .input-group-append:not(:last-child)
  > .input-group-text,
.input-group
  > .input-group-append:last-child
  > .btn:not(:last-child):not(.dropdown-toggle),
.input-group
  > .input-group-append:last-child
  > .input-group-text:not(:last-child),
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group
  > .input-group-prepend:first-child
  > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* for program */

/* for promotion */

.gradient-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 35%;
	background: linear-gradient(to top, rgba(29, 170, 169, 1), rgba(29, 170, 169, 0));
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}
.promo_container {
	display: flex;
	flex-direction: column;
	border: 1px solid #0738361a;
	border-radius: 12px;
}
.promo_container:hover {
	cursor: pointer;
}
.promotion_banner {
	position: relative;
	background-color: rgba(60, 173, 173, 1);
	text-align:center;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}
.promotion_title {
	background-color: white;
	padding: 10px 24px;
	border-radius: 12px;
}
.promo_banner {
	position: absolute;
	width: 100%;
	height: 280px;
	cursor: pointer;
	border-radius: inherit;
}
.promo_logo{
	position: absolute;
	top: 6px;
	left: 28px;
}
.promo_title {
	position: absolute;
	bottom: 10px;
	left: 0px;
	text-align: start;
	padding: 0px 24px;
}

/* end for promotion */

/* card */
.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	/* border: 1px solid #e3e6f0; */
	border-radius: 10px;
	box-shadow: 0px 0px 40px rgb(0 0 0 / 5%);
}
.card > hr {
	margin-right: 0;
	margin-left: 0;
}
.card > .list-group {
	border-top: inherit;
	border-bottom: inherit;
}
.card > .list-group:first-child {
	border-top-width: 0;
	border-top-left-radius: calc(0.35rem - 1px);
	border-top-right-radius: calc(0.35rem - 1px);
}
.card > .list-group:last-child {
	border-bottom-width: 0;
	border-bottom-right-radius: calc(0.35rem - 1px);
	border-bottom-left-radius: calc(0.35rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
	border-top: 0;
}
.card-body {
	flex: 1 1 auto;
	min-height: 1px;
	padding: 1.25rem;
}
.card-title {
	margin-bottom: 0.75rem;
}
.card-subtitle {
	margin-top: -0.375rem;
	margin-bottom: 0;
}
.card-text:last-child {
	margin-bottom: 0;
}
.card-link:hover {
	text-decoration: none;
}
.card-link + .card-link {
	margin-left: 1.25rem;
}
.card-header {
	padding: 0.75rem 1.25rem;
	margin-bottom: 0;
	background-color: #f8f9fc;
	border-bottom: 1px solid #e3e6f0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.card-header:first-child {
	border-radius: calc(0.35rem - 1px) calc(0.35rem - 1px) 0 0;
}
.card-footer {
	padding: 0.75rem 1.25rem;
	background-color: #f8f9fc;
	border-top: 1px solid #e3e6f0;
}
.card-footer:last-child {
	border-radius: 0 0 calc(0.35rem - 1px) calc(0.35rem - 1px);
}
.card-header-tabs {
	margin-right: -0.625rem;
	margin-bottom: -0.75rem;
	margin-left: -0.625rem;
	border-bottom: 0;
}
.card-header-pills {
	margin-right: -0.625rem;
	margin-left: -0.625rem;
}
.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.25rem;
	border-radius: calc(0.35rem - 1px);
}
.card-img,
.card-img-bottom,
.card-img-top {
	flex-shrink: 0;
	width: 100%;
}
.card-img,
.card-img-top {
	border-top-left-radius: calc(0.35rem - 1px);
	border-top-right-radius: calc(0.35rem - 1px);
}
.card-img,
.card-img-bottom {
	border-bottom-right-radius: calc(0.35rem - 1px);
	border-bottom-left-radius: calc(0.35rem - 1px);
}
.card-deck .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-deck {
		display: flex;
		flex-flow: row wrap;
		margin-right: -0.75rem;
		margin-left: -0.75rem;
	}
	.card-deck .card {
		flex: 1 0 0%;
		margin-right: 0.75rem;
		margin-bottom: 0;
		margin-left: 0.75rem;
	}
}
.card-group > .card {
	margin-bottom: 0.75rem;
}
.modal-body h2{
	color: var(--primary);
	font-weight: 600;
}
@media (min-width: 576px) {
	.card-group {
		display: flex;
		flex-flow: row wrap;
	}
	.card-group > .card {
		flex: 1 0 0%;
		margin-bottom: 0;
	}
	.card-group > .card + .card {
		margin-left: 0;
		border-left: 0;
	}
	.card-group > .card:not(:last-child) {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}
	.card-group > .card:not(:last-child) .card-header,
	.card-group > .card:not(:last-child) .card-img-top {
		border-top-right-radius: 0;
	}
	.card-group > .card:not(:last-child) .card-footer,
	.card-group > .card:not(:last-child) .card-img-bottom {
		border-bottom-right-radius: 0;
	}
	.card-group > .card:not(:first-child) {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}
	.card-group > .card:not(:first-child) .card-header,
	.card-group > .card:not(:first-child) .card-img-top {
		border-top-left-radius: 0;
	}
	.card-group > .card:not(:first-child) .card-footer,
	.card-group > .card:not(:first-child) .card-img-bottom {
		border-bottom-left-radius: 0;
	}
}
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
		-moz-column-count: 3;
		column-count: 3;
		-moz-column-gap: 1.25rem;
		column-gap: 1.25rem;
		orphans: 1;
		widows: 1;
	}
	.card-columns .card {
		display: inline-block;
		width: 100%;
	}
}
/* end card */

.dropdown,
.dropleft,
.dropright,
.dropup {
	position: relative;
}
.dropdown-toggle {
	white-space: nowrap;
}
.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: 0.5rem 0;
	margin: 0.125rem 0 0;
	font-size: 0.85rem;
	color: #858796;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #e3e6f0;
	border-radius: 0.35rem;
}
.dropdown-menu-left {
	right: auto;
	left: 0;
}
.dropdown-menu-right {
	right: 0;
	left: auto;
}
@media (min-width: 576px) {
	.dropdown-menu-sm-left {
		right: auto;
		left: 0;
	}
	.dropdown-menu-sm-right {
		right: 0;
		left: auto;
	}
}
@media (min-width: 768px) {
	.dropdown-menu-md-left {
		right: auto;
		left: 0;
	}
	.dropdown-menu-md-right {
		right: 0;
		left: auto;
	}
}
@media (min-width: 992px) {
	.dropdown-menu-lg-left {
		right: auto;
		left: 0;
	}
	.dropdown-menu-lg-right {
		right: 0;
		left: auto;
	}
}
@media (min-width: 1200px) {
	.dropdown-menu-xl-left {
		right: auto;
		left: 0;
	}
	.dropdown-menu-xl-right {
		right: 0;
		left: auto;
	}
}
.dropup .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0;
	border-right: 0.3em solid transparent;
	border-bottom: 0.3em solid;
	border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropright .dropdown-menu {
	top: 0;
	right: auto;
	left: 100%;
	margin-top: 0;
	margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid transparent;
	border-right: 0;
	border-bottom: 0.3em solid transparent;
	border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropright .dropdown-toggle::after {
	vertical-align: 0;
}
.dropleft .dropdown-menu {
	top: 0;
	right: 100%;
	left: auto;
	margin-top: 0;
	margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}
.dropleft .dropdown-toggle::after {
	display: none;
}
.dropleft .dropdown-toggle::before {
	display: inline-block;
	margin-right: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid transparent;
	border-right: 0.3em solid;
	border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
	margin-left: 0;
}
.dropleft .dropdown-toggle::before {
	vertical-align: 0;
}
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
	right: auto;
	bottom: auto;
}
.dropdown-divider {
	height: 0;
	margin: 0.5rem 0;
	overflow: hidden;
	border-top: 1px solid #eaecf4;
}
.dropdown-item {
	display: flex;
	width: 100%;
	padding: 0.25rem 1.5rem;
	clear: both;
	font-weight: 400;
	min-height: 34px;
	align-items: center;
	color: #3a3b45;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	border-radius: 10px;
}
.dropdown-item:focus,
.dropdown-item:hover {
	color: var(--white);
	text-decoration: none;
	background-color: var(--primary-main);
}
.dropdown-item.active,
.dropdown-item:active {
	color: #fff;
	text-decoration: none;
	background-color: var(--primary-main);
}
.dropdown-item.disabled,
.dropdown-item:disabled {
	color: #b7b9cc;
	pointer-events: none;
	background-color: transparent;
}
.dropdown-menu.show {
	display: block;
}
.dropdown-header {
	display: block;
	padding: 0.5rem 1.5rem;
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #858796;
	white-space: nowrap;
}
.dropdown-item-text {
	display: block;
	padding: 0.25rem 1.5rem;
	color: #3a3b45;
}

.pstl-image-box {
	width: 150px;
    height: 150px;
    border: 2px solid #13b4b3;
	border-radius: 10px;
}

.pstl-image-smallbox {
	width: 70px;
    height: 70px;
    border: 2px solid #13b4b3;
	border-radius: 10px;
}

.overlay-container2{
    position: relative;
    width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay2{
    position: absolute;
    top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
    height: 147px;
    width: 147px;
    transition: .3s ease;
    background-color: rgba(0, 0, 0, 0.349);
	border-radius: 8px;
	
}

.overlay-containersmall{
    position: relative;
    width: 70px;

	display: flex;
	justify-content: center;
	align-items: center;
}

.overlaysmall{
    position: absolute;
    top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
    height: 67px;
    width: 67px;
    opacity: 0.4;
    transition: .3s ease;
    background-color: black;
}

.icon-overlay2 {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
	opacity: 0.4;
  }

.overlay2 .delete-icon-overlay {
    color: red;
	position: absolute;
	top: 0px;
	right: -20px;
	z-index: 9999999;
}

.overlay2 .delete-icon-overlay:hover {
    opacity: 0.8;
}

.overlay2 .fa-trash {
    color: #dc3545;
}

.fa-trash.text-danger {
    color: #dc3545 !important;  /* Red color with !important to ensure override */
}

.btn-equal {
    min-width: 100px;  /* Adjust this value based on your needs */
    height: 45px;      /* Adjust this value based on your needs */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;   /* Add padding for text spacing */
}

.fixImage {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 5px;
}

/* .pstl_avatar{
    padding: 1px;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #13b4b3;
    object-fit: cover;
}

.pstl_avatar.no_border{
    border: none;
}

.pstl_avatar.md{
	width: 52px;
    height: 52px;
}
.pstl_avatar.sm{
	width: 32px;
    height: 32px;
} */

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* So clicks pass through to the parent */
}

.play-overlay::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 6px;
    width: 0;
    height: 0;
    border-left: 12px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.productDetail_delivery_appsetting{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.delivery-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 25px;
    gap: 5px;
    isolation: isolate;
    width: 100%;
    background: transparent;
	border: 1px solid #BED6D3;
	border-radius: 10px;
    cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.delivery-box-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* padding: 10px 25px; */
	padding: 10px 0px;
    gap: 5px;
    isolation: isolate;
    width: 100%;
    background: transparent;
}

.delivery-box.selected {
    background: #E5F1F1;
	border : 1px solid #13b4b3;
	border-radius: 10px;
	opacity: 1;

}

.delivery-label {
	font-size: 12px;
	font-weight: 700;
	color: #CF4C22;
	text-transform: capitalize;
	background-color: #FFF6C1;
	padding: 5px 10px;
	border-radius: 5px;
	letter-spacing: 1px;
	opacity: 0.8;
}


 .clinic-name-responsive{
    color: #6A807E;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	min-height: 40px;
  	line-height: 20px;
  }

@media (min-width: 768px) {
  .clinic-name-responsive {
 max-width: 200px;
  min-width: 0;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 20px;
  color: #6A807E;
  font-weight: 400;
  text-align: right;
  }
}