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

/* Gilroy - Regular / 400 */
@font-face {
	font-family: "Gilroy-Regular";
	src: url(../website-fonts/Gilroy-Regular.ttf);
}

/* Gilroy - Medium / 500 */
@font-face {
	font-family: "Gilroy-Medium";
	src: url(../website-fonts/Gilroy-Medium.ttf);
}

/* Gilroy - Semibold / 600 */
@font-face {
	font-family: "Gilroy-Semibold";
	src: url(../website-fonts/Gilroy-SemiBold.ttf);
}

/* Gilroy - Bold / 700 */
@font-face {
	font-family: "Gilroy-Bold";
	src: url(../website-fonts/Gilroy-Bold.ttf);
}

:root {
	--white-colour: #FFFFFF;
	--black-colour: #000000;
	--light-grayish-blue: #F0F2F5;
	--ice-blue: #F7FBFF;
	--dusty-blue: #8897AD;
	--primary-text: #0C1421;
	--secondary-text: #313957;
	--dark-indigo: #181860;
	--soft-orange: #F1B254;
	--neutral-colour: #F6F8FB;
	--deep-indigo: #1B1464;
	--jet-black: #1E1E1E;
	--cloud-white: #F1F4FA;
	--muted-sky-blue: #809FB8;
	--deep-pink: #ED1E79;
	--gray-300: #D0D5DD;
	--gray-500: #667085;
	--gray-700: #344054;
	--gray-900: #101828;
	--gray-200: #EAECF0;
	--gray-50: #5F6D7E;
	--primary-50: #F9F5FF;

	--slate-200: #E2E8F0;
	--slate-300: #CBD5E1;
	--slate-500: #64748B;
	--slate-700: #334155;
	--slate-900: #0F172A;

	/* font-family */
	--font-Roboto: "Roboto", sans-serif;
	--font-Gilroy-Regular: "Gilroy-Regular";
	--font-Gilroy-Medium: "Gilroy-Medium";
	--font-Gilroy-Semibold: "Gilroy-Semibold";
	--font-Gilroy-Bold: "Gilroy-Bold";
}

body {
	font-family: var(--font-Gilroy-Regular);
	font-size: 16px;
	line-height: 24px;
	color: #1B1464;
}

.text-gray-500 {
	color: var(--gray-500);
}

img {
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--font-Gilroy-Medium);
}

h1 {
	font-size: 48px;
	line-height: 54px;
	letter-spacing: 0.1px;
	color: var(--deep-indigo);
}

h2 {
	font-size: 32px;
	line-height: 100%;
	letter-spacing: 1%;
}

h3 {
	font-weight: 500;
	font-size: 23.44px;
	line-height: 100%;
	color: #06152B;
}

.h3-text {
	font-size: 22px;
	line-height: 28px;
	font-family: var(--font-Gilroy-Semibold);
	color: var(--gray-900);
}

.text-2xl {
	font-size: 18px;
	line-height: 35px;
	color: var(--muted-sky-blue);
}

.text-base {
	font-size: 14px;
	line-height: 24px;
	font-family: var(--font-Gilroy-Medium);
}

.text-lg {
	font-size: 18px;
	line-height: 25px;
	font-family: var(--font-Gilroy-Medium);
	color: var(--gray-900);
}

.text-lg a {
	color: var(--gray-900);
}

.text-sm {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.1px;
	font-family: var(--font-Gilroy-Medium);
}

.text-xs {
	font-size: 12px;
	line-height: 16px;
	font-family: var(--font-Gilroy-Medium);
}

.btn-shape {
	font-family: var(--font-Gilroy-Medium);
	font-size: 14px;
	line-height: 24px;
	color: var(--white-colour);
	background-color: var(--soft-orange);
	padding: 8px 16px;
	border-radius: 6px;
}

.btn-shape:hover {
	background-color: var(--dark-indigo);
}

p,
figure {
	margin: 0;
}

span,
small {
	display: inline-block;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	display: inline-block;
	transition: 0.3s all ease-in-out;
	-webkit-transition: 0.3s all ease-in-out;
	-moz-transition: 0.3s all ease-in-out;
}

button {
	border: none;
	background: transparent;
	cursor: pointer;
	transition: 0.3s all ease-in-out;
	-webkit-transition: 0.3s all ease-in-out;
	-moz-transition: 0.3s all ease-in-out;
	padding: 0;
}

button:focus {
	outline: none;
	box-shadow: none !important;
}

input,
textarea,
input:focus,
textarea:focus {
	outline: none;
	border: none;
}

::placeholder {
	opacity: 1;
}

select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.font-Gilroy-Regular {
	font-family: var(--font-Gilroy-Regular);
}

.font-Gilroy-Medium {
	font-family: var(--font-Gilroy-Medium);
}

.font-Gilroy-Semibold {
	font-family: var(--font-Gilroy-Semibold);
}

.font-Gilroy-Bold {
	font-family: var(--font-Gilroy-Bold);
}

.font-Roboto {
	font-family: var(--font-Roboto);
}



/*--------------------
 Back to Top Button
---------------------*/

.scrollToTopBtn {
	background-color: #0C46A6;
	border: none;
	border-radius: 50%;
	color: white;
	cursor: pointer;
	font-size: 20px;
	line-height: 0;
	width: 45px;
	height: 45px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 100;
	opacity: 0;
	transform: translateY(100px);
	transition: all .5s ease;
}

.showBtn {
	opacity: 1;
	transform: translateY(0)
}




/* 
--------------------------
SIGN-IN PAGE START
--------------------------
*/

.authentication-body {
	background-color: var(--light-grayish-blue) !important;
}

.authentication-area {
	padding: 16px 12px;
}

.header-logo2 {
	max-width: 185px;
}

.auth-info {
	max-width: 442px;
	margin: 0 auto;
}

.auth-info1 {
	padding-bottom: 115px;
}

.auth-info1 form {
	padding: 27px 10px 0;
}

.form-area {
	padding: 60px 0 0;
}

.auth-image {
	height: 100%;
}

.auth-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.design-label {
	margin-bottom: 28px;
	position: relative;
}

.design-input {
	border: 1px solid #EBEBEBEE;
	border-radius: 10px;
	background-color: var(--ice-blue);
	height: 55px;
	padding: 16px 25px;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 1%;
	font-family: var(--font-Gilroy-Regular);
	color: var(--black-colour);
	display: block;
	width: 100%;
}

.design-input:focus {
	border: 1px solid var(--primary-text);
}

.design-input::placeholder {
	color: var(--dusty-blue);
	opacity: 1;
}

.design-span {
	color: var(--primary-text);
	margin-bottom: 9px;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 1%;
	font-family: var(--font-Gilroy-Regular);
}

.eye__btn {
	position: absolute;
	right: 15px;
	bottom: 15px;
}

.forgot-password-link {
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 1%;
	color: var(--dark-indigo);
	margin: 15px 0 25px;
}

.hover-decoration-underline:hover {
	text-decoration: underline;
}

.submit-btn-shape {
	display: block;
	width: 100%;
	border-radius: 10px;
	height: 55px;
	padding: 16px 25px;
	background-color: var(--soft-orange);
	font-family: var(--font-Gilroy-Bold);
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 1%;
	color: var(--white-colour);
}

.submit-btn-shape:hover {
	background-color: var(--dark-indigo);
}

.or-area::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #CFDFE2;
	z-index: -1;
}

.or-area {
	margin-bottom: 15px;
}

.or-area span {
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 1%;
	color: #294957;
	background-color: var(--light-grayish-blue);
	padding: 15px 20px;
}

.google-fb-login a {
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 1%;
	color: var(--secondary-text);
	background-color: #F3F9FA;
	border-radius: 14px;
	padding: 14px 1px 14px 8px;
	width: 100%;
	display: block;
}

