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

html, body {
    height:100%;
}

body {
    font-family: "Inter", sans-serif;
    color: #1f2937;
    /* background-color: #e7e7e7; */
    background-color: #eee;
    font-size: 0.89rem;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6, th {
    color: #64748b;
}

h5, h6, th {
    font-weight: 600;
    font-size: .890rem;
}

p, td {
    color: #1f2937;
    font-weight: 400;
    font-size: .890rem;
}

img {
    max-width: 100%;
}

.bg--light {
    background: #f5f5f5;
}

.bg-white {
    background: #fff;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-sky-blue {
    background: #AEF2FF;;
}

.bg-pink {
    background: #F7E9FF;;
}

.bg-img {
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
}

.box-shadow {
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.border-10 {
    border-radius: 10px !important;
}

.selectbox {
    display: none;
}

/****Common Values Start*****/

.gap-6 {
    gap: 1.5rem;
}

.gap-10 {
    gap: 10px!important;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.p-6 {
    padding: 2rem 1.5rem;
}

/****Common Values End*****/


.login-form {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.logo {
    text-align: center;
    margin-bottom: 80px;
}

.logo img {
    max-width: 120px;
}

.logo span {
    width: 100%;
    display: inline-block;
    margin: 20px 0 0;
}

.logo span img {
    max-width: 170px;
}

.login-form h3 {
    text-align: center;
    margin: 0 0 40px;
    font-size: 20px;
    font-weight: 400;
    color: #0f172a;
}

.login-form form {
    width:100%;
    max-width: 320px;
}

.login-form .form-group label {
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 10px;
}

.login-form .form-group{
    margin: 0 0 20px;
}

.login-form .form-group input.form-control {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #1f2937;
}

.login-form .form-group input.form-control:focus {
    box-shadow: 0 0 0 0 rgba(13,110,253,.25);
}

.submit-btn .btn {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(to bottom,  #2e8bdc 0%,#005097 100%);
    border: none;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.login-form p {
    text-align: center;
    margin: 0 0 0px;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
}

.error-message p {
    color: #e63535;
}

.login-form p a {
    color: #2E8BDC;
    text-transform: uppercase;
    font-weight: 600;
}

.resend-otp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 250px;
}

.resend-otp a {
    font-size: 14px;
    color: #2E8BDC;
    text-transform: uppercase;
    font-weight: 600;
}

.login-form .form-group.otp-inputs {
    display:flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    max-width: 250px;
}

.login-form .form-group.otp-inputs input.form-control {
    /* background: transparent;
    border-bottom: 3px solid #06232b;
    border-radius: 0; */
    width: 44px;
    padding: 6px 5px;
    text-align: center;
    font-size: 23px;
    color: #06232b;
}

/***** Layout Css Start *****/

.wrapper {
    justify-content: flex-end;
    padding-top: 70px;
}

.page-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    /* min-block-size: 100vh; */
    width: calc(100% - 250px);
    transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

/***** Header Css Start *****/

.toggle-menu .app-menu {
	width: 90px;
	min-width: 90px;
}

.toggle-menu .page-content {
	width: calc(100% - 90px);
}

.app-header {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 35;
    background: #fff;
    /* height: 70px; */
    /* gap: .75rem; */
    width: 100%;
    left: 0;
}

.nav-text {
    align-items: center;
    display: flex;
    align-content: center;
}

.nav-text p {
    margin:0;
}

.user-icons-name {
    position: relative;
}

.header-icons-divider {
    position: relative;
    padding:13px 1.5rem;
    height: 100%;
}

.header-icons-divider::before {
	position: absolute;
	left: 0;
	top: 0px;
	width: 1px;
	height: 71px;
	content: "";
	background: #ededed;
}

.head-company-name p {
    font-weight: 600;
    font-size: 17px;
    color: #64748b;
}


.user-icons-icon {
    position: relative;
    display: flex;
    align-items: center;
    align-content: center;
    cursor: pointer;
}

.user-icons-name span {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.user-name-role {
    /* display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: wrap; */
    padding: 0 15px 0 13px;
}

.user-name-role h5 {
    color: #0f172a;
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.user-name-role p {
    color: #6c757d;
    font-size: 13px;
    font-weight: 400;
    width: 100%;
    margin: 0;
}

.nav-link:hover {
    color: #1e85ff;
    background: rgba(30, 133, 255, 0.2);
}

.nav-link {
    color: #6c757d;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 41px;
    background: transparent;
}

.app-menu .nav-link {
    color: #6c757d!important;
}

.nav-link:hover {
    background: #1e85ff;
    color: #fff;
}

.app-menu .nav-link:hover {
    background: #1e85ff;
    color: #fff !important;
}

/* .nav-link:focus {
    color: #6c757d; 
    color: #fff;
} */


.dropdown-menu {
    display: block;
    border-radius: .5rem;
    border: 1px solid #e5e7eb;
    padding: .5rem;
    min-width: 250px;
    top: 71px;
    right: 16px;
    /* box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition-property: margin,opacity;
    transition-property: margin,opacity;
    -webkit-transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    -webkit-transition-duration: 150ms;
    transition-duration: 150ms;
    opacity: 0;
    visibility: hidden;
}

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

.dropdown .dropdown-toggle .arrow-down {
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
}

.dropdown.open .dropdown-toggle .arrow-down {
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    transform:rotate(180deg);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dropdown-menu ul li {
    color: #1f2937;
    font-size: .875rem;
    line-height: 1.25rem;
}

.dropdown-menu ul li a {
    font-weight: 600;
    font-size: .875rem;
    color: #64748b;
    line-height: 1.25rem;
    text-decoration: none;
    padding: .5rem .75rem;
    width: 100%;
    display: inline-block;
    border-radius: .375rem;
}

.dropdown-menu ul li a i {
    margin: 0 5px 0 0;
    font-size: 0.775rem;
}

.dropdown-menu ul li a:hover {
    background-color: #f3f4f6;
}

.dropdown-menu ul li.divider {
    border-bottom: 1px dashed #b5b5b5;
    margin-top: .5rem;
    margin-bottom: .5rem;
    margin-left: -.5rem;
    margin-right: -.5rem;
}

.dropdown-menu ul li h6 {
    margin: 0px;
    color: #1f2937;
    font-size: 0.890rem;
    font-weight: 400;
    white-space: nowrap;
    padding: .5rem .75rem;
}

.dropdown-menu ul li h6 strong {
    font-weight: 600;
    color: #64748b;
    width: 100%;
    margin: 0 0 4px;
    display: inline-block;
}

.user-detail-dd {
    /* padding: .5rem .75rem 0.2rem; */
}

.user-detail-dd h6 {
    margin: 0px -7px 0px;
    color: #1f2937;
    font-size: 0.890rem;
    font-weight: 300;
    white-space: nowrap;
    border-bottom: 1px dashed #e5e7eb;
    padding: 15px;
}

.user-detail-dd h6:last-child {
    border-bottom: none;
}

.user-detail-dd h6 strong {
    font-weight: 600;
    font-size: .875rem;
    color: #64748b;
    width: 100%;
    margin: 0 0 4px;
    display: inline-block;
}

.theme-options-drodpwn {
    min-width: 340px;
}

.theme-settings h5 {
    padding: 10px 0.9rem;
    border-bottom: 1px dashed #b5b5b5;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.5rem;
    font-weight: 600;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}


.theme-options {
    padding: 1rem 1.5rem 1rem;
    border-bottom: 1px dashed #b5b5b5;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.theme-options-drodpwn .theme-options:last-child {
    border-bottom: none;
}

.theme-options h6 {
    padding:0 0 10px 0;
    font-size: .890rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
}

.card-radio {
    position: relative;
}

.card-radio .form-radio {
    display: none;
}

.card-radio .form-label {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #e5e7eb;
    border-radius: .375rem;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.card-radio .form-radio:checked+.form-label {
    border-color: #3073f1;
    color: #3073f1;
}

.card-radio .form-radio:checked+.form-label span {
    color: #3073f1;
}

.card-radio p {
    color: #1f2937;
    margin: .25rem 0 0 0;
    text-align: center;
    font-weight: 400;
    font-size: .890rem;
}

.card-radio .form-label span {
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 18px;
    color: #1f2937;
    width: 100%;
    display: flex;
    justify-content: center;
}

.card-radio .form-label span.top-bar-color {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    padding: 0;
    /* box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.icon-rotate {
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg);
}


/***** Header Css End *****/

/***** Side bar Css Start *****/

.app-menu {
    width: 250px;
    min-width: 250px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    height: 100vh;
    /* -webkit-box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000, 0 0 #0000;
    box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 80px 10px rgba(0, 0, 0, 0.1);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    transition-timing-function: cubic-bezier(0.4,0,0.2,1);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding-top: 8px;
}

.main-logo {
    /* border-bottom: 1px dashed #e5e7eb; */
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px 0;
}

.logo-inner {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    column-gap: 13px;
}

.logo-inner i {
	width: 50px;
	min-width: 50px;
}

span.logo-name {
    max-width: 120px;
    transform: scale(1);
    transform-origin: left;
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
}

.toggle-menu span.logo-name {
	transform: scale(0);
}

.side-menu-scroll {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 20px 0 0;
}

ul.side-menus {
    width: 100%;
    margin: 0;
    padding: 0;
}

ul.side-menus li {
    padding: 5px 15px;
    list-style: none;
    margin: 0;
}

ul.side-menus li a {
	padding: 12px 15px 12px 18px;
	color: #64748b;
	font-size: 16px;
	text-decoration: none;
	border-radius: .5rem;
	gap: 10px;
	display: inline-flex;
	align-items: center;
	position: relative;
	transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	justify-content: flex-start;
	width: 100%;
    min-height: 44px;
    font-weight: 500;
}

.toggle-menu ul.side-menus li a span {
	transform: scale(0);
}

ul.side-menus li a span {
	min-width: 140px;
	text-align: left;
	max-width: 140px;
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
    transform: scale(1);
    transform-origin: left;
}

ul.side-menus li a i.icons {
	color: #6c757d;
	font-size: 20px;
	width: 25px;
	text-align: center;
	min-width: 25px;
	min-height: 22px;
}

ul.side-menus li:hover>a,ul.side-menus li.active>a, ul.side-menus li>a.show {
    color: #1e85ff;
    background: rgba(30,133, 255, 0.09);
}

ul.side-menus li:hover>a i.icons,ul.side-menus li.active>a i.icons, ul.side-menus li>a.show i.icons,ul.side-menus li:hover>a span  {
    color: #1e85ff;
}

ul.side-menus li .sub-menu {
    margin: 0;
    padding: 2px 0 10px 37px;
}

ul.side-menus li .sub-menu li {
    padding: 0;
}

ul.side-menus li .sub-menu li a {
    padding: 7px 15px;
}

ul.side-menus li .sub-menu li:hover a {
    background: transparent;
}


ul.side-menus li a .arrow-down {
    position: absolute;
    right: 13px;
    font-size: 11px;
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
}

ul.side-menus li a.show .arrow-down {
    -webkit-transform:rotate(180deg);
    -moz-transform:rotate(180deg);
    -ms-transform:rotate(180deg);
    -o-transform:rotate(180deg);
    transform:rotate(180deg);
}

.toggle-icon {
    position: absolute;
    right: -55px;
    top: 17px;
}

/***** Side bar Css End *****/

.page-content-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 13px;
}

.page-content-inner form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 13px;
}


.page-container {
	padding: 1.5rem;
	position: relative;
	z-index: 1;
}

.page-title h4 {
    padding: 0;
    font-size: 17px;
    line-height: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

ul.bredcrums {
    display: flex;
    margin: 0;
    padding: 0;
}

.bredcrums li {
    color: #64748b;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bredcrums li a {
    color: #334155;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    text-decoration: none;
}

ul.bredcrums li i.bredcrum-icon {
    color: #94a3b8;
    font-size: 11px;
    width: 18px;
    text-align: center;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 8px;
}

.card {
    height: fit-content;
    border-radius: 15px !important;
    background-color: #fff;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: none;
    background-color: #fff;
    overflow: hidden;
}

.card-header {
    background-color: transparent;
    padding: .75rem 1.5rem;
    border-color: #e5e7eb;
    border-radius: 0px !important;
}

.card-header h4 {
    padding: 0;
    font-size:17px;
    line-height: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.form-block {
    /* border: 1.5px dashed #d3d3d3; */
    border:1px dashed #b5b5b5;
    border-radius: 10px;
    padding: 42px 20px 20px;
    width: 100%;
    margin-top: 30px;
    position: relative;
}

.padding-equal {
    padding: 20px 20px 20px;
}

.form-title {
    width: fit-content;
    background: #282d38;
    padding: 10px 18px;
    position: absolute;
    left: 20px;
    top: -24px;
    /* min-width: 160px; */
    /* border: 1.5px dashed #d3d3d3; */
    z-index: 12;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    border-radius: 10px;
}

.form-title h4 {
    padding: 0;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.form-group {
    margin: 0 0 20px;
    position: relative;
}

.form-group label {
    font-weight: 600;
    font-size: .890rem;
    color: #64748b;
    margin: 0 0 10px;
}

.mandatory-field {
	/* color: #e80000; */
	top: -3px;
	font-size: 0.85em;
}

.form-group label .label-style, table .label-style {
    color: #6c757d;
    font-weight: 400;
    font-style: normal;
}

.form-group input.form-control, input.form-control {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 12px 10px;
    color: #1f2937;
    font-size: 0.890rem;
    font-weight: 400;
    min-height: 47px;

    min-height: 40px;
    padding: 8px 10px;

    min-height: 42px;
    padding: 9.5px 10px;
    line-height: normal;
    max-height: 42px;
}

.form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #c5c5c5;
    font-weight: 400;
  }
  .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #c5c5c5;
    font-weight: 400;
  }
  .form-control:-ms-input-placeholder { /* IE 10+ */
    color: #c5c5c5;
    font-weight: 400;
  }
  .form-control:-moz-placeholder { /* Firefox 18- */
    color: #c5c5c5;
    font-weight: 400;
  }

.form-group input.form-control:focus, input.form-control:focus, .form-group textarea.form-control:focus {
    box-shadow: 0 0 0 0 rgba(13, 13, 14, 0.25);
    background: #f9f9f9;
    border: 1px solid #e5e7eb;
}

.form-field {
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	background: #f9f9f9;
	padding: 12px 10px;
	color: #1f2937;
	font-size: 0.890rem;
	font-weight: 400;
	min-height: 42px;
	max-height: 42px;
	display: flex;
	align-items: center;
}

.form-group .phone-field {
	border-radius: 10px;
	border: 1px solid #e5e7eb;
	background: #f9f9f9;
	padding: 12px 10px;
	color: #1f2937;
	font-size: 0.890rem;
	font-weight: 400;
	min-height: 42px;
	display: flex;
	align-items: center;
    max-height: 42px;
}

.form-group .phone-field input.form-control, input.form-control {
	border-radius: 0;
	border: none;
	background: #f9f9f9;
	padding: 0 4px;
    min-height: auto;
}

.bootstrap-tagsinput {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 9px 10px;
    color: #1f2937;
    font-size: 0.890rem;
    font-weight: 400;
    height: 47px;
    width: 100%;
    display: flex;
    box-shadow: none;
    overflow: hidden;

    height: 42px;
    padding: 9.5px 10px;
}

.bootstrap-tagsinput .tag {
    background: rgb(237 243 251);
    color: #1e85ff;
    border-bottom-color: #e5e7eb;
    font-weight: 600;
    font-size: 0.69rem;
    padding: 3px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 7px;
    margin-right: 10px;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
    cursor: pointer;
    color: #64748b;
    border: none;
    padding: 0;
    font-size: 14px;
    margin: -3px 0 0 4px;
    font-weight: 700;
}

.input-symbol {
    position: relative;
}

.input-symbol span.input-icon {
	position: absolute;
	left: 0;
	top: 14px;
	width: 40px;
	text-align: center;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	color: #1f2937;
	font-weight: 400;
}

.input-symbol input.form-control {
    padding-left: 40px;
}

.form-group textarea.form-control {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 12px 10px;
    color: #1f2937;
    font-size: 0.890rem;
    font-weight: 400;
    min-height: 150px;
    /* resize: none; */
}

.form-group textarea.address-field {
    min-height: 100px;
}

.form-btns .btn, .btn {
    width: auto;
    border-radius: 10px;
    border: none;
    padding: 10px 15px;
    font-size: 0.890rem;
    font-weight: 500;
    text-transform: uppercase;
    min-width: 150px;
    transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
}

.form-btns .btn-small, .btn-small {
    padding: 7px 15px;
    font-size: 14px;
    min-width: 130px;
}

.form-btns .btn-secondary {
    background: #0f172a;
}

.form-btns .btn-border, .btn-border{
    background: #fff;
    color: #64748b;
    border: 1px solid #e5e7eb;
}

.form-btns .btn-border:hover, .btn-border:hover {
    background: rgba(30,133, 255, 0.06);
    color: #1e85ff;
    border: 1px solid rgba(30,133, 255, 0.06);
}

.form-btns .btn-primary {
    /* background: linear-gradient(to bottom,  #2e8bdc 0%,#005097 100%); */
    background: linear-gradient(to bottom, #0099ff 0%, #005097 100%);
}

.form-btns .btn:hover, .btn:hover {
    opacity:0.9;
}

.form-group p {
    margin: 0;
}

.table-search {
    position: relative;
}

.table-search {
    position: relative;
}

.table-search input.form-control {
    padding: 10px 10px 10px 40px;
}

/* .serach-btn {
    color: #6c757d;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 8px 10px;
    font-size: 0.890rem;
    font-weight: 400;
} */

.serach-btn {
    color: #c5c5c5;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 10px 15px 10px 15px;
    font-size: 0.890rem;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 260px;
}

.serach-btn-width {
    min-width: 280px;
}

.serach-btn i {
    color: #6c757d;
}

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

.tabs-tabs .nav-tabs {
    border: none;
    margin: 0;
}

.tabs-tabs .nav-tabs li {
    margin: 0 10px 0 0;
    padding: 0;
}

.tabs-tabs .nav-tabs li a {
    background: #fff;
    color: #64748b;
    border: 1px solid #e5e7eb;
    border-radius: 10px 10px 0 0;
    text-decoration: none;
    padding: 13px 15px;
    font-weight: 400;
    font-size: 16px;
    min-width: 150px;
    position: relative;
    top: 11px;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 123;
}

 .tabs-tabs .nav-tabs li:hover a {
    background: rgba(30,133, 255, 0.06);
    color: #64748b;
}

.tabs-tabs .nav-tabs li.active a {
    /* background: rgb(242 245 249); */
    background: rgba(30,133, 255, 0.06);
    color: #1e85ff;
    border-bottom-color:#e5e7eb;
    font-weight: 600;
}

.tabs-table-block .tab-content {
    margin: 10px 0 0;
}

.tabs-table-block .tab-content .tab-pane.active {
    opacity: 1;
}

.table-border {
    border-radius: 0 10px 10px;
    border: 1px solid #e5e7eb;
}

.table-block-simple .table-border {
    border-radius: 10px 10px;
}

.data-table {
    margin: 0;
    min-width: 790px;
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Initial setting */
}

.data-table thead tr th {
    /* background: rgb(238 242 247 / .75); */
    background: rgba(30,133, 255, 0.06);
    border-right: 1px solid #e5e7eb;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    white-space: nowrap;
    vertical-align: middle;
}

.data-table tbody tr td {
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem;
    vertical-align: middle;
}

.data-table tbody tr td:first-child {
    width: 20px;
}

.data-table tbody tr td:nth-child(2) {
    min-width: 170px;
}

.data-table tbody tr td:last-child, .data-table thead tr th:last-child {
    border-right: none;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.table-footer {
    padding: 12px 0;
    /* border-radius: 0 0 10px 10px;
    border: 1px solid #e5e7eb; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: none;
}

.table-footer p {
    margin: 0;
}

.pagination {
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.pagination a {
    border: none;
    background: #fff;
    text-decoration: none;
    padding: 8px 15px;
    font-weight: 400;
    font-size: .890rem;
    color: #64748b;
    border-right: 1px solid #e5e7eb;
}

.pagination a.currentPage, .pagination a:hover {
    background: #1e85ff;
    color: #fff;
    border-color:#1e85ff;
}

.pagination a[disabled] {
    cursor: unset;
    background: #fff;
    color: #64748b;
    border-right: 1px solid #e5e7eb;
}

.property-imgs {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 10px;
    align-items: flex-end;
}

.property-imgs span {
	width: 50px;
	border-radius: 6px;
	overflow: hidden;
	height: 35px;
}

.property-imgs span img {
	width: 100%;
	height: 100%;
    object-fit: cover;
}

.table-btns {
	font-size: 1rem;
	width: 45px;
	height: 45px;
	line-height: 31px;
	/* border: 1px solid #e5e7eb; */
	display: flex;
	justify-content: center;
	align-items: center;
}

.table-btns:hover {
    border-color: transparent;
}

.action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/****** Button Colors ******/

.btn--primary-gradient {
    color: #fff;
    /* background: linear-gradient(to bottom, #2e8bdc 0%, #005097 100%); */
    background: linear-gradient(to bottom, #0099ff 0%, #005097 100%);
}

.btn--primary-gradient:hover {
    color: #fff;
}

.btn--primary-dark {
    color: #fff;
    background:#2E8BDC;
}

.btn--primary-dark:hover {
    background: rgba(30, 133, 255, 0.2);
    color: #2E8BDC;
}

.btn--primary {
    color: #1e85ff;
    /* background: rgba(30, 133, 255, 0.2); */
    background: rgba(30,133, 255, 0.09);
}

.btn--primary:hover, .btn--primary:focus, .btn--primary a:hover, .btn--primary a:focus {
    background: #1e85ff;
    color: #fff;
}

.btn--primary:hover a, .btn--primary:focus a {
    color: #fff;
}

.btn--danger {
    color: #e63535;
    background: rgba(230, 53, 53, 0.13);
}

.btn--danger:hover, .btn--danger:focus {
    background-color: #e63535;
    color: #fcd3d0;
}

.btn--secondary {
    background-color: #d7d9e1;
    color: #6c757d;
}

.btn--secondary:hover  {
    color: #d7d9e1;
    background-color: #6c757d;
}

.btn--success {
    color: #339537;
    background-color: #bce2be;
}

.btn--success:hover  {
    color: #bce2be;
    background-color: #339537;
}

.btn--white {
    color: #1e85ff;
    background-color: #fff;
}

.btn--white:hover  {
    color: #fff;
    background-color: #1e85ff;
}

/****** Button Colors ******/

.table-top-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-upper-btn {
    font-weight: 600;
    font-size: 0.890rem;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    text-transform: uppercase;
}

/****** Toggle Button Css Start ******/

.status-toggle {
    display: flex;
    align-items: center;
}

/* .status-toggle-input {
    margin: 7px 0 0;
} */

.btn-toggle {
    margin: 0;
    padding: 0;
    position: relative;
    border: none;
    height: 34px;
    width: 95px;
    color: #6c757d;
    border-radius: 40px;
    border: 1px solid #e5e7eb;
    background: rgba(30,133, 255, 0.06);
    min-width: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.btn-toggle label {
    font-size: 12px;
    text-transform: none;
    color: #fff;
    position: absolute;
}

.btn-toggle label.left-label {
    left: -46px;
    top: 3px;
}

.btn-toggle label.right-label {
    right: -52px;
    color: #1f2937;
    top: 3px;
}

.btn-toggle:hover, .btn-toggle:focus-visible {
    opacity: 1;
    border: 1px solid #e5e7eb;
    background: rgba(30,133, 255, 0.06);
}

.btn-toggle:focus, .btn-toggle:focus[aria-pressed="true"], .btn-toggle.focus, .btn-toggle.focus[aria-pressed="true"]{
    outline: none;
    border: 1px solid #e5e7eb;
}
.btn-toggle:before, .btn-toggle:after {
    line-height: 1.5rem;
    width: 4rem;
    text-align: center;
    font-weight: 600;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    bottom: 0;
    transition: opacity .25s;
}
.btn-toggle > .handle {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 22px;
    height: 22px;
    border-radius: 1.125rem;
    background: #fff;
    transition: left .25s;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.btn-toggle[aria-pressed="true"] {
    transition: background-color .25s;
}
.btn-toggle[aria-pressed="true"] {
    background-color: #1e85ff;
    border: none;
}
.btn-toggle[aria-pressed="true"] > .handle {
    left: 68px;
    transition: left .25s;
    background: #f9f9f9;
}

.data-table tbody tr.disable td {
    opacity: 0.5;
    background: #f9f9f9;
} 

/****** Toggle Button Css End ******/

.modal-content {
    border-radius: 10px !important;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: none;
    background-color: #fff;
}

.custom-modal {
    border: none;
    padding: 2.5rem;
}

.modal-header {
    border: none;
    margin-bottom: 0;
    padding: 1.1rem 2.5rem;
    background: #e7e7e7;
}

.modal-header h4 {
    padding: 0;
    font-size: 17px;
    line-height: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.modal-close {
	position: absolute;
	right: -10px;
	top: -9px;
	color: #fff;
	border: none;
	border-radius: 50%;
	padding: 0;
	line-height: 25px;
	/* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	font-size: 13px;
	background: #282d38;
	width: 25px;
	height: 25px;
	z-index: 1;
}

.select-radio-btns {
    display: grid;
   grid-auto-columns: minmax(0, 1fr);
   grid-auto-flow: column;
    gap: 25px;
}

.select-radio-btns span label {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.select-radio-btns span label input {
    display: none;
}

.select-radio-btns span label .btn-color {
    background: #f9f9f9;
    color: #c5c5c5;
    border: 1px solid #e5e7eb;
    padding: 12px 10px;
    font-weight: 400;
    font-size: .890rem;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    height: 42.34px;
}

.select-radio-btns span input:checked + .btn-color, .select-radio-btns .btn-color:hover {
    /* color: #fff;
    background: linear-gradient(to bottom, #2e8bdc 0%, #005097 100%); 
    border-color: linear-gradient(to bottom, #2e8bdc 0%, #005097 100%);*/
    font-weight: 600;
    border-color: #1e85ff;
    color: #fff;
    background: #1e85ff;
}

.select-radio-btns span input:disabled + .btn-color {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
  }
  .select-radio-btns span label:has(input:disabled) {
    cursor: not-allowed !important;
  }

.checkbox-btns {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-btns li {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
    width: 24%;
}

.checkbox-btns li label {
    margin: 0;
    font-weight: 400;
    padding: 0 0 0 25px;
    color: #6c757d;
}

.checkbox-btns li input:checked + span  {
	color: #1e85ff;
}

.checkbox-btns li label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    padding: 3px;
    height: 18px;
    width: 18px;
    background-color: #f9f9f9;
    border-radius: 0;
    opacity: 1;
    top: 2px;
    position: absolute;
    cursor: pointer;
    left: 0px;
    margin: 0;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.checkbox-btns li label input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
}

.checkbox-btns li label input[type="checkbox"]:checked {
	background-color: #1e85ff;
}




.checkbox-btn {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.checkbox-btn label {
    margin: 0;
    font-weight: 400;
    padding: 0;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.checkbox-btn label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    padding: 3px;
    height: 18px;
    width: 18px;
    background-color: #f9f9f9;
    border-radius: 0;
    opacity: 1;
    cursor: pointer;
    margin: 0;
    border: 1px solid #e5e7eb;
    position: relative;
}

.checkbox-btn label input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
}

.checkbox-btn label input[type="checkbox"]:checked {
	background-color: #1e85ff;
}

/****** Select Dropdown custom design  Css Start ******/

.custom-select {
    position: relative;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element:*/
  }
 
  /*style the arrow inside the select element:*/
  .select-selected:after {
    position: absolute;
    content: "";
    top: 21px;
    right: 14px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #64748b transparent transparent transparent;
}
  
  /*point the arrow upwards when the select box is open (active):*/
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #64748b transparent;
    top: 14px;
  }
  
  /*style the items (options), including the selected item:*/
  .select-items div {
    padding: 12px 10px;
    color: #64748b;
    font-weight: 400;
    font-size: .890rem;
    border-bottom: 1px dashed #e5e7eb;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
  }

  .select-items div:last-child {
    border-bottom: 0px dashed #e5e7eb;
  }

  .select-selected {
    cursor: pointer;
    user-select: none;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 12px 10px;
    color: #1f2937;
    font-weight: 400;
    font-size: .890rem;
    border-radius: 10px;
    min-height: 47px;

    min-height: 42px;
    padding: 9.5px 10px;
}
  
  /*style items (options):*/
  .select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius:10px;
    border: 1px solid #e5e7eb;
    padding:0;
    background: #fff;
    /* box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow: auto;
}
  
  /*hide the items when the select box is closed:*/
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: #f9f9f9;
  }

/****** Select Dropdown custom design  Css End ******/

.search-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.search-badge span {
    background: rgb(237 243 251);
    color: #1e85ff;
    border-bottom-color: #e5e7eb;
    font-weight: 600;
    font-size: 0.69rem;
    padding: 7px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 7px;
}

.search-badge span button {
	background: transparent !important;
	color: #64748b;
	border: none;
	padding: 0;
	font-size: 13px;
	margin: 0px 0 0 6px;
	font-weight: 700;
}

.bagde-close {
    color: #1676c9;
    border: none;
    padding: 0;
    font-size: 11px;
    margin: 0 0 0 6px;
}

.full-width-btns {
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    gap: 10px;
}

/**********Price Range slider css Start *****/

  .price-range-slider {
    position: relative;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
}
  
.price-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    /* pointer-events: none; */
    z-index: 2;
    top: 4px;
    height: 0;
}
  
  .price-range-slider input[type="range"]::-webkit-slider-runnable-track {
    height: 20px;
  }

  .price-range-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    z-index: 123;
    appearance: none;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
    pointer-events: all;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  .price-range-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
  }
  
  .selected-range {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
  }
  
  .slider-track {
    position: absolute;
    width: 100%;
    height: 10px;
    background: #ddd;
    z-index: 1;
    border-radius: 5px;
  }
  
  .slider-range {
    position: absolute;
    height: 10px;
    background-color: #1e85ff;
    z-index: 0;
    border-radius: 5px;
  }

  .price-range-bar label {
    font-weight: 400;
    color: #1f2937;
}

.price-range-bar label .slide-center-text {
    margin: 0 30px;
}

.images-upload-field {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 35px 10px;
    color: #1f2937;
    font-size: 0.890rem;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    align-items: center;
}

.images-upload-field input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.images-upload-field h5 {
    margin:7px 0 5px;
    width: 100%;
    text-align: center;
    font-size: 17px;
}

.images-upload-field p {
    margin: 0;
    color: #a8b2c1;
}

.images-upload-field i {
    font-size: 70px;
    color: #a8b2c1;
    margin: 0 0 5px;
}

.images-upload-view {
    display: flex;
    margin: 15px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.images-upload-view span {
    width: 90px;
    position: relative;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #a8b2c1;
    margin: 0 0 5px;
}

.images-upload-view span img {
    border-radius: 6px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.delete-img {
    position: absolute;
    right: -11px;
    top: -12px;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 0;
    font-size: 13px;
    background: #282d38;
    width: 25px;
    height: 25px;
    line-height: 21px;
}


/**********Price Range slider css End *****/

/********* Custom tooltip Css Start *********/

.custom-tooltip .tooltip {
    background-color: #1f2937; 
    color: #fff;             
    border: 1px solid #1f2937; 
    padding: 10px;            
    font-weight: 400; 
    font-size: .890rem;        
    border-radius: 10px;        
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
  }
  
  .custom-tooltip .tooltip-arrow {
    border-top-color: #1f2937; 
  }
  
  .custom-tooltip .tooltip-inner {
    background-color: #1f2937;
    color: #fff;             
    font-weight: 400; 
    font-size: .890rem;            
    text-align: center;        
    padding: 5px 10px;          
    max-width: 200px;          
  }

/********* Custom tooltip CSS End *********/


.delete-modal .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  z-index: 9;
  text-align: center;
  border: 3px solid #e63535;
}
.delete-modal .icon-box i {
  color: #e63535;
  font-size: 46px;
  display: inline-block;
  margin-top: 13px;
}

.delete-modal {
    text-align: center;
}

.delete-modal h4.modal-title {
    font-weight: 600;
    margin: 20px 0 10px;
    color: #0f172a;
    font-size: 31px;
    line-height: 1.2;
}

.view-details-popup .form-group {
    display: flex;
    gap: 10px;
    margin: 0 0 3px;
    /* align-items: center; */
    width: 100%;
}

.view-details-popup .form-group label {
    margin-bottom: 5px;
    /* width: 50%; */
    width: 215px;
    padding-right: 15px;
}

.owner-detail-table .form-group label {
    width: 110px;
}

/* .view-details-popup .form-group p {
    margin: 0;
    width: 50%;
} */

.view-details-popup .form-group p {
    margin: 0;
    width: calc(100% - 215px);
}

.owner-detail-table .form-group p {
    width: 70%;
}

.cards-block-inner {
    display: flex;
    align-items: flex-start;
}

.property-img {
    width: 40%;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.property-details {
    width: 60%;
    padding-left: 25px;
}

.property-details h4 {
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.property-details-list p {
    margin: 0 0 4px;
    width: 100%;
    color: #64748b;
}

.form-fields-shown .form-group label {
    margin: 0 0 2px;
}

.input-label-text {
    padding-top: 24px;
}

.input-label-text label {
    margin: 0 0 2px;
}

.owner-detail-modal h4.modal-title {
    font-weight: 600;
    margin: 0px 0 10px;
    color: #0f172a;
    font-size: 31px;
    line-height: 1.2;
}

.owner-detail-table {
    width: fit-content;
    /* display: flex; */
    flex-wrap: wrap;
    margin: 0 auto;
}

.owner-detail-modal .form-block {
    display: flex;
    justify-content: center;
}

.owner-detail-modal .form-title {
    left: auto;
    right: auto;
    padding: 10px 35px;
}

.owner-detail-modal .form-title h4 {
    text-transform: uppercase;
}

.continue-text {
    margin: 1.8rem 0 1.6rem;
}

.continue-text p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.property-imgs-slider .images-upload-view .thumbnail {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}  

.property-imgs-slider .carousel-inner {
    border-radius: 10px;
    overflow: hidden;
    height: 475px;
    background: #282d38;
}

.property-imgs-slider .carousel-item  {
    height: 100%;
}

.property-imgs-slider .carousel-item .property-img-box  {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* .property-imgs-slider .carousel-control-next, .property-imgs-slider .carousel-control-prev {
    width: 6%;
    opacity: 1;
} */

.property-imgs-slider .carousel-control-next, .property-imgs-slider .carousel-control-prev {
	width: 30px;
	opacity: 1;
	height: 45px;
	top: calc(50% - 22.5px);
	/* bottom: 50%; */
	/* background: #0f172a; */
	background-color: rgba(15, 23, 42, 0.7);
	display: flex;
	justify-content: center;
	padding: 0;
	align-content: center;
	align-items: center;
}

.carousel-control-prev-icon {
	left: -2px;
}

.carousel-control-next-icon {
	right: -2px;
}

.carousel-control-next {
	border-radius: 10px 0 0 10px;
}

.carousel-control-prev {
    border-radius: 0px 10px 10px 0;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
	width: 19px;
	position: relative;
}

.modal-custom-width .modal-dialog {
    max-width: 780px;
}

.update-btn {
    max-width: 170px;
    float: right;
}

.suggestions-list {
	position: absolute;
	top: 80px;
	left: calc(var(--bs-gutter-x) * .5);
	right: 0;
	z-index: 99;
	border-radius: 10px !important;
	border: 1px solid #e5e7eb !important;
	padding: 0;
	background: #fff;
	/* box-shadow: 0 0 #0000,0 0 #0000,0 0 #0000,0 0 #0000,0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important; */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1) !important;
	max-height: 300px !important;
	overflow-x: hidden;
	width: 96% !important;
	display: none;
	overflow-y: auto !important;
	max-width: none !important;
}

.suggestions-list li {
	padding: 12px 10px;
	color: #64748b;
	font-weight: 400;
	font-size: .890rem;
	border-bottom: 1px dashed #e5e7eb;
	border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
	cursor: pointer;
	user-select: none;
}

.suggestions-list li:last-child {
	border-bottom: 0px dashed #e5e7eb;
}

.suggestions-list li:hover {
	background-color: #f9f9f9;
}

.modal-custom-width .modal-dialog-xl {
	max-width: 1420px;
}

.modal-custom-width .modal-dialog-sm {
	max-width: 500px;
}

.cards-box-inner {
	padding: 15px 15px;
    width: 100%;
}

.top-name-address {
	width: 100%;

}

.top-name-address h4 {
	padding: 0;
	font-size: 19px;
	line-height: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 5px;
}

.top-name-address h6 {
	color: #64748b;
	font-weight: 400;
	font-size: 0.79rem;
}

.top-name-address .fa-icons {
	color: #1e85ff;
	margin: 0 2px 0 0;
	font-size: 20px;
    margin-right: 6px;

    color: transparent;
    background-image: linear-gradient(180deg, #2E8BDC, #005097) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    display: inline;
}

.property-id {
	border-top: 1px solid #e5e7eb;
	padding: 5px 0 20px;
	text-align: right;

    padding: 5px 0 12px;
}

.property-id p {
	width: 100%;
	margin: 0;
    color: #b0babc;
	font-weight: 400;
	font-size: 0.79rem;
	font-size: 11.6px;
}

.setup-bagde {
	font-weight: 400;
	font-size: 0.79rem;
	font-style: italic;
	padding: 4px 8px 4px 15px;
	border-radius: 0px 5px 5px 0;
	margin: 0 0px 4px -15px;
	display: inline-block;
	width: fit-content;
	letter-spacing: 0.5px;
}

.setup-bagde.bg-black {
	color: #fff;
    background: #282d38;
}

.setup-bagde.bg-gray {
	color: #fff;
    background: #AAAAAA;
}

.property-details-view  {
    background: #ffeff3;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZWZmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlY2Y2ZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, #ffeff3 0%, #ecf6ff 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ffeff3), color-stop(100%,#ecf6ff));
    background: -webkit-linear-gradient(left, #ffeff3 0%,#ecf6ff 100%);
    background: -o-linear-gradient(left, #ffeff3 0%,#ecf6ff 100%);
    background: -ms-linear-gradient(left, #ffeff3 0%,#ecf6ff 100%);
    background: linear-gradient(to right, #ffeff3 0%,#ecf6ff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffeff3', endColorstr='#ecf6ff',GradientType=1 );
    border-radius: 10px;
 }

.property-details-view .property-img {
	width: 100%;
	position: relative;
} 

.property-details-view .property-details {
	width: 100%;
	padding: 15px 15px;
}

.price-capacity h4 {
	color: #1e85ff;
	font-weight: 600;
    font-size: 17px;
	margin: 0;
}

.price-capacity h4 span {
	color: #A7AFB5;
	font-weight: 400;
    font-size: .890rem;
}

.price-capacity h4 i {
	font-size: 14px;
    margin: 0 0 0 5px;
}

.price-capacity ul {
	margin: 4px 0 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.price-capacity ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 300;
	font-size: 0.89rem;
	color: #64748b;
	font-style: italic;
    position: relative;
}

.price-capacity ul li strong {
	font-weight: 600;
}

.price-capacity ul li::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 3px;
	width: 1px;
	height: 15px;
	background: #64748b;

    background: #1f2937;
}

.price-capacity ul li:last-child::after {
	display: none;
}

.area-price {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: space-between;
	margin: 9px 0 0;
}

.super-carpet-area p {
	font-weight: 300;
	font-size: 0.89rem;
	color: #64748b;
    margin: 3px 0;
    width: 100%;
}

.super-carpet-area p strong {
	font-weight: 600;
}

.area-price-box {
	border: 1px dashed #1e85ff;
	border-radius: 10px;
	text-align: right;
	padding: 10px 20px;
	width: fit-content;
	color: #1e85ff;
	font-weight: 500;
	font-size: .890rem;
	margin: 0;
	line-height: 1.2;
}

.area-price-box sub {
	font-style: italic;
    font-weight: 300;
	font-size: 0.70rem;
    bottom: 0;
}

.area-price-box span {
	font-style: italic;
	font-weight: 300;
	font-size: 0.70rem;
	width: 100%;
	display: inline-block;
}

.more-detail-btn {
	width: 100%;
	text-align: right;
}

.more-detail-btn .btn {
	color: #1e85ff;
	font-weight: 400;
	font-size: 0.89rem;
	text-transform: none;
	padding: 0;
	margin: 15px 0 5px;
	width: auto;
	max-width: none;
	min-width: auto;
}

.active-badge {
	width: fit-content;
	padding: 4px 15px;
	position: absolute;
	left: 15px;
	top: 15px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 0.79rem;
    z-index: 12;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.active-active {
	background: #91F98A;
}

.inactive {
	background: #AAAAAA;
    color: #fff;
}

.move-badge {
    background: #fff;
    color: #1e85ff;
	width: fit-content;
	padding: 4px 15px;
	position: absolute;
	right: 15px;
	bottom: 15px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 0.79rem;
    z-index: 12;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.move-badge2 {
    background: #fff;
    color: #1e85ff;
	width: fit-content;
	padding: 4px 15px;
	position: absolute;
	right: 15px;
	/* bottom: 15px; */
    top: calc(281px - 15px - 27px);
	border-radius: 5px;
	font-weight: 500;
	font-size: 0.79rem;
    z-index: 12;
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

    top: auto;
    bottom: 15px;
}

.cards-box-inner .property-details-list {
	padding: 15px 0 0;
}

.cards-box-inner .property-details-list p {
    /* font-weight: 300;
    font-size: 0.80rem;
    color: #6D7379; */
    color: #1f2937;
    font-weight: 400;
    font-size: .890rem;
}

.cards-box-inner .property-details-list p strong {
	font-weight: 600;
    color: #64748b;
}

.cards-box-inner .property-details-list p .rupee-icon {
	margin: 0 4px 0 4px;
	font-size: 0.72rem;
}

.property-notes {
	margin: 15px 0;
}

.cards-box-inner .property-details-list .notes-text {
	margin: 0;
	background: #F3F3F3;
	padding: 15px 15px;
	border-radius: 10px;
}

.more-detail-btn .btn i {
	margin-left: 5px;
}

.modal-dialog .bg-light-gray {
	background: #eee;
}

.modal-dialog .bg-light-gray .custom-modal {
	padding: 60px;
}

.bg-none {
	background: transparent;
	box-shadow: none;
}

.bg-none .custom-modal {
	padding: 0;
}

.small-slider .carousel-inner {
	height: 250px;
}

.border-box-design {
	border: 1px dashed #b5b5b5;
	border-radius: 10px;
	padding: 10px 45px 0px;
	background: rgba(30,133, 255, 0.06);
	margin: 10px 0 20px;
    display: inline-block;
    width: 100%;
}

.broder-right {
	/* border-right: 1px dashed #b5b5b5;
	padding-top: 0;
	padding-bottom: 5px;
	padding-right: 30px;
	padding-left: 30px;
	margin-bottom: 24px;
	margin-top: 10px;
    margin-top: 5px; */
	padding-right: 30px;
    margin-bottom: 0px;

    margin-bottom: 4px;
    margin-top: 6px;
}

.broder-right::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 7px;
    height: 82px;
    border-right: 1px dashed #b5b5b5;

    top: 7px;
    height: 63px;
  }

.border-last-padding  {
	border-right: none;
    padding-right: 0;

    margin-top: 6px;
}
.border-first-padding  {
    padding-left: 0;
}

.border-box-design input.form-control, .border-box-design .select-selected, .border-box-design input.form-control:focus {
	background: #ffffff;
}

.radio-btns-outline {
	margin: 0 0 0px;
	padding: 20px 20px 24px;
}

.radio-btns-outline .select-radio-btns span label .btn-color {
	background: #ffffff;
}

.radio-btns-outline .select-radio-btns span input:checked + .btn-color, .radio-btns-outline .select-radio-btns .btn-color:hover {
    color: #fff;
    background: linear-gradient(to bottom, #2e8bdc 0%, #005097 100%);
    border-color: linear-gradient(to bottom, #2e8bdc 0%, #005097 100%);
    font-weight: 600;
    border-color: #1e85ff;
    color: #fff;
    background: #1e85ff;
}

.price-input{
    width: 100%;
    display: flex;
    margin: 30px 0 35px;
  }
  .price-input .field{
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
  }
  .field input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
  }
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
  }
  .price-input .separator{
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
  }
  .slider{
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
  }
  .slider .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #17A2B8;
  }
  .range-input{
    position: relative;
  }
  .range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none!important; 
      margin: 0!important; 
}

input[type=number] { 
    -moz-appearance: textfield!important;
    appearance: textfield!important;
    margin: 0!important; 
  }

  .modal-backdrop {
	--bs-backdrop-opacity: 0.7;
}

.input-symbol .form-text {
	position: relative;
	padding: 0 0 0 40px;
	color: #6c757d;
	font-weight: 400;
	width: 100%;
	display: inline-block;
}

.input-symbol .form-text .fa-solid {
	position: absolute;
	left: 16px;
	top: 3px;
}

.result_block .cards-box-inner {
	padding: 0;
	display: flex;
	gap: 15px;
}

.result_block {
	width: 100%;
}

.result_block .property-img {
	max-width: 400px;
	max-width: 352px;
	position: relative;
}

.result_right {
	width: calc(100% - 415px);
	width: calc(100% - 367px);
	padding: 25px 30px 25px 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

    padding: 16px 30px 20px 10px;
}

.result-title-badge {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	margin: 0 0 5px;
}

.result-title-badge .setup-bagde {
	position: relative;
	margin: 0 0 0 10px;
	padding: 4px 8px 4px;
	border-radius: 5px;
}

.result_rice-block {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.result_rice-block .price-capacity {
	margin: 0 0 12px;
}

.result_block .small-slider .carousel-inner {
	height: 281px;
    height: 247px;
}

.top-result {
	width: 100%;
}

.top-name-address {
	position: relative;
	padding: 0;
}
.result_right .top-name-address {
	padding: 0 230px 0 0;
}

.top-name-address .action-btns {
	position: absolute;
	right: 0;
	/* bottom: 0; */
	top: 4px;
	top: -1px;
}

.search_result_Block {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.popup-title-btns {
	position: relative;
	width: 100%;
	padding-right: 180px;
}

.modal::before {
	content: "";
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: -1;
	opacity: 0;
}

.modal.show::before {
    opacity:1;
}

.modal-backdrop {
	display: none !important;
}

.property-imgs-slider .carousel-indicators {
	justify-content: flex-start;
	margin-bottom: 15px;
	margin-left: 15px;
}

.property-imgs-slider .carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	/* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	opacity: 1;
	border: 0;
	margin-left: 0;
	margin-right: 6px;
}

.property-imgs-slider .carousel-indicators li.active {
	background-color: #1e85ff;
}

.form-btns #load-more-button {
	/* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.owner-search-btn {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 15px;
}

.modal-width-sm {
    max-width: 630px;
}

.click-disable {
	pointer-events: none;
}

.page-title h4 span {
	font-weight: 400;
}

.go-back {
	/* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 3px 1px rgb(0 0 0 / 0.1); */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.1);
}

.has-one-option .custom-select {
	pointer-events: none;
}

/*********** Leads Page Css Start **********/

.leads-tabs {
	padding: 1.5rem 1.5rem 1rem;
}

.leads-tabs .nav-tabs li a {
	top: 0;
	min-width: 80px;
	padding: 8px 10px;
	border-radius: 10px;
}

.tab-pane {
	height: 100%;
	overflow: auto;
}

.cards-scroll {
	height: 100vh;
	overflow: auto;
	padding: 0rem 1.5rem 1rem;
}

.card-date {
	font-weight: 600;
	font-size: 0.89rem;
	color: #1e85ff;
	margin: 3px 0 1px;
}

.lead-card-status {
    border: 1px solid #ccc;
    letter-spacing: 0rem;
	background: #F9D98A;
	width: fit-content;
	float: right;
	border-radius: 8px 8px 0px 0px;
	padding: 3px 8px 10px;
	font-weight: 600;
	font-size: 0.79rem;
	margin: 0 0 -8px 8px;
    color: #0f172a;
    max-width: calc(100% - 93px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    transform: translate(0px, 4px);
    z-index: -1;
    position: relative;
    padding: 1px 12px 10px;
    font-weight: 500;
}

.prop-type-status {
    border: 1px solid #ccc;
    letter-spacing: 1px;
    letter-spacing: 0.03rem;
    letter-spacing: 0rem;

    width: fit-content;
    float: right;
    border-radius: 8px 8px 0px 0px;
    padding: 3px 8px 10px;
    font-weight: 600;
    font-size: 0.79rem;
    margin: 0 0 -8px 0;
    color: #0f172a;
}


.prop-type-status {
    border: 1px solid #ccc;
    letter-spacing: 1px;
    letter-spacing: 0.03rem;
    letter-spacing: 0rem;
    width: fit-content;
    float: right;
    border-radius: 8px 8px 0px 0px;
    padding: 1px 12px 11px;
    font-weight: 500;
    font-size: 0.79rem;
    margin: 0 0 -8px 0;
    color: #0f172a;
    transform: translate(0px, 4px);
    z-index: -1;
    position: relative;
}


.lead-card-card {
	width: 100%;
	border: 1px solid #e5e7eb;
	display: inline-block;
	border-radius: 10px;
    padding: 16px 15px;
    background: rgb(255,255,255);
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlYmY2ZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(235,246,255,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(235,246,255,1)));
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,246,255,1) 100%);
    background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,246,255,1) 100%);
    background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(235,246,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(235,246,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebf6ff',GradientType=0 );
     
}

.lead-name-type h4 {
	padding: 0;
	font-size: 19px;
	line-height: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	width: fit-content;
    white-space: nowrap;
    max-width: 77%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lead-type {
	border: 1px solid #ccc;
	width: fit-content;
	font-size: 0.79rem;
	color: #0f172a;
    color: #737373;
	border-radius: 5px;
	padding: 4px 15px;
	font-weight: 500;
	font-weight: 600;
    font-style: italic;
    height: 27px;
    transform: translate(0px, -2px);
}

.lead-name-type {
	display: flex;
	align-content: center;
	align-items: center;
	gap: 15px;
}

.lead-head {
	border-bottom: 1px solid rgb(229, 231, 235);
	width: 100%;
	padding: 0 50px 8px 0;
	margin: 0 0 15px;
	position: relative;

    border-bottom: 0;
    margin-bottom: -5px;
}

.wishlist-icon {
	box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 19px;
	color: rgb(229, 231, 235);
	position: absolute;
	right: 0;
	top: 0px;
}

.wishlist-icon i.active {
    color: #1e85ff;
}

.lead-head ul {
	margin: 5px 0 0;
	padding: 0;
	display: flex;
	gap: 20px;
}

.lead-head ul li {
	color: #64748b;
	font-weight: 400;
	font-size: 0.79rem;
	list-style: none;
	position: relative;
}

.lead-head ul li::after {
	background: #64748b;
	width: 1px;
	height: 14px;
	content: "";
	position: absolute;
	right: -10px;
	top: 2px;
}

.lead-head ul li:last-child:after {
	display: none;
}

.lead-card-card .location li i.fa-icons {
	color: rgb(30, 133, 255);
	margin: 0px 2px 0px 0px;
	font-size: 18px;
}

.lead-card-card ul li {
	font-style: normal;
	font-weight: 400;
}

.task-count {
	display: flex;
	align-items: center;
	margin: 10px 0 0;
}

.count {
	margin: 0 10px 0 0;
    font-weight: 400;
    font-size: 0.89rem;
	color: #0f172a;
    color: #666666;
    color: #64748A;
}

.count span {
	border: 2px solid #DB4E5C;
	border-radius: 50%;
	color: #DB4E5C;
	font-weight: 600;
	width: 25px;
	height: 25px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 0.69rem;
}

.task-status {
	font-weight: 500;
	font-size: 0.89rem;
	color: #fff;
	background: #DB4E5C;
	border-radius: 5px;
	padding: 2px 8px;
}

.lead-card-detail {
	margin:15px 0 5px;
}

.lead-card-detail ul {
	margin: 4px 0 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
    justify-content: flex-end;
}

.lead-card-detail ul li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 400;
	font-size: 0.79rem;
	color: rgb(176, 186, 188);
	position: relative;
}

.lead-card-detail ul li::after {
	content: "";
	position: absolute;
	right: -8px;
	top: 5px;
	width: 1px;
	height: 10px;
	background: rgb(176, 186, 188);
}

.lead-card-detail ul li:last-child:after {
	display: none;
}

.assign-toggle-detail {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgb(229, 231, 235);
	padding: 14px 0 0px;
}

.assign-toggle {
	padding: 0;
	min-width: auto;
	font-weight: 400;
	font-size: 0.79rem;
	color: #1e85ff !important;
	opacity: 1 !important;
	text-transform: none;
}

.assign-toggle i {
	font-size: 11px;
    transition: transform 0.3s ease;
}

.assign-toggle-detail p {
	font-weight: 400;
	font-size: 0.79rem;
	color: rgb(100, 116, 139);
	margin: 0;
}


.assign-toggle-detail p span {
	color: #0f172a;
}

.assign-click-open {
	width: 100%;
	text-align: right;
    max-height: 0; overflow: hidden; transition: max-height 0.5s ease;
}

.assign-click-open p {
	font-weight: 300;
	font-size: 0.79rem;
	color: rgb(100, 116, 139);
	margin: 0;
}


.assign-click-open p span {
	color: #0f172a;
}

.rotate-up {
    transform: rotate(180deg);
}

.lead-card-btns {
	width: auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	position: absolute;
	right: -6px;
	top: 0;
	height: 100%;
	gap: 5px;
}

.lead-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	color: #fff;
	flex-direction: column;
	font-weight: 600;
    font-style: italic;
	font-size: 0.89rem;
	padding: 11px 9px;
	border-radius: 10px;
	border: none;
    position: relative;
    /* background: linear-gradient(to bottom, #0099ff 0%, #005097 100%); */
    background: #0082d9;

}

.icon-round {
	width: 48px;
	height: 48px;
	background: #fff;
	border-radius: 50%;
	margin: 3px 5px 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #0082d9;
	font-size: 22px;
}

.btn-left-arrow {
	position: absolute;
	left: -9px;
	top: 10px;
	color: #0082d9;
	z-index: 1;
	font-size: 34px;
}

/* .lead-btn::before {
	content: "";
	position: absolute;
	left: -16px;
	top: 14px;
	width: 25px;
	height: 25px;
	background-image: url(../images/arrow-icon.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
} */

.lead-btn img {
	margin:0 0 -3px;
	width: 58px;
}

.lead-card-box {
	padding-right: 75px;
	margin-bottom: 15px;
}

.close-icon {
	/* color: #eee;
	font-size: 22px; */
	width: 35px;
	height: 35px;
}

.lead-properties-right .btn-title {
	padding: .75rem 1.5rem .75rem 0;
	margin: 0 0 2px;
}

.left-leads .card-header {
	margin: 0 0 0;
	padding: 1.15rem 1.5rem;
}

.type-btns {
	padding: 1.5rem 1.5rem 1rem;
}

.type-btns .nav-tabs li a {
	top: 0;
	min-width: 80px;
	padding: 8px 10px;
	border-radius: 10px;
}

.type-btns .btn span {
	font-size: 0.79rem;
}

.lead-properties-right .tab-content > .active {
	opacity: 1;
}

.lead-properties-right .top-name-address {
	padding: 0 50px 0 0;
}

.lead-properties-right .tab-content .tab-pane {
	margin-top: -24px;
}

.property-email-btns {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	gap: 5px;
	align-items: center;
	padding: 5px 0 0;
    height: 58px;
}

.share-btn {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: fit-content;
	color: #fff;
	font-weight: 600;
    line-height: 1.3;
    font-style: italic;
	font-size: 0.89rem;
	padding:12px 20px 12px 20px;
	border-radius: 10px;
	border: none;
    position: relative;
    /* min-height: 72px; */
    text-align: left;
    gap: 15px;
    position: relative;
    z-index: 12;
    /* background: linear-gradient(to bottom, #0099ff 0%, #005097 100%); */
    background: #0082d9;
    height: 100%;
}

.btn-top-arrow {
	position: absolute;
	right: 26px;
	top: -18px;
	font-size: 34px;
	color: #0082d9;
}

/* .share-btn::before {
	content: "";
	position: absolute;
	right: 15px;
    top: -10px;
	width: 0;
	height: 0;
	border-style: solid;
    border-width: 0px 8px 12px 8px;
    border-color: transparent transparent #2e8bdc transparent;
} */
/* .share-btn::before {
	content: "";
	position: absolute;
	right: 25px;
    top: -20px;
	width: 25px;
	height: 30px;
	background-image: url(../images/arrow-icon2.svg);
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
} */

.whatsapp-icon {
	margin: 0;
	background: #00a321;
	color: #fff;
	font-size: 34px;
	border: 2px solid #fff;
}

.share-btn img {
	margin: 0;
	width: 36px;
	border: 2px solid #fff;
	border-radius: 50%;
}

.btn-checkbox label {
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 15px;
}

.btn-checkbox label .checkboxbtn {
	background: #fff;
	display: flex;
	width: auto;
	height: 45px;
	border-radius: 50%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.btn-checkbox label input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    padding: 0px;
    height: 18px;
    width: 18px;
    min-width: 18px;
    background-color: #fff;
    border-radius: 3px;
    opacity: 1;
    cursor: pointer;
    margin: 0;
    border: 1px solid #6D7379;
    position: relative;
}

.btn-checkbox label input[type="checkbox"]:checked::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;
}

.btn-checkbox label input[type="checkbox"]:checked {
	background-color: #1e85ff;
    border: 1px solid #1e85ff;
}

.lead-properties-right .result_block {
	position: relative;
	margin-bottom: 15px;
}

.checkbox-note {
    height: 100%;
    align-content: center;
    width: -webkit-fill-available;
    padding: 10px 20px;
    /* position: absolute; */
    left: 0;
    bottom: 14px;
    border-radius: 10px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left,  rgba(221,221,221,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(221,221,221,1)), color-stop(100%,rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left,  rgba(221,221,221,1) 0%,rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left,  rgba(221,221,221,1) 0%,rgba(255,255,255,0) 100%);
    background: -ms-linear-gradient(left,  rgba(221,221,221,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to right,  rgba(221,221,221,1) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#00ffffff',GradientType=1 );
    /* background: linear-gradient(to right, rgb(0 183 255 / 9%) 0%, rgba(255, 255, 255, 0) 100%); */
 }

 .checkbox-note p {
	margin: 0;
	font-style: italic;
    font-size: 0.79rem;
}



.lead-properties-slide {
    width: 100%; 
    height: 100%; 
    transition: all 0.5s ease; 
    overflow: hidden; 
    position: relative;
    right: -120%;
}


.lead-properties-slide.show {
    right:0; 
}


.lead-card-box {
    transition: opacity 0.3s ease; 
}

.lead-card-box.active .lead-card-card {
    border:1px solid #DB4E5C; 
    opacity: 1; 
}

.lead-card-box.unactive {
    opacity: 0.5; 
}

.lead-properties-right .top-name-address h4 {
	margin: 0;
}

.lead-properties-right .top-name-address .fa-icons {
	font-size: 18px;
}

.lead-properties-right .top-name-address .action-btns {
	bottom: 4px;
}

.lead-properties-right .top-name-address .action-btns .nav-link.btn--white {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

button#dropdownMenuButton {
    border: none;
    border-radius: 50px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.lead-properties-right .result_block .cards-box-inner {
	border: 1px solid #e5e7eb;
}

.lead-properties-right .type-btns .nav-tabs li a {
	padding: 8px 20px;
}

.left-leads .card-header h4 {
	padding: 7px 0 0;
}

.btn-checkbox label .email-text {
	font-weight: 600;
    width: max-content;
}

.btn-checkbox label .email-text span {
	font-weight: 400;
}

.btn-checkbox label .email-text .italic-none {
	font-style: normal;
}

.btn-checkbox label .email-text .font600 {
    font-weight: 600;
}

.btn-checkbox label .email-text .fw400 {
    font-weight: 400;
}

.share-btn.btn-checkbox {
	min-width: 215px;
}

.top-name-address .dropdown-menu.show {
	opacity: 1;
	visibility: visible;
}

.dropdown-menu ul li a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ckbox-submit-btn strong {
	font-weight: 600;
}

.ckbox-submit-btn span {
	text-transform: none;
	font-weight: 400;
}

.left-leads .card {
	height: calc(100% - 48px);
}

.form-group .error-message {
	color: #d12d2d;
	font-size: 0.87em;
	font-weight: 500;
	margin: 5px 0 0;
}

.click-disabled {
    pointer-events: none; /* Disable all pointer events */
}

.center-items:first-child  {
    display:table;
    margin-left: auto;
}
.center-items:last-child  {
    display:table;
    margin-right: auto;
}


    
.quantity-control {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #ccc;

    border: 1px solid #e5e7eb;

    border-radius: 4px;
    border-radius: 10px;
    overflow: hidden;
  
    margin-right: 0;
    margin-left: auto;
    height: 28px;
  }
  
.qty-btn {
    background: #f7f7f7;
    border: none;
    padding: 0 12px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    user-select: none;
    transition: background .2s;
    color: #1f2937;
    background: #f4f4f4;
  }
  
.qty-btn:hover {
    background: #e2e2e2;
}
  
.qty-input {
    width: 3em;
    border: none;
    text-align: center;
    font-size: 16px;
    color: #1f2937;
}
  
.qty-input:focus {
    outline: none;
}
  
.qty-btn:active {
    background: #d0d0d0;
}
  
.qty-box {
    display: flex;
}
.qty-box label {
      margin: 3px 0 0 !important;
}
  
.custom-select .small {
      max-height: 27px;
      min-height: 27px;
      padding-top: 2px;
      border: none;

      text-overflow: ellipsis;
      width: 75%;
      white-space: nowrap;
      overflow: hidden;
  }

  .custom-select .small:after {
      top: 11px;
  }

  .select-selected.select-arrow-active:after {
      top: 7px;
      top: calc(50% - 7px);
  }

  .small-field {
      width: 150px;
      height: 28px;
      min-height: 27px;
      max-height: 27px;
  }
  .t2box {
      padding-left: 35px;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      border: none;
      background: #f9f9f9;
      padding: 12px 10px;
      color: #1f2937;
      font-size: 0.890rem;
      font-weight: 400;
      outline: none;
  }
  .small-input-rupee {
      top: 0px !important;
      left: 0px !important;
      background: #e7e7e7;
      height: 27px !important;
      border-top-left-radius: 8px;
      border-bottom-left-radius: 8px;
      width: 30px !important;
      /* background: #f9f9f9; */

  }
  .small-input-percent  {
      top: 0px !important;
      left: 120px !important;
      background: #e7e7e7;
      height: 27px !important;
      border-top-right-radius: 7px;
      border-bottom-right-radius: 7px;
      width: 30px !important;
  }
.small-input-year  {
      top: 0px !important;
      left: 90px !important;
      background: #e7e7e7;
      height: 27px !important;
      border-top-right-radius: 9px;
      border-bottom-right-radius: 9px;
      width: 60px !important;
}
.form-group2 {
      margin-bottom: 10px;
}
.form-group2 label{
      font-weight: 600;
      width: calc(100% - 150px);
      font-size: .890rem;
      color: #64748b;
}

.info-capsule {
    border-radius: 20px;
    padding: 7px 18px;
    padding: 6px 14px;
    background: #f3f3f3;
    color: #888888;
    font-weight: 550;
    font-weight: 400;
    font-style: italic;
    max-width: 416px;
    word-wrap: break-word;
    font-size: 0.79rem;
}

#prestartdatedisplay {
    position: absolute;
    top: 3px;
    left: 9px;
    color: #1f2937;
    font-size: 0.890rem;
    font-weight: 400;
    background: #f9f9f9;
}

h4.title {
    margin-left: 12px;
    font-size: large;
    /* color: #7d7d7d;
    color: #8a8a8a; */
    font-weight: 700;
}
#lead-properties-title {
    display: none;
}
.lead-card-btns {
    display: none !important;
}
.lead-card-box {
    padding: 0px !important;
}
.lead-card-box.active .lead-card-card {
    border: 1px solid #507dff;
    border: 2px solid #1e85ff;
}
#send_email {
    z-index: 153;
    position: absolute;
    right: 0;
    top: 0;
    margin: 1.5rem 1.5rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#send_email:disabled {
    display: none;
}
.share-btn {
    min-width: auto !important;
    min-width: max-content !important;
    min-height: auto;
    background: white;
    color: #757575;
    border: 1px solid #aaaaaa;
    /* padding: 10px 15px; */
}
.leads-tabs {
    padding: 1.5rem 1.5rem 0rem;
}
.tabs-tabs .nav-tabs li {
    margin: 0px 10px 10px 0;
}
.tab-container {
    user-select: none;
    gap: 5px;
    gap: 1vw;
    display: flex;
    justify-content: center;
    height: 2rem;
    white-space: nowrap;
    max-width: 480px;
    width: 100%;
}
.tab {
    min-width: 50px;
    min-width: 105px;
    min-width: 85px;
    height: 100%;
    min-height: 40px;
    background: #f1f1f1;
    background: white;
    background: #e2edfa;
    background: #fff0;
    border-radius: 5px;
    color: gray;
    color: #aeaeae;
    color: #727272;
    display: flex;
    vertical-align: bottom;
    align-content: end;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-bottom: solid 0.125rem transparent;
    box-sizing: border-box;
    height: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    font-size: larger;
}
/* lead.css */
#property-content {
    padding-bottom: 25px;
}
.cards-scroll {
    height: calc(100vh - 306px) !important;
    height: max-content !important;
}
.cards-scroll.left {
    height: calc(100vh - 256px) !important;
    padding-bottom: 10px;
    padding-bottom: 65px;
    scroll-behavior: smooth;
}
.tab-top-after {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.tab-top-hover{
    /* background: #f2f8ff !important; */
    border-radius: 10px !important;
    box-shadow: 0px 4px 16px 0px #00000030;
}
.tabs-tabs .nav-tabs li.active a{
    background: rgb(226 232 239) !important;
    background: #f2f8ff !important;
}
.lead-properties-slide {
    overflow-y: visible !important;
    overflow-x: clip !important;
}
.lead-properties-slide.show {
    overflow-x: visible !important;
}
.lead-properties-right {
    overflow-y: visible !important;
    overflow-x: clip !important;
}
.left-leads .card {
    position: fixed;
    width: calc(33vw - 116px);
    height: calc(100vh - 169px);
    transition: width 0.3s ease-in-out;
}
.toggle-menu .left-leads .card {
    width: calc(33vw - 63px) !important;
}
.left-leads .card-header {
    height: 50px;
}
#extra-button{
    display: none;
    background: green;
}

.row2 {
    max-width: 50%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    gap:20px;
}

.clamp-notes {
    text-overflow: ellipsis;       
  
    line-height: 1.2em;
    max-height: calc(1.2em * 4);

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
  
    /* 
    It styles the new multi-select dropdown without affecting the old one.
*/

/* Main wrapper for the new multiselect */
.custom-multiselect {
    position: relative;
    user-select: none;
}

/* The box that shows the current selection summary (e.g., "3 items selected") */
.custom-multiselect .multi-select-selected {
    position: relative;
    cursor: pointer;
    padding: 5px 25px 5px 12px;
    /* border: 1px solid #ccc; */
    border-radius: 13px;
    background-color: white;
    height: 100%;
    /* height: auto; */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

/* Arrow for the dropdown */
.custom-multiselect .multi-select-selected::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #333 transparent transparent transparent;
}

/* Arrow direction when dropdown is open */
.custom-multiselect .multi-select-selected.select-arrow-active::after {
    border-color: transparent transparent #333 transparent;
    top: 40%;
}

/* Container for all the checkbox options */
.custom-multiselect .multi-select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
}

/* Hides the options list */
.custom-multiselect .select-hide {
    display: none;
}

/* Styling for each individual option (row) in the dropdown */
.custom-multiselect .multi-select-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    padding: 5px 9px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-multiselect .multi-select-item:hover {
    background-color: #f1f1f1;
}

/* Styling for the checkbox itself */
.custom-multiselect .multi-select-item input[type="checkbox"] {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Styling for the label text */
.custom-multiselect .multi-select-item label {
    flex-grow: 1;
    cursor: pointer;
    /* Prevent text selection when clicking rapidly */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* multi select dropdown css end */

  
    /* 
    It styles the new multi-select dropdown without affecting the old one.
*/

/* Main wrapper for the new multiselect */
.custom-multiselect_search {
    position: relative;
    user-select: none;
}

/* The box that shows the current selection summary (e.g., "3 items selected") */
.custom-multiselect_search .multi-select-selected {
    position: relative;
    cursor: pointer;
    padding: 5px 25px 5px 12px;
    /* border: 1px solid #ccc; */
    border-radius: 13px;
    background-color: white;
    height: 100%;
    /* height: auto; */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

/* Arrow for the dropdown */
.custom-multiselect_search .multi-select-selected::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-color: #333 transparent transparent transparent;
}

/* Arrow direction when dropdown is open */
.custom-multiselect_search .multi-select-selected.select-arrow-active::after {
    border-color: transparent transparent #333 transparent;
    top: 40%;
}

/* Container for all the checkbox options */
.custom-multiselect_search .multi-select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ddd;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
}

/* Hides the options list */
.custom-multiselect_search .select-hide {
    display: none;
}

/* Styling for each individual option (row) in the dropdown */
.custom-multiselect_search .multi-select-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    padding: 5px 9px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-multiselect_search .multi-select-item:hover {
    background-color: #f1f1f1;
}

/* Styling for the checkbox itself */
.custom-multiselect_search .multi-select-item input[type="checkbox"] {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Styling for the label text */
.custom-multiselect_search .multi-select-item label {
    flex-grow: 1;
    cursor: pointer;
    /* Prevent text selection when clicking rapidly */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
/* multi select dropdown css end */


.left-symbol {
    background-image: linear-gradient(to right, #e7e7e7 35px, transparent 35px) !important;
}




.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome and Opera */
          }


.large .multi-select-selected{
    cursor: pointer;
    user-select: none;
    border: 1px solid #e5e7eb;
    background: #f9f9f9;
    padding: 12px 10px;
    color: #1f2937;
    font-weight: 400;
    font-size: .890rem;
    border-radius: 10px;
    min-height: 47px;
    min-height: 42px;
    padding: 9.5px 10px;
    width: 100%;
}
.large  input {
    margin-bottom: 10px;
}


/* ------ Calendar Events ------ */

.view-details-popup {
    position: relative;
}
.event-header {
    background-color: #e7e7e7;
    padding: 1rem 1.75rem;
    height: 59.2px;
  }
  
  .event-header h2 {
      margin: 0;
      font-size: 1.6rem;
      font-weight: 500;
  }
  
          
.expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: overflow 0.25s ease-in-out, opacity 0.25s ease-in-out, max-height 0.25s ease-in-out;
    bottom: 0;
    left: 0;
    right: 0;
}

.expandable-content.expanded {
    max-height: 500px;
}

.event-details-container {
    overflow: hidden;
    transition: overflow 0.25s ease-in-out, opacity 0.25s ease-in-out, max-height 0.25s ease-in-out;
}


    /* Scoped styles for the event detail view popup */
    .view-details-popup {
        padding: 20px;
        /* background-color: #ffffff; */
        /* Using a common, clean system font stack */
        /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */
        border-radius: 8px; /* Matches outer modal rounding */
        /* color: #3c4043;  */
    }

    .view-details-popup .event-title {
        font-size: 2.75rem;
        font-weight: 600;
        /* color: #0b2e42;  */
        color: #1f2937;
        margin: 0;
        padding-bottom: 10px;
    }

    .view-details-popup .event-info-box {
        background-color: #f3f9ff; /* A very light, pleasant blue */
        border-radius: 10px;
        padding: 0.25rem 1.5rem;
        margin-bottom: 16px;
        border: 1px dashed #b5b5b5;
        color: #1f2937;
    }

    .view-details-popup .info-line {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        color: #64748b;;
    }

    .view-details-popup .info-line-divider {
        border-top: 1px solid #e8e8e8;
        /* margin: 0.5rem 0; */
    }

    .view-details-popup .location-icon {
        color: #1e85ff; /* A standard vibrant blue for the icon */
        font-size: 20px;
        margin-right: 0.75rem;
        width: 1em; /* Helps with alignment */
        text-align: center;
    }

    .view-details-popup .event-description {
        font-size: 1.25rem;
        /* line-height: 1.6; */
        color: #64748b; /* A slightly lighter gray for less emphasis */
        margin-top: 0;
        margin-bottom: 2.5rem;
        margin-bottom: 30px;
    }

    .view-details-popup .participants-header {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1f2937; /* Consistent with the main title */
        margin-bottom: 10px;
        color: #64748b;
        margin-top: 20px !important;
    }

    .view-details-popup .participants-list {
        /* border: 1.5px dotted #dcdcdc; */
        border-radius: 10px;
        padding: 1.5rem;
    border: 1px dashed #b5b5b5;
    margin-bottom: 2px;
    }

    .view-details-popup .participant {
        padding-bottom: 10px;
        /* margin-bottom: 1rem;
        border-bottom: 1.5px dotted #e0e0e0; */
    }

    .view-details-popup .participant:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .view-details-popup .participant-details {
        font-size: 0.9rem;
        color: #b0babc;
    }

    .view-details-popup .actions {
        text-align: center;
        margin-top: 2.5rem;
    }

    .view-details-popup .btn-ok {
        background: linear-gradient(180deg, #3D8BFA 0%, #0660E0 100%);
        color: #ffffff;
        border: none;
        padding: 0.8rem 4rem;
        font-size: 1.125rem;
        font-weight: 500;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
    }

    .view-details-popup .btn-ok:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        background: linear-gradient(180deg, #4d94fa 0%, #1a73e8 100%);
    }


    
    .new-event-container {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 750px;
        overflow: hidden; /* Ensures header corners are clipped */
    }
    
    .event-form-body {
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
    }
    
    /* Style labels as section titles */
    .event-form-body > label {
        /* font-weight: 600; */
        font-size: 1rem;
        /* color: #495057; */
        margin-bottom: 0.5rem; 
    }
    
    /* General Input and Textarea Styling */
    .event-form-body input[type="text"],
    .event-form-body textarea {
        width: 100%;
        padding: 0.8rem;
        /* border: 1px solid #ced4da; */
        border-radius: 6px;
        font-size: 0.89rem;
        /* color: #495057; */
        /* margin-bottom: 1.25rem; */
        box-sizing: border-box;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }
    
    .event-form-body textarea {
        resize: vertical;
        min-height: 90px;
    }
    
    /* Schedule Section */
    .schedule-section {
        background-color: #f0f7ff; /* Light blue background */
        padding: 1rem;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    .schedule-section input {
        margin-bottom: 0; /* Override default margin */
    }
    
    .schedule-time-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .schedule-time-row .date-picker {
        flex-grow: 2; 
    }
    
    .schedule-time-row .time-picker {
        flex-grow: 1;
        min-width: 90px;
        text-align: center;
    }
    
    .schedule-time-row .time-separator {
        color: #6c757d;
    }
    
    /* Wrappers for inputs with icons */
    .location-wrapper,
    .search-wrapper {
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .location-wrapper i,
    .search-wrapper i {
        position: absolute;
        right: 16px;
        color: #1f2937;
        pointer-events: none; /* Icon is not clickable */
    }
    
    .location-wrapper input,
    .search-wrapper input {
        padding-right: 40px; /* Make space for the icon */
    }
    
    /* Participants Section */
    .participants-section {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        /* margin-bottom: 1.25rem; */
    }
    .participants-section input {
        margin-bottom: 0; /* Override default margin */
    }
    
    
    /* Form Buttons */
    .form-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .form-buttons button {
        padding: 0.7rem 1.75rem;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    
    .btn-cancel {
        background-color: transparent;
        color: #6c757d;
    }
    
    .btn-cancel:hover {
        background-color: #f1f3f5;
    }
    
    .btn-save {
        background-color: #0d6efd; /* Bootstrap blue */
        color: white;
    }
    .btn-save:hover {
        background-color: #0b5ed7; /* Darker blue on hover */
    }
    
  
    .fc-button-primary{
      background: #fff ;
      color: #64748b ;
      border: 1px solid #e5e7eb !important;
      border-radius: 10px 10px 0 0 !important;
      text-decoration: none !important;
      padding: 13px 15px !important;
      font-weight: 400 !important;
      font-size: 16px !important;
      min-width: 150px !important;
      display: inline-block !important;
      text-align: center !important;
      z-index: 123 !important;
      min-width: 80px !important;
      padding: 8px 10px !important;
      border-radius: 10px !important;
      padding: 8px 20px !important;
      height: 42.2px !important;
    }
    .fc-blue-button:hover {
      background: #1e85ff !important;
      color: #fff !important;
    }
    
    #calendar { max-height: 88vh; }
    .fc-view {
        background: white;
        border-radius: 15ppx;
        overflow: hidden;
    }
    .search-wrapper { position: relative; }
    .search-results-dropdown {
        position: absolute; top: 100%; left: 0; right: 0; z-index: 1050;
        border: 1px solid #dee2e6; border-top: none; max-height: 300px;
        overflow-y: auto; background-color: #fff; display: none;
    }
    .search-results-dropdown .list-group-item { cursor: pointer; }
    .search-results-dropdown .list-group-item:hover { background-color: #f8f9fa; }
    .badge-item {
        background: rgb(237 243 251); color: #1e85ff; font-weight: 600; font-size: 0.8rem;
        padding: 6px 10px; display: inline-flex; align-items: center; border-radius: 7px;
    }
    .badge-close {
        background: none; border: none; font-size: 1.2em; color: #6c757d;
        cursor: pointer; padding: 0 0 0 8px; line-height: 1;
    }



    
  
  .new-event-container {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 750px;
      overflow: hidden; /* Ensures header corners are clipped */
  }
  
  .event-form-body {
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
  }
  
  /* Style labels as section titles */
  .event-form-body > label {
      font-size: 1.1rem;
      margin-bottom: 0.5rem; 
  }
  
  /* General Input and Textarea Styling */
  .event-form-body input[type="text"],
  .event-form-body textarea {
      width: 100%;
      padding: 0.8rem;
      border-radius: 6px;
      font-size: 0.89rem;
      box-sizing: border-box;
      transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  }
  
  .event-form-body textarea {
      resize: vertical;
      min-height: 90px;
  }
  
  /* Schedule Section */
  .schedule-section {
      background-color: #f0f7ff; /* Light blue background */
      padding: 1rem;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
  }
  .schedule-section input {
      margin-bottom: 0; /* Override default margin */
  }
  
  .schedule-time-row {
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }
  
  .schedule-time-row .date-picker {
      flex-grow: 2; 
  }
  
  .schedule-time-row .time-picker {
      flex-grow: 1;
      min-width: 90px;
      text-align: center;
  }
  
  .schedule-time-row .time-separator {
      color: #6c757d;
  }
  
  /* Wrappers for inputs with icons */
  .location-wrapper,
  .search-wrapper {
      position: relative;
      display: flex;
      align-items: center;
  }
  
  .location-wrapper i,
  .search-wrapper i {
      position: absolute;
      right: 16px;
      color: #1f2937;
      pointer-events: none; /* Icon is not clickable */
  }
  
  .location-wrapper input,
  .search-wrapper input {
      padding-right: 40px; /* Make space for the icon */
  }
  
  /* Participants Section */
  .participants-section {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      /* margin-bottom: 1.25rem; */
  }
  .participants-section input {
      margin-bottom: 0; /* Override default margin */
  }
  
  
  /* Form Buttons */
  .form-buttons {
      display: flex;
      justify-content: flex-end;
      gap: 0.75rem;
      margin-top: 1rem;
  }
  
  .form-buttons button {
      padding: 0.7rem 1.75rem;
      border-radius: 6px;
      font-size: 1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .btn-cancel {
      background-color: transparent;
      color: #6c757d;
  }
  
  .btn-cancel:hover {
      background-color: #f1f3f5;
  }
  
  .btn-save {
      background-color: #0d6efd; /* Bootstrap blue */
      color: white;
  }
  .btn-save:hover {
      background-color: #0b5ed7; /* Darker blue on hover */
  }
  
  .date-input {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ced4da;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      font-size: 1rem;
      color: #1f2937;
      /* margin-bottom: 1.25rem; */
      box-sizing: border-box;
      transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  }
  .time-input {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ced4da;
      border: 1px solid #e5e7eb;
      border-radius: 6px;
      font-size: 1rem;
      color: #1f2937;
      box-sizing: border-box;
      transition: border-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
      flex-grow: 1;
      min-width: 8rem;
      text-align: center;
  }
  thead .fc-scroller {
    overflow: clip !important;
  }
  tbody .fc-scroller {
    overflow: visible    !important;
  }


/* ------ End Calendar Events ------ */

/* Search  */

.search-badge-container {
    /* padding-top: 8px; */
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge-item {
    margin-bottom: 2px;
    background: rgb(237 243 251);
    color: #1e85ff;
    border-bottom-color: #e5e7eb;
    font-weight: 600;
    font-size: 0.69rem;
    padding: 7px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 7px;
}

.badge-close {
    background: none;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    color: #6c757d;
    cursor: pointer;
    padding: 0 0 0 6px;
    line-height: 1;
}

.badge-close:hover {
    color: #343a40;
}
    .search-container {
        position: relative;
        width: 350px; /* Adjust width as needed */
    }

    #search-results {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1050; /* Ensure it's above other content */
        border: 1px solid #dee2e6;
        border-top: none;
        border-radius: 0 0 .375rem .375rem;
        max-height: 300px;
        overflow-y: auto;
        background-color: #fff;
    }

    #search-results .list-group-item {
        cursor: pointer;
        border-left: none;
        border-right: none;
    }
    #search-results .list-group-item:first-child {
         border-top-left-radius: 0;
         border-top-right-radius: 0;
    }
    #search-results .list-group-item:last-child {
        border-bottom: none;
    }

    #search-results .list-group-item:hover {
        background-color: #f8f9fa;
    }


.search-container {
    position: relative;
    width: 300px; /* Adjusted width to fit both */
}
.search-results-dropdown { /* Using a class instead of ID for reusability */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 .375rem .375rem;
    max-height: 176px;
    max-height: 150px;
    overflow-y: auto;
    background-color: #fff;
    display: none; /* Hidden by default */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.search-results-dropdown .list-group-item { cursor: pointer; }
.search-results-dropdown .list-group-item:hover { background-color: #f8f9fa; }

.fc-list-day-text {
  color: #64748b !important;
  text-decoration: none;
}
.fc-list-day-side-text {
  color: #64748b !important;
  text-decoration: none;
}
td.fc-list-event-graphic {
  display: none;
}


/* The main container for the custom select */
.custom-time-select {
    position: relative;
    user-select: none;
    width: 286px;
    width: 140px;
    width: min-content;
}

/* Style for the visible text input */
.custom-time-select input[type="text"] {
    width: 100%;
    padding: 10px 0px;
    padding-right: 25px;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    font-size: 0.89rem;
    box-sizing: border-box;
    max-height: 42px;
    outline: none;
}

/* Arrow icon using a pseudo-element */
.custom-time-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #64748b;
    pointer-events: none; /* Clicks should go to the input */
}

/* The container for the dropdown items */
.select-items {
    position: absolute;
    background-color: #fff;
    top: calc(100% + 5px); /* Position below the input */
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hide the items by default */
.select-hide {
    display: none;
}


.select-items div:last-child {
    border-bottom: none;
}

.list-group {
    color: #64748b !important;
    padding: 10px 15px !important;
    cursor: pointer !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}





/* In a <style> tag in calendar.html */
    .custom-time-select {
    position: relative;
    flex-grow: 1; /* Allows it to take up space like the original */
}

.visible-time-input {
    cursor: pointer;
    background-color: #fff !important; /* Override other styles to ensure it's white */
}

.custom-time-select .select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999; /* Make sure it appears above everything in the modal */
    max-height: 200px;
    overflow-y: auto;
    /* border: 1px solid #ced4da; */
    border-top: none;
    border-radius: 0 0 6px 6px;
}

.select-items div {
    color: #64748b;
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.select-hide {
    display: none;
}

.hidden-time-input {
    display: none !important; /* This input holds the real value but is never seen */
}

/* End calendar Events */

.load-more {
    color: #fff !important;
    background: #1e85ff !important;
    border: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
}

.load-more:hover {
    color: #1e85ff !important;
    background: #fff !important;
    border: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
}

.event-heading {
    font-size: 17px !important;
    font-weight: 700 !important;
}

.error-button-light:hover {
	color:white !important;
    transition: none !important;
    border: none !important;
    background: linear-gradient(to bottom, #D12D2D, #981919) !important;
}