/* Vars */
:root{
	--header-dd-bg: #252531;
	--header-dd-active: #323740;

	--theme-blue: #0C58D2;
	--theme-blue-b: #0A59D2;
	--theme-blue-c: #3974cc;

	--theme-light: #EDEDED;
	--theme-more-light: #F4F4F4;

	--theme-m: #83493A;
}

/* Globals */

.text-theme-m{
	color: #83493A!important;
}

.text-theme-blue{
	color: var(--theme-blue-c);
}

.text-theme-blue-b{
	color: var(--theme-blue-b);
}

.text-theme-blue-main{
	color: var(--theme-blue);
}
.bg-theme-blue{
	background-color: var(--theme-blue-c);
}

.bg-theme-blue-b{
	background-color: var(--theme-blue-b);
}

.bg-theme-blue-main{
	background-color: var(--theme-blue);
}

.text-normal{
	font-weight: normal;
}

.cust-invert, .cust-invert::before, .cust-invert::after{
	transform: rotate(180deg);
}

.underline{
	text-decoration: underline;
}

.no-underline{
	text-decoration: none;
}

/* Header */

.nav-link{
	font-size: 13px;
}

.cust-header-icon{
	width: 15px;
	height: auto;
}

.container-cust{
	max-width: 1100px;
	margin: auto;
}

.cust-header-dropdown{
	top: 20px;

	min-width: unset;
	padding: 20px 16px;

	color: #fff;

	background-color: var(--header-dd-bg);
	border-radius: 7px;
}

.cust-dd-mob-container{
	margin-right: 0;
	width: fit-content;
}

.cust-header-dd-mob{
	max-width: fit-content;
}

.cust-header-dropdown::after{
	display: none;
}

.cust-header-user-icon{
	display: block;
	margin: auto;
	width: 35px;
	height: auto;

	border-radius: 4px;
}

.cust-header-dropdown hr{
	margin: 18px 3px;
	border-color: #555;
}

.cust-header-user-name{
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	margin-top: 15px;

	font-size: 15px;
}

/* Navigation */
.cust-drop-nav{
	display: flex;
	flex-flow: column;
}

.cust-nav-item{
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 4px 0;

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

	border-radius: 7px;
}

.cust-nav-item.active, .cust-nav-item:hover{
	background-color: var(--header-dd-active);
}

.page-wrapper{
	overflow: unset;
}

.cust-footer{
	background-color: var(--theme-light);
}

/* Dashboard */

.cust-db-icon{
	max-width: 10px;
	height: auto;
}

.bottom-blue-line{
	position: relative;
}

.bottom-blue-line::after{
	content: "";
	display: block;
	position: absolute;
	bottom: -5px;
	left: 0;

	width: 50%;
	height: 3px;

	background-color: var(--theme-blue-c);
	border-radius: 1.5px;
}

.bg-theme-light{
	background-color: var(--theme-light);
}
/* Form-A (Client's List */

.cust-table thead, .cust-table tbody, .cust-table tr, .cust-table td, .cust-table th{
	border: none;
}

.cust-data-table input[type='search']{
	padding: 12px 20px;

	background-color: var(--theme-more-light);
	border: none;
}

/* Pills */

.cust-pill, .cust-pill:hover{
	min-width: 90px;
	margin: 0 10px;
	padding: 8px 15px;

	color: #959595;
	text-align: center;
	white-space: nowrap;
	background-color: #F0F0F0;
	
	border-radius: 5px;
}
.cust-pill.active{
	color: #fff;
	background-color: var(--theme-blue-b);
}

.property-profile-report-icon{
	width: 20px;
	height: auto;
	/* position: relative; */
}

/* .property-profile-report-icon::after{
	content: "X";
	color: #f00;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
} */

.report-profile-icon-cross{
	position: relative;
}
.report-profile-icon-cross::after{
	content: "X";
	color: #c30404;
	font-size: 30px;
	line-height: 30px;

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* transform: rotate(90deg); */
	border-radius: 200px;
	/* border: 2px solid #c30404; */
}