.google-fb-login a:hover {
	background-color: #F6FEFF;
}

.signup-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 1%;
	vertical-align: middle;
	color: #525288;
	margin: 10px 0 0;
}

.signup-text a {
	color: var(--dark-indigo);
	font-weight: 700;
}

.copy-text {
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 1%;
	color: #959CB6;
}

@media (min-width: 1200px) {
	.copy-text {
		position: absolute;
		width: 440px;
		left: 50%;
		transform: translateX(-50%);
	}
}




/* sign-up */

.signup-title {
	max-width: 277px;
	margin: 0 auto;
	text-align: start;
}

.signup-title span {
	color: #1B1464;
}

.fixed-logo {
	position: absolute;
	top: 10px;
	left: 7px;
	z-index: 10;
}

.fixed-logo img {
	max-width: 148px;
}

.auth-info2 {
	padding-bottom: 26px;
}

.auth-info2 form {
	padding: 78px 0 0;
}

.auth-info2 .design-label {
	margin-bottom: 15px;
}

.auth-info2 .submit-btn-shape {
	margin-top: 25px;
}

.google-fb-login2 a {
	font-size: 16px;
}

.auth-info2 .signup-text {
	margin: 25px 0 0;
}

.copy-text2 {
	position: initial;
	transform: none;
	text-align: center !important;
	margin: 0 auto;
}



/* forgot password */

.authentication-body2 {
	background-color: var(--neutral-colour) !important;
}

.authentication-body2 .row {
	padding: 0 10px;
}

.arrow-left-link {
	position: absolute;
	top: 17px;
	left: 26px;
	z-index: 10;
}

.forgot-bg-col {
	background-color: var(--light-grayish-blue);
	border-radius: 20px;
}

.forgot-content h1 {
	margin: 12px 0 20px;
}

.forgot-para {
	font-weight: 300;
	font-size: 14px;
	line-height: 20.5px;
	letter-spacing: 0.1px;
	color: var(--jet-black);
}

.form-area2 {
	padding: 40px 0 0;
}

.return__a {
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 1%;
	vertical-align: middle;
	color: var(--soft-orange);
}

.return__a:hover {
	color: var(--dark-indigo);
}







/* 
=====================================
DASHBOARD-PAGE START HERE
=====================================
*/

.dashboard-body {
	background-color: var(--cloud-white);
	font-size: 16px;
	line-height: 100%;
	font-family: var(--font-Gilroy-Regular);
	padding-right: 20px;
}

/* sm-header */

.sm-header {
	padding: 0 20px 15px 0;
}

.sm-header a img {
	max-width: 140px;
}

.bar__btn {
	font-size: 25px;
}


/* 
--------------------------
ASIDE-AREA START HERE
--------------------------
*/

.aside-area {
	background-color: var(--cloud-white);
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	overflow-y: auto;
}

@media (max-width: 991px) {
	.aside-area {
		position: fixed;
		left: -100%;
		top: 0;
		transition: 0.3s all ease-in-out;
		padding-top: 0 !important;
		padding-right: 20px !important;
		width: 300px !important;
		height: 100vh;
		overflow-y: auto;
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
		z-index: 1050;
	}

	.aside-area.active {
		left: 0;
		transition: 0.3s all ease-in-out;
	}

	.dashboard-logo {
		padding: 0 0 40px !important;
	}

	.dashboard-logo img {
		max-width: 140px;
	}
}

.dashboard-logo {
	text-align: center;
}

.dashboard-logo img {
	max-width: 180px;
}

.aside-area-lg {
	width: 240px;
	padding: 32px 0 30px;
}

.aside-area-sm {
	width: 240px;
	padding: 32px 10px 30px 0;
}

.dashboard-logo {
	padding: 0 5px 65px;
}

.aside-area-lg .dashboard-logo {
	padding-bottom: 20px;
}

.aside-area-lg .aside-link {
	padding: 0 12px;
}

@media (min-width: 1200px) {
	.aside-area-lg .aside-link {
		padding: 0 15px;
	}
}

.aside-area-sm .aside-link {
	padding: 0 1px 0 16px;
}

.aside-area-lg .aside-link > li > a {
	color: var(--muted-sky-blue);
	padding: 18px 12px;
	border-radius: 15px;
	display: block;
	width: 100%;
	font-size: 15px;
	line-height: 100%;
	margin: 0 0 8px;
	display: flex;
	align-items: center;
	gap: 15px;
	height: 55px;
}

@media (min-width: 1200px) {
	.aside-area-lg .aside-link > li > a {
		font-size: 14px;
		gap: 8px;
		height: 50px;
	}
}

.aside-link > li > a.active {
	background-color: var(--deep-pink) !important;
	color: var(--white-colour) !important;
}

.aside-link > li > a.active img {
	filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(2%) hue-rotate(200deg) brightness(106%) contrast(101%);
}

.aside-link > li > a:hover {
	background-color: var(--white-colour);
}

.aside-area-sm .aside-link > li > a {
	font-size: 14.32px;
	line-height: 26.69px;
	color: var(--muted-sky-blue);
	padding: 13px 15px;
	border-radius: 18px;
	display: block;
	width: 100%;
	margin: 0 0 10px;
	display: flex;
	gap: 12px;
}

.aside-area-lg .aside-link > li > a img {
	margin-right: 0;
	transform: scale(0.7);
}

.sub-aside-link {
	padding: 10px 0 15px 30px;
	display: none;
}

.aside-link > li.active .sub-aside-link {
	display: block;
}

.sub-aside-link li a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 100%;
	color: var(--muted-sky-blue);
	margin-bottom: 15px;
}

.sub-aside-link li:last-child a {
	margin-bottom: 0;
}

.sub-aside-link li a:hover,
.sub-aside-link li a.active {
	color: var(--deep-indigo);
	font-family: var(--font-Gilroy-Semibold);
	transition: 0.3s all ease-in-out;
}

.sub-aside-link li a img {
	transform: scale(0.7);
}

.sub-aside-link li a:hover img,
.sub-aside-link li a.active img {
	filter: brightness(0) saturate(100%) invert(14%) sepia(13%) saturate(7341%) hue-rotate(225deg) brightness(102%) contrast(118%);
}

/* 
--------------------------
ASIDE-AREA END HERE
--------------------------
*/





/* 
---------------------------
RIGHT-SIDE-AREA START HERE
---------------------------
*/

@media (min-width: 992px) {
	.right-side-area {
		width: calc(100% - 240px);
		margin: 30px 0 26px;
		margin-left: 240px;
		padding: 20px;
	}

	.right-side-area-sm {
		width: calc(100% - 240px);
		margin-left: 240px !important;
	}
}

.right-side-area {
	background-color: #FEFEFE;
	border-radius: 30px;
}

.right-side-area-sm {
	margin: 13px 0 12px 12px;
	padding: 37px 30px 20px 22px;
}



/* dashboard-header */

.year__select {
	border: 2px solid #D9E1E7;
	border-radius: 8px;
	height: 40px;
	background-color: #F1F4F9;
	padding: 12px 10px;
	font-size: 14px;
	line-height: 100%;
	color: #06152B;
	width: 118px;
	background-image: url(../images/icons/angle-down.svg);
	background-repeat: no-repeat;
	background-position: 90% center;
}

.notification-btn {
	width: 40px;
	height: 40px;
	border: 2px solid #D9E1E7;
	border-radius: 10px;
	color: var(--muted-sky-blue);
	position: relative;
}

.notification-btn:hover {
	background-color: #D9E1E7;
}

.notification-btn::after {
	content: '';
	position: absolute;
	width: 7px;
	height: 6px;
	border-radius: 50%;
	background-color: #0090FF;
	top: 10px;
	right: 10px;
	outline: 2px solid var(--white-colour);
}

.profile__btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.profile__btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}


/* amount__box__area */

.amount__box__area {
	padding: 25px 0 0;
}

@media (min-width: 768px) {
	.amount__box__area .row {
		--bs-gutter-x: 24px;
		--bs-gutter-y: 24px;
	}
}

.amount__box {
	border: 1px solid #D9E1E7CC;
	border-radius: 14px;
	padding: 12px 15px;
	height: 100%;
	align-items: center !important;
}

.max-w-none {
	max-width: none !important;
}

.amount__box h6 {
	font-size: 13px;
	line-height: 19.53px;
	text-transform: uppercase;
	color: var(--muted-sky-blue);
}

.amount__box h3 {
	font-size: 30px;
	line-height: 100%;
}

.amount__box small {
	font-size: 12px;
	line-height: 15px;
	color: var(--muted-sky-blue);
	max-width: 190px;
	margin: 6px 0 0;
}

.amount__box span {
	font-size: 12px;
	line-height: 100%;
	color: #1AD598;
	margin: 4px 0 3px;
}

.amount__box p {
	font-size: 12px;
	line-height: 100%;
	color: var(--muted-sky-blue);
	margin-top: 5px;
}


.progressbar {
	margin: 0;
}

.circle {
	width: 80px;
	height: 80px;
	margin: 0 auto;
	margin-top: 0;
	display: inline-block;
	position: relative;
	text-align: center;
}

.circle:after {
    width: 120px;
	height: 120px;
	content: "";
	border: 0px solid #fb4f14;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 30px;
	left: 30px;
}

.circle canvas {
	vertical-align: middle;
	border: 0px solid #fb4f14;
	border-radius: 50%;
}

.circle div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	text-align: center;
	line-height: 40px;
	font-size: 31px;
	font-size: 21.48px;
	line-height: 100%;
	letter-spacing: 0%;
	transform: translate(-50%, -50%);
}

.circle strong i {
	font-style: normal;
	font-size: 0.6em;
	font-weight: normal;
}

.circle span {
	display: block;
	color: white;
	margin-top: 12px;
}


/* graph-area */

.graph-area {
	margin: 20px 0 0;
}

.graph__div {
	padding: 18px 18px 32px 18px;
	border: 1px solid #D9E1E7CC;
	border-radius: 15px;
}

.graph__div > div {
	margin-bottom: 30px;
}

.graph__div h4 {
	font-size: 18px;
	line-height: 100%;
	color: #06152B;
}

.layer-div {
	gap: 6px;
}

.layer-div > div:nth-child(2) span {
	background-color: #FBB03B;
}

.layer-div div {
	border: 1px solid #D9E1E7CC;
	border-radius: 5px;
	padding: 8px 8px;
	font-size: 12px;
	line-height: 100%;
	display: flex;
	align-items: center;
}

.layer-div div span {
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background-color: #ED1E79;
	margin-right: 6px;
}

.graph__tabs__ul {
	background-color: #D9E1E7;
	border-radius: 8px;
	padding: 2px;
}

.graph__tabs__ul li button {
	font-size: 12px;
	line-height: 100%;
	padding: 10px 12px;
	border-radius: 8px;
	color: var(--muted-sky-blue);
}

.graph__tabs__ul li button.active {
	background-color: #06152B;
}

.distributions-div {
	border-radius: 8px;
	border: 1px solid #D9E1E7CC;
	padding: 10px 10px;
	height: calc(50% - 5px);
}

.distributions-div > h6 {
	font-size: 13px;
	line-height: 100%;
	color: #06152B;
	margin: 0 0 13px;
}

.progress__div {
	background-color: var(--white-colour);
	border-radius: 4px;
	padding: 15px 10px;
	box-shadow: 0px 1.3px 31.25px 0px #0000000F;
	margin-bottom: 10px;
}

.progress__div h5 {
	font-size: 10px;
	line-height: 100%;
	letter-spacing: 0.65px;
	color: #1E2022;
}

.progress__line {
	width: 100%;
	height: 4px;
	background-color: #F9F9F9;
	border-radius: 5px;
	position: relative;
	margin: 8px 0 0;
}

.progress__line span {
	position: absolute;
	border-radius: 4px;
	left: 0;
	top: 0;
	background-color: #54D14D;
	height: 100%;
}

.notifications__div {
	margin-top: 10px;
}

.notifications__div h6 {
	border-bottom: 1px solid #CBD5E173;
	padding-bottom: 2px;
}





/* apartment-tabs-area */

.apartment-tabs-area {
	padding: 25px 0 0;
}

.apartment_tab_list li button {
	font-size: 14.32px;
	line-height: 100%;
	padding: 13px 32px;
	text-align: center;
	color: var(--muted-sky-blue);
	border-radius: 6px 6px 0 0;
}

.apartment_tab_list li button.active {
	color: #06152B;
	background-color: var(--cloud-white);
}

.apartment-slider {
	padding: 14px 18px;
	border: 1px solid #D9E1E7CC;
	border-radius: 10px;
}

.apartment-slider .owl-stage {
	padding-left: 0 !important;
}

.apartment__box {
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 13px 13px;
	background-color: #F8FAFC;
}

.apartment__box img {
	border-radius: 13px;
	width: 100%;
	aspect-ratio: 3/1.9;
	object-fit: cover;
}

.apartment__box h3 {
	font-size: 18px;
	line-height: 100%;
	color: #06152B;
	margin: 10px 0 9px;
}

.apartment__box span {
	font-size: 12px;
	line-height: 100%;
	border-radius: 19px;
	background-color: #FBB03B;
	padding: 4px 5px;
	color: var(--white-colour);
}

.apartment__box small {
	font-size: 12px;
	line-height: 100%;
	color: #06152B80;
}

.amount__text {
	font-size: 16px;
	line-height: 100%;
	color: #ED1E79;
}


/* rents-table-area */

.rents-table-area {
	border: 1px solid #EAECF0;
	border-radius: 13px;
}

.rents-table-area tr th {
	font-family: var(--font-Gilroy-Medium);
	font-size: 12px;
	line-height: 11.72px;
	color: var(--gray-500);
	height: 40px;
	padding: 8px 15px;
	border-bottom: 1px solid #EAECF0;
	position: relative;
}

.rents-table-area tr td {
	height: 55px;
	font-size: 12px;
	line-height: 17px;
	font-family: var(--font-Gilroy-Regular);
	padding: 0 15px;
	color: var(--black-colour);
	position: relative;
	border-bottom: 1px solid #EAECF0;
}

.rents-table-area tr th.details__th,
.rents-table-area tr td.details__td {
	width: 127px;
}

.rents-table-area tbody tr:last-child td {
	border-bottom: 0;
}

.rents-table-area tr th.empty,
.rents-table-area tr td.empty {
	border: none;
	width: 20px !important;
	padding: 0;
}

.rents-table-area td span {
	border-radius: 13px;
	padding: 3px 6px;
}

.rents-table-area td span.orange {
	background-color: #FBB03B33;
	color: #FBB03B;
}

.rents-table-area td span.blue {
	background-color: #1470EF33;
	color: #1470EF;
}

.rents-table-area td span.green {
	background-color: #5EE5AE33;
	color: #5EE5AE;
}

.rents-table-area td a {
	width: 89px;
	height: 32px;
	border-radius: 4px;
	background-color: #1470EF;
	color: var(--white-colour);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.rents-table-area td a:hover {
	background-color: #FBB03B;
}







/* 
=====================================
REAL-ESTATE-PAGE START HERE
=====================================
*/

.right-side-area-vh {
	min-height: calc(100vh - 56px);
}

.real-estate-box {
	border-radius: 20px;
	border: 1px solid #EAECF0;
	box-shadow: 0px 1px 2px 0px #1018280F;
	padding: 66px 20px 60px;
	height: 100%;
	position: relative;
}

.real-estate-property-box {
	max-width: 742px;
	margin: 0 auto;
}

.real-estate-property-box p {
	margin: 35px 0 30px;
}








/* 
=====================================
REAL-ESTATE-LIST-PAGE START HERE
=====================================
*/

.real-estate-list-header {
	padding: 12px 17px;
	margin-bottom: 8px;
}

.real-estate-list-header small {
	padding: 2px 8px;
	background-color: var(--primary-50);
	color: var(--soft-orange);
	border-radius: 16px;
}


/* filters-area */

.filters-area {
	padding: 8px;
	background-color: #F9FAFB;
}

.filters-btn-div {
	gap: 12px;
}

.filters-btn-div a {
	padding: 10px 32px 10px 16px;
	color: var(--soft-orange);
	background-color: #F1B25426;
	border-radius: 8px;
	position: relative;
}

.filters-btn-div a:hover {
	background-color: #F1B2544F;
}

.filters-btn-div p button {
	color: var(--soft-orange);
	position: absolute;
	height: 26px;
	right: 3px;
	top: 50%;
	width: 26px;
	font-size: 16px;
	transform: translatey(-50%);
	z-index: 5;
	border-radius: 4px;
}

.filters-btn-div p button:hover {
	background-color: var(--soft-orange);
	color: var(--white-colour);
}

.filter__btn {
	padding: 10px 16px;
	color: var(--gray-700);
	border: 1px solid var(--gray-300);
	border-radius: 8px;
}

.filter__btn:hover {
	background-color: var(--gray-300);
}

.search__input__div input {
	width: 320px;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	padding: 10px 14px 10px 42px;
}

.search__input__div input::placeholder {
	color: #64748B;
}

.search__input__div input:focus {
	border: 1px solid var(--dark-indigo);
}

.search__input__div span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 14px;
	color: #64748B;
}



/* real-estate-table-area */

.real-estate-table-area {
	margin-bottom: 110px;
}

.real-estate-table {
	width: 100%;
	margin: 20px 0 0;
}

.real-estate-table tr th {
	height: 44px;
	padding: 0 15px;
	font-size: 10px;
	line-height: 12px;
	font-family: var(--font-Gilroy-Medium);
	color: var(--gray-500);
}

.real-estate-table tr td {
	font-size: 12px;
	line-height: 20px;
	color: var(--gray-500);
	height: 45px;
	padding: 0 15px;
}

.real-estate-table tr td.photo_td {
	padding-top: 0;
	padding-bottom: 0;
}

.real-estate-table tr td:first-child {
	color: var(--gray-900);
}

.real-estate-table tr th.empty,
.real-estate-table tr td.empty {
	width: 18px !important;
	padding: 0;
	border: 0;
	min-width: 18px;
}

.real-estate-table tr th,
.real-estate-table tr td {
	border-bottom: 1px solid var(--gray-200);
}

.real-estate-table .th_9th {
	width: 98px;
}

.real-estate-table .th_7th {
	width: 78px;
	padding: 0 5px;
}

.photos__th {
	min-width: 115px;
}

.photo_td img {
	width: 70px;
	height: 50px;
	border-radius: 21px;
	object-fit: cover;
	padding: 5px 0;
}

.badge-span {
	padding: 2px 8px;
	border-radius: 16px;
	position: relative;
	padding-left: 20px;
	text-align: center;
}

.badge-span::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 4px;
	top: 50%;
	transform: translateY(-50%);
	left: 8px;
}

.real-estate-table tr td span.green {
	color: #22BA62;
	background-color: #ECFDF3;
}

.real-estate-table tr td span.green::before {
	background-color: #22BA62;
}

.real-estate-table tr td span.red {
	color: #DC2626;
	background-color: #DC26261A;
}

.real-estate-table tr td span.red::before {
	background-color: #DC2626;
}

.real-estate-table tr td span.blue {
	color: #4E4FEBB5;
	background-color: #4E4FEB1A;
}

.real-estate-table tr td span.blue::before {
	background-color: #4E4FEBB5;
}

.delete__edit__td button {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.delete__edit__td button:hover {
	background-color: var(--gray-300);
}

.delete__edit__td img {
	transform: scale(0.8);
}



/* pagination-area */

.pagination-area {
	padding: 10px 14px 13px;
	margin: 0;
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}

.pagination-area > a {
	padding: 12px 16px;
	color: var(--gray-50);
	border-radius: 8px;
}

.pagination-area > a:hover {
	background-color: #D7D1D15E;
}

.pagination__list li a,
.pagination__list li span {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	color: var(--gray-50);
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination__list li a:hover {
	color: #F1B254;
}






/* 
=====================================
REAL-ESTATE-ADDITION-PAGE START HERE
=====================================
*/

.real-estate-vh {
	background-color: transparent;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	margin-bottom: 15px;
}

.real-estate-new-header {
	gap: 20px;
	margin-bottom: 24px;
}

.real-estate-new-header p {
	color: var(--slate-500);
	margin-top: 8px !important;
}

.real-estate-design-box {
	border-radius: 30px;
	background-color: #FEFEFE;
	padding: 25px;
}



/* real-estate-new-tabs-list */

.real-estate-new-tabs-list {
	border-bottom: 1px solid var(--slate-300);
	display: inline-block;
	margin-bottom: 15px;
}

.real-estate-new-tabs-list li {
	display: inline-block;
	margin-right: 12px;
}

.real-estate-new-tabs-list li:last-child {
	margin-right: 0;
}

.real-estate-new-tabs-list li a {
	color: var(--gray-500);
	position: relative;
	padding-bottom: 12px;
}

.real-estate-new-tabs-list li a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -1px;
	left: 0;
	opacity: 0;
	transition: 0.3s all ease-in-out;
}

.real-estate-new-tabs-list li a.active {
	color: var(--deep-pink) !important;
}

.real-estate-new-tabs-list li a.active::after {
	opacity: 1;
	background-color: var(--deep-pink) !important;
	transition: 0.3s all ease-in-out;
}

.real-estate-new-tabs-list li a:hover {
	color: #1470EF;
}

.real-estate-new-tabs-list li a:hover::after {
	opacity: 1;
	background-color: #1470EF;
	transition: 0.3s all ease-in-out;
}



/* real-estate-information-area */

@media (min-width: 1200px) {
	.information__grid {
		display: grid;
		grid-template-columns: 7.7fr 4.3fr;
	}
}

.design__box {
	border-radius: 20px;
	background-color: var(--white-colour);
	border: 1px solid var(--slate-200);
	padding: 20px 20px;
}

.informational__grid__item1 {
	margin-right: 55px;
}

@media (min-width: 1400px) {
	.informational__grid__item1,
	.informational__grid__item1 > .design__box {
		height: 100%;
	}
}

.input__box {
	margin-bottom: 15px;
}

.dashboard-input,
.nice-select {
	border: 1px solid var(--slate-300);
	border-radius: 6px;
	padding: 8px 12px;
	font-size: 14px;
	line-height: 24px;
	font-family: var(--font-Gilroy-Regular);
	color: var(--slate-900);
	height: 36px;
	display: block;
	width: 100%;
}

.nice-select .list {
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-radius: 6px;
	margin-top: 5px;
	background: white;
	max-height: 300px;
	overflow-y: auto;
}

.nice-select .option {
	padding: 10px 12px;
	min-height: 36px;
	line-height: 1.4;
	font-size: 14px;
}

.nice-select .option:hover, 
.nice-select .option.focus, 
.nice-select .option.selected.focus {
	background-color: transparent;
	color: var(--soft-orange);
}

.dashboard-input:focus,
.nice-select:focus {
	border: 1px solid var(--slate-300);
}

.input__box > span {
	margin-bottom: 4px;
}

.checkbox__div input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}

.checkbox__div p {
	width: calc(100% - 26px);
}

.checkbox__div span {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: 1px solid #D0D5DD;
	background-color: var(--white-colour);
	position: relative;
}

.checkbox__div2 span {
	width: 18px;
	height: 18px;
	border-radius: 2px;
	border: 2px solid #1D1B20;
}

.checkbox__div2 {
	margin-bottom: 10px;
}

.checkbox__div2 p {
	width: calc(100% - 28px);
	color: var(--muted-sky-blue);
}

.checkbox__div input:checked + span {
	background-color: #7F56D9;
	border: 1px solid #7F56D9;
}

.checkbox__div2 input:checked + span {
	border: 2px solid #7F56D9;
}

.checkbox__div input:checked + span::after {
	content: '\f00c';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--white-colour);
	font-size: 11px;
}

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

.upload__photos__div {
	margin: 10px 0 0;
}

.upload__photos__div p.text-sm {
	color: var(--slate-500);
	margin: 6px 0 20px;
}

.main-upload-area {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.main-upload-area .upload__box {
    font-size: 18px;
    color: var(--white-colour);
    background-color: var(--deep-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.main-upload-area .upload__box:hover {
	background-color: #281D95;
}

.image-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
}

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

.remove-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__property__box {
	margin: 18px 0 0;
}

.about-property-content > h3 {
	margin-bottom: 30px;
}

.about-property-content p {
	color: var(--slate-500);
	margin: 6px 0 25px;
}

.input__box textarea {
	border-radius: 10px;
	resize: none;
}

.submit-btn-shape-dashboard {
	font-family: var(--font-Gilroy-Medium);
	font-size: 14px;
	padding: 6px 10px;
	line-height: 1;
	height: 40px;
	border-radius: 6px;
	width: 85%;
	margin: 10px auto 0;
}





/* 
=====================================
REAL-ESTATE-LOAN-CHOICE START HERE
=====================================
*/

.informational__grid__item11 {
	margin-right: 40px;
}

.informational__grid__item111 {
	margin-right: 32px;
}

.save-cancel-btn {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 32px 0 0;
}

.save-cancel-btn button {
	width: 172px;
	text-align: center;
	padding: 8px 20px;
	border-radius: 6px;
	height: 40px;
	color: var(--white-colour);
	font-size: 14px;
	font-family: var(--font-Gilroy-Medium);
}

.save-cancel-btn button.cancel__btn {
	background-color: var(--muted-sky-blue);
}

.save-cancel-btn button.follow__btn {
	background-color: #007AFF;
}

.save-cancel-btn button.follow__btn:hover {
	background-color: #145EAE;
}

.save-cancel-btn button.save__btn {
	background-color: var(--soft-orange);
}

.save-cancel-btn button.cancel__btn:hover {
	background-color: #E61616;
}

.save-cancel-btn button.save__btn:hover {
	background-color: var(--dark-indigo);
}

.save-cancel-btn button.prev__btn {
	background-color: #BBBBBB;
}

.save-cancel-btn button.prev__btn:hover {
	background-color: #9B9494;
}

.invesment-box {
	border-radius: 20px;
	background-image: url(../images/img/box-shape1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 30px 30px 50px 20px;
}

.invesment-box ul {
	padding: 17px 0 35px;
}

.invesment-box ul li span {
	color: var(--black-colour);
}

.invesment-box h4 {
	font-size: 18px;
	color: var(--white-colour);
}






/* 
=====================================
REAL-ESTATE-LOAN START HERE
=====================================
*/

.invesment-total-div h2 {
	margin-bottom: 40px;
}

.invesment-total-div p.text-base {
	color: var(--slate-500);
	line-height: 100%;
	margin-bottom: 40px;
}

.real-estate-property-box2 {
	padding: 10px 0 20px;
}

.real-estate-property-box > img {
	max-height: 320px;
}

.max-h-500 {
	max-height: 500px;
}





/* 
=========================================
REAL-ESTATE-DEPRECIATION-INPUT START HERE
=========================================
*/

@media (min-width: 1400px) {
	.depreciation-input-area .col-xxl-5 {
		width: 37%;
	}

	.depreciation-input-area .col-xxl-7 {
		width: 63%;
		padding-left: 52px;
	}
}

.depreciation-input-area > p.text-base {
	margin: 20px 0 30px;
	color: var(--gray-500);
}

.alert__box {
	display: grid;
	grid-template-columns: 48px auto;
	padding: 18px 25px;
	border-radius: 10px;
	gap: 15px;
}

.alert__box__red {
	background-color: #ED1E791A;
	color: var(--deep-pink);
	border: 1px solid var(--deep-pink);
	margin-bottom: 25px;
}

.alert__box__blue {
	background-color: #1B14641A;
	color: var(--dark-indigo);
	border: 1px solid var(--deep-indigo);
}

.alert__box__blue img {
	filter: brightness(0) saturate(100%) invert(8%) sepia(56%) saturate(3717%) hue-rotate(240deg) brightness(115%) contrast(107%);
}

.alert__box__blue p {
	margin-bottom: 15px;
}

.depreciation__input__box {
	padding: 20px;
}

.depreciation__input__box .input__box {
	margin-bottom: 10px;
}

.depreciation__input__box .input__box input {
	height: 40px;
}

.property-component-list {
	max-width: 690px;
	border-bottom: 1px solid #E4E7EC;
	margin-bottom: 24px;
}

.property-component-list li {
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
	margin-right: 12px;
	cursor: pointer;
}

.property-component-list li.active {
	color: var(--deep-pink);
	font-family: var(--font-Gilroy-Semibold);
	border-bottom: 2px solid var(--deep-pink);
}

.property-component-list li:last-child {
	margin-right: 0;
}

.cuples__btn__area {
	gap: 10px;
	margin: 20px 0;
}

.cuples__btn__area button {
	background-color: #F1B25426;
	color: var(--soft-orange);
	font-family: var(--font-Gilroy-Semibold);
}

.cuples__btn__area button:hover {
	background-color: var(--soft-orange);
	color: var(--white-colour);
}

.cuples__btn__box {
	border: 1px solid #D9D9D9;
	border-radius: 10px;
	height: 260px;
}

.cuples__btn__box button {
	background-color: transparent;
	color: var(--gray-500);
	font-family: var(--font-Gilroy-Medium);
	font-size: 12px;
}

.cuples__btn__box button:hover {
	color: var(--soft-orange);
	background-color: #F1B25426;
}







/* 
=========================================
DRAFTING-LEASE START HERE
=========================================
*/

.drafting-lease-area {
	padding: 10px 0 0;
}

@media (min-width: 1400px) {
	.drafting-lease-area > .row {
		--bs-gutter-x: 35px;
	}

	.drafting-lease-area2 > .row {
		--bs-gutter-x: 115px;
	}
}

.draft__design__box {
	margin-bottom: 30px;
}

.models__design__box {
    max-width: 68%;
    margin-left: auto;
 }

.draft__design__box .caption__title,
.opening__dispute__common__box .caption__title {
	background-color: var(--white-colour);
	padding: 0 10px;
	margin: 0 0 0;
	display: inline-block;
	position: absolute;
	top: -12px;
}

.draft__box__area {
	max-width: 442px;
	margin: 70px auto 0;
}

.draft__box {
	border-radius: 20px;
	border: 1px solid #EBEBEB;
	padding: 30px 15px;
}

.draft__box:hover,
.draft__box.active {
	background-color: var(--soft-orange);
	border: 1px solid var(--soft-orange);
}

.draft__box2:hover,
.draft__box2.active {
	background-color: #E4E7EC;
	border: 1px solid #E4E7EC;
}

.draft__box h6 {
	margin: 16px 0 10px;
	line-height: 20px;
	color: var(--gray-500);
}

.draft__box small {
	color: var(--gray-500);
}

.draft__box__area > .row {
	--bx-gutter-x: 16px;
}

.red_a {
	color: var(--deep-pink);
	text-decoration: underline;
}

.red_a:hover {
	text-decoration: none;
}

.page-image-div img {
	max-width: 250px;
}

.lease-ready-div {
	max-width: 677px;
	margin: 0 auto;
	padding: 15px 0 20px;
}

.lease-ready-div > h2 {
	color: var(--gray-900);
	margin: 0 0 12px;
	font-size: 28px;
}

.lease-ready-div > div {
	gap: 10px;
	padding: 10px;
}

.lease-ready-div > div button {
	width: 174px;
}

.lease-ready-div > div button:nth-child(2) {
	background-color: #0B666A;
}

.lease-ready-div > div button:nth-child(2):hover {
	background-color: #08bac2;
}

.lease-ready-div > div button:nth-child(3) {
	background-color: #1470EF;
}

.lease-ready-div > div button:nth-child(3):hover {
	background-color: #0856BF;
}







/* 
=========================================
REAL-STATE-LEASES START HERE
=========================================
*/

.real__estate__leases__area > .row {
	--bs-gutter-x: 20px;
	--bs-gutter-y: 20px;
}	

.real__estate__leases {
	border: 1px solid #D9D9D9;
	background-color: #809FB80F;
	border-radius: 20px;
	padding: 20px 15px 15px;
	height: 100%;
	min-height: 250px;
}

.real__estate__leases li {
	gap: 10px;
	margin-bottom: 10px;
}

.real__estate__leases p {
	width: calc(100% - 26px);
	color: var(--black-colour);
	font-family: var(--font-Gilroy-Regular);
	font-size: 13px;
	line-height: 18px;
}

.real__estate__leases p span {
	color: var(--muted-sky-blue);
}

.real__estate__leases > span {
	padding: 5px 10px;
	border-radius: 30px;
	margin: 30px 0 0;
}

.real__estate__leases > span.green {
	background-color: #1AD5982E;
	color: #1AD598;
}

.real__estate__leases > span.yellow {
	background-color: #F1B2542E;
	color: var(--soft-orange);
}

.real__estate__leases > span.pink {
	background-color: #ED1E792E;
	color: var(--deep-pink);
}






/* 
=========================================
DRAFTING-INVENTORY-REPORT START HERE
=========================================
*/

.state-play-inventory-tabs {
	background-color: var(--slate-200);
	border-radius: 6px;
	padding: 5px 5px 0;
	margin: 0 0 -2px;
}

.tenants-tabs {
	padding: 5px;
	margin: 0 0 20px;
}

.state-play-inventory-tabs button {
	color: var(--slate-700);
	padding: 6px 12px;
	border-radius: 3px;
	font-family: var(--font-Gilroy-Medium);
}

.state-play-inventory-tabs button.active {
	color: var(--black-colour);
	background-color: var(--white-colour);
}

.common-draft-tab-content {
	border-radius: 8px;
}

.common-draft-head {
	padding: 20px 24px;
}

.cuisine__link {
	background-color: var(--deep-indigo) !important;
	color: var(--white-colour) !important;
}

.cuisine__link + button {
	color: var(--white-colour) !important;
}

@media (min-width: 1400px) {
	.common-draft-table-area {
		overflow: visible !important;
	}
}


.common-draft-table-area table tr th {
	height: 44px;
	color: var(--slate-500);
}

.common-draft-table-area table tr th:first-child {
	width: 215px;
}

.select__th {
	width: 204px;
}

.common-draft-table-area table tr th:last-child {
	width: 65px;
}

.small_wdt_td input {
	width: 44px;
}

@media (min-width: 1800px) {
	.small_wdt_th br {
		display: none;
	}

	.small_wdt_th {
		width: 150px;
		padding-right: 0 !important;
	}
}

.common-draft-table-area table tr th,
.common-draft-table-area table tr td {
	border-bottom: 1px solid var(--slate-200);
	padding: 13px 24px;
}

.common-draft-table-area table tr td {
	height: 72px;
}

.common-draft-table-area table tr td:first-child input {
	font-family: var(--font-Gilroy-Semibold);
	color: var(--black-colour);
}

.select__td .nice-select {
	width: 114px;
}





/* 
=========================================
REAL-STATE-RENTALS-DOCUMENTS START HERE
=========================================
*/

@media (min-width: 1800px) {
	.document__tables__box__grid {
        display: grid;
        grid-template-columns: auto 460px;
        gap: 30px;
    }
}

@media (min-width: 1200px) {
	.document__tables__box__grid {
    display: grid;
    grid-template-columns: 709px auto;
    gap: 15px;
  }
}

.draft__design_box__2 {
	margin-bottom: 55px;
}

.upload__files__div {
	padding: 50px 20px;
}

.uploas__files__label input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.upload__files__div p {
	margin: 16px 0 10px;
}

.documents__bg__box {
	border-radius: 16px;
	padding: 40px 0;
	background-image: url(../images/img/documents-box-shape.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.documents__bg__box > div {
	max-width: 255px;
	margin: 0 auto;
}

.documents__bg__box h4 {
	font-size: 25.44px;
	line-height: 100%;
	font-family: var(--font-Gilroy-Semibold);
	color: var(--white-colour);
}

.documents__bg__box small {
	margin: 8px 0 20px;
	font-size: 11.13px;
	line-height: 15.9px;
	color: var(--white-colour);
}

.documents__bg__box .btn-shape {
	font-size: 11.13px;
	line-height: 19.08px;
	font-family: var(--font-Gilroy-Medium);
}

.documents__table__area table th:first-child {
	width: 50px;
	min-width: 50px;
}

.document__tables__box__grid > .design__box {
	padding: 18px 2px 14px 15px;
}

.documents__table__area .checkbox__div2 span {
	border: 2px solid var(--muted-sky-blue);
}

.documents__table__area table td {
	height: 48px;
	color: #01072C;
}

.documents__table__area table td span {
	color: var(--gray-500);
}

.documents__table__area table th {
	padding-bottom: 10px;
}

.documents__table__area table th:last-child {
	width: 150px;
	min-width: 150px;
}


/* confirmationModal */

#confirmationModal .modal-dialog {
	max-width: 745px;
}

#confirmationModal .modal-content {
	border-radius: 18px;
}

#confirmationModal .modal-body {
	padding: 45px 30px;
}

#confirmationModal .modal-body > h4 {
	font-size: 21.46px;
	line-height: 25.03px;
	font-family: var(--font-Gilroy-Semibold);
	margin-bottom: 40px;
}

#confirmationModal .modal-body .design__box {
	padding: 16px 40px;
}

.maison__content p {
	color: var(--deep-indigo);
	opacity: 0.5;
	margin: 0 0 2px;
}

.maison__content h5 {
	font-size: 28.61px;
	line-height: 17.88px;
	font-family: var(--font-Gilroy-Semibold);
	color: var(--deep-indigo);
}

.maison__content h6 {
	font-size: 17.88px;
	line-height: 17.88px;
	color: var(--deep-indigo);
}

.maison__content > .row {
	padding-bottom: 32px;
}

.confirm__btn__area a:first-child {
	background-color: var(--deep-pink);
}

.confirm__btn__area a:first-child:hover {
	background-color: #BF0054;
}

.modal__close__btn {
	position: absolute;
	top: 45px;
	right: 30px;
}


/* image-slider */

.image-slider .item img {
	width: 100%;
	border-radius: 9px;
	aspect-ratio: 2/0.8;
	object-fit: cover;
	object-position: center;
}

.image-slider {
	margin-bottom: 14px;
}

.image-slider .owl-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
}

.image-slider .owl-dots .owl-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background-color: #D9D9D9;
	margin: 0 2px;
}

.image-slider .owl-dots .owl-dot.active {
	background-color: var(--deep-pink);
}







/* 
=====================================
TENANTS PAGE START HERE
=====================================
*/

.tenants-table-area {
  	margin-bottom: 66px;
}

.tenants-box-area {
	margin: 0 35px;
}

.tenants-table tr th {
	background-color: #F9FAFB;
}

.tenants-table tr th.date__th {
	min-width: 130px;
}

.tenants-table tr th:first-child {
	width: 20%;
	min-width: 20%;
}

.tenants-table tr th:last-child {
	width: 116px;
	min-width: 116px;
	padding: 0;
}






/* 
=====================================
ADDING-TENANTS PAGE START HERE
=====================================
*/

.adding-tenants-box-area {
	margin-top: 25px !important;
}

.alert__box__blue__wdt {
	max-width: 780px;
	padding: 12px 16px;
	margin-left: 35px;
}

.adding-tenants-design-box {
	padding: 15px 20px;
}

.adding-tenants-design-box .design__box {
	padding: 30px 150px 30px 25px;
	margin-bottom: 25px;
}

.adding__tenants__content {
	margin-bottom: 25px;
}

.switch-div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
}

.switch-div input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}

.switch-div span {
	width: 44px;
	height: 27px;
	border-radius: 84px;
	background-color: #ED1E7933;
	border: 2px solid var(--deep-pink);
	position: relative;
	transition: 0.3s all ease-in-out;
	cursor: pointer;
}

.switch-div span::after {
	content: '\f00d';
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--deep-pink);
	top: 50%;
	left: 2px;
	position: absolute;
	font-family: "FontAwesome";
	color: #CBD5E1;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	transition: 0.3s all ease-in-out;
}

.switch-div input:checked + span {
	background-color: #65558F;
	border: 2px solid #65558F;
	transition: 0.3s all ease-in-out;
}

.switch-div input:checked + span::after {
	content: '\f00c';
	left: 20px;
	background-color: var(--white-colour);
	color: #65558F;
	transition: 0.3s all ease-in-out;
}

.switch-div span:hover::after {
	background-color: #49454F;
	transition: 0.3s all ease-in-out;
}

.switch-div input:checked + span:hover::after {
	background-color: #EADDFF;
	transition: 0.3s all ease-in-out;
}

.upload__document__box {
	padding: 28px 25px;
}

.upload__document__box input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}

.upload__document__box p {
	margin: 10px 0 0;
}

.uploaded-files {
	margin: 38px 0 0;
	position: relative;
}

.uploaded-files .files {
	padding: 10px;
	display: grid;
	grid-template-columns: 44px auto;
	gap: 20px;
	align-items: center;
	margin: 0 0 5px;
	position: relative;
	border-radius: 16px;
}

.uploaded-files .files:hover {
	background-color: #F5F5F5;
}

.uploaded-files .files p {
	color: var(--deep-indigo);
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	padding-right: 24px;
}

.file-remove {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}

.upload__document__box.drag-over {
    border: 1px dashed #4F46E5;
    background-color: #F0F4FF;
}





/* 
=====================================
DISPUTE-MONITORING PAGE START HERE
=====================================
*/

.real-estate-list-header-2 {
	padding-right: 35px;
	padding-left: 35px;
}

.action__th {
	width: 150px;
	min-width: 150px;
}

.badge-span2 {
	padding-left: 10px;
}

.badge-span2::before {
	display: none;
}

.btn-shape-green {
	padding: 5px 12px;
	width: auto;
	background-color: #1470EF;
	color: var(--white-colour);
}

.link__td {
	padding: 0 18px !important;
}

.dispute-table tr th.empty,
.dispute-table tr td.empty {
	width: 25px !important;
	border: 0;
	min-width: 25px;
}

.badge-span.yellow {
	color: var(--soft-orange);
	background-color: #FBB03B33;
}

.badge__th {
	width: 140px;
	min-width: 140px;
}



/* dispute-page-popup */

#disputePagePopup .modal-dialog {
	max-width: 730px;
}

#disputePagePopup .modal-content {
	background-color: var(--white-colour);
	border-radius: 10px;
}

#disputePagePopup .modal-header {
	border-bottom: 1px solid #0000000D;
}

#disputePagePopup .modal-body {
	padding: 16px 10px;
}

#disputePagePopup .modal-body > h4 {
	margin: 25px 0;
}

.popup__label {
	width: 100%;
	display: block;
	margin-bottom: 5px;
	position: relative;
	padding: 10px 0;
	background-color: #809FB80D;
	border-radius: 10px;
}

.popup__label span {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.popup__label input {
	width: 100%;
	height: 100%;
	padding: 0 10px;
	color: #667085;
	border-radius: 10px;
	background-color: transparent;
}

.popup__label .status__select {
	margin-left: auto !important;
	display: block !important;
	width: 100px;
}

.popup__label .status__select .nice-select {
	padding: 3px 10px;
	background-color: #EA433533;
	border: 1px solid transparent;
	color: #EC221F !important;
	border-radius: 20px;
	height: 30px;
}

.popup__label .status__select .nice-select span {
	padding-left: 0;
}

.popup__label .status__select .nice-select::after {
	content: '\f107';
	right: 4px;
	color: #000;
	font-weight: 600;
	background-image: none;
	font-size: 12px;
}

.monitoring-messages-div {
	border: 1px solid #D9D9D9;
	border-radius: 20px;
	padding: 15px 0;
}

.messaging-box {
	padding: 8px 12px;
	max-width: 540px;
	background-color: #809FB80D;
	margin-bottom: 30px;
}

.messaging-box.left {
	border-radius: 0 10px 10px 0;
	border-right: 1px solid var(--deep-pink);
}

.messaging-box p:last-child {
	color: var(--muted-sky-blue);
	padding-left: 12px;
	padding-top: 6px;
}

.messaging-box.right {
	border-radius: 10px 0 0 10px;
	border-left: 1px solid #FBB03B;
	margin-left: auto;
}

#disputePagePopup .modal-footer .btn-shape.green {
	background-color: #1470EF;
}

#disputePagePopup .modal-footer .btn-shape.dark {
	background-color: #667085;
}

#disputePagePopup .modal-footer .btn-shape:hover {
	background-color: var(--dark-indigo);
}




/* 
=====================================
OPENING-DISPUTE PAGE START HERE
=====================================
*/

.opening-dispute-box {
	padding: 95px 40px 45px;
}

.calendar__span {
	right: 8px;
	bottom: 6px;
	margin: 0 !important;
}

.switch-div2 {
	position: initial;
	display: flex;
	height: 100%;
	align-items: center;
	transform: none;
}

.switch-div2 label {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}

.switch-div2 label span {
	border: 2px solid #736E78;
	background-color: #E6E0E9;
}

.switch-div2 label span::after {
	background-color: #736E78;
}

.switch-div2 label input:checked + span {
	background-color: var(--soft-orange);
	border: 2px solid var(--soft-orange);
}

.switch-div2 label input:checked + span::after {
	background-color: var(--white-colour);
	color: var(--black-colour);
}

.badge-span.gray {
	color: #999999;
	background-color: #809FB826;
}

.badge-span.pink {
	color: #999999;
	background-color: var(--deep-pink);
	color: var(--white-colour);
}

.badge-span.pink-red {
	color: #999999;
	background-color: #DC2626;
	color: var(--white-colour);
}





/* 
=====================================
LEASES PAGE START HERE
=====================================
*/

.leases-area {
	margin: 50px 35px 0;
}

.leases-tabs-list {
	border-bottom: 1px solid #E4E7EC;
}

.leases-tabs-list li a {
	padding-bottom: 12px;
	border-bottom: 2px solid transparent;
}

.leases-tabs-list li a:hover,
.leases-tabs-list li a.active {
	color: #1470EF;
	border-bottom: 2px solid #1470EF;
}

.leases__flex {
	padding: 28px 0 20px;
}

.leases__design__box {
	padding: 16px;
}

.leases__design__box > h4 {
	font-size: 22px;
	line-height: 41px;
	color: #809FB8;
}

.leases__design__box table {
	padding: 10px;
	width: 100%;
}

.leases__design__box table td {
	padding: 15px 10px;
}

.leases__design__box table tr td:first-child {
	font-size: 16px;
	color: var(--gray-500);
}

.leases__design__box table tr td:last-child {
	font-size: 20px;
	color: #1B1464;
	font-family: var(--font-Gilroy-Medium);
	text-align: right;
}








/* 
=====================================
SUBSCRIPTION PAGE START HERE
=====================================
*/

.subscriptions-tabs {
	margin-bottom: 34px;
}

.subscription-box-area {
	padding: 45px 30px;
}

.subscriptions-head {
	border: 1px solid #809FB8;
	border-radius: 10px;
	margin-bottom: 12px !important;
}

.subscribtions-table-box {
	border: 1px solid var(--slate-200);
	border-radius: 20px;
	padding: 10px 16px;
}

.subscribtions-table-box-area {
	margin: 65px 0 0;
}

.subscribtions-table-box table tr td {
	padding: 0 0 0 12px;
}

.table-image {
	width: 80px;
	min-width: 80px;
	padding: 0 !important;
}

.table-image img {
	width: 78px;
	height: 54px;
	border-radius: 20px;
	object-fit: cover;
}

.subscribtions-table-box {
	margin-bottom: 12px;
}

.subscribtions-table-box .input__box {
	margin-bottom: 0;
}

.subscribtions-table-box  a {
	background-color: var(--deep-pink);
	width: 165px;
	text-align: center;
}

.subscribtions-table-box > .d-flex {
	gap: 12px;
	flex-wrap: wrap;
	justify-content: space-between;
}

.subscribtions-table-box > .d-flex > div:nth-child(1) {
	width: 20% !important;
}

.subscribtions-table-box > .d-flex > div:nth-child(2) {
	width: 19% !important;
}

.subscribtions-table-box > .d-flex > div:nth-child(3) {
	width: 19% !important;
}

.subscribtions-table-box > .d-flex > div:nth-child(4) {
	width: 21% !important;
}

.subscribtions-table-box > .d-flex > div:nth-child(5) {
	width: 175px !important;
}

.subscribtions-table-box > .d-flex > div p,
.subscribtions-table-box > .d-flex > div span {
	font-size: 14px;
}

.payment__design__box {
	padding: 15px 10px;
}

.payment__content {
	margin-bottom: 40px;
}

.payment__content p {
	color: var(--deep-indigo);
}

.payment__content p:first-child {
	margin-bottom: 20px;
}

.inr_payment_box {
	display: inline-block;
	border: 1px solid var(--slate-300);
	padding: 6px 12px;
	border-radius: 6px;
}

.inr_payment_box p {
	color: var(--slate-900);
	margin: 0 !important;
}

.latest-invoice {
	padding: 10px 5px;
}

.latest-invoice p {
	color: var(--muted-sky-blue);
}

.payment__design__box:nth-child(2) {
	margin-top: 20px;
}

.subscriptions__flex {
	padding: 100px 0 0;
}




/* 
=====================================
RENTS-PAYMENT PAGE START HERE
=====================================
*/

.rents-payment-area {
	height: calc(100% - 88px);
}

.rents-payments-filter {
	border-radius: 20px 20px 0 0;
}

.rents-table tr th,
.rents-table tr td {
	text-align: center;
}

.badge-span.blue-deep {
	background-color: #1470EF33;
	color: #1470EF;
}

.badge-span.green-deep {
	background-color: #5EE5AE33;
	color: #5EE5AE;
	width: 72px;
}

.rents-table tr td .badge-span {
	/*! height: 30px; */
	padding: 5px 10px;
}

.amount__progress {
	width: 94px;
	height: 14px;
	background-color: #809FB842;
	position: relative;
}

.amount__progress span {
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
}

.amount__progress span.red_p {
	background-color: var(--deep-pink);
}

.amount__progress span.dark_p {
	background-color: var(--deep-indigo);
}


.real-estate-loans-tabs-list li a.active::after {
	display: none;
}






/* 
=====================================
TAXATION-DECLARATIONS PAGE START HERE
=====================================
*/

.declarations-flex {
	gap: 20px;
	padding: 70px 35px 0;
}

.declarations-flex .declare__div > div {
	width: 280px;
	background-color: #809FB81A;
	border-radius: 20px;
	border: 1px solid #809FB880;
	padding: 26px 28px 30px;
}

.declare__div h4 {
	font-size: 20px;
	line-height: 24px;
	font-family: var(--font-Gilroy-Semibold);
	color: var(--deep-indigo);
	margin: 13px 0;
}

.declare__div span {
	padding: 10px 10px;
	background-color: #1470EF30;
	border-radius: 30px;
	color: #1470EF;
	font-family: var(--font-Gilroy-Semibold);
}

.declare__div small {
	text-decoration: underline;
	padding: 10px;
	margin-top: 13px;
}

.tax-summary{
	padding: 55px 0 0;
}

.tax-summary > h4 {
	color: var(--gray-900);
	margin-bottom: 30px;
}

.tax-summary .design__box {
	padding: 18px 20px;
	border-radius: 10px;
}

.tax-summary .design__box small {
	color: var(--deep-indigo);
	display: block;
}

.tax-box {
	max-width: 688px;
	margin-bottom: 10px;
}




/* 
=====================================
SETTINGS PAGE START HERE
=====================================
*/

.settings-area {
	padding: 20px 0 0;
}

.settings-area .input__box .eye__btn {
	right: 10px;
	bottom: 10px;
	z-index: 10;
}

.settings-area .design__box {
	margin-bottom: 30px;
}

.settings-area .input__box {
	margin-bottom: 12px;
}

.settings-area .input__box span {
	color: #0B666A;
}

.switch-div3 {
	margin-top: 20px;
}

.switch-div3 p {
	color: #0B666A;
}

.switch-div3 label span {
	width: 50px;
	height: 30px;
	border: 2px solid transparent;
}

.switch-div3 span::after {
	content: '';
	width: 26px;
	height: 26px;
	left: 1px;
}

.switch-div3 label input:checked + span {
	background-color: #34C759;
	border: 2px solid #34C759;
	box-shadow: 0px 3px 1px 0px #0000000F;
}

.switch-div3 label input:checked + span::after {
	content: '';
}





/* 
=====================================
FINANCE-PAYMENT PAGE START HERE
=====================================
*/

.finance-table {
	min-width: 1200px;
}

.finance-amount-box {
	padding: 15px 15px;
}

.finance-amount-box-flex {
	--bs-gutter-x: 10px;
	padding-bottom: 16px;
}

.finance-amount-box {
	border-radius: 12px;
}

.finance-amount-box.red {
	background: linear-gradient(255.85deg, #FBB03B -143.03%, #ED1E79 171.22%);
	border: 1px solid transparent;
}

.finance-amount-box.red * {
	color: var(--white-colour) !important;
}

.finance-amount-box.red h3 {
	font-family: var(--font-Gilroy-Semibold);
}

.finance-amount-box small {
	font-size: 13px;
	color: var(--muted-sky-blue);
}

.finance-amount-box h3 {
	font-size: 24px;
	line-height: 100%;
	color: #06152B;
	margin: 8px 0;
	font-family: var(--font-Gilroy-Regular);
}

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

.finance__select .input__box {
	width: 124px;
	margin: 0;
}


/* donut-chart */
.chart-container {
    width: 200px;
    margin: auto;
    position: relative;
}

.legend {
    margin-top: 40px;
    display: block;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
    letter-spacing: 0.81px;
    font-family: var(--font-Gilroy-Medium);
}

.legend-color {
    width: 35px;
    height: 14px;
    border-radius: 28px;
}

