/*
-------------------------------------------------
  Theme Name: Amel- Admin Dashboard Template
  Theme URL:
  Author: zainiktheme
  Author URL: https://themeforest.net/user/zainiktheme
  Creation Date: 06-October-2022
  Description:A default stylesheet for Amel- Admin Dashboard Template
  Version: 1.00
  Primary use: admin dashboard, dashboard, admin panel, property management, property, online property etc.

  ---------------------------------------------------
  Developed By: zainiktheme
  Developer URL: https://themeforest.net/user/zainiktheme
  Developer: Suraiya Aysha

  ---------------------------------------------------

  --------------------------------------------------
  Table of Contents
  --------------------------------------------------
  1. General CSS
  2. Typography CSS
  3. Button CSS
  4. Preloader Area Start
  5. Navbar CSS
  6. Dashboard Page
  7. Sign Up Page
  8. Empty Properties Page
  9. All Property Page
  10. Property Details Page
  11. Add Property Page
  12. Tenants Page
  13. Add Tenants Page
  14. Dashboard Inner Dashboard Layout
  15. Tenants Details Page
  16. Billing Center Page
  17. Documents Page
  18. Invoice Preview
  19. Uploaded Documents Common
  20. Tickets Page CSS
  21. Default Settings Page
  22. Color Settings Page
  23. Tenant Portal Dashboard Page
  24. Tenant Portal Invoice Details Page
  25. Tenant Portal Documents Page
  26. Maintainer Portal Chat Page
  27. Responsive CSS

------------------------------------------------ */

/*-----------------------------------------------
    1. General Style Start
-------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

body,
html {
	height: 100%;
	margin: 0;
}

body {
	background: #F0F8FF none repeat scroll;
	font-size: 14px;
	font-weight: normal;
	font-family: var(--body-font-family);
	color: var(--body-font-color);
	overflow-x: hidden;
	scroll-behavior: smooth;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

/* Theme All Transitions
------------------------------- */
a,
.navbar .dropdown .dropdown-toggle::after,
.theme-btn,
.theme-btn-purple,
.theme-btn-green,
.theme-btn-red,
.edit-btn,
button,
.theme-btn-back,
.page-link,
.tenant-portal-notice-tbl td {
	transition: all 0.6s ease-in-out;
}

.fast-transition {
	transition: all .3s ease-in-out;
}

.slow-transition {
	transition: all .7s ease-in-out;
}

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

ul {
	margin: 0;
	padding: 0;
}

a,
a>* {
	outline: none;
	cursor: pointer;
	text-decoration: none;
}

a {
	color: var(--body-font-color);
}

/* a:hover {
	color: #fafafa !important;
	text-decoration: none;
} */

.sign-h1 {
	line-height: normal;
	color: var(--heading-color) !important;
	font-weight: 600;
}

img::selection {
	background: transparent;
}

.page-link:focus {
	box-shadow: none;
}

.d-none-content {
	display: none;
}

/*----Form Control Reset CSS----*/
.form-control,
.form-select {
	background-color: var(--white-color) !important;
	height: 50px;
	color: var(--black-color) !important;
	border: 1px solid var(--border-color) !important;
	border-radius: 10px;
	padding: 13px 30px 13px 20px;
	font-size: 16px;
	line-height: 22.4px;
	margin: 0;
}

.text-up-input .label-text-title {
	position: absolute;
	cursor: text;
	z-index: 2;
	top: 13px;
	left: 20px;
	background: var(--white-color);
	padding: 0 10px;
	transition: all .3s ease;
	color: var(--border-color);
	font-weight: normal;
}

.text-up-input input:focus,
.text-up-input input:focus-visible,
.text-up-input input:active,
.text-up-input input:target {
	border-color: var(--login-yellow-color) !important;
	background: var(--white-color);
	box-shadow: 0px 0px 0px 4px #F0C8053D;
}

.text-up-input input:focus+label.label-text-title {
	font-size: 12px;
	top: -5px;
	color: var(--black-color);
}

.form-control:focus {
	background-color: var(--white-color);
	box-shadow: none;
}

.form-select:focus {
	border-color: #86b7fe;
	box-shadow: none;
}

.form-control::placeholder {
	color: #9f9f9f;
}

.input-group-text {
	font-size: 14px;
}

textarea {
	min-height: 100px !important;
}

label {
	margin-bottom: 10px;
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-close:focus,
.form-check-input:focus {
	box-shadow: none;
}

.form-select {
	padding: 13px 32px 13px 20px;
}

/* Custom checkbox Start */
.custom-checkbox input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}

.custom-checkbox label {
	position: relative;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	margin-bottom: 0;
}

.custom-checkbox label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid var(--border-color-2);
	box-shadow: none;
	padding: 7px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 7px;
	border-radius: 2px;
}

.custom-checkbox input:checked+label:before {
	border: 1px solid var(--primary-color);
}

.custom-checkbox input:checked+label:after {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 6px;
	width: 5px;
	height: 9px;
	border: solid var(--primary-color);
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}

/* Custom checkbox End */

/* Custom Radio Button Start */
.custom-radiobox [type="radio"]:checked,
.custom-radiobox [type="radio"]:not(:checked) {
	position: absolute;
	left: -9999px;
}

.custom-radiobox [type="radio"]:checked+label,
.custom-radiobox [type="radio"]:not(:checked)+label {
	position: relative;
	padding-left: 28px;
	cursor: pointer;
	line-height: 20px;
	display: inline-block;
	color: var(--body-font-color);
	margin-bottom: 0;
}

.custom-radiobox [type="radio"]:checked+label:before,
.custom-radiobox [type="radio"]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border-bottom: 1px solid #EDF2F6;
	border-radius: 100%;
	background: var(--white-color);
}

.custom-radiobox [type="radio"]:checked+label:after,
.custom-radiobox [type="radio"]:not(:checked)+label:after {
	content: '';
	width: 12px;
	height: 12px;
	background: var(--primary-color);
	position: absolute;
	top: 3px;
	left: 3px;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.custom-radiobox [type="radio"]:not(:checked)+label:after {
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.custom-radiobox [type="radio"]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* Custom Radio Button End */

/*-----------------------------------------------
    1. General Style End
-------------------------------------------------*/

/*------------------------------------------
    2.  Typography Start
-------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	margin: 0;
	color: var(--full-black);
}

h1 {
	font-size: 40px;
	line-height: 48px;
}

h2 {
	font-size: 30px;
	line-height: 48px;
}

h3 {
	font-size: 24px;
	line-height: 36px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 15px;
	line-height: 20px;
}

h6 {
	font-size: 14px;
	line-height: 20px;
}

p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--grey-color);
}

figure {
	margin: 0 0 0;
}

/*--------------------------------
    2.1 Theme Color
-----------------------------------*/
:root {
	--navbar-bg: #F8F8F8;

	--white-color: #fff;

	--off-white: #FAFAFA;

	--heading-color: #333333;
	--heading-color-hover: #4b4a4a;
	--full-black: #111111;
	--body-font-color: #6C757D;

	--border-color: #C2C2C2;
	--border-color-2: #A5ABBA;
	--border-color-3: #DDDDDD;
	--border-color-4: #D9D9D9;

	/*--primary-color: #3686FC;*/
	--primary-hover-color: #0063E6;
	--primary-color-transparent: rgba(231, 240, 255, 0.98);

	/*--secondary-color: #8253FB;*/
	--secondary-hover-color: #582bc9;

	--red-color: #DE2222;
	--red-color-hover: #dc3545;

	--yellow-color: #FFA412;
	--login-yellow-color: #FAC858;
	--orange-color: #FF8900;

	--green-color: #82B721;
	--green-color-hover: #0d943a;

	--black-color: #333333;

	--grey-color: #6C757D;
	--dark-grey-color: #565A56;
	--dark-grey2color: #9A9A9B;

	--purple-color: #5470C6;

	--blue-color: #124068;

	--body-font-family: "Poppins", sans-serif;
}

.color-heading {
	color: var(--black-color);
}

.color-hover {
	color: var(--primary-color);
}

.primary-color {
	color: var(--primary-color) !important;
}

.primary-color:hover {
	color: var(--primary-hover-color) !important;
}

.secondary-color {
	color: var(--secondary-color);
}

.theme-text-color {
	color: var(--body-font-color);
}

.bg-off-white {
	background-color: var(--off-white);
}

.bg-primary-color {
	background-color: var(--primary-color);
}

.bg-light {
	background-color: var(--navbar-bg) !important;
}

.theme-border {
	border: 1px solid var(--border-color);
}

.border-bottom {
	border-bottom: 1px solid var(--border-color-4) !important;
}

.border-top {
	border-top: 1px solid var(--border-color) !important;
}

.orange-color {
	color: var(--orange-color);
}

.green-color {
	color: #F0C805 !important;
}

.green-color-active {
	color: #82b721 !important;
}

.weeks {
	color: #3187FF !important;
}
a.weeks:hover {
	color: #F0C805 !important;
}

.red-color,
.theme-link-red {
	color: var(--red-color);
}

.red-color:hover,
.theme-link-red:hover {
	color: var(--red-color-hover) !important;
}

button.red-color:hover,
a.red-color:hover,
.theme-link-red:hover {
	color: var(--red-color-hover);
}

.bg-orange {
	background-color: var(--orange-color);
}

.bg-off-white {
	background-color: var(--off-white);
}

.bg-green {
	background-color: var(--green-color);
}

.bg-red {
	background-color: var(--red-color);
}

.bg-red-transparent {
	background-color: rgba(255, 67, 67, 0.1);
}

.bg-green-transparent {
	background-color: rgba(82, 255, 67, 0.1);
}

.bg-blue-transparent {
	background-color: var(--primary-color-transparent);
}

.bg-purple-transparent {
	background-color: #F0EBFF;
}

.bg-orange-transparent {
	background-color: #FFF0E1;
}

.bg-purple {
	background: var(--purple-color);
}

.sidebar-badge-light {
	background-color: #EEEEEE;
	color: var(--body-font-color);
}

.theme-link {
	color: var(--green-color);
}

.theme-link:hover {
	color: var(--green-color) !important;
}

.theme-secondary-link {
	color: var(--secondary-color);
}

.theme-secondary-link:hover {
	color: var(--secondary-hover-color) !important;
}

/*--------------------------------
    2.3 Theme padding, margin
-----------------------------------*/
.section-t-space {
	padding-top: 140px;
}

.section-b-space {
	padding-bottom: 140px;
}

.section-t-115-space {
	padding-top: 115px;
}

.section-b-115-space {
	padding-bottom: 115px;
}

.section-t-80-space {
	padding-top: 80px;
}

.section-b-80-space {
	padding-bottom: 80px;
}

.section-t-60-space {
	padding-top: 60px;
}

.section-b-60-space {
	padding-bottom: 60px;
}

.p-30 {
	padding: 30px;
}

.pl-30 {
	padding-left: 30px;
}

.pr-30 {
	padding-right: 30px;
}

.pt-30 {
	padding-top: 30px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-15 {
	padding-bottom: 15px;
}

.p-20 {
	padding: 20px;
}

.pb-20 {
	padding-bottom: 20px;
}

.p-25 {
	padding: 25px;
}

.pb-25 {
	padding-bottom: 25px;
}

.pt-20 {
	padding-top: 20px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mt-25 {
	margin-top: 25px;
}

.mb-25 {
	margin-bottom: 25px;
}

.me-25 {
	margin-right: 25px;
}

.ms-25 {
	margin-left: 25px;
}

.mt-20 {
	margin-top: 20px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mr-30 {
	margin-right: 30px;
}

.mt-50 {
	margin-top: 50px;
}

.mr-15 {
	margin-right: 15px;
}

.radius-95 {
	border-radius: 95px;
}

.radius-3 {
	border-radius: 3px;
}

.radius-4 {
	border-radius: 4px;
}

.radius-5 {
	border-radius: 5px;
}

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

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

.radius-20 {
	border-radius: 20px;
}

.radius-50 {
	border-radius: 50%;
}

.radius-t-r-0 {
	border-top-right-radius: 0 !important;
}

.radius-t-l-0 {
	border-top-left-radius: 0 !important;
}

.radius-b-r-0 {
	border-bottom-right-radius: 0 !important;
}

.radius-b-l-0 {
	border-bottom-left-radius: 0 !important;
}

/*--------------------------------
    2.3 Theme Font Family, Font Size
-----------------------------------*/
.font-normal {
	font-weight: 400;
}

.font-bold {
	font-weight: 700;
}

.font-semi-bold {
	font-weight: 600 !important;
}

.font-medium {
	font-weight: 500;
}

.font-30 {
	font-size: 30px;
}

.font-24 {
	font-size: 24px;
	line-height: 31px;
}

.font-20 {
	font-size: 20px;
	line-height: 31px;
}

.font-18 {
	font-size: 18px;
	line-height: 150%;
}

.font-17 {
	font-size: 17px;
}

.font-16 {
	font-size: 16px;
}

.font-15 {
	font-size: 15px;
	line-height: 23px;
}

.font-14 {
	font-size: 14px;
}

.font-13 {
	font-size: 13px;
	line-height: 18px;
}

.font-12 {
	font-size: 12px;
	line-height: 13px;
}

.font-11 {
	font-size: 11px;
	line-height: 12px;
}

/*--------------------------------
   2.4 Template Default CSS
-----------------------------------*/
section {
	position: relative;
	z-index: 9;
}

/* .section-title {
	text-align: center;
	width: 63%;
	margin: -11px auto 60px;
} */

.section-title .section-sub-heading {
	margin-top: 20px;
}

.section-small-title {
	font-weight: 500;
	margin-bottom: 15px;
}

.cursor {
	cursor: pointer;
}

.h-36 {
	height: 36px;
}

.w-36 {
	width: 36px;
}

/* Table CSS */
.table td {
	color: var(--body-font-color);
	border-bottom: 1px solid #EDF2F6;
}

.border-bottoms {
	border-bottom: 1px solid #EDF2F6;
}

table {
	border-radius: 4px;
}

table th {
	font-weight: 500;
	color: var(--heading-color) !important;
}

table:not(.ui-datepicker-calendar) th,
table:not(.ui-datepicker-calendar) td {
	font-size: 14px;
	max-width: unset;
	min-width: unset;
}

.table>thead,
tr {
	vertical-align: middle;
}

.table>thead>tr>th {
	border-bottom: 1px solid #EDF2F6 !important;
	background: var(--white-color);
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	color: var(--black-color) !important;
	padding: 10px 15px !important;
	white-space: nowrap;
}

.table>tbody>tr>td {
	padding: 10px 15px !important;
}

.add-campi {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.add-campi>* {
	margin: 0;
}

.adminlabors.camps-laborer .col-md-2,
.ownerlabors.camps-laborer .col-md-2 {
	width: 18%;
}

.amount-bottom {
	background: #F3F3F3;
	border-radius: 10px;
	font-size: 16px;
	line-height: 16px;
	font-weight: 400;
	color: var(--grey-color);
	padding: 20px 0;
	width: 100%;
	margin: 10px 0 0;
}

.arrow-datases {
	padding-left: 10px;
	width: calc(100% - 24px);
}

.arrow-icones {
	box-shadow: 0px 0px 4px 0px #00000040;
	background-color: var(--white-color);
	width: 24px;
	height: 24px;
	border-radius: 50px;
}

.my-chart {
	height: auto;
	display: flex;
	align-items: center;
}

.table>:not(caption)>*>* {
	padding: 15px 30px;
}

tr:first-child td,
tr:first-child th {
	border-top-left-radius: 4px;
}

tr:last-child td,
tr:last-child th {
	border-top-right-radius: 4px;
}

.tbl-action-btn {
	font-size: 16px;
	color: var(--body-font-color);
}

.tbl-action-btn:hover {
	color: var(--primary-color);
}

/* DataTables Default CSS Start */
.disabled>.page-link,
.page-link.disabled,
.page-link {
	background-color: transparent;
	border-color: transparent;
	color: #abb1b7;
}

.page-link {
	font-size: 14px;
	padding: .5px 8.7px;
	border-radius: 4px;
	color: var(--body-font-color);
	font-weight: 500;
	display: inline;
}

.page-link:hover {
	background-color: transparent;
	border-color: transparent;
	color: var(--full-black) !important;
}

.active>.page-link,
.page-link.active {
	border: 0;
	display: inline-block;
	background-color: #F1F1F1;
	color: var(--full-black);
	padding: 6px 10px;
	border-radius: 50px;
	min-width: 32px;
	max-height: 32px;
	text-align: center;
}

.active>.page-link:hover,
.page-link:hover.active {
	color: var(--white-color);
	background-color: var(--green-color);
}

.activate-select .sorting_1 {
	background-color: #f8f9fa
}

div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_filter label {
	margin-bottom: 25px;
}

.table.dataTable.dtr-inline.collapsed>tbody>tr>td,
table.dataTable.dtr-inline.collapsed>tbody>tr>td {
	position: relative
}

.table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control,
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control {
	padding-left: 30px
}

.table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
	top: 64%;
	left: 5px;
	height: 14px;
	width: 14px;
	margin-top: -14px;
	display: block;
	position: absolute;
	color: var(--white-color);
	border: 2px solid var(--white-color);
	border-radius: 14px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	text-align: center;
	text-indent: 0 !important;
	line-height: 12px;
	content: "+";
	background-color: var(--primary-color);
	padding: 2px 0px 0px 0px;
}

/* DataTables Additional CSS */
.dataTables_wrapper.container-fluid {
	padding: 0
}

div.dataTables_wrapper div.dataTables_filter {
	text-align: right
}

@media (max-width:767px) {
	div.dataTables_wrapper div.dataTables_filter {
		text-align: center
	}
}

div.dataTables_wrapper div.dataTables_filter input {
	margin-left: .5em;
	margin-right: 0
}

.datatable td:focus {
	outline: 0
}

div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child {
	padding-left: 0
}

div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child {
	padding-right: 0
}

table.dataTable {
	border-collapse: collapse !important;
	margin-bottom: 15px !important;
	margin-top: 0 !important
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:before {
	left: auto;
	right: .5rem;
	content: "\f0360";
	font-family: "Material Design Icons";
	font-size: 1rem;
	top: 9px
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc_disabled:after {
	left: auto;
	right: .5em;
	content: "\f035d";
	font-family: "Material Design Icons";
	top: 15px;
	font-size: 1rem
}

table.dataTable thead tr td.sorting,
table.dataTable thead tr td.sorting_asc,
table.dataTable thead tr td.sorting_desc,
table.dataTable thead tr th.sorting,
table.dataTable thead tr th.sorting_asc,
table.dataTable thead tr th.sorting_desc {
	padding: 1rem 1.5rem;
}

table.dataTable tbody>tr.selected,
table.dataTable tbody>tr>.selected {
	background-color: rgba(4, 162, 179, .2)
}

table.dataTable tbody>tr.selected td,
table.dataTable tbody>tr>.selected td {
	border-color: rgba(4, 162, 179, .2);
	color: #04a2b3
}

table.dataTable tbody td:focus {
	outline: 0 !important
}

table.dataTable tbody td.focus,
table.dataTable tbody th.focus {
	outline: 2px solid var(--primary-color) !important;
	outline-offset: -1px;
	background-color: rgba(4, 162, 179, .15)
}

table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child:before {
	-webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, .1);
	box-shadow: 0 5px 12px rgba(0, 0, 0, .1);
	background-color: #66d203;
	bottom: auto
}

table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before {
	background-color: #e66060
}

div.dt-button-info {
	background-color: #04a2b3;
	border: none;
	color: var(--primary-color);
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 3px;
	text-align: center;
	z-index: 21
}

div.dt-button-info h2 {
	border-bottom: none;
	background-color: rgba(255, 255, 255, .2);
	color: var(--primary-color)
}

@media (max-width:767.98px) {

	li.paginate_button.next,
	li.paginate_button.previous {
		display: inline-block;
		font-size: 1.5rem
	}

	li.paginate_button {
		display: none
	}

	.dataTables_paginate ul {
		text-align: center;
		display: block;
		margin: 1rem 0 0 !important
	}

	div.dt-buttons {
		display: inline-table;
		margin-bottom: 1rem
	}
}

/* DataTables Default CSS End */

/* Theme Link Hover Effect Start */
.link-hover-effect {
	position: relative;
	text-decoration: none;
}

.link-hover-effect::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 4px;
	background-color: var(--primary-color);
	bottom: 0;
	left: 0;
	transform-origin: right;
	transform: scaleX(0);
	transition: transform 0.6s ease-in-out;
}

.link-hover-effect:hover::before {
	transform-origin: left;
	transform: scaleX(1);
}

/* Theme Link Hover Effect End */

/* Pulse Effect */
.pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	box-shadow: 0px 0px 1px 1px var(--red-color);
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px rgba(255, 61, 61, 0.5);
	}

	100% {
		box-shadow: 0 0 0 7px rgba(255, 61, 61, 0);
	}
}

/* Pulse Effect */

.bg-img-property {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.fit-image {
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}

/* Avatar CSS */
.avatar-md {
	height: 3.8rem;
	width: 3.8rem;
	min-width: 3.8rem;
}

.avatar-xl {
	height: 5.5rem;
	width: 5.5rem;
}

/* Avatar CSS */

/* Common Modal CSS Start */
.modal-content {
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	border-radius: 55px;
	border: 0;
	overflow: auto;
	padding: 30px;
	background-clip: unset;
}

.modal.fade .modal-content {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	-ms-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

.modal.fade.show .modal-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.modal-backdrop {
	background-color: transparent;
	opacity: 0;
	transition: all 0.2s ease-in-out;
}

.modal {
	background-color: #000000B2;
	z-index: 11111;
}

.modal-backdrop.show {
	opacity: 1;
}

.modal.fade .modal-dialog {
	transition: -webkit-transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.modal.show .modal-dialog {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.modal .btn-close {
	color: var(--body-font-color) !important;
	background-image: none;
	font-size: 18px;
	position: relative;
	top: -5px;
}

.modal-header {
	border-bottom: 0;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 20px;
}

.modal-body {
	padding: 25px 0;
}

.modal-footer {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-top: 25px;
}

/* Common Modal CSS End */
/*------------------------------------------
    2.  Typography End
-------------------------------------------*/

/*--------------------------------------------
    3. Button Style
---------------------------------------------*/
.section-btn {
	margin-top: 42px;
}

.btn {
	padding: 0;
}

.btn.focus,
.btn:focus,
button {
	outline: 0;
	box-shadow: none;
}

button {
	background-color: transparent;
}

button:focus {
	outline: 0;
}

/*-----Theme Button Style-----*/
.theme-btn,
.theme-btn-purple,
.theme-btn-green,
.theme-btn-red,
.edit-btn,
.theme-btn-back {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	outline: none;
	z-index: 99;
	padding: 13px 30px !important;
	line-height: 30px;
	justify-content: center;
	border-radius: 10px;
	font-weight: 500 !important;
	color: var(--white-color);
	border: 1px solid transparent;
	font-size: 17px;
	min-height: 40px;
}

.theme-btn:hover,
.theme-btn-purple:hover,
.theme-btn-green:hover,
.theme-btn-red:hover {
	color: var(--white-color) !important;
}

.theme-btn:hover {
	background-color: var(--heading-color-hover) !important;
}

.theme-btn-purple {
	background-color: var(--secondary-color);
}

.theme-btn-purple:hover {
	background-color: var(--secondary-hover-color);
}

.theme-btn-green ,
.theme-btn {
	background-color: var(--full-black);
}

.theme-btn-green:hover {
	background-color: var(--green-color-hover);
}

.theme-btn-red {
	background-color: var(--red-color);
}

.theme-btn-red:hover {
	background-color: var(--red-color-hover);
}

.edit-btn {
	border: 1px solid var(--green-color);
	color: var(--white-color) !important;
}

.edit-btn:hover {
	border: 1px solid var(--green-color) !important;
	color: var(--white-color) !important;
}

.theme-btn-back {
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	color: var(--heading-color);
}

.theme-btn-back:hover {
	background-color: var(--off-white);
}

.status-btn {
	padding: 7px 15px !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.table .status-btn {
	min-width: 100px;
}

.status-btn-purple {
	background-color: #F0EBFF;
	color: var(--secondary-color);
}

.status-btn-green {
	background-color: rgba(82, 255, 67, 0.1);
	color: var(--green-color);
}

.status-btn-red {
	background-color: rgba(255, 67, 67, 0.1);
	color: var(--red-color);
}

.status-btn-blue {
	background-color: var(--primary-color-transparent);
	color: var(--primary-color);
}

.status-btn-orange {
	background-color: #FFF0E1;
	color: var(--orange-color);
}

/*--------------------------------------------
    3. Button Style
---------------------------------------------*/

/*-------------------------------------------
    4. Preloader Area Start
-------------------------------------------*/
#preloader {
	background-color: var(--white-color);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999999999999999;
}

#preloaderInner {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*-------------------------------------------
    4. Preloader Area End
-------------------------------------------*/

/*-------------------------------------------
    5. Navbar Area / Template Main Layout CSS Start
-------------------------------------------*/

/* --- Top Menu Bar/ Top Navbar CSS Start --- */

#page-topbar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 11111;
	background-color: var(--white-color);
	box-shadow: 0px 2px 4px 0px #0000001A;
}

.navbar-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto;
	height: 96px;
	padding: 0 calc(24px / 2) 0 0;
	padding-right: 40px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 9999s ease-in-out 0s;
}

.navbar-brand-box {
	padding: 0 10px;
	transition: ease all .2s;
	/* width: calc(100% - 40px); */
}

.logo {
	line-height: 70px
}

.header-lefts a>span {
	/* display: block; */
	width: 115px !important;
	Height: 45px !important;
}

.header-lefts a>span img {
	width: 100%;
}

.header-lefts .header-item {
	padding: 0 !important;
	width: 20px;
	height: auto;
	line-height: normal;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
}

.logo .logo-sm ,
.logo-light {
	display: none
}

.app-search {
	padding: calc(39px / 2) 0;
}

.app-search .form-control {
	border: none;
	height: 40px;
	padding-left: 40px;
	padding-right: 20px;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 4px;
	border: 1px solid #DADEE7;
	background-color: transparent;
	min-width: 400px;
}

.app-search span {
	position: absolute;
	z-index: 10;
	font-size: 16px;
	line-height: 38px;
	left: 13px;
	top: 0;
}

/* Mobile Search Btn Start */
.mobile-search-btn button {
	border-top-right-radius: 4px !important;
	border-bottom-right-radius: 4px !important;
}

/* Mobile Search Btn End */

.page-content {
	padding: calc(115px + 0px) calc(24px / 2) 0 calc(24px / 2) !important;
	padding-left: 0;
	padding-right: 20px;
}

.page-content-wrapper {
	min-height: calc(100vh - 100px);
}

.header-item {
	height: 80px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	color: var(--heading-color);
	border: 0;
	border-radius: 0;
	padding: 0;
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 16px;
}

.header-profile-user {
	background-color: #f1f5f7;
	margin-right: 15px;
}

.languages-icon svg {
	transition: 0.5s all;
	transform: rotate(180deg);
}

.languages-icon.show svg {
	transform: unset;
}

.user-names {
	color: #151D48;
	margin-right: 10px;
	font-weight: 500;
}

.user-dropdown .dropdown-item i {
	display: inline-block
}

/* Notification & Message Menu Dropdown Start */
.noti-icon i {
	font-size: 16px;
	color: #ABB1BF;
}

.noti-icon {
	height: auto;
	padding: 12px;
	background: rgb(255, 250, 241);
	border-radius: 8px;
}

.noti-icon .noti-dot {
	position: absolute;
	display: inline-block;
	height: 7px;
	width: 7px;
	background-color: var(--red-color);
	top: 5px;
	right: 5px;
	border-radius: 50%;
}

.user-dropdowns {
	text-align: left;
}

.user-profile-name {
	color: var(--grey-color);
	font-size: 14px;
}

.notification-item .d-flex {
	padding: .75rem 1rem
}

.notification-item .d-flex:hover {
	background-color: #f8f9fa;
}

.avatar-xs {
	height: 60px;
	width: 60px;
	min-width: 60px;
}

.avatar-title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: var(--primary-color);
	color: var(--white-color);
	border: 1px solid var(--white-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: 500;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

/* Notification & Message Menu Dropdown End */

.dropdown-item:focus,
.dropdown-item:hover {
	color: var(--black-color) !important;
	background-color: transparent;
}

.dropdown-divider {
	border-top: 1px solid var(--border-color);
}

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

.dropdown-menu {
	-webkit-box-shadow: 0px 0px 10px 0px #00000033;
	box-shadow: 0px 0px 10px 0px #00000033;
	-webkit-animation-name: DropDownSlide;
	animation-name: DropDownSlide;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	border: 1px solid transparent;
	font-size: 14px;
	border-radius: 10px;
	border: 0;
	padding: 0;
}

.drop-name {
	margin-left: 10px;
}

.dropdown-menu.show {
	top: 100% !important;
	background: var(--white-color);
}

.dropdown-item {
	border-bottom: 1px solid #DFDFDF;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	color: #151D48;
	padding: 14px 20px;
	min-height: 44px;
	cursor: pointer;
}

.lang-selector .dropdown-menu {
	padding: 0;
	margin-top: 10px !important;
	left: 0 !important;
}

.lang-selector .dropdown-item {
	padding: 10px 20px;
}

.lang-selector .dropdown-item:not(:last-child) {
	border-bottom: 1px solid #E1E1E1;
}

.lang-selector .dropdown-item {
	padding: 10px 21px;
	font-size: 16px;
}

.lang-selector .dropdown-menu img {
	margin-right: 10px !important;
}

.dropdown-menu[data-popper-placement^=left],
.dropdown-menu[data-popper-placement^=right],
.dropdown-menu[data-popper-placement^=top] {
	top: auto !important;
	-webkit-animation: none !important;
	animation: none !important
}

@-webkit-keyframes DropDownSlide {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	0% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
}

@keyframes DropDownSlide {
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}

	0% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}
}


@media (min-width: 600px) {
	.dropdown-menu-lg {
		width: 320px;
	}
}

.dropdown-toggle {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.dropdown-toggle i,
.dropdown-toggle .iconify {
	font-size: 20px;
	color: var(--grey-color);
}

@media (max-width:380px) {
	.navbar-brand-box {
		display: none
	}
}

/* --- Top Menu Bar/ Top Navbar CSS End --- */

/* --- Page Title Bar CSS Start --- */
.page-title-box {
	padding-bottom: 20px;
}

.page-title-box .breadcrumb {
	background-color: transparent;
	padding: 0
}

.breadcrumb-item+.breadcrumb-item::before {
	float: left;
	padding-right: .5rem;
	color: #74788d;
	content: var(--bs-breadcrumb-divider, "\f0142");
}

.breadcrumb-item+.breadcrumb-item::before {
	font-family: "Material Design Icons";
}

.breadcrumb-item>a:hover {
	color : #111111;
}
/* --- Page Title Bar CSS End --- */

/* --- LeftSide Menu CSS Start --- */
.metismenu {
	margin: 0
}

.metismenu li {
	display: block;
	width: 100%;
	margin: 0 0 10px;
	border-radius: 16px;
}

.metismenu .mm-collapse,
.metismenu .mm-collapse:not(.mm-show) {
	display: none
}

.metismenu .mm-collapse.mm-show {
	display: block
}

.metismenu .mm-collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .35s;
	transition-duration: .35s;
	-webkit-transition-property: height, visibility;
	transition-property: height, visibility;
}

.vertical-menu {
	width: 354px;
	z-index: 1001;
	background: var(--white-color);
	bottom: 0;
	margin-top: 0;
	position: fixed;
	top: 0 !important;
	box-shadow: 0px 0px 10px 0px #0000001A;
	padding-top: 100px;
	z-index: 1111;
	transition: 0.3s all;
}

.navbar-brand-box .logo-light {
	display: block
}

.main-content {
	margin-left: 354px;
	overflow: hidden;
	transition: 0.3s all;
	background-color: #F9F9F9 ;
}

.header-lefts {
	/* width: 354px; */
	/* justify-content: center; */
	grid-gap: 20px;
	padding: 0px 20px;
	transition: 0.3s all;
}

.header-rights {
	width: calc(100% - 354px);
	justify-content: flex-end;
	align-items: center;
	grid-gap: 24px;
	padding-left: 10px;
}

.search-inputs {
	padding: 15px 30px 15px 50px;
	width: 100%;
	border: 1px solid #E2E2E2;
	background: #F9FAFB;
	color: var(--black-color);
	border-radius: 10px;
	font-size: 18px;
	font-weight: 400;
	height: 60px;
}

.search-forms {
	position: relative;
	min-width: 513px;
	width: 100%;
}

.submit-search {
	position: absolute;
    left: 17px;
    top: 0;
    height: 59px;
}

.submit-search svg {
    width: 20px;
}

.searching-bars .submit-search {
    height: 50px;
	/* left: 14px; */
}

.searching-bars .submit-search svg {
    width: 17px;
}

input[type="search"]::placeholder {
	color: var(--grey-color);
}

.main-content .content {
	padding: 0 15px 10px 15px;
	margin-top: 70px
}

#sidebar-menu {
	padding: 20px 20px;
	background: var(--white-color)
}

.vertical-collpsed #sidebar-menu {
	padding: 20px 10px;
}

#sidebar-menu .mm-active>.has-arrow:after {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

#sidebar-menu .has-arrow:after {
	content: "\f0140";
	font-family: "Material Design Icons";
	display: block;
	float: right;
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s;
	font-size: 1rem
}

#sidebar-menu ul li a {
	display: block;
	padding: 16px 16px;
	color: var(--body-font-color);
	position: relative;
	font-size: 18px;
	-webkit-transition: all .4s;
	transition: all .4s;
	font-weight: 400;
	border-radius: 16px;
}

#sidebar-menu ul li a svg {
	margin-right: 10px;
	width: 25px;
}

#sidebar-menu ul li a:hover svg path,
#sidebar-menu ul li a:hover i,
#sidebar-menu ul li a:hover svg path,
.mm-active .active svg path,
#sidebar-menu ul li a:hover svg rect,
.mm-active .active svg rect {
	/* filter: brightness(100); */
}

#sidebar-menu ul li a i {
	display: inline-flex;
	min-width: 1.9rem;
	height: 1.9rem;
	font-size: 1.1rem;
	line-height: 1.40625rem;
	vertical-align: middle;
	-webkit-transition: all .4s;
	transition: all .4s;
	justify-content: center;
	align-items: center;
	padding: 5px;
	border-radius: 4px;
}

#sidebar-menu ul li a:hover,
#sidebar-menu ul li a:hover i,
.mm-active .active {
	color: #222222 !important;
	background: #F3F3F3 !important;
	/* box-shadow: 0px 20px 50px 0px #3745571A; */
}

#sidebar-menu ul li .badge {
	margin-top: 4px;
	font-size: 13px;
}

#sidebar-menu ul li ul.sub-menu {
	padding: 10px 0 0 0;
}

#sidebar-menu ul li ul.sub-menu li a {
	padding: 15px 15px 15px 50px;
	font-size: 13px;
}

#sidebar-menu ul li ul.sub-menu li a::before {
	content: "";
	height: 6px;
	width: 6px;
	background-color: var(--body-font-color);
	display: inline-block;
	border-radius: 50%;
	margin-right: 5px;
}

#sidebar-menu ul li ul.sub-menu li a:hover::before {
	background-color: var(--white-color);
}

#sidebar-menu ul li ul.sub-menu li ul.sub-menu {
	padding: 0
}

#sidebar-menu ul li ul.sub-menu li ul.sub-menu li a {
	padding: .4rem 1.5rem .4rem 4.2rem;
	font-size: 13.5px
}

.mm-active {
	color: var(--white-color) !important
}

.mm-active>a ,
.mm-active>a i ,
.mm-active>i {
	color: var(--heading-color) !important
}

.mm-active .active i {
	color: var(--primary-color) !important;
	background-color: var(--primary-color-transparent);
}

.mm-active .active::before {
	background-color: var(--white-color) !important;
}

@media (max-width:992px) {
	.vertical-menu {
		display: none
	}

	.main-content {
		margin-left: 0 !important
	}

	body.sidebar-enable .vertical-menu {
		display: block
	}
}

.vertical-collpsed .main-content {
	margin-left: 70px
}

.vertical-collpsed .header-lefts {
	width: 80px;
}

.vertical-collpsed .navbar-brand-box ,
.vertical-collpsed .logo span.logo-lg {
	display: none
}

.vertical-collpsed .logo span.logo-sm {
	display: block
}

.vertical-collpsed .vertical-menu {
	position: absolute;
	width: 80px !important;
	z-index: 5
}

.vertical-collpsed .vertical-menu .simplebar-content-wrapper,
.vertical-collpsed .vertical-menu .simplebar-mask {
	overflow: visible !important
}

.vertical-collpsed .vertical-menu .simplebar-offset {
	bottom: 0 !important
}


.vertical-collpsed .vertical-menu .simplebar-scrollbar ,
.vertical-collpsed .vertical-menu #sidebar-menu .badge,
.vertical-collpsed .vertical-menu #sidebar-menu .collapse.in,
.vertical-collpsed .vertical-menu #sidebar-menu .menu-title {
	display: none !important
}

.vertical-collpsed .vertical-menu #sidebar-menu .nav.collapse {
	height: inherit !important
}

.vertical-collpsed .vertical-menu #sidebar-menu .has-arrow:after {
	display: none
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li {
	position: relative;
	white-space: nowrap
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li>a {
	min-height: 55px;
	-webkit-transition: none;
	transition: none;
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li>a:active,
.vertical-collpsed .vertical-menu #sidebar-menu>ul>li>a:focus,
.vertical-collpsed .vertical-menu #sidebar-menu>ul>li>a:hover {
	color: var(--primary-color)
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li>a i {
	font-size: 1.1rem;
	line-height: 1.40625rem;
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li>a span {
	display: none;
	padding-left: 25px
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>a {
	position: relative;
	width: calc(190px + 150px);
	color: var(--white-color);
	background-color: var(--green-color);
	-webkit-transition: none;
	transition: none;
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>a svg {
	filter: brightness(100);
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>a i {
	color: var(--primary-color)
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>a span {
	display: inline
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>ul {
	display: block;
	left: 70px;
	position: absolute;
	width: 190px;
	height: auto !important;
	-webkit-box-shadow: 3px 5px 12px -4px rgba(18, 19, 21, .1);
	box-shadow: 3px 5px 12px -4px rgba(18, 19, 21, .1)
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>ul ul {
	-webkit-box-shadow: 3px 5px 12px -4px rgba(18, 19, 21, .1);
	box-shadow: 3px 5px 12px -4px rgba(18, 19, 21, .1)
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>ul a {
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 20px 11px;
	position: relative;
	width: 190px;
	z-index: 6;
	color: var(--body-font-color);
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul>li:hover>ul a:hover {
	color: var(--primary-color)
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul ul {
	padding: 10px 0 11px;
	z-index: 9999;
	display: none;
	background-color: var(--white-color);
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul ul li:hover>ul {
	display: block;
	left: 190px;
	height: auto !important;
	margin-top: -36px;
	position: absolute;
	width: 190px
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul ul li>a span.pull-right {
	position: absolute;
	right: 20px;
	top: 12px;
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg)
}

.vertical-collpsed .vertical-menu #sidebar-menu>ul ul li.active a {
	color: #f8f9fa
}

/* Arrow CSS */
.arrow-down {
	display: inline-block
}

.arrow-down:after {
	border-color: initial;
	border-style: solid;
	border-width: 0 0 1px 1px;
	content: "";
	height: .4em;
	display: inline-block;
	right: 5px;
	top: 50%;
	margin-left: 10px;
	-webkit-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
	-webkit-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	width: .4em
}

/* Data Simple Bar */
[data-simplebar] {
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.simplebar-wrapper {
	overflow: hidden;
	width: inherit;
	height: inherit;
	max-width: inherit;
	max-height: 300px;
}

.simplebar-mask {
	direction: inherit;
	position: absolute;
	overflow: hidden;
	padding: 0;
	margin: 0;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: auto !important;
	height: auto !important;
	z-index: 0
}

.simplebar-offset {
	direction: inherit !important;
	-webkit-box-sizing: inherit !important;
	box-sizing: inherit !important;
	resize: none !important;
	position: absolute;
	top: 0;
	left: 0 !important;
	bottom: 0;
	right: 0 !important;
	padding: 0;
	margin: 0;
	-webkit-overflow-scrolling: touch
}

.simplebar-content-wrapper {
	direction: inherit;
	-webkit-box-sizing: border-box !important;
	box-sizing: border-box !important;
	position: relative;
	display: block;
	height: 100%;
	width: auto;
	visibility: visible;
	overflow: auto;
	max-width: 100%;
	max-height: 100%;
	scrollbar-width: none;
	padding: 0 !important
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
	display: none
}

.simplebar-content:after,
.simplebar-content:before {
	content: " ";
	display: table
}

.simplebar-placeholder {
	max-height: 100%;
	max-width: 100%;
	width: 100%;
	pointer-events: none
}

.simplebar-height-auto-observer-wrapper {
	-webkit-box-sizing: inherit !important;
	box-sizing: inherit !important;
	height: 100%;
	width: 100%;
	max-width: 1px;
	position: relative;
	float: left;
	max-height: 1px;
	overflow: hidden;
	z-index: -1;
	padding: 0;
	margin: 0;
	pointer-events: none;
	-webkit-box-flex: inherit;
	-ms-flex-positive: inherit;
	flex-grow: inherit;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-preferred-size: 0;
	flex-basis: 0
}

.simplebar-height-auto-observer {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
	display: block;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 1000%;
	width: 1000%;
	min-height: 1px;
	min-width: 1px;
	overflow: hidden;
	pointer-events: none;
	z-index: -1
}

.simplebar-track {
	z-index: 1;
	position: absolute;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden
}

[data-simplebar].simplebar-dragging .simplebar-content {
	pointer-events: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-track {
	pointer-events: all
}

.simplebar-scrollbar {
	position: absolute;
	right: 2px;
	width: 6px;
	min-height: 10px
}

.simplebar-scrollbar:before {
	position: absolute;
	content: "";
	background: #a2adb7;
	border-radius: 7px;
	left: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: opacity .2s linear;
	transition: opacity .2s linear
}

.simplebar-scrollbar.simplebar-visible:before {
	opacity: .5;
	-webkit-transition: opacity 0s linear;
	transition: opacity 0s linear
}

.simplebar-track.simplebar-vertical {
	top: 0;
	width: 11px
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
	top: 2px;
	bottom: 2px
}

.simplebar-track.simplebar-horizontal {
	left: 0;
	height: 11px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
	height: 100%;
	left: 2px;
	right: 2px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
	right: auto;
	left: 0;
	top: 2px;
	height: 7px;
	min-height: 0;
	min-width: 10px;
	width: auto
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
	right: auto;
	left: 0
}

.hs-dummy-scrollbar-size {
	direction: rtl;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	height: 500px;
	width: 500px;
	overflow-y: hidden;
	overflow-x: scroll
}

.simplebar-hide-scrollbar {
	position: fixed;
	left: 0;
	visibility: hidden;
	overflow-y: scroll;
	scrollbar-width: none
}

.custom-scroll {
	height: 100%
}

/* --- LeftSide Menu CSS End --- */

/*-------------------------------------------
    5. Navbar Area / Template Main Layout CSS End
-------------------------------------------*/

/*-------------------------------------------
    6. Dashboard Page CSS Start
-------------------------------------------*/

/* 6.1 dashboard-feature-item */
.dashboard-feature-item-icon-wrap {
	box-shadow: 0px 4px 12px rgba(247, 247, 247, 0.6);
	justify-content: space-between !important;
}

.view-dates {
	margin-right: 10px;
	width: 100%;
}

.table td:not(:first-child),
.table th:not(:first-child) {
	text-align: center;
}

.icon-bg {
	background: var(--login-yellow-color);
	width: 50px;
	height: 50px;
	border-radius: 50px;
	text-align: center;
	line-height: 45px;
}
.icon-bg svg path {
    fill: black !important;
}

.green-bg h2 {
	color: var(--full-black);
}

.dashboard-feature-item-icon-wrap h2 {
	font-size: 30px;
	line-height: 32px;
	font-weight: 600;
}

.pink-bg .icon-bg {
	background: #FAC858;
}

.pich-bg .icon-bg {
	background: #FAC858;
}

.purple-bg .icon-bg {
	background: #FAC858;
}

.pink-bg h2 {
	color: var(--full-black);
}

.pich-bg h2 {
	color: var(--full-black);
}

.purple-bg h2 {
	color: var(--full-black);
}

.breadcrumbul {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: var(--grey-color);
	line-height: 20px;
	font-weight: 400;
	position: relative;
	padding-left: 20px;
}

.breadcrumbul a {
	color: var(--grey-color);
}

.breadcrumbul::before {
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	background: var(--grey-color);
	border-radius: 50%;
	margin-right: 10px;
	position: absolute;
	left: 5px;
	top: 7px;
}

.inner-title {
	font-weight: 600;
	font-size: 20px;
	color: var(--full-black);
	line-height: 32px;
}

a.inner-title:hover {
	color : #6C757D;
}

.sub-inner-title {
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	color: var(--grey-color);
}

.camp-btns span {
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}

.dashboard-features-box {
	box-shadow: 0px 0px 10px 2px #0000001A;
	border-radius: 16px;
}

.dashboard-wrap {
	box-shadow: 0px 0px 10px 0px #0000001A;
}

.inner-inner-title {
	font-weight: 500;
}

.count-data:not(:last-child) {
	border-right: 1px solid #DFDFDF;
}

.count-number {
	font-weight: 400;
	line-height: 32px;
	font-size: 25px;
}

.count-data {
	padding: 10px 5px 10px 5px;
	margin: 10px 0 0;
}

body .count-name {
	color: var(--grey-color);
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	margin-top: 7px !important;
}

body .duration-times {
	font-size: 16px;
	font-weight: 400;
	line-height: 17px;
	margin-top: 10px;
	color: var(--black-color);
	flex-wrap: wrap;
}

.balancing-data,
.dashboard-feature-item {
	height: 100%;
}

.dates-dates {
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	color: #222B4591;
}

.dates-amount {
	font-family: Open Sans;
	font-size: 30px;
	font-weight: 700;
	line-height: normal;
	margin-top: 0px;
}

.icon-of-contract {
	background: var(--border-color-3);
	height: 28px;
	width: 28px;
	border-radius: 8px;
	text-align: center;
	line-height: 25px;
}

.view-icon {
	background: #BDD2EFCC;
}

.delete-icon {
	background: #BF131326;
}

.rating-group {
	display: inline-flex;
	width: 100%;
    position: relative;
}

.rating__input {
	position: absolute !important;
	left: -9999px !important;
}

.rating__input--none {
	display: none;
}

.rating__label {
	cursor: pointer;
	padding: 0 0.1em;
	font-size: 10px;
	margin: 0;
}

.rating__icon--star {
	color: var(--orange-color);
}

.rating__input:checked~.rating__label .rating__icon--star,
.rating__input:checked~.rating__label .rating__icon--star {
	color: var(--border-color-3);
}


.camp-btns {
	padding: 7px 15px !important;
	justify-content: center;
}

/* 6.1 dashboard-feature-item */

/* 5.2 dashboard chart */
.net-revenue-right .icon-box {
	height: 16px;
	width: 16px;
	padding: 2px;
	margin-bottom: 1px;
}

/* 6.2 dashboard chart */

/*-------------------------------------------
    6. Dashboard Page CSS End
-------------------------------------------*/

/*-------------------------------------------
    7. Sign Up Page Start
-------------------------------------------*/
.sign-up-page {
	background-image: url(../images/login-bg.png);
	background-color: transparent !important;
	background-size: cover;
	background-position: center;
}

.admin-background {
	background-image: url(../images/admin-background.png);
}

.lang-selector {
	width: 100%;
	margin-bottom: 20px;
}

.lang-selector img {
	width: 22px;
	height: 22px;
	min-width: unset;
}

.languages-icon {
	height: auto;
	background: var(--white-color);
	border-radius: 10px;
	padding: 10px 25px;
	grid-gap: 10px;
	font-size: 16px;
	text-transform: capitalize;
	line-height: 22.4px;
}

.sign-up-page .container-fluid {
	padding: 20px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sign-up-page .container-fluid>.row {
	width: 100%;
}

.sign-up-page:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: var(--black-color);
	opacity: 0.6;
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.welcome-heading {
	font-size: 50px;
	line-height: 52.5px;
	color: #F0C805 !important;
	font-weight: 700;
}

.sign-up-form {
	flex: unset;
	max-width: 100%;
	height: calc(100vh - 40px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0;
}

.sign-up-left {
	flex: unset;
	max-width: 100%;
}

.welcome-desc {
	font-size: 24px;
	line-height: 28.8px;
}

.sign-ping {
	font-size: 14px;
	line-height: 19.6px;
}

.sign-ping>a:hover {
	color: var(--green-color);
}

.reset-password {
	color: var(--black-color);
	text-decoration: underline;
	line-height: 18.2px;
}

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

.sign-up-left-content,
.sign-up-right-content {
	height: 100%;
}

.sign-up-right-content {
	align-items: flex-start;
	display: flex;
	box-shadow: 0px 0px 10px 0px #00000040;
	border-radius: 25px;
	overflow: hidden;
	overflow-y: auto;
	height: 100%;
	width: 100%;
	padding: 30px;
}

.steps-realted,
.steps-description {
	padding: 30px 20px 25px;
}

.sign-up-right-content form {
	width: 100%;
	margin: 0 auto;
}

.signup-forms {
	max-width: 652px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	align-content: center;
}

.signup-forms>* {
	width: 100%;
}

.sign-up-left-content p {
	color: var(--white-color);
}

.language-ul {
	position: absolute;
	top: 30px;
	left: 0;
	background: #FFFFFFCC;
	border-radius: 10px;
	padding: 5px;
	color: var(--black-color);
}

/*Show/Hide Password*/
.sign-up-right-content .pass-icon {
	color: var(--full-black);
	font-size: 18px;
	top: 15px;
	position: absolute;
	right: 20px;
}

/* Sign In Floating img Start */
.sign-in-floating-1 {
	top: 30px;
	left: 30px;
}

.sign-in-floating-2 {
	bottom: 30px;
	right: 30px;
}

/* Sign In Floating img End */

/*-------------------------------------------
    7. Sign Up Page End
-------------------------------------------*/

/*-------------------------------------------
    8. Empty Properties Page Start
-------------------------------------------*/
.empty-properties-box {
	padding: 25% 0;
}

/*-------------------------------------------
    8. Empty Properties Page End
-------------------------------------------*/

/*-------------------------------------------
    9. All Property Page Start
-------------------------------------------*/

/* Page Inner Search Start */
.page-inner-search {
	width: 270px;
	max-width: 100%;
}

.page-inner-search .form-control {
	height: 48px;
	height: 50px;
	padding-left: 40px;
	padding-right: 20px;
}

.page-inner-search span {
	position: absolute;
	z-index: 10;
	font-size: 16px;
	line-height: 50px;
	left: 13px;
	top: 0;
}

/* Page Inner Search End */

/* Property Item Start */
.property-item-img img,
.information-details-img img {
	min-height: 175px;
	height: 175px;
}

.property-info-item {
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: auto;
	min-width: 40%;
	white-space: nowrap;
	color: var(--grey-color);
}

.property-item-title>a {
	display: inline-block;
	font-weight: 600;
	text-transform: capitalize;
	word-wrap: break-word;
}

.property-item-dropdown {
	top: 0;
	right: -3px;
}

/* Property Item End */

/* Property item img Hover Effect Start */
.property-item-img-wrap {
	border-radius: 8px 8px 0 0;
	border-bottom: 1px solid var(--border-color-3);
}

.property-item-img {
	transition: opacity 0.35s, transform 0.35s;
	transform: scale3d(1.05, 1.05, 1);
}

.property-item-img-wrap::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.5);
	content: "";
	transition: transform 0.6s;
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
}

.property-item-img-wrap:hover .property-item-img {
	opacity: 0.6;
	transform: scale3d(1, 1, 1);
}

.property-item-img-wrap:hover::before {
	transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 105%, 0);
}

/* Property item img Hover Effect End */

/*-------------------------------------------
    9. All Property Page End
-------------------------------------------*/

/*-------------------------------------------
    10. Property Details Page Start
-------------------------------------------*/
.property-details-img img {
	height: 490px;
}

/* Property Details Gallery */
.vbox-container img {
	border-radius: 4px;
	min-height: 400px;
}

/* Controls nav Start */
.gallery-slider-carousel.owl-carousel .owl-nav .owl-next,
.gallery-slider-carousel.owl-carousel .owl-nav .owl-prev {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 20px;
	box-shadow: 0px 8px 61px rgba(89, 145, 255, 0.19);
	background-color: var(--white-color);
	color: var(--body-font-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 7px;
	position: absolute;
	border: 1px solid var(--border-color);
	top: 50%;
	transform: translateY(-50%)
}

.gallery-slider-carousel.owl-theme .owl-nav {
	width: 100%;
	margin-top: 0;
}

.gallery-slider-carousel.owl-carousel .owl-nav .owl-prev {
	left: 0;
}

.gallery-slider-carousel.owl-carousel .owl-nav .owl-next {
	right: 0;
}

/* Controls nav End */
/* Property Details Gallery */

/*-------------------------------------------
    10. Property Details Page End
-------------------------------------------*/

/*-------------------------------------------
    11. Add Property Page Start
-------------------------------------------*/
#msform fieldset:not(:first-of-type) {
	display: none
}

#msform .action-button-previous {
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	color: var(--heading-color);
	margin-right: 15px;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
	background-color: var(--off-white) !important;
	color: var(--heading-color) !important;
}

.card {
	z-index: 0;
	border: none;
	position: relative
}

.stepper-progressbar-wrap {
	position: relative;
}

#progressbar {
	display: inline-flex;
	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	width: 100%;
	flex-wrap: wrap;
	justify-content: flex-start;
	row-gap: 15px;
}

#progressbar {
	scrollbar-width: thin;
	scrollbar-color: #a2adb7 var(--white-color);
}

#progressbar::-webkit-scrollbar {
	width: 4px;
	height: 6px;
}

#progressbar::-webkit-scrollbar-track {
	background-color: var(--white-color);
}

#progressbar::-webkit-scrollbar-thumb {
	background-color: #a2adb7;
}

#progressbar::-webkit-scrollbar-track,
#progressbar::-webkit-scrollbar-thumb {
	border-radius: 5px;
}

#progressbar .active {
	color: var(--primary-color)
}

#progressbar li {
	list-style-type: none;
	min-width: 20%;
	position: relative;
	color: var(--body-font-color);
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
	display: flex;
	flex-direction: column;
}

.form-stepper-nav-icon {
	width: 50px;
	height: 50px;
	line-height: 45px;
	display: block;
	font-size: 20px;
	background-color: var(--white-color);
	border: 1px solid var(--border-color);
	border-radius: 50%;
	margin: 0 auto 10px auto;
	padding: 2px;
	z-index: 9;
	position: relative;
}

.form-stepper-nav-icon i {
	color: var(--body-font-color);
}

#progressbar li.active .form-stepper-nav-icon i {
	color: var(--primary-color);
}

#progressbar li:after {
	content: '';
	width: 22%;
	height: 0;
	background: transparent;
	position: absolute;
	top: 25px;
	border-bottom: 1.5px dashed #A5ABBA;
	right: -12%;
}

@media screen and (max-width:575px) {
	#progressbar li:after {
		display: none;
	}
}

#progressbar li.active:before,
#progressbar li.active:after {
	border-bottom: 1.5px dashed var(--primary-color);
}

#progressbar li:last-child::after {
	border-bottom: none;
}

#msform textarea {
	height: 220px;
}

/* Multi Field Wrapper */
.add-field.theme-link {
	text-align: left;
}

/* Multi Field Wrapper */

/* Select Property Tab Start */
.select-property-nav-tabs .nav-item.show .nav-link,
.select-property-nav-tabs .nav-link.active,
.select-property-nav-tabs .nav-link:focus,
.select-property-nav-tabs .nav-link:hover {
	border-color: transparent;
}

.select-property-nav-tabs .nav-link {
	color: var(--heading-color);
}

.select-property-nav-tabs .nav-item.show .nav-link,
.select-property-nav-tabs .nav-link.active {
	color: var(--primary-color);
}

.select-property-nav-text .select-property-nav-text-box {
	background-color: transparent;
	border: 1px solid var(--border-color);
	height: 24px;
	width: 24px;
	display: inline-flex;
	border-radius: 4px;
}

.nav-tabs .nav-item.show .nav-link .select-property-nav-text-box::after,
.nav-tabs .nav-link.active .select-property-nav-text-box::after {
	content: '';
	display: block;
	position: absolute;
	top: 5px;
	left: 10px;
	width: 6px;
	height: 10px;
	border: solid var(--primary-color);
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}

/* Select Property Tab End */

/* Custom Date Picker Start */

/* Hide Calendar Icon In Chrome */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
	-webkit-appearance: none;
	color: var(--border-color);
}

.ui-datepicker {
	width: auto;
}

.custom-datepicker-inner i {
	position: absolute;
	right: 15px;
	top: 12px;
	font-size: 18px;
	color: var(--body-font-color);
}

/* Custom Datepicker Calendar Start */
.ui-widget-header .ui-icon {
	background-image: none;
}

.ui-datepicker-div label {
	font-size: 0.75rem;
	font-weight: 400;
	display: block;
	margin-bottom: 0.5rem;
	color: #B0BEC5;
	border: 1px solid #ECEFF1;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
}

.ui-datepicker-div input {
	font-family: 'Roboto', sans-serif;
	display: block;
	border: none;
	border-radius: 0.25rem;
	border: 1px solid transparent;
	line-height: 1.5rem;
	padding: 0;
	font-size: 1rem;
	color: #607D8B;
	width: 100%;
	margin-top: 0.5rem;
}

.ui-datepicker-div input:focus {
	outline: none;
}

.ui-datepicker-div #ui-datepicker-div {
	display: none;
	background-color: var(--white-color);
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
	margin-top: 0.25rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
}

.ui-datepicker-div table {
	border-collapse: collapse;
	border-spacing: 0;
}

.ui-datepicker-div .ui-datepicker-calendar thead th {
	padding: 0.25rem 0;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 400;
	color: #78909C;
}

.ui-datepicker-div .ui-datepicker-calendar tbody td {
	width: 2.5rem;
	text-align: center;
	padding: 0;
}

.ui-datepicker-div .ui-datepicker-calendar tbody td a {
	display: block;
	border-radius: 0.25rem;
	line-height: 2rem;
	transition: 0.3s all;
	color: #546E7A;
	font-size: 0.875rem;
	text-decoration: none;
}

.ui-datepicker-div .ui-datepicker-calendar tbody td a:hover {
	background-color: #E0F2F1;
}

.ui-datepicker-div .ui-datepicker-calendar tbody td a.ui-state-active {
	background-color: #009688;
	color: var(--white-color);
}

.ui-datepicker-div .ui-datepicker-header a.ui-corner-all {
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 2rem;
	height: 2rem;
	margin: 0.5rem;
	border-radius: 0.25rem;
	transition: 0.3s all;
}

.ui-datepicker-div .ui-datepicker-header a.ui-corner-all:hover {
	background-color: #ECEFF1;
}

.ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev {
	left: 0;
	background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-size: 0.5rem;
	background-position: 50%;
	transform: rotate(180deg);
}

.ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next {
	right: 0;
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: 50%;
}

.ui-datepicker-div .ui-datepicker-header a>span {
	display: none;
}

.ui-datepicker-div .ui-datepicker-title {
	text-align: center;
	line-height: 2rem;
	margin-bottom: 0.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	padding-bottom: 0.25rem;
}

.ui-datepicker-div .ui-datepicker-week-col {
	color: #78909C;
	font-weight: 400;
	font-size: 0.75rem;
}

.ui-datepicker-calendar tbody tr {
	display: flex !important;
}

.ui-datepicker-calendar thead tr {
	display: flex !important;
}

.ui-datepicker-calendar thead tr th {
	width: 37px !important;
	min-width: 37px !important;
	font-weight: 400;
}

.ui-datepicker-calendar tbody tr td,
.ui-datepicker-next.ui-corner-all {
	width: 37px !important;
}

#ui-datepicker-div .ui-widget-header {
	background: transparent;
	border: none;
}

#ui-datepicker-div {
	background-color: var(--white-color);
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
	border-radius: 0.5rem;
	border: 1px solid transparent;
	z-index: 111 !important;
}

#ui-datepicker-div .ui-state-default,
#ui-datepicker-div .ui-widget-content .ui-state-default,
#ui-datepicker-div .ui-widget-header .ui-state-default,
#ui-datepicker-div .ui-button {
	border: 1px solid transparent !important;
	text-align: center !important;
	border-radius: 5px !important;
}

#ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next {
	border: 1px solid transparent;
}

#ui-datepicker-div .ui-datepicker-header a.ui-datepicker-next {
	right: 0;
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
	background-repeat: no-repeat;
	background-size: 0.5rem;
	background-position: 50%;
}

#ui-datepicker-div .ui-datepicker-header a.ui-datepicker-prev {
	left: 0;
	background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-size: 0.5rem;
	background-position: 50%;
	transform: rotate(180deg);
}

#ui-datepicker-div .ui-icon.ui-icon-circle-triangle-e {
	height: 37px;
	width: 37px;
}

#ui-datepicker-div .ui-datepicker .ui-datepicker-title {
	font-weight: 400;
}

/* Custom Datepicker Calendar End */

/* Unit Block Item Box Start */
.unit-block-item-box {
	border: 1px solid var(--border-color) !important;
}

.unit-block-item-box .accordion-button {
	background-color: rgba(54, 134, 252, 0.03) !important;
}

.unit-block-item-box .accordion-button:focus {
	border-color: var(--border-color);
	box-shadow: none;
}

.unit-block-item-box .accordion-button:not(.collapsed) {
	color: var(--primary-color);
	box-shadow: none;
	border-bottom: 1px solid var(--border-color);
}

.unit-block-item-box .accordion-button::after {
	background-image: none;
	content: "\f0140";
	font-family: "Material Design Icons";
	font-size: 20px;
}

.unit-block-item-box .accordion-body {
	padding-bottom: 0;
}

/* Unit Block Item Box End */

/* Google Map Start */
.show-map-here {
	border-radius: 4px;
}

.show-map-here iframe {
	height: 253px !important;
	width: 100% !important;
	border: 0;
}

/* Google Map End */

/* Show Uploaded Image after save Start */
.show-uploaded-img {
	min-height: 120px;
}

.show-uploaded-img img {
	min-height: 120px;
	width: auto;
}

/* Show Uploaded Image after save End */

/* Dropzone Start */
.dropzone {
	min-height: 120px;
	border: 2px dashed #ced4da;
	background: var(--white-color);
	border-radius: 4px;
	border: 2px dashed var(--border-color);
	display: inline-flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 10px 10px;
}

.dropzone-img-wrap {
	margin-right: 5px;
}

.dropzone .dz-message {
	width: 100%;
	margin: 0 0;
}

.dropzone-remove-icon {
	position: absolute;
	top: 8px;
	right: 8px;
}

.dropzone-remove-icon button {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
}

.dropzone-upload-sign-icon.mb-2 {
	width: 32px;
	height: 32px;
	background-color: var(--navbar-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 auto;
}

/* Dropzone End */

/*-------------------------------------------
    11. Add Property Page End
-------------------------------------------*/

/*-------------------------------------------
    12. Tenants Page Start
-------------------------------------------*/

/* Tenants Item Start */
.tenant-img {
	height: 60px;
	width: 60px;
}

.tenants-item-info {
	padding: 0 14px;
}

.tenants-item-info-box {
	padding: 20px 0;
}

.tenants-info-right {
	display: inline-flex;
	justify-content: flex-end;
	width: 100%;
	align-items: center;
}

/* Tenants Item End */

/*-------------------------------------------
    12. Tenants Page End
-------------------------------------------*/

/*-------------------------------------------
    13. Add Tenants Page Start
-------------------------------------------*/

/* Tenants add Home Details  */
.tenants-property-item-list-view .property-item-img img {
	width: 340px;
}

.tenants-property-item-list-view .property-item-address,
.tenants-property-item-list-view .property-item-title {
	width: 75%;
}

.tenants-property-item-list-view .property-item-info {
	width: 400px;
}

.tenants-property-item-list-view .property-info-item-right {
	justify-content: flex-end;
}

.tenants-property-item-list-view .property-info-item {
	width: 100%;
}

.custom-input-group input {
	border-top-right-radius: 4px !important;
	border-bottom-right-radius: 4px !important;
}

.input-group-text-edit {
	font-size: 23px;
}

/* Tenants add Home Details  */

/* Tenants File Upload Dropzone */
.file-uplode-dropzone.dropzone {
	min-height: 200px;
}

.dropzone-documents-additional-info img {
	height: 100px;
	min-width: 120px;
}

/* Tenants File Upload Dropzone */

/*-------------------------------------------
    13. Add Tenants Page End
-------------------------------------------*/

/*-------------------------------------------
    14. Dashboard Inner Dashboard Layout Start
-------------------------------------------*/
/* Account Settings Leftside Start */
.account-settings-menu-item {
	display: flex;
	align-items: center;
	position: relative;
	margin: 10px 0;
}

.account-settings-menu-item i,
.account-settings-menu-item .iconify {
	font-size: 20px;
	margin-right: 12px;
}

.remove-tenants-item .account-settings-menu-item i,
.remove-tenants-item .account-settings-menu-item .iconify {
	margin-right: 0;
}

.account-settings-menu-item.active {
	color: var(--full-black);
}

.account-settings-menu-item:hover {
	color: var(--full-black);
}

.upload-new-picture .form-control {
	padding: 10px 15px;
}

/* Account Settings Leftside End */

/* Account Settings Rightside Start */
.account-settings-leftside {
	min-height: 100vh;
	height: 100%;
}

.account-settings-rightside {
	min-height: 100vh;
	height: 100%;
}

.account-settings-info-item {
	padding: 10px 0;
}

/* Account Settings Rightside End */
/*-------------------------------------------
    14. Dashboard Inner Dashboard Layout End
-------------------------------------------*/

/*-------------------------------------------
    15. Tenants Details Page Start
-------------------------------------------*/

/* Tenants Details Layout Start */
.tenants-details-leftsidebar-wrap {
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

/* Tenants Details Layout End */

/* User Profile Image change/ Image Upload */
.user-profile-img {
	position: relative
}

.user-profile-img .profile-photo-edit,
.maintainer-user-profile-img .maintainer-profile-photo-edit,
.language-icon-img .language-icon-edit,
.default-user-profile-img .default-profile-photo-edit,
.app-logo-user-profile-img .app-logo-profile-photo-edit,
.app-favicon-user-profile-img .app-favicon-profile-photo-edit,
.app-preloader-user-profile-img .app-preloader-profile-photo-edit,
.signin-user-profile-img .signin-profile-photo-edit {
	cursor: pointer
}

.profile-user {
	position: relative;
	display: inline-block
}

.profile-user .profile-photo-edit,
.profile-user .language-icon-edit,
.profile-user .maintainer-profile-photo-edit,
.profile-user .language-icon-edit,
.profile-user .default-profile-photo-edit,
.profile-user .app-logo-profile-photo-edit,
.profile-user .app-favicon-profile-photo-edit,
.profile-user .app-preloader-profile-photo-edit,
.profile-user .signin-profile-photo-edit {
	position: absolute;
	right: 0;
	left: auto;
	bottom: -5px;
	cursor: pointer
}

.profile-user .user-profile-image,
.profile-user .maintainer-user-profile-image,
.profile-user .language-icon-image,
.profile-user .default-user-profile-image,
.profile-user .app-logo-user-profile-image,
.profile-user .app-logo-white-user-profile-image,
.profile-user .app-favicon-user-profile-image,
.profile-user .app-preloader-user-profile-image,
.profile-user .signin-user-profile-image {
	-o-object-fit: cover;
	object-fit: cover
}

.profile-user .profile-img-file-input,
.profile-user .maintainer-profile-img-file-input,
.profile-user .language-icon-img-file-input,
.profile-user .language-icon-img-file-input-edit,
.profile-user .default-profile-img-file-input,
.profile-user .app-logo-profile-img-file-input,
.profile-user .app-logo-white-profile-img-file-input,
.profile-user .app-favicon-profile-img-file-input,
.profile-user .app-preloader-profile-img-file-input,
.profile-user .signin-profile-img-file-input {
	display: none
}

/* User Profile Image change */

/* Single Tenants Home Details Start */
.tenants-details-home-details-property-item .property-item-content {
	display: flex;
	width: 100%;
}

.tenants-details-home-details-property-item .property-item-img-wrap::before {
	height: 130%;
}

.tenants-details-home-details-property-item .property-item-img img {
	height: 450px;
}

.tenants-details-property-info-left {
	width: 50%;
}

.tenants-details-property-info-right {
	width: 50%;
	text-align: right;
}

/* Single Tenants Home Details End */

/*-------------------------------------------
    15. Tenants Details Page End
-------------------------------------------*/

/*-------------------------------------------
    16. Billing Center Page Start
-------------------------------------------*/
.billing-center-nav-tabs .nav-link {
	border: none;
	border-radius: 4px;
	color: var(--body-font-color);
}

.billing-center-nav-tabs {
	border-bottom: 0;
}

.billing-center-nav-tabs .nav-item.show .nav-link,
.billing-center-nav-tabs .nav-link.active {
	background-color: var(--primary-color-transparent);
	color: var(--primary-color);
}

.billing-center-nav-tabs .nav-link:focus,
.billing-center-nav-tabs .nav-link:hover {
	color: var(--primary-hover-color);
}

.tbl-user-image {
	-o-object-fit: cover;
	object-fit: cover
}

/*-------------------------------------------
    16. Billing Center Page End
-------------------------------------------*/

/*-------------------------------------------
    17. Documents Page Start
-------------------------------------------*/
.document-item-box {
	height: 178px;
	width: 194px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.document-item-box img {
	height: 45px;
}

/*-------------------------------------------
    17. Documents Page End
-------------------------------------------*/

/*-------------------------------------------
    18. Invoice Preview CSS Start
-------------------------------------------*/
@media (min-width: 576px) {
	#invoicePreviewModal .modal-dialog {
		max-width: 1024px;
	}
}

/* Generate Invoice CSS Start */
.invoice-heading-part {
	display: flex;
	justify-content: space-between;
}

.invoice-heading-left img {
	margin-bottom: 13px;
}

.invoice-address-part {
	margin-bottom: 20px;
	margin-top: 20px;
	border-top: 1px solid #e5e4e4;
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
}

.invoice-address-part .invoice-generate-title {
	margin-bottom: 12px;
}

.invoice-address h6 {
	margin-top: 8px;
}

.invoice-address h5,
.invoice-address h6 {
	color: #737C91;
}

.invoice-preview-wrap .invoice-table-part thead {
	border-top: 1px solid #e5e4e4;
	background-color: var(--white-color);
}

.invoice-preview-wrap .invoice-table-part .show-total-box {
	border-bottom: 1px solid #e5e4e4;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.invoice-tbl-last-field {
	text-align: right;
	padding-right: 1.5rem;
}

.invoice-tbl-last-field>span {
	margin-left: 15px;
}

.invoice-heading-color {
	color: #160E4D;
}

.invoice-generate-title {
	text-align: left;
	margin-bottom: 20px;
}

.invoice-table-part {
	padding-top: 20px;
}

.invoice-preview-wrap thead {
	background-color: #FAFAFA;
}

.invoice-table-part table {
	background-color: var(--white-color);
}

.transaction-table-part table {
	background-color: #FAFAFA;
	border: 1px solid #EAEAEA;
	border-radius: 4px
}

.invoice-preview-wrap table td,
.invoice-preview-wrap table th {
	padding: 1rem 1.5rem;
}

.invoice-preview-wrap .table>thead>tr>th {
	border-bottom: 1px solid #e5e4e4;
}

.invoice-heading-right-status-btn {
	background: rgba(54, 134, 252, 0.1);
	border-radius: 4px;
	display: inline-flex;
	padding: 10px 18px;
	color: #3686FC;
}

/* Generate Invoice CSS End */

/*-------------------------------------------
    18. Invoice Preview CSS End
-------------------------------------------*/

/*-------------------------------------------
    19. Uploaded Documents Common CSS Start
-------------------------------------------*/
.show-uploaded-documents-img img {
	height: 24px;
	width: 24px;
	-o-object-fit: cover;
	object-fit: cover;
}

/*-------------------------------------------
    19. Uploaded Documents Common CSS End
-------------------------------------------*/

/*-------------------------------------------
    20. Tickets Page CSS Start
-------------------------------------------*/
.ticket-item-content-box.attachment-ticket-item-content-box {
	padding-bottom: 12px;
	margin-bottom: 20px;
}

.tickets-attachment-item {
	width: 75px;
	height: 75px;
	border-radius: 4px;
	overflow: hidden;
	display: inline-block;
}

.tickets-attachment-gallery .col-auto {
	padding: 2px 5px;
}

.tickets-attachment-gallery {
	padding: 0 5px;
}

.tickets-attachment-item img {
	height: 75px;
	width: 75px;
}

.vbox-overlay {
	background: rgba(22, 14, 77, 0.7);
}

/* 20.1 Ticket Details Page Start */
.ticket-replies-item {
	background-color: rgba(242, 246, 249, 0.8);
}

.ticket-details-write-reply-box textarea {
	min-height: 160px !important;
}

/* 20.1 Ticket Details Page End */

/*-------------------------------------------
    20. Tickets Page CSS End
-------------------------------------------*/

/*-------------------------------------------
    21. Default Settings Page CSS Start
-------------------------------------------*/
.account-settings-menu li,
.account-settings-menu-item,
.account-settings-menu li ul.account-sub-menu li a,
.account-settings-menu li ul.account-sub-menu li a::before {
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.account-settings-menu li .toggle-account-menu {
	position: absolute;
	top: 14px;
	right: 10px;
	cursor: pointer;
	font-size: 10px;
	text-align: right;
	z-index: 9;
}

.account-settings-menu li:hover .toggle-account-menu {
	color: var(--primary-color);
}

.account-settings-menu li.menu-has-children {
	position: relative;
}

.account-settings-menu li.menu-has-children .account-sub-menu {
	padding: 0;
	display: none;
}

.account-settings-menu li.menu-has-children .account-sub-menu li a {
	display: block;
	position: relative;
	height: auto;
	background: transparent;
	padding: 5px 0;
	text-transform: capitalize;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
}

.account-settings-menu li.menu-has-children.has-open .account-sub-menu {
	display: block;
	margin-left: 20px;
}

.account-settings-menu li ul.account-sub-menu li a::before {
	content: "";
	height: 6px;
	width: 6px;
	background-color: var(--body-font-color);
	display: inline-block;
	border-radius: 50%;
	margin-right: 5px;
	top: -2px;
	position: relative;
}

.account-settings-menu li ul.account-sub-menu li a:hover:before {
	background-color: var(--primary-color);
}

/*-------------------------------------------
    21. Default Settings Page CSS End
-------------------------------------------*/

/*-------------------------------------------
    22. Color Settings Page CSS Start
-------------------------------------------*/
.color-settings-fields-wrap .sp-original-input-container {
	border: 1px solid var(--border-color);
	border-radius: 4px;
	height: 50px;
	align-items: center;
	width: 100%;
}

.color-settings-fields-wrap .sp-original-input-container .sp-add-on {
	height: 30px;
	width: 30px !important;
	border-radius: 4px !important;
	margin: 0 10px;
	flex-shrink: 0;
}

.color-settings-fields-wrap .sp-original-input-container input {
	height: 100%;
	width: 100%;
}

/*-------------------------------------------
    22. Color Settings Page CSS End
-------------------------------------------*/

/*-------------------------------------------
    23. Tenant Portal Dashboard Page CSS Start
-------------------------------------------*/

/* Tenant Portal Notice Table */
.tenant-portal-notice-tbl td:hover {
	background-color: var(--white-color);
}

.tenant-portal-notice-tbl td {
	padding: 0;
}

.tenant-portal-notice-tbl td .tenant-portal-notice-tbl-item {
	padding: 1rem 1.5rem;
	width: 100%;
	display: block;
}

/* Tenant Portal Notice Table */

/*-------------------------------------------
    23. Tenant Portal Dashboard Page CSS End
-------------------------------------------*/

/*-------------------------------------------
    24. Tenant Portal Invoice Details Page CSS Start
-------------------------------------------*/

/* Select Payment Method */
.invoice-payment-nav-tabs {
	border-bottom: 0;
}

.invoice-payment-img img {
	height: 70px;
}

.invoice-payment-nav-tabs .nav-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid var(--border-color);
	background-color: var(--white-color);
	padding: 20px;
	border-radius: 4px;
}

.invoice-payment-nav-tabs .nav-item.show .nav-link,
.invoice-payment-nav-tabs .nav-link.active {
	border: 1px solid var(--primary-color);
}

/* Select Payment Method */

/* Select Payment Tab Radio Box */
.invoice-payment-nav-tabs .nav-item.show .nav-link .custom-radiobox [type="radio"]+label:after,
.invoice-payment-nav-tabs .nav-link.active .custom-radiobox [type="radio"]+label:after {
	content: '';
	width: 12px;
	height: 12px;
	background: var(--primary-color);
	position: absolute;
	top: 3px;
	left: 3px;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;

	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* Select Payment Tab Radio Box */

/*-------------------------------------------
    24. Tenant Portal Invoice Details Page CSS End
-------------------------------------------*/

/*-------------------------------------------
    25. Tenant Portal Documents Page CSS Start
-------------------------------------------*/
.tenant-nid-icon.text-white.rounded-circle {
	height: 46px;
	width: 46px;
	background-color: var(--heading-color);
}

.upload-nid-wrap {
	background: linear-gradient(90deg, #ECF4FF 0%, #E3EFFF 63.02%, #D8C9FF 84.44%, #BAFFCD 100%);
}

/*-------------------------------------------
    25. Tenant Portal Documents Page CSS End
-------------------------------------------*/

/*-------------------------------------------
    26. Maintainer Portal Chat Page CSS Start
-------------------------------------------*/
/* Messenger User Left side */

/* Messenger user top part */
.message-user-top-part {
	padding: 20px;
}

.message-user-top-part-btns .nav-link {
	background-color: transparent;
	color: var(--body-font-color);
	border: none;
	border-radius: 4px;
}

.message-user-top-part-btns .nav-item.show .nav-link,
.message-user-top-part-btns .nav-link.active {
	background-color: var(--primary-color);
	color: var(--white-color);
}

.search-message-box input {
	height: 32px;
	border: 1px solid #E9E8E8;
	color: #767588;
	border-left: 0;
}

.search-message-box .form-control:focus {
	border-color: #E9E8E8;
	outline: 0;
	box-shadow: none;
}

/* Messenger user bottom part */
.message-user-sidebar {
	height: 719px;
}

.message-user-list-part {
	height: calc(100% - 94px);
}

.message-user-list-wrap {
	max-height: 600px;
	overflow-y: auto;
}

.message-user-list-part-title h6 {
	padding: 0 30px;
}

.message-user-item {
	padding: 12px 20px;
	margin-bottom: 2px;
}

.message-user-item.active,
.message-user-item:hover {
	background-color: #F3F6F8;
}

.message-user-item .user-img-wrap,
.message-user-item-left .user-img-wrap,
.chat-item .user-img-wrap {
	height: 42px;
	width: 42px;
}

.message-user-item .user-img-wrap img,
.message-user-item-left .user-img-wrap img,
.chat-item .user-img-wrap img {
	height: 42px;
	width: 42px;
	border-radius: 50%;
}

.message-user-item-left p {
	line-height: 16px;
}

.online-offline-show {
	height: 12px;
	width: 12px;
	border-radius: 50%;
	border: 2px solid var(--white-color);
	right: 0;
	bottom: 4px;
	z-index: 9;
}

.online-offline-show.online {
	background-color: var(--green-color);
}

.online-offline-show.offline {
	background-color: var(--yellow-color);
}

.message-user-notification-box {
	background-color: rgba(255, 67, 67, 0.1);
	color: var(--red-color);
	min-height: 18px;
	min-width: 18px;
	border-radius: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: right;
	float: right;
	font-size: 10px;
	padding: 0 4px;
}

/* Message Page Chat Right side css */
.message-chat-right-part {
	height: 719px;
}

.message-chat-right-part .dropdown-toggle i,
.message-chat-right-part .dropdown-toggle .iconify {
	font-size: 22px;
}

/* Message Chat Top Part Start */
.message-chat-top-part {
	border-bottom: 1px solid var(--border-color);
	background-color: var(--white-color);
	min-height: 88px;
	padding: 20px 20px;
	position: relative;
	z-index: 9;
}

.in-chat-mode-online-offline .yes-online {
	background-color: var(--green-color);
	color: var(--white-color);
}

.in-chat-mode-online-offline .online-offline-btn {
	border-radius: 71px;
	padding: 3px 8px;
}

.message-chat-top-action-btn {
	color: var(--body-font-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.message-chat-top-right .dropdown-toggle {
	display: inline-flex !important;
}

.message-chat-top-right .dropdown {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.message-chat-top-right .dropdown-toggle::after {
	display: none;
}

.message-chat-top-right .dropdown-menu {
	min-width: 6rem;
}

.message-chat-top-right .dropdown-menu .dropdown-item {
	display: inline-flex;
	align-items: center;
}

.message-chat-top-right .dropdown-menu .dropdown-item .iconify {
	margin-right: 6px;
}

.message-chat-top-right .dropdown-menu li:nth-child(1) .dropdown-item .iconify {
	color: #FF4444;
}

.message-chat-top-right .dropdown-menu li:nth-child(2) .dropdown-item .iconify {
	color: var(--yellow-color);
}

.message-chat-top-right .dropdown-menu li:nth-child(3) .dropdown-item .iconify {
	color: var(--theme-color);
}

/* Message Chat Top Part End */

/* Message Chat Bottom Part Start */
.message-chat-bottom-part {
	bottom: 0;
	width: 100%;
	padding: 5px 20px 20px;
	background-color: var(--white-color);
}

.message-chat-bottom-left {
	width: calc(100% - 71px);
}

.message-chat-bottom-left .input-group {
	background-color: #F4F4F8;
	border-radius: 4px;
	color: var(--body-font-color);
	padding: 10px;
}

.emogi-collection-btn {
	color: var(--body-font-color);
	height: 36px;
	width: 36px;
	border-radius: 4px !important;
	font-size: 21px;
	padding: 0;
	justify-content: center;
}

.chat-text-input {
	height: 36px;
	padding: 5px 14px;
}

.message-chat-bottom-right {
	width: 56px;
}

.message-chat-bottom-action-btn {
	height: 56px;
	width: 56px;
	border-radius: 4px;
	color: var(--body-font-color);
	background-color: #F4F4F8;
	font-size: 20px;
}

/* Message Chat Bottom Part End */

/* Message Chat Main Part Start */

/* Custom Scrollbar start */
.custom-scrollbar {
	scrollbar-width: thin;
	scrollbar-color: #E6E3EB var(--white-color);
}

.custom-scrollbar::-webkit-scrollbar {
	width: 3px;
	height: 10px;
}

.custom-scrollbar::-webkit-scrollbar-track {
	background-color: var(--white-color);
}

.custom-scrollbar::-webkit-scrollbar-thumb {
	background-color: #E6E3EB;
}

.custom-scrollbar::-webkit-scrollbar-track,
.custom-scrollbar::-webkit-scrollbar-thumb {
	border-radius: 5px;
}

/* Custom Scrollbar end */

.message-chat-main-part {
	padding: 0 20px 0;
	position: absolute;
	width: 100%;
	max-height: 541px;
	overflow-y: auto;
}

/* Conversation Start Date CSS */
.conversation-start-date {
	margin: 40px 0 20px;
}

.conversation-start-date:before {
	content: "";
	background-color: var(--border-color);
	width: 100%;
	height: 1px;
	left: 0;
	position: absolute;
}

.conversation-start-date span {
	top: -9px;
	padding: 0 12px;
}

/* Chat Item css */
.chat-item {
	max-width: 680px;
}

/* Chat Item Dropdown css start */
.chat-item .dropdown {
	right: -25px;
	float: right;
	color: var(--body-font-color);
}

.chat-item .dropdown .dropdown-toggle {
	color: var(--body-font-color);
}

.chat-item .dropdown-menu {
	min-width: 6rem;
	border: 1px solid #EEEDED;
	border-radius: 8px;
}

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

/* Chat Item Dropdown css end */
.chat-item.chat-item-right {
	float: right;
}

.chat-item.chat-item-right .chat-text-box p {
	background-color: #E9F6FF;
	border-radius: 4px 4px 0px 4px;
}

.chat-text-box {
	margin-right: 20px;
}

.chat-text-box p {
	background-color: #F0F0F0;
	background: #F2F6F9;
	border-radius: 4px 4px 4px 0px;
	color: var(--heading-color);
	margin-bottom: 15px;
	padding: 18px 20px;
}

/* Message Chat Main Part End */

/* Chat Sidebar Toggle CSS */
.chat-sidebar-toggle-btn {
	height: 38px;
	width: 38px;
	display: none;
}

.chat-sidebar-offcanvas {
	z-index: 1;
}

.chat-sidebar-offcanvas .offcanvas-header {
	display: none;
}

.chat-sidebar-offcanvas {
	transform: translateX(0%) !important;
	visibility: visible;
	position: relative;
	border-right-color: var(--border-color) !important;
}

.chat-sidebar-offcanvas .offcanvas-body {
	overflow-y: hidden;
	background-color: var(--white-color);
}

/* Chat Sidebar Toggle CSS */

/*-------------------------------------------
    26. Maintainer Portal Chat Page CSS End
-------------------------------------------*/
/*-------------------------------------------
    9. Pricing Plan CSS Start
-------------------------------------------*/
.choose-plan-area-title,
.payment-method-area-title {
	margin-bottom: 25px;
	margin-top: -5px;
}

.price-card-item {
	border: 0.776515px solid rgba(0, 0, 0, 0.1);
	border-radius: 15.5303px;
	background-color: var(--bg-primary);
}

.price-title span {
	color: #727B8F;
}

hr {
	border: 1.6px solid rgba(0, 0, 0, 0.1);
}

.pricing-features {
	margin: 18px 0 11px;
}

.price-check-icon {
	width: 17px;
	height: 17px;
}

/* Payment Subscription toggle Start */
.payment-subscription-switch .form-check-input {
	width: 4.55em;
	height: 2.25em;
}

/* Payment Subscription toggle End */

/*-------------------------------------------
    9. Pricing Plan CSS End
-------------------------------------------*/
@media (min-width: 576px) {
	.big-modal .modal-dialog {
		max-width: 1212px;
	}
}

.theme-btn-outline {
	border: 1px solid var(--secondary-color);
	background-color: transparent;
	color: var(--button-primary-color) !important;
	border-radius: 111.818px;
	padding: 14px 41px !important;
}

.current-plan-button {
	background-color: var(--secondary-color);
	color: var(--white-color) !important;
}

.theme-btn-outline:hover,
.theme-btn-outline.active {
	background-color: var(--secondary-hover-color);
	color: var(--white-color) !important;
}

/*-------------------------------------------
    10. Payment Method CSS Start
-------------------------------------------*/
@media (min-width: 576px) {

	#paymentMethodModal.big-modal .modal-dialog {
		max-width: 1250px;
	}
}

@media (min-width: 1400px) {
	#paymentMethodModal .col-xxl-3 {
		/* width: 187px; */
		width: 20%;
	}
}

.payment-method-item {
	background-color: var(--bg-primary);
	padding: 20px 20px;
}

.payment-method-item-title {
	border-radius: 60px;
	padding: 8px 20px;
	min-height: 30px;
}

.payment-method-img {
	margin-top: 30px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.payment-method-item .theme-btn-outline {
	padding: 9px 20px !important;
}

/*-------------------------------------------
    10. Payment Method CSS End
-------------------------------------------*/

/* Dashboard Topic Nav Area */

.dashboard-topic-content {
	height: 69vh;
	overflow-x: auto;
	overflow-x: hidden;
}

/* Dashboard Topic Content Area */
.topic-content-item {
	border: 1px solid rgba(0, 0, 0, 0.15);
	/* box-shadow: 0px 4px 250px rgba(0, 0, 0, 0.06); */
}

.topic-content-item:hover {
	border: 1px solid var(--primary-color);
}

.topic-content-item:hover h4 {
	color: var(--primary-color);
}

.topic-content-item-icon {
	height: 52px;
	width: 52px;
	font-size: 20px;
	background-color: var(--bg-icon);
}

/* Dashboard Topic Content Area */

.pointer-auto {
	cursor: pointer;
}

.dropdown-menu li.selected {
	background: aliceblue;
	margin-bottom: 2px;
}

.my-custom-select-box>.bootstrap-select>.dropdown-toggle {
	outline: none !important;
	background: no-repeat;
	border: none;
}

.my-custom-select-box .bootstrap-select .dropdown-toggle:focus,
.my-custom-select-box .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
	outline: none !important;
}

.exclamation-area {
	background: #FFA412;
	padding: 7px 20px;
	border-radius: 50px;
}

.exclamation-btu {
	display: none;

}

.exclamation {
	position: relative;
}

.close.topBannerClose.ms-2 {
	position: absolute;
	right: 6px;
	top: 25%;
}

.upload-count-plus {
	background-color: var(--primary-color);
}

.gap-20 {
	grid-gap: 20px;
}

.w-60-main {
	grid-gap: 20px;
}

.w-60-20 {
	width: calc(50% - 10px);
}

.google-visualization-controls-rangefilter {
	display: none;
}

.tables-common {
	width: 100%;
}

.remind-contra {
	border: 1px solid #B0C3CC;
    border-radius: 50px;
    background-color: var(--white-color);
    width: 32px;
    height: 32px;
    padding: 8px;
}

.remind-contra .noti-dot {
	right: 7px;
    top: 5px;
	border: 1px solid var(--white-color);
}

.tables-common thead th {
	font-size: 20px;
	line-height: 30px;
	color: var(--black-color) !important;
	font-weight: 500;
}

.tables-common td {
	font-size: 16px;
	color: var(--black-color);
	line-height: 30px;
	font-weight: 500;
	padding: 5px 0px;
}

body .color-yellow {
	color: var(--yellow-color);
}

.contr-btn {
	border: 1px solid var(--black-color);
	font-size: 14px;
	line-height: 20px;
	color: var(--black-color);
	padding: 1px 10px !important;
	min-width: 100px;
	display: inline-block;
	border-radius: 5px;
}

.orange-btn {
	border-color: var(--orange-color);
	color: var(--orange-color);
}

.images-talent {
	width: 68px;
}

.top-extras {
	width: calc(100% - 68px);
	padding-left: 10px;
	color: var(--black-color);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.talent-name {
	font-size: 16px;
	font-weight: 600;
	line-height: 16.4px;
	color: var(--black-color);
}

.talent-title {
	font-size: 14px;
	font-weight: 400;
	line-height: 14.35px;
	text-align: right;
	color: var(--black-color);
}

.talent-description {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--grey-color);
	word-break: break-all;
}

.talent-rating {
	margin: 5px 0;
}

.purple-btns {
	border-color: var(--purple-color);
	color: var(--purple-color);
}

.green-btn {
	border-color: var(--green-color);
	color: var(--green-color);
}

.red-btn {
	border-color: var(--red-color);
	color: var(--red-color);
}

.footer-bottom {
	padding: 0 20px;
	color: var(--grey-color);
}

.footer-links a {
	color: var(--grey-color);
}

.pagin-link {
	font-size: 14px;
	line-height: 21px;
	color: var(--grey-color);
	font-weight: 400;
	text-align: center;
}

.pagin-link:hover {
	color: var(--full-black);
}

.pagin-link-active {
	display: inline-block;
	background-color: #F1F1F1;
	color: var(--full-black);
	padding: 6px 10px;
	border-radius: 50px;
	min-width: 32px;
	max-height: 32px;
}

.short-page {
	font-size: 10px;
	line-height: 16px;
	color: var(--black-color);
	font-weight: 400;
	padding-right: 0px;
}

select {
	border: 1px solid #E2E2E2;
	background-color: #F9FAFB;
	padding: 15px 50px 15px 15px;
	margin: 0 10px;
	border-radius: 5px;
}

.camp-manage-table .paginationspace {
    grid-gap: 6px;
}

body table.table>tfoot th {
	border: 0;
	padding: 10px 20px 0;
	min-width: unset;
}

.mob-block {
	display: none;
}

li {
	list-style: none;
}

ul,
ol {
	padding: 0;
}

.accord-title a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-radius: 5px;
	color: var(--black-color) !important;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding: 10px;
	grid-gap: 10px;
}

.accord-li {
	border: 1px solid #D1D5DB;
	background-color: #F3F5F7;
	border-radius: 5px;
	margin-bottom: 15px;
}

.accordinnerlist {
	display: flex;
	justify-content: space-between;
	padding: 10px 10px;
	border-bottom: 1px solid #D1D5DB;
	font-size: 14px;
	line-height: 21px;
	color: var(--black-color);
}

.accord-ol {
	margin-top: 10px;
}

.right-value {
	color: var(--grey-color);
	display: flex;
	grid-gap: 10px;
}

.accordinnerlist:last-child {
	border-bottom: 0;
}

.accord-id b {
	font-weight: 500;
	color: var(--dark-grey-color);
}

.collapse.in {
	display: block
}

.accord-title a .accord-id {
	width: 30%;
}

.accord-title a .status-btns {
	width: 150px;
	text-align: center;
}

.accord-plus {
	font-size: 25px;
	width: calc(100% - 30% - 114px);
	text-align: right;
}

.accord-li a:not(.collapsed) .accord-plus {
	position: relative;
	font-size: 0;
}

.accord-li .accord-plus::before {
	font-size: 25px;
	content: '-';
	display: inline-block;
}

.collapsed .accord-plus::before {
	content: '';
}

.actions-btns,
.recent-contr-table .actions-btns.actionsbtns {
	border: 1px solid var(--white-color);
	background: var(--white-color);
	width: 27px;
	height: 27px;
	border-radius: 50px;
	transition: 0.3s all;
}

.actions-btns:hover,
.actions-btns:active,
.actions-btns.show,
.recent-contr-table .actions-btns.actionsbtns:hover,
.recent-contr-table .actions-btns.actionsbtns:active,
.recent-contr-table .actions-btns.actionsbtns.show {
	background: #F3F3F3;
	border: 1px solid #E2E2E2;
}

.view-actions {
	position: relative;
	text-align: center;
}

.view-actions .dropdown-menu {
	border: 1px solid #E2E2E2;
	background: #F3F3F3;
	box-shadow: unset;
	padding: 0;
	min-width: 113px;
	border-radius: 10px;
	overflow: hidden;
}

.view-actions .dropdown-divider {
	border-top: 1px solid #E2E2E2;
	margin: 0;
}

.view-actions .dropdown-item {
	font-size: 14px;
	line-height: 20px;
	color: var(--grey-color);
	display: inline-flex;
	align-items: center;
	grid-gap: 11px;
	padding: 0 10px;
	min-height: 33px;
	border: 0;
}

.view-actions .dropdown-item svg {
	width: 20px;
	height: 20px;
	min-width: 20px;
}

.left-icons-visit {
	width: 20px;
}

.label-of-require::after, 
.text-up-input .custom-label::after {
	content: '*';
	color: var(--red-color);
	margin: 0 0 0 8px;
}

.contact-help {
	padding: 15px 20px;
	background: #FFFFFF4D !important;
	border-radius: 16px;
	display: inline-block;
}

.contact-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 19.2px;
	display: flex;
	align-items: center;
	margin: 0 0 10px;
}

.contact-title::after {
	content: '';
	width: 32px;
	height: 1px;
	background: #F0C805 !important;
	display: inline-block;
	margin-left: 10px;
}

.contact-detail a {
	font-size: 16px;
	font-weight: 400;
	line-height: 19.2px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	grid-gap: 10px;
}

.sign-links {
	color: #333333;
	display: inline-flex;
	flex-wrap: wrap;
	grid-gap: 10px;
	border-radius: 10px;
	padding: 10px 20px;
	align-items: center;
	font-size: 15px;
	line-height: 25.2px;
	font-weight: 500;
	border: 1px solid #33333352;
}

.sign-links:hover {
	background-color: var(--full-black);
	color: white !important;
	transition: 1s;
}

.sign-links:hover svg path {
    fill: white !important;
	transition: 1s;
}

.upload-btns {
	position: absolute;
	right: 9px;
	top: 0;
	z-index: 1;
	height: 50px;
	background: #F0C805;
	color: var(--full-black);
	padding: 12px 30px 12px 30px;
	border-radius: 0px 10px 10px 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 22.4px;
}

.file-upload .custom-label {
	z-index: 111;
	background-color: var(--white-color) !important;
}

.file-upload input {
	background: transparent !important;
	z-index: 11;
	position: relative;
}

.text-up-input input::file-selector-button {
	display: none;
}

.backstep-1,
.backstep-1:hover {
	min-width: unset !important;
	background: transparent !important;
	padding: 0 !important;
}

.backstep-1 svg path{
    fill: #3187FF;
}

.backstep-1:hover svg path {
    fill: #F0C805;
}

.whosigntextspan {
	font-size: 14px;
	font-weight: 400;
	line-height: 19.6px;
	color: #3333338F;
	max-width: 400px;
	margin: 0 auto;
}

.or-lines {
	font-size: 12px;
	font-weight: 400;
	border: 1px solid var(--border-color);
	display: inline-block;
	margin: 0 auto;
	border-radius: 50px;
	width: 35px;
	height: 35px;
	line-height: 33px;
	background: var(--white-color);
	position: relative;
	z-index: 1;
	padding: 0;
}

.or-lines-rows::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--border-color);
	left: 0;
	top: 16px;
	z-index: 1;
}

.or-lines-rows {
	position: relative;
}

.black-color {
	color: var(--black-color);
}

.verify-data>p,
.verify-data>a {
	font-size: 24px;
	font-weight: 500;
	line-height: 33.6px;
}

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

.email-green {
	width: 62px;
	height: 62px;
	display: inline-flex;
	background-color: #F0C805;
	border-radius: 50px;
	line-height: 62px;
	justify-content: center;
}

.sign-ping .sign-links:hover {
	color: var(--black-color);
}

.accounts-login>* {
	width: auto;
}

.searching-bars .search-forms {
	min-width: auto;
}

.switch-using .custom-radio {
	padding: 2px 2px 2px 2px;
	background: #E0E0E0;
	width: 36px;
	height: 17px;
	display: inline-block;
	border-radius: 50px;
	text-align: left;
	margin-top: 2px;
}

.switch-using .custom-radio .inner-switch {
	height: 13px;
	width: 13px;
	display: inline-block;
	background: var(--white-color);
	border-radius: 50px;
	position: absolute;
	left: 2px;
	transition: 0.2s all;
}

.switch-using .custom-radio .inner-switch img {
	width: 12px;
	display: none;
	margin: 6px 4px;
}

.switch-using {
	position: relative;
	display: inline-block;
}

.switch-using input:disabled {
	pointer-events: none;
}

.switch-using input:disabled+.custom-radio {
	opacity: 0.5;
}

.switch-using input:checked+.custom-radio {
	background: var(--purple);
	padding: 2px 2px 0 0px;
	text-align: right;
}

.switch-using input {
	opacity: 0;
	position: absolute;
	width: 35px;
	height: 17px;
	right: 0;
	margin: 0;
	cursor: pointer;
	z-index: 1;
}

.switch-using input:checked+.custom-radio {
	background: #F0C805 !important;
	padding: 2px 2px 0 0px;
	text-align: right;
}

.legal-flex {
	grid-gap: 9px;
	color: var(--black-color);
	font-weight: 500;
	justify-content: flex-end;
	margin: 10px 0 0 0;
}

.switch-using input:checked+.custom-radio .inner-switch {
	left: auto;
	right: 2px;
}

.company-lefts {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
	grid-gap: 10px;
}

.cmpny-leftul li strong {
	color: var(--black-color);
	font-weight: 500;
}

.build-last-img {
	margin-bottom: -30px;
}

.work-avail {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	text-align: right;
}

.company-lefts>*,
.legal-detail {
	width: calc(50% - 5px);
}

.listing-deta {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}

.cmpny-leftul {
	margin: 0;
}

.legal-document {
	background-color: #F3F3F3;
	border-radius: 10px;
	padding: 20px;
	grid-gap: 10px;
	flex-wrap: wrap;
}

.legal-document b {
	font-weight: 600;
}

.views-document {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 4px 45px;
	border-radius: 10px;
	background: var(--black-color);
	color: var(--white-color);
}

.legal-detail>* {
	word-break: break-word;
}

.views-document:hover,
.views-document:active {
	color: var(--white-color);
}

.has-search .form-control-feedback {
	position: absolute;
	z-index: 2;
	display: block;
	line-height: 2.95rem;
	text-align: center;
	pointer-events: none;
	color: #aaa;
	padding-left: 14px;
	padding-top: 3px;
}

.pagin-link.disabled {
	pointer-events: none;
	opacity: 0.5;
}

:not(.property-item-info)::-webkit-scrollbar {
	width: 20px;
}

:not(.property-item-info)::-webkit-scrollbar-track {
	background: #CECCCC;
	border-left: 9px solid white;
	border-right: 9px solid white;
}

:not(.property-item-info)::-webkit-scrollbar-thumb {
	background: #F0C805;
	border-left: 7px solid white;
	border-right: 7px solid white;
	border-radius: 15px;
}


.camp-list-icons>a:not(:first-child) {
	margin-left: 20px;
}

.property-item {
	box-shadow: 0px 0px 10px 0px #0000001A;
	border: 1px solid var(--border-color-3);
	border-radius: 8px;
}

.property-item-content {
	padding: 15px;
}

.status-label {
	margin: 10px 0 !important;
}

.property-item-info {
	flex-wrap: wrap;
	grid-gap: 10px;
	padding-bottom: 0px;
}

.span-icon {
	margin-right: 10px;
}

.view-details {
	border: 1px solid var(--grey-color);
	background-color: var(--white-color) !important;
	color: var(--full-black);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 10px 10px !important;
	border-radius: 10px;
}

.span-icon svg {
	min-width: 15px;
}

.switch-deactive input {
	width: 30px;
}

.switch-deactive .custom-radio {
	width: 30px;
	border: 1.2px solid var(--grey-color);
	background: var(--white-color);
}

.switch-deactive .custom-radio .inner-switch {
	background: var(--grey-color);
	top: 4px;
	left: 3px;
}

.switch-deactive input:checked+.custom-radio {
	background: var(--grey-color);
}

.switch-deactive input:checked+.custom-radio .inner-switch {
	background-color: var(--white-color);
}

.paginations-divs {
	grid-gap: 20px;
}

.backbtn-step1 {
	background: transparent;
	border: 1px solid var(--black-color);
	color: var(--dark-grey-color);
}

.grid-items .property-item {
	padding: 17px;
	border-radius: 20px;
	border: 0;
}

.grid-items .property-item .property-item-img-wrap {
	width: 121px;
	height: 141px;
	border-radius: 16px;
}

.grid-items .property-item .property-item-img-wrap img {
	width: 100%;
	height: 100%;
	min-height: unset;
}

.grid-items .property-item-content {
	width: calc(100% - 121px);
	padding: 0 0px 0 10px;
}

.grid-items .property-item {
	display: flex;
	flex-wrap: wrap;
}

.grid-view-prooperties .view-details {
	width: auto !important;
	padding: 7px 10px !important;
	border-radius: 6px;
}

.search-camps .search-forms {
	width: 375px;
	min-width: unset;
}

.search-camps .search-inputs {
	background-color: var(--white-color);
}

.list-view-properties .dropdown-toggle {
	margin-left: auto;
}

.list-view-properties+.paginations {
	display: none;
}

.list-view-properties .table>thead>tr>th {
	white-space: nowrap;
}

.modal-dialog {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 1132px;
	margin: 0 auto;
}

.emp-list-labor .table-datas {
	max-height: 629px;
}

#pending-list-labor .emp-list-labor .table-datas {
	overflow: auto;
	height: 50vh;
}

#pending-list-labor .modal-content {
	overflow: unset;
}

.modal-body {
	flex: 1;
	padding: 0;
}

iframe {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 7px;
}

.modal-header,
.modal-footer {
	padding: 0 0 20px 0px;
	border: 0;
}

.modal-body {
	padding: 0;
}

.step-container {
	position: relative;
	text-align: center;
	transform: translateY(-20%);
	white-space: nowrap;
	/* overflow: hidden;
  overflow-x: auto; */
}

.progress-bar {
	background-color: var(--green-color);
}

.progress {
	background: var(--dark-grey2color);
}

.step-circle {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	text-align: left;
	cursor: pointer;
	color: #ACACAC;
	font-size: 13px;
	line-height: 19.5px;
	width: calc(20% - 52px);
}

.step-circle:last-child {
    width: 52px;
	text-align: right;
}

.step-circle .step-round {
	display: inline-block;
	border: 1px solid var(--dark-grey2color);
	width: 28px;
	height: 28px;
	border-radius: 50px;
	background-color: #EEEEEE;
	position: relative;
	margin: 0 0 5px;
}

.steps-main .progress {
	width: calc(100% - 20px);
}

.step-circle:last-child .step-round {
    margin-right: 0px;
    margin-left: auto;
}

.step-circle>* {
	width: 100%;
}

.step-circle .step-round::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: var(--dark-grey2color);
	position: absolute;
	left: 5.8px;
	top: 5.8px;
	border-radius: 50px;
}

.steps-main {
	background: #EEEEEE;
	padding: 45px 20px 20px 20px;
	border-radius: 16px;
}

.step-circle:first-of-type .step-round,
.step-active .step-round {
	background-color: #F0C805;
	border-color: #F0C805;
}

.step-round>svg {
	display: none;
}

.step-circle:first-of-type .step-round svg,
.step-active .step-round svg {
	display: block;
	position: absolute;
	top: 7px;
	left: 6px;
}

.step-circle:first-of-type .step-round::after,
.step-active .step-round::after {
	content: '';
	background: transparent;
}

.step-circle:first-of-type,
.step-active {
	color: #333333;
}

.next-step-3 {
	padding: 15px 45px !important;
	font-size: 17px;
	line-height: 25.2px;
	text-align: center;
	color: var(--black-color);
	display: inline-flex;
	flex-wrap: wrap;
	grid-gap: 10px;
	border-radius: 10px;
	align-items: center;
	border: 1px solid #DADCE0;
	background-color: var(--white-color);
}

.next-step-3:hover {
	color: var(--black-color) !important;
	background-color: var(--white-color) !important;
}

.next-step-2 {
	border-radius: 10px;
}

.file-upload-div {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 10px;
	min-height: 246px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.file-upload-div input.uploaddivision {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	font-size: 20px;
	cursor: pointer;
	opacity: 0;
	filter: alpha(opacity=0);
	height: 100%;
	width: 100%;
}

.current-locations {
	height: 45px;
	width: 100%;
}

.current-locations span {
	font-weight: 400 !important;
}

.locate-coordinates {
	height: 45px;
	width: 100%;
}

.locate-coordinates span {
	font-weight: 400 !important;
}

.steps-tabing {
	border-bottom: 2px solid #DADCE0;
	padding: 5px 21px 7px;
}

.links-steps a {
	font-size: 16px;
	font-weight: 500;
	line-height: 17.4px;
	display: inline-block;
	position: relative;
}

.links-steps a:after {
	content: '';
	width: 100%;
	height: 5px;
	display: inline-block;
	position: absolute;
	bottom: -12px;
	background: #F0C805;
	left: 0;
	opacity: 0;
}

.links-steps:last-child {
	margin-right: 5px;
}

.links-steps:not(:last-child) {
	margin-right: 20px;
}

.tab-sec-active a {
	color: var(--black-color);
}

.tab-sec-active a::after {
	opacity: 1;
}

.links-steps a:hover {
	color: var(--black-color);
}

.files-sections {
	margin-top: 35px;
}

.register-upload {
	border: 2px dashed #D0D5E0;
	border-radius: 21px;
}

.custom-error {
	font-size: 12px;
	line-height: 16.8px;
	width: 100%;
}

.files-title {
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	padding: 0 15px;
	min-height: 52px;
	margin: 0 0 18px;
}

.accounts-login {
	margin-top: 35px;
}

.file-bottom-title {
	font-size: 14px;
	color: #737791;
	line-height: 32px;
	display: block;
	width: 100%;
}

.file-till-title {
	font-size: 16px;
	line-height: 22.4px;
	color: var(--black-color);
}

.browse-btn {
	background-color: #000;
	color: white;
	border-radius: 10px;
	padding: 4px 16px;
	font-size: 12px;
	font-weight: 400;
	line-height: 22px;
	display: block;
	margin: 0 auto;
}

.register-image-uploaded {
	position: relative;
}

.delete-pdf {
	background: var(--white-color);
	box-shadow: 0px 0px 4px 0px #00000040;
	width: 26px;
	height: 26px;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	right: 10px;
	top: 10px;
	text-align: center;
	opacity: 0;
	line-height: 25px;
}

.pdf-views {
	display: block;
	border: 1px solid #D1D1D1;
	border-radius: 5px;
}

.pdf-views::before {
	content: '';
	background: #0000004D;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	opacity: 0;
	z-index: 1;
}

.zoom-pdf {
	position: absolute;
	left: 50%;
	top: 45%;
	transform: translate(-45%);
}

.step-select-camp select {
	margin: 0;
	width: 100%;
	border-radius: 5px;
	padding: 10px 50px 10px 10px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	-webkit-appearance: none;
	background: url(../images/arrow-clicks.png) no-repeat 98% 46%;
	background-color: #12406833;
	height: 50px;
}

.underist-ulis {
	width: 100%;
	height: auto;
	border-radius: 21px;
	padding: 0;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	grid-gap: 20px;
	padding: 10px;
}

.under-divs .add-more-plus>* {
	width: 119px;
	height: 119px;
	border-radius: 21px;
	overflow: hidden;
}

.under-divs {
	grid-gap: 20px;
	margin: 0 0 30px;
}

.underist-ulis img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 21px;
}

.underist-ulis::before {
	content: '';
	background: #55555591;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 21px;
	opacity: 0;
}

.underist-ulis:hover .delete-pdf,
.underist-ulis:hover::before {
	opacity: 1;
}

.add-more-plus button {
	color: #C4C4C4;
	font-size: 113px;
	font-weight: 400;
	line-height: 119px;
	border: 2px solid #D0D5E0;
	border-radius: 21px;
}

.add-more-plus:hover::before {
	opacity: 0;
}

.verify-stepdivs {
	height: 100%;
	padding: 0 20px;
	display: flex;
	align-content: center;
	justify-content: center;
}

.verify-data {
	max-width: 600px;
	margin: 0 auto;
}

.sign-in-btnm,
.signinbtn {
	min-width: 350px;
}

.register-image-uploaded .zoom-pdf {
	opacity: 0;
}

.register-image-uploaded:hover .pdf-views::before,
.register-image-uploaded:hover .zoom-pdf,
.register-image-uploaded:hover .delete-pdf {
	opacity: 1;
	z-index: 1;
}

.user-icons {
	position: relative;
	margin: 0 15px 0 10px;
}

.user-dropdown .mdi::before {
	content: "\f0140";
	font-weight: bold;
	font-size: 20px;
}

.talent-btn {
	background: var(--full-black);
	padding: 10px 30px;
	height: 60px;
	border-radius: 10px;
	font-size: 20px;
	color: var(--white-color);
	display: inline-flex;
    align-items: center;
}

.talent-btn:hover {
	background: #4b4a4a;
	color : white;
}

.pulsating-circle {
	position: absolute;
	right: -12px;
	top: 0px;
	transform: translateX(-50%) translateY(-50%);
	width: 7px;
	height: 7px;
}

.pulsating-circle:before {
	content: "";
	position: relative;
	display: block;
	width: 300%;
	height: 300%;
	box-sizing: border-box;
	margin-left: -100%;
	margin-top: -100%;
	border-radius: 45px;
	background-color: #A61818;
	-webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
	animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulsating-circle:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	border-radius: 15px;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	-webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
	animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
	0% {
		transform: scale(0.33);
	}

	80%,
	100% {
		opacity: 0;
	}
}

@keyframes pulse-ring {
	0% {
		transform: scale(0.33);
	}

	80%,
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes pulse-dot {
	0% {
		transform: scale(0.8);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.8);
	}
}

@keyframes pulse-dot {
	0% {
		transform: scale(0.8);
	}

	50% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.8);
	}
}

.find-talentes {
	margin: 0 10px 0 10px;
}

.talent-btn span {
	margin-left: 10px;
}

.datepick {
	width: 100%;
	padding: 15px 40px 5px 10px;
	color: #aaa;
	min-height: 45px;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	background: transparent;
	z-index: 11;
	position: relative;
	color: #10233E;
}

.textes-min {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 0px 40px 10px 10px;
	z-index: 1;
}

.textes-min svg {
	position: absolute;
	right: 10px;
	top: 9px;
}

.date-text {
	font-size: 10px;
	font-weight: 400;
	line-height: normal;
	color: #10233ECC;
}

.text-to {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	color: #10233E;
}

.toolip-icon {
	cursor: pointer;
	width: 15px;
	display: inline-block;
}

.toolip-icon:hover+.toolip-text {
	opacity: 1;
}

.toolip-text {
	opacity: 0;
	transition: 0.5s all;
	position: absolute;
	bottom: calc(100% + 8px);
	left: -12px;
	min-width: 205px;
	width: 100%;
	transform: translate(-10%);
	background: #333333D9;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--white-color);
	text-align: center;
	text-transform: capitalize;
	border-radius: 15px;
	padding: 10px 10px;
}

.toolip-divs,
.date-container {
	position: relative;
}

.datetoolip {
	padding: 0;
	text-align: right;
}

.toolip-text::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	top: 100%;
	left: 20%;
	border: 6px solid #333333D9;
	border-color: transparent transparent #333333D9 #333333D9;
	transform-origin: 0 0;
	transform: rotate(315deg) translate(-8px, -8px);
}

.toolip-divs {
	display: inline-block;
}

.dating-picker-section {
	justify-content: flex-end;
	margin: 0;
	display: flex;
}

.dating-picker-section>div {
	width: auto;
	flex: unset;
	padding: 0 0 0 20px;
}

.overview-section {
	grid-row-gap: 30px;
}

.client-hires .table>thead>tr>th {
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
}

.client-hires div.dt-container.dt-empty-footer tbody>tr:last-child>* {
	border: 0;
}

.client-hires table {
	margin: 0 !important;
}

tfoot select {
	padding: 4px 10px;
}

.client-hires .table>thead>tr>th:last-child,
.client-hires .table>tbody>tr>td:last-child {
	text-align: right;
}

.table-datas {
	max-height: 460px;
	overflow: auto;
}

.client-hires .table>thead>tr>th,
.client-hires .table>tbody>tr>td {
	padding: 20px !important;
}

.camp-manage-table>thead>tr>th,
.camp-manage-table>tbody>tr>td {
	padding: 8px 30px !important;
}

.camp-management-main span {
	display: inline-block;
	word-break: break-all;
	white-space: normal;
}

.modal-title {
	font-size: 26px;
	font-weight: 600;
	line-height: 32px;
	color: var(--black-color);
}

button.close {
	font-size: 50px;
	line-height: 15px;
	margin-right: 0px;
}

.emp-list-table .searching-title .inner-inner-title {
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
	margin: 0;
	padding: 30px 20px 10px;
}

.image-labors,
.imageoflabores img {
	width: 43px;
	height: 43px;
	min-width: 43px;
	border-radius: 10px;
}

.all-checkbox {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin-right: 10px;
	accent-color: var(--blue-color);
}

.check-th {
	display: flex;
	align-items: center;
}

.modal-footer .btn {
	background-color: var(--full-black) !important;
    border-color: var(--full-black);
    font-size: 19px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    padding: 12px 10px;
    min-width: 110px;
    border-radius: 10px;
}

.modal-footer .arrived {
	background-color: var(--full-black) !important;
    border-color: var(--full-black);
	color: white;
    font-size: 19px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    padding: 12px 10px;
    min-width: 110px;
    border-radius: 10px;
}

.modal-footer .refund {
	border: 1px solid var(--grey-color) !important;
	color: var(--full-black);
    font-size: 19px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    padding: 12px 10px;
    min-width: 110px;
    border-radius: 10px;
}

.modal-footer .btn {
	margin: 0 10px;
}

.modal-footer .btn-danger {
	/* border-color: var(--red-color);
	color: var(--red-color); */
	background-color: var(--white-color);
}

.list-of-labor>thead>tr>th,
.list-of-labor>tbody>tr>td {
	padding: 18px 20px !important;
}

.emp-list-labor12 {
	border-radius: 20px;
	padding: 10px 10px 10px 5px;
}

.emp-list-table {
	box-shadow: 0px 0px 10px 0px #0000001A;
	border-radius: 20px;
}

.locationtype {
	position: relative;
}

.locationsinner {
	width: 20%;
}

.locations-range {
	display: flex;
	flex-wrap: wrap;
	max-height: 90px;
	overflow: hidden;
	transition: max-height 1s;
}

.radiosetsps>span {
	margin-right: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	color: var(--black-color);
}

.date-text-only {
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	display: inline-block;
	padding: 10px 0;
}

.locationsinner .datepick {
	padding: 5px 40px 5px 20px;
	font-size: 16px;
	line-height: 22.4px;
	font-weight: 400;
	background-color: unset !important;
}

.search-btns button.btn {
	min-width: 276px;
}

.search-btns {
	display: flex;
	justify-content: center;
	grid-gap: 25px;
}

.search-btns .btn-reset {
	background-color: var(--white-color);
	border: 1px solid #E2E2E2;
	color: var(--full-black);
}

.popularcmpnyleft {
	width: 121px;
	padding: 10px;
}

.popularcmpnyright {
	width: calc(100% - 121px);
	padding-left: 10px;
}

.property-item-info::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
	width: 2px;
	height: 2px;
}

.property-item-info::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track {
	box-shadow: inset 0 0 6px rgb(219 219 219);
}

.property-item-info::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
	background-color: #F0C805;
}

button.viewcmaps {
	font-size: 16px;
	font-weight: 400 !important;
	line-height: 24px;
	padding: 8px 15px !important;
	min-width: unset;
	margin: 15px 0 0 0px;
}

.popular-status {
	background: #000000BA;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 20px;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--body-font-family);
	font-size: 20px;
	font-weight: 500;
	line-height: 16px;
	opacity: 0;
	transition: 0.3s all;
}

.company-card:hover .popular-status {
	opacity: 1;
}

.viewfindtalentsmain {
	border-bottom: 1px solid var(--dark-grey2color);
	padding: 0 60px;
}

.viewfindtalents {
	margin: 0px 0 -2.5px;
}

.viewfindtalents .carousel-item.active .col-md-4:first-of-type::after {
	border-bottom: 5px solid var(--green-color);
	content: '';
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -3px;
}

.viewfindtalents .carousel-item.active .col-md-4:first-of-type {
	position: relative;
	margin: 0 !important;
}

.right-sections>* {
	margin-left: 15px;
}

.availabledropitem {
	border: 1px solid var(--border-color);
	padding: 10px 20px;
	min-height: 50px;
	border-radius: 5px;
	min-width: 267px;
}

.availbdots {
	background: var(--green-color);
	width: 10px;
	height: 10px;
	border-radius: 50px;
	display: inline-block;
}

.availablered {
	background: var(--red-color);
}

.availabledrops {
	width: 100%;
}

.labor-camps.grid-items .property-item .property-item-img-wrap {
	width: 90px;
	height: 90px;
	border-radius: 50px;
}

.labor-camps.grid-items .property-item .property-item-content {
	width: calc(100% - 90px);
}

.owl-carousel .owl-nav {
	position: absolute;
	left: -25px;
	top: 40%;
	margin: 0;
	width: calc(100% + 50px);
	display: flex;
	justify-content: space-between;
	transform: translatey(-50%);
}

.owl-theme .owl-nav [class*=owl-] span {
	font-size: 0;
}

.labor-camps .property-item {
	padding: 0;
	box-shadow: none;
	margin-bottom: 13px;
}

.owl-carousel.owl-drag .owl-item.active.center {
	border-bottom: 5px solid var(--green-color);
}

.owl-carousel.owl-drag .owl-item {
	border-bottom: 5px solid transparent;
}

.owl-theme .owl-nav [class*=owl-] {
	line-height: 0 !important;
	margin: 0;
	height: auto;
}

.owl-theme .owl-nav [class*=owl-] span::before {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	border-top: 4px solid #C1C6CA;
	border-left: 4px solid #C1C6CA;
	transform: rotate(135deg);
}

.owl-theme .owl-nav [class*=owl-prev] span::before {
	transform: rotate(314deg);
}

.owl-theme .owl-nav [class*=owl-]:hover {
	background: transparent;
}

.property-item-img {
	height: 100%;
}

.status-labor {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	background: var(--black-color);
	color: var(--white-color);
	padding: 4px 5px 6px;
	border-radius: 0 0 10px 10px;
}

.status-labor .statusshow {
	margin: 0;
	grid-column-gap: 5px;
}

.status-labor * {
	color: var(--white-color);
}

.avaidots {
	width: 12px;
	height: 12px;
	display: inline-block;
	border-radius: 50px;
}

.greenbg-color {
	background: #82b721;
}

.redbg-color {
	background: var(--red-color);
}

.blankright,
.busy-labor {
	border: 1px solid #C6C9C0;
	width: 28px;
	height: 28px;
	text-align: center;
	border-radius: 50%;
	line-height: 25px;
	cursor: pointer;
	min-width: 28px;
	display: inline-flex;
	justify-content: center;
}

.inactive-box {
	position: relative;
}

.inactive-box::before,
.labotlistavailable .inactive-box td::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #80808059;
	border-radius: 20px;
	z-index: 1;

}

.labotlistavailable .inactive-box::before {
	display: none;
}

.labotlistavailable .inactive-box td::before {
	background-color: #80808017;
	border-radius: 0;
}

.namesdiv {
	width: calc(100% - 28px);
	padding-right: 10px;
}

.gccimage {
	width: 24px;
	height: 24px;
	display: inline-block;
	padding: 2px;
	background: var(--white-color);
	border-radius: 50%;
	overflow: hidden;
}

.madal-btns {
	background: var(--border-color-4);
	border-radius: 10px;
	color: var(--black-color);
	padding: 6px 6px;
	grid-gap: 4px;
	max-width: 108px;
	line-height: normal;
}

.laborlistitem .property-item-info,
.viewfindtalents .property-item-info {
	overflow: unset;
	flex-wrap: wrap;
	height: auto;
}

.laborlistitem .property-item-info .property-info-item,
.viewfindtalents .property-item-info .property-info-item {
	min-width: unset;
}

.ratenmadal .star-rating-talent {
	width: calc(100% - 108px);
}

.btn.addtopo,
.btn.addtopo:hover {
	background-color: var(--blue-color) !important;
}

.blankright.selected,
.blankright:hover {
	background-color: #F0C805;
	border: none;
}

.blankright.selected svg path,
.blankright:hover svg path {
	fill: var(--full-black);
}

.owl-carousel .owl-stage-outer {
	z-index: 1;
}

.scroll-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	grid-gap: 20px;
}

.scroll-toggle__list {
	display: flex;
	overflow-x: scroll;
	white-space: nowrap;
	width: calc(100% - 36px);
}

.scroll-toggle__list-item {
	width: 33.33%;
	min-width: 420px;
	padding: 0 20px;
}

.scroll-toggle__list-item.active {
	border-bottom: 5px solid var(--green-color);
}

.scroll-toggle__list::-webkit-scrollbar-thumb,
.steps-tabing::-webkit-scrollbar-thumb {
	background: transparent !important;
}

.scroll-toggle__list::-webkit-scrollbar,
.steps-tabing::-webkit-scrollbar {
	width: 0px;
	height: 0px
}

.scroll-toggle__button {
	width: 18px;
}

.scroll-toggle__button svg {
	width: auto;
}

.results {
	color: var(--grey-color);
}

.results b {
	color: var(--black-color);
}

.introjs-tooltipReferenceLayer .introjs-tooltip {
	background: var(--white-color);
	color: var(--black-color);
	border-radius: 55px;
	min-width: 415px;
	padding: 24px;
}

.introjs-tooltip-header {
	display: none;
}

.introjs-tooltip .introjs-arrow {
	border: 0;
}

.introjs-tooltipReferenceLayer * {
	font-family: var(--body-font-family) !important;
	color: var(--black-color);
	font-size: 20px;
	font-weight: 500;
	line-height: 30px;
	text-align: center;
}

.introjs-tooltip .introjs-nextbutton {
	float: none;
}

.introjs-tooltipReferenceLayer .introjs-button,
.introjs-tooltipReferenceLayer .introjs-button:hover,
.introjs-tooltipReferenceLayer .introjs-button:focus {
	background: var(--full-black);
	color: var(--white-color);
	text-shadow: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	text-align: center;
	border-radius: 10px;
	padding: 3px 20px;
	border-color: var(--full-black);
	box-shadow: none;
	min-width: 86px;
	min-height: 35px;
	box-sizing: border-box;
}

.introjs-tooltipReferenceLayer .introjs-prevbutton,
.introjs-tooltipReferenceLayer .introjs-prevbutton:hover,
.introjs-tooltipReferenceLayer .introjs-prevbutton:focus {
	border: 1px solid var(--black-color);
	color: var(--black-color);
	background-color: var(--white-color);
}

.introjs-tooltipReferenceLayer .introjs-tooltipbuttons {
	text-align: center;
	display: flex;
	justify-content: center;
	border: 0;
	grid-gap: 10px;
	padding: 0;
}

.introjs-tooltipReferenceLayer .introjs-progress {
	display: none;
}

.introjs-tooltip .introjs-tooltiptext {
	padding: 25px 0;
}

.searchranges .double_range_slider_box,
.experience .double_range_slider_box,
.labor_rate .double_range_slider_box,
.age_range .double_range_slider_box {
	margin-top: 35px;
	position: relative;
	width: 100%;
	height: auto;
	background: var(--white-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 20px;
}

.searchranges .double_range_slider,
.experience .double_range_slider,
.labor_rate .double_range_slider,
.age_range .double_range_slider {
	width: 100%;
	height: 8px;
	position: relative;
	background-color: #E0E0E0;
	border-radius: 20px;
}

.searchranges .range_track,
.experience .range_track,
.labor_rate .range_track,
.age_range .range_track {
	height: 100%;
	position: absolute;
	border-radius: 20px;
	background-color: #222222;
}

.searchranges .minvalue,
.experience .minvalue,
.labor_rate .minvalue,
.age_range .minvalue {
	position: absolute;
	padding: 2px 5px;
	background: #092C4C;
	border-radius: 5px;
	color: var(--white-color);
	bottom: 0;
	transform: translate(0, -118%);
	font-size: 10px;
	transition: left 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	will-change: left, transform;
	min-width: 22px;
	text-align: center;
}

.searchranges .maxvalue,
.experience .maxvalue,
.labor_rate .maxvalue,
.age_range .maxvalue {
	position: absolute;
	padding: 2px 5px;
	background: var(--blue-color);
	border-radius: 5px;
	color: var(--white-color);
	top: 0;
	transform: translate(-100%, -178%);
	font-size: 10px;
	transition: right 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	will-change: right, transform;
	min-width: 22px;
	text-align: center;
}

.searchranges .minvalue::before,
.experience .minvalue::before,
.labor_rate .minvalue::before,
.age_range .minvalue::before,
.searchranges .maxvalue::before,
.experience .maxvalue::before,
.labor_rate .maxvalue::before,
.age_range .maxvalue::before {
	content: '';
	width: 7px;
	height: 7px;
	display: inline-block;
	position: absolute;
	bottom: -6px;
	background: var(--blue-color);
	transform: rotate(45deg) translate(-50%);
	left: 47%;
	z-index: -1;
}

.searchranges input,
.experience input,
.labor_rate input,
.age_range input {
	position: absolute;
	width: 100%;
	height: 5px;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	top: 50%;
	transform: translateY(-50%);
}

.searchranges input::-webkit-slider-thumb,
.experience input::-webkit-slider-thumb,
.labor_rate input::-webkit-slider-thumb,
.age_range input::-webkit-slider-thumb {
	height: 25px;
	width: 25px;
	border-radius: 50%;
	border: 2px solid var(--blue-color);
	background-color: var(--white-color);
	pointer-events: auto;
	-webkit-appearance: none;
	cursor: pointer;
	margin-bottom: 1px;
}

.searchranges input::-moz-range-thumb,
.experience input::-moz-range-thumb,
.labor_rate input::-moz-range-thumb,
.age_range input::-moz-range-thumb {
	height: 18px;
	width: 18px;
	border-radius: 50%;
	border: 2px solid var(--blue-color);
	background-color: var(--white-color);
	pointer-events: auto;
	-moz-appearance: none;
	cursor: pointer;
	margin-top: 30%;
}

.statusshow {
	grid-gap: 10px;
	margin-bottom: 0;
}

.availablelist {
	padding: 0 30px 40px;
	display: flex;
	flex-wrap: wrap;
}

.labordetails {
	box-shadow: 0px 0px 10px 0px #00000040;
	border: 1px solid transparent;
	background: var(--white-color);
	border-radius: 20px;
	padding: 15px;
	margin-bottom: 28px;
	cursor: pointer;
	position: relative;
}

.labordetails .laborsimage {
	height: 168px;
	text-align: center;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.labordetails .laborsimage>img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.labordetailsimg .owl-dots {
	position: absolute;
	bottom: 10px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	grid-column-gap: 10px;
}

.labordetails .property-item-content {
	width: 100%;
	padding: 0;
}

.property-statussec {
	display: flex;
	justify-content: space-between;
	margin: 15px 0 12px;
	align-items: center;
}

.property-statussec>* {
	width: 50%;
}

.property-statussec .status-camps {
	text-align: right;
}

.property-statussec .status-camps label {
	margin: 0;
}

.laboravailablelist {
	width: 100%;
}

.laboravailablelist-popup {
	display: none;
	padding: 20px 10px;
	box-shadow: 0px 0px 10px 0px #00000040;
	border-radius: 20px;
}

.laboravailablelist-inner {
	max-height: 1150px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 10px 10px 10px;
}

.availablelistopen .laboravailablelist-popup {
	display: block;
}

.laboravailablelistopen {
	width: 33.33333333%;
	padding: 0 16px 0 0;
}

.laboravailablelistopen .laboravailablegrid-li {
	width: 100%;
}

.availablelistopen .laboravailablelist-popup {
	width: calc(100% - 33.33333333%);
}

.labordetailsopen {
	box-shadow: 0px 0px 0px 4px #F0C8053D;
	border: 1px solid var(--login-yellow-color);
}

.laboravailablegrid {
	max-height: 1200px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 10px 0px;
}

.labordetailsopen::after {
	content: "";
	top: 30px;
	right: -21px;
	overflow: hidden;
	position: absolute;
	width: 30px;
	height: 30px;
	background: var(--white-color);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	border: 1px solid var(--white-color);
	border-left: 0;
	border-bottom: 0;
	box-shadow: 0px 0px 2px 0px var(--white-color);
}

.labordetailsopen::before {
	content: "";
	top: 30px;
	right: -20px;
	overflow: hidden;
	position: absolute;
	width: 20px;
	height: 20px;
	background: var(--white-color);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	border: 1px solid var(--login-yellow-color);
	border-left: 0;
	border-bottom: 0;
	box-shadow: 0px 0px 0px 4px #F0C8053D;
}

.labordetailscheck {
	box-shadow: 0px 0px 0px 2px #f0c805;
}

.labordetailscheck::after {
	top: 30px;
	right: -21px;
	overflow: hidden;
	position: absolute;
	width: 30px;
	height: 30px;
	background: var(--white-color);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	border: 1px solid var(--white-color);
	border-left: 0;
	border-bottom: 0;
	box-shadow: 0px 0px 2px 0px var(--white-color);
}

.labordetailscheck::before {
	top: 30px;
	right: -20px;
	overflow: hidden;
	position: absolute;
	width: 20px;
	height: 20px;
	background: var(--white-color);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
	border: 1px solid var(--login-yellow-color);
	border-left: 0;
	border-bottom: 0;
	box-shadow: 0px 0px 0px 4px #f0c805;
}

.labordetailsimg .owl-dots span {
	width: 10px;
	height: 10px;
	background: var(--white-color);
	display: inline-block;
	border-radius: 50px;
}

.labordetailsimg .owl-dots .owl-dot.active span {
	background: var(--green-color);
}

.laborlistitem .property-item {
	margin: 0;
}

.laboravailablelist-inner>.row {
	grid-row-gap: 30px;
}

.laboravailablegrid-li:last-child .labordetails {
	margin: 0;
}

.laborimage img {
	width: 62px;
	height: 62px;
	min-width: 62px;
	border-radius: 20px;
}

.laborimage .statusshow {
	position: absolute;
	left: -5px;
	top: 0;
}

.laborimage .statusshow .avaidots {
	width: 22px;
	height: 22px;
	min-width: 22px;
	border: 4px solid black;
}

.laborimage {
	position: relative;
}

.labotlistavailable td>span {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--black-color);
	width: 100%;
	display: inline-block;
}

.laborname {
	font-size: 16px;
	font-weight: 500;
	line-height: 16px;
	color: var(--black-color);
	width: 100%;
	display: block;
	margin: 0 0 5px;
}

.uae-pass span {
	color: var(--black-color);
	display: inline-block;
	margin-left: 3px;
}

.expname {
	color: var(--black-color);
	display: block;
	margin: 0 0 4px;
}

.gccdiv .madal-btns {
	background: #E6E6E6;
	padding: 2px 6px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
}

.labotlistavailable {
	max-height: unset;
}

table {
	width: 100%;
}

.availablelaborsselected .property-item {
	padding: 17px 0 10px;
}

.availablelaborsselected .property-item a.property-item-img-wrap {
	margin-left: 17px;
}

.availablelaborsselected .property-item .property-item-content {
	width: calc(100% - 138px);
	padding: 0 17px 0 10px;
}

.datechecking {
	padding: 10px 10px 0;
	width: 100%;
	text-align: center;
	border-top: 1px solid #E2E2E2;
	margin-top: 10px;
}

.datechecking input[type="text"] {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--grey-color);
	width: 184px !important;
}

.availablelaborsselected .madal-btns {
	background: #82B62240;
}

.removelabor i {
	border: 1px solid var(--red-color);
	border-radius: 50px;
	width: 28px;
	height: 28px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding-left: 2px;
}

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

body .daterangepicker {
	font-family: var(--body-font-family);
	min-width: 500px;
}

.selectedlabors {
	grid-row-gap: 25px;
}

.totaltable td,
.totaltable th {
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
}

.totaltable {
	color: #4F4F4F;
}

.totaltable th {
	font-weight: 600;
}

.sub-totals th,
.sub-totals td {
	font-size: 20px;
	line-height: 32px;
	color: var(--black-color);
	padding: 5px 0;
}

.close-rights {
	min-height: 60px;
}

.close-rights .close {
	position: absolute;
	right: 40px;
	top: 40px;
}

.titlemodals {
	font-size: 24px;
	line-height: 36.96px;
	margin: 31px 0 51px;
	color: var(--black-color);
}

body .btn-grey,
.modal-footer .btn-grey {
	border-color: #000000;
	color: white;
	background: var(--white-color);
}

.datecalepopup .modal-content {
	max-width: 941px;
}

.removelabpopup .modal-content {
	max-width: 816px;
}

.titlemodalsmain {
	font-size: 40px;
	line-height: 61.6px;
	font-weight: 600;
	color: var(--black-color);
}

.successlabpopup .titlemodals {
	margin: 0;
}

.successlabpopup .modal-content {
	max-width: 797px;
}

.daterangepicker .applyBtn.btn {
	background: var(--full-black);
	border-color: var(--full-black);
}

.top-tablesdata {
	min-height: 225px;
}

.bottom-tablesdata {
	min-height: calc(100% - 285px);
	position: relative;
	padding-bottom: 120px;
}

.bottombtnprocced {
	position: absolute;
	bottom: 25px;
	left: 25px;
	width: calc(100% - 50px);
}

.bottombtnprocced button {
	width: 100%;
}

.searching-bars .search-inputs {
	background-color: var(--white-color);
	height: 50px;
}

body:not(.modal-open.fade) .modal-backdrop {
	display: none;
}

.iframeviews {
	height: 50vh;
}

.checksign {
	grid-gap: 10px;
}

input[type="checkbox"],
input[type="radio"] {
	width: 24px;
	height: 24px;
	accent-color: var(--full-black);
}

#sig-canvas {
	border: 1px solid #C2C2C2;
	width: 100%;
	border-radius: 5px;
}

.leftviewpurchase {
	height: 99% !important;
}

.rejectdis textarea.form-control {
	min-height: 157px !important;
	height: auto;
	border-radius: 5px;
}

.total-contract {
	font-size: 20px;
	color: #4F4F4F;
	margin: 0 0 10px;
}

.title-paycontract,
.contract-payments-method label {
	display: flex;
	grid-gap: 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	color: #4F4F4F;
	margin: 0 0 20px;
}

.contract-payments-method label {
	margin: 0 0 10px;
}

.payment-sections {
	padding-left: 35px;
}

input#worked_at_gcc_no,
input#insured_no {
	margin-left: 10px;
}

.labor-detail table.dataTable>thead>tr>th {
	font-weight: 500;
	padding: 15px !important;
}

.paypalradios {
	padding-right: 40px;
	position: relative;
}

.payapalimg {
	position: absolute;
	right: 0;
}

.cardnumbers .form-control {
	padding-right: 120px;
	background-image: url(../images/mix-visa.png);
	background-position: 94% 50%;
	background-repeat: no-repeat;
}

.checksign a {
	color: #124068;
	text-decoration: underline;
}

.contract-payments-method {
	padding-bottom: 400px;
}

.custom-file-preview {
	width: 206px;
	height: 206px;
	border-radius: 20px;
	position: relative;
	border: 2px solid #D0D5E0;
	overflow: hidden;
}

.custom-file-preview>.custom-preview-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.phonenim .iti--allow-dropdown,
.contactsimg {
	width: 100%;
}

.custom-file-preview>.delete-file {
	position: absolute;
	right: 10px;
	background: var(--white-color);
	top: 10px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	box-shadow: 0px 0px 4px 0px #00000040;
	opacity: 0;
	transition: 0.5s all;
}

.custom-file-preview>a.dz-remove {
	font-size: 0;
}

.custom-file-preview::before {
	content: '';
	background: #0000004D;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	opacity: 0;
	transition: 0.5s all;
}

.custom-file-preview:hover::before,
.custom-file-preview:hover .delete-file {
	opacity: 1;
}

.img-sec-text-license {
	position: relative;
	z-index: 1;
}

.step-select-camp {
	display: flex;
	align-items: center;
	grid-gap: 20px;
}

.step-select-camp .btn {
	padding: 0 10px;
}

.myprofilesdiv .table thead tr th,
.myprofilesdiv .table tbody tr td {
	padding: 15px 25px !important;
}

#pageSelect {
	padding: 4px 10px;
}

input[type="date" i]::-webkit-calendar-picker-indicator {
	background-image: url(../images/calendar-plus.png);
	background-size: cover;
	background-position: center;
	width: 20px;
	margin: 0 -20px 0 0px;
	padding: 10px 0px;
}

input[type="time" i]::-webkit-calendar-picker-indicator {
	background-image: url(../images/watchicon.png);
	background-size: cover;
	background-position: center;
	width: 20px;
	margin: 0 -15px 0 0px;
	padding: 10px 0px;
}

#mysitemodal .modal-content {
	max-width: 800px;
}

.add-duplicate {
	min-width: 200px;
	height: 50px;
}

.remove-duplicate svg {
	width: 30px;
	min-width: 18px;
	color: var(--red-color);
}

.rightscamps {
	padding: 0;
}

.filtersdone button,
.filtersdone button.btn:hover,
.filtersdone button.btn:focus,
.filtersdone button.btn:active {
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	border-radius: 10px;
	background : #111111;
    color : white;
	opacity: 1 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.widcampbtns {
	margin: 0;
	border-color: #9b9b9b7d;
	width: 100%;
}

.btn-filter {
	border-radius: 10px;
	font-size: 20px;
	font-weight: 400;
}

.add-labor .camp-btns {
	border-radius: 10px;
	width: 100%;
}

.rightscamps .title-of-tab {
	width: auto;
}

.dropdown-item input[type="radio"] {
	width: 16px;
	height: 16px;
	border-radius: 50px;
	appearance: auto;
}

.dropdown-item input[type="radio"]:checked {
	background-color: var(--full-black);
	border-color: var(--full-black);
	accent-color: var(--full-black);
}

.iti {
	width: 100%;
}

.iti .custom-label {
	margin-bottom: 15px;
	z-index: 1;
}

.blockideas {
	display: flex;
	align-items: center;
	grid-gap: 40px;
}

.yesdivs {
	display: flex;
	align-items: center;
	grid-gap: 10px;
	font-weight: 400;
	line-height: 22.4px;
	color: var(--black-color);
}

.savecloses {
	grid-gap: 27px;
	display: flex;
	justify-content: center;
}

.titlesrate {
	font-size: 16px;
	font-weight: 500;
	color: var(--black-color);
}

.titlesname {
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
}

.labor-image-profile {
	width: 50px;
}

.camphoto {
	margin: 0 0 100px;
}

.carousel-campmanage .carousel-control-prev,
.carousel-campmanage .carousel-control-next {
	background: linear-gradient(270deg, rgba(217, 217, 217, 0) 9%, #47454545 90%);
	width: 70px !important;
	justify-content: flex-start;
	border-radius: 20px;
	opacity: 1;
}

.carousel-campmanage .carousel-control-prev .carousel-control-prev-icon,
.carousel-campmanage .carousel-control-next .carousel-control-next-icon {
	filter: unset;
	width: 41px;
	height: 40px;
	background-size: cover;
	background-position: center;
	margin-left: 10px;
}

.carousel-campmanage .carousel-control-next {
	justify-content: flex-end !important;
	background: linear-gradient(270deg, #47454545 9%, rgba(217, 217, 217, 0) 90%);
}

.carousel-campmanage .carousel-inner img {
	width: auto;
	height: 440px;
	margin: 0 auto;
	min-height: 440px;
}

.thumbnail-gallery {
	display: flex;
	flex-wrap: wrap;
	grid-column-gap: 17px;
	grid-row-gap: 27px;
}

.thumbnail-item {
	border-radius: 20px;
	box-shadow: 0px 0px 10px 0px #00000040;
	width: calc(33.33% - 12px);
	min-height: 115px;
	padding: 20px;
	text-align: center;
}

.thumbnail-item img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

.circle-design {
	box-shadow: 0px 0px 10px #0000005e;
	border-radius: 32%;
}

.carousel-campmanage .carousel-item {
	text-align: center;
	padding: 30px;
}

.des-cri-ption .table,
.evalutiontable {
	margin: 0;
}

.des-cri-ption .table tr:last-child th,
.des-cri-ption .table tr:last-child td,
.evalutiontable.table>tbody>tr:last-child>td {
	border: 0;
}

.add-camp-photo.under-divs .add-more-plus>* {
	width: 206px;
	height: 206px;
}

.add-more-plus {
	padding: 0;
}

.add-camp-photo {
	margin: 0 0 100px;
}

.camps-mains-listing table>thead>tr>th.dt-orderable-none {
	white-space: nowrap;
}

.rate-title {
	font-weight: 500;
	line-height: 36px;
	margin: 0 0 10px;
}

.select-wrapperrating select {
	padding-right: 70px;
}

.select-wrapperrating .select-icon {
	font-style: normal;
}

.selectfeedback select {
	padding-right: 60px;
}

.evalutiontable.table>thead>tr>th,
.evalutiontable.table>tbody>tr>td {
	padding: 10px 30px !important;
}

.messageli {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	grid-gap: 25px;
}

.removeicons {
	background: #C2C2C2;
	border-radius: 2px;
	width: 18px;
	height: 18px;
	text-align: center;
	line-height: 15px;
}

.view-cmn {
	width: 10%;
	text-align: right;
}

.notify-cnt {
	width: calc(100% - 68px - 10%);
}

.view-cmn .btn-view {
	width: auto;
	height: auto;
	padding: 15px;
	font-size: 20px;
	font-weight: 500;
	line-height: 13px;
	text-align: left;
	background: #10233E;
    color: var(--white-color);
}

.cmn-msg {
	font-size: 13px;
	line-height: 13px;
	color: var(--white-color);
	background-color: #F0C805;
	padding: 2px 5px;
	border-radius: 3px;
}

.notificationsmain {
	padding-bottom: 96px;
}

.reportsoverview thead>tr>th,
.reportsoverview tbody>tr>td,
.reportsoverview thead>tr>th:not(:last-child),
.reportsoverview tbody>tr>td:not(:last-child) {
	text-align: left;
	padding: 15px 30px !important;
}

.searchtransiction .search-forms {
	min-width: unset;
}

.transactionsul {
	grid-gap: 29px;
	flex-wrap: wrap;
}

.transactionsli {
	width: calc(25% - 22px);
	box-shadow: 0px 0px 10px 0px #0000001A;
	border-radius: 20px;
	padding: 15px 30px;
	align-items: center;
}

.financial-icon {
	width: 77px;
}

.text-financial {
	width: calc(100% - 77px);
	padding-left: 50px;
}

.aed-price {
	font-size: 35px;
}

.searchtransiction .search-inputs {
	height: 45px;
	font-size: 16px;
	padding: 5px 10px 5px 40px;
}

.searchtransiction .submit-search {
	height: 45px;
	left: 15px;
}

.searchtransiction .submit-search svg {
	width: 18px;
}

.viewslinks {
	font-size: 14px;
	font-weight: 500;
	line-height: 13px;
	color: #111111;
	text-decoration: underline;
}

a.viewslinks {
	color: #111111;
}

.transactiontable .camp-manage-table>tbody>tr>td,
.transactiontable .camp-manage-table>thead>tr>th {
	padding: 15px !important;
	white-space: nowrap;
}

.bordertext {
	border: 1px solid;
	border-radius: 5px;
	padding: 3px 10px;
	font-size: 14px;
	font-weight: 400;
}

.remindspan {
	color: #9E4CF4;
	border: 1px solid;
	padding: 3px 8px;
	border-radius: 5px;
}

.purchase-order .modal-content {
	border-radius: 0;
}

.checksign p {
	width: calc(100% - 34px);
	word-break: break-word;
	white-space: normal;
	margin: -4px 0 0px 0;
}

.titlemodals32 {
	font-size: 32px;
	line-height: 49.28px;
}

.viewcontract .iframeviews {
	border: 3px dashed #D0D5E0;
	padding: 10px;
	border-radius: 21px;
}

.messagetextarea {
	min-height: 157px !important;
}

.alert-success {
	width: 90%;
	margin: 0 auto 20px;
}

.radiosetsps {
	font-size: 16px;
	color: var(--black-color);
}

.popularcmpnyright button.viewcmaps {
	border: 1px solid var(--grey-color);
	background: var(--white-color);
	color: var(--full-black);
}

.datemodel .modal-content {
	max-width: 941px;
}

#dateModelLabel {
	font-size: 17px;
	font-weight: 500;
	line-height: 27px;
	color: var(--red-color);
	max-width: 662px;
	margin: 15px auto 15px;
	text-align: center;
}

.calendar-month.block {
	max-width: 442px;
	margin: 0 auto 35px;
}

.arrowsnext {
	width: 50%;
	text-align: right;
}

.titular {
	width: 50%;
}

.arrow-btn-container {
	margin-bottom: 15px;
}

.arrowsnext a {
	margin: 0 15px;
}

.arrowsnext a:hover,
.arrowsnext a:active {
	color: var(--black-color)
}

.calendar {
	margin: 0 auto;
	text-align: center;
}

.calendar a {
	font-size: 17px;
	width: 100%;
	height: 100%;
	display: block;
	line-height: 54px;
}

.calendar td,
.calendar th {
	width: 54px;
	height: 54px;
	transition: 100ms;
	text-align: center;
	border: 1px solid #D5D4DF;
}

.calendar td:hover {
	background: #FAC858;
	color: var(--full-black);
}

.calendar .selected {
	background: #FAC858 !important;
	color: var(--full-black);
}


.calendar td:hover a {
	color: var(--full-black);
}

.calendar tr:last-child td,
.calendar tr:last-child th {
	border-radius: 0;
}

.calendar td:empty {
	background: #F2F3F7;
	color: #A8A8A8;
}

.modal-footer .skip-button {
	font-size: 21px;
	font-weight: 500;
	line-height: 31px;
	color: #33333380;
	background: transparent !important;
	width: auto;
	min-width: unset;
	border: 0;
	height: auto;
	position: absolute;
	right: 40px;
	padding: 0;
	margin: 0;
}

#showLaborDetailsFromCamps .grid-items {
	margin-bottom: 25px;
}

.listiconssearch #searchInput {
	background-color: #F9FAFB;
	height: 45px;
	padding-left: 45px;
}

.listiconssearch .submit-search {
	height: 45px;
	left: 15px;
}

.loss-profitbtn:hover {
	border-radius: 5px;
}

.main .tab-menu-link.is-active a {
	color: var(--black-color);
}

table.companytable>thead>tr>th {
	padding: 0px 15px 20px !important;
}

body .modal .w-bgredbtn {
	background-color: var(--red-color);
	color: var(--white-color);
	border-color: var(--red-color);
}

.main .companyforms .tab-menu {
	justify-content: flex-start;
	padding: 0 30px;
}

.companyforms .links-steps a {
	padding: 0;
}

.main .companyforms .tab-menu-link {
	width: auto;
}

.register-upload .custom-file-preview {
	width: 130px;
	height: 178px;
	padding: 20px;
}

.cmpny-manages .under-divs .add-more-plus>* {
	width: 217px;
	height: 187px;
	gap: 10px;
	border-radius: 21px;
}

.cmpny-manages .under-divs .add-more-plus>button {
	font-weight: 300;
	line-height: 32px;
	font-size: 113px;
}

.addcmpnyimage {
	width: 40px;
}

.companyforms .register-data .custom-file-preview .comms img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.register-upload .custom-file-preview {
	margin: 0 auto;
}

.companyforms .register-data {
	border: 0;
}

.companyforms .register-data .custom-file-preview {
	border: 2px dashed #D0D5E0;
	border-radius: 21px;
	width: 100%;
	padding: 10px;
}

.companyforms .register-data .custom-file-preview::before {
	width: 0;
	height: 0;
}

.companyforms .register-data .custom-file-preview .comms {
	width: 130px;
	height: 178px;
	margin: 0 auto;
	position: relative;
}

.companyforms .register-data .custom-file-preview .comms::before {
	content: '';
	background: #0000004D;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	opacity: 0;
	transition: 0.5s all;
}

.companyforms .register-data .custom-file-preview .comms .delete-file {
	z-index: 1;
	position: absolute;
	right: 10px;
	background: var(--white-color);
	top: 10px;
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	opacity: 0;
	box-shadow: 0px 0px 4px 0px #00000040;
	transition: 0.5s all;
}

.companyforms .register-data .custom-file-preview:hover .comms .delete-file,
.companyforms .register-data .custom-file-preview:hover .comms:before {
	opacity: 1;
}

.paginations-divs {
	margin-top: 15px;
}

div#headless-wrapper {
	height: 100%;
}

.signin .sign-up-right-content {
	height: auto;
}

.companyforms .links-steps a::after {
	height: 0;
	width: 0;
}

.sign-up-left-content {
	grid-gap: 50px;
}

.form-control[type=file] {
	padding-right: 35%;
}


table#campManageTable>thead>tr>th,
table#campManageTable>tbody>tr>td {
	padding: 8px 20px !important;
}

div#campManageTable_wrapper span {
	white-space: nowrap;
}

.popularcmpnyright .property-info-item {
	min-width: 50%;
}

.under-divs>.underist-ulis {
	width: auto;
}

.recentsincontracts .view-actions>button>svg path {
	stroke: unset;
	fill: var(--grey-color);
}

input[type="search" i]::-webkit-search-cancel-button {
	display: none;
}

#closeSearchBtn {
	position: absolute;
	right: 10px;
	top: 0;
	font-size: 30px;
	color: var(--blue-color);
	height: 100%;
}

table.calendar td,
table.calendar th {
	min-width: unset;
}

.block-infos {
	margin: 0 0 0 10px;
	display: flex;
	align-items: center;
}

.block-infos>span {
	margin: 0 5px;
}


.form-control:focus,
.form-select:focus,
.form-select:focus,
.form-control:focus-visible,
.form-select:focus-visible,
.form-control:active,
.form-select:active,
.form-select:active,
.form-control:target,
.form-select:target {
	border-color: var(--login-yellow-color) !important;
	box-shadow: 0px 0px 0px 4px #F0C8053D;
}

.typesaud {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.typesaud>span {
	margin: 0 60px 0 15px;
}

.reportmodals .modal-dialog {
	max-width: 750px;
}

.totalsreviews .total-reviews {
	background: transparent;
	padding: 0;
	text-align: center;
	width: 20%;
}

.totalsreviews .total-reviews>* {
	margin: 0;
}

.fonttotal {
	font-size: 30px;
	font-weight: 500;
	color: var(--black-color);
}

.totalsreviews .rating-breakdown {
	width: 50%;
}

.totalsreviews .total-reviews .fa-star {
	font-size: 20px;
}

.radifeed {
	box-shadow: 0px 0px 10px 0px #0000001A;
	padding: 20px;
	border-radius: 10px;
}

.radfeedul {
	padding: 0 27px 20px 0;
}

.feedback-pagination .paginations {
	padding: 0px 20px 20px;
}

.radifeed {
	box-shadow: 0px 0px 10px 0px #0000001A;
	padding: 20px 0px 20px 20px;
	border-radius: 10px;
	display: flex;
	align-items: flex-start;
	margin: 0 0 30px;
}

.suggestions-container {
	background: #f5f5f5;
	position: absolute;
	z-index: 1000;
	max-height: 200px;
	overflow-y: auto;
	width: 100%;
	margin-top: 1px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px 0px #2e2626a8;
}

.locationdata>.form-group {
	position: relative;
}

.suggestion-item {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #8080804f;
	color: #000;
}

.suggestion-item:hover {
	background-color: #f0f0f0;
}

.radifeedimg img.talent-image {
	border-radius: 10px;
	width: 80px;
	height: 80px;
	min-width: 80px;
}

.radifeed-left {
	width: 25%;
	display: flex;
	grid-gap: 20px;
}

.radifeed-right {
	width: 75%;
	padding: 0 20px;
}

.radifeed-right .fa {
	font-size: 17px;
}

.bottom-divs {
	display: flex;
}

.ratepername {
	display: flex;
	align-items: center;
	margin: 40px 0 30px;
	grid-gap: 20px;
}

.rateleftimage img {
	width: 30px;
	height: 30px;
	min-width: 30px;
}

.rateright {
	padding-top: 10px;
}

.replydelete {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.replydelete span {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin: 0 20px 0 10px;
}

a.deletes:hover {
	color : #333333;
}

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

.logmanagerrow .search-forms {
	min-width: unset;	
	width: auto;
	padding-left: 10px;
}

.logmanagerrow .search-inputs {
	height: 45px;
	font-size: 14px;
	padding: 15px 40px 15px 40px;
}

.logmanagerrow .submit-search {
	height: 45px;
}

.logmanagerrow input {
	height: 45px;
	font-size: 14px;
	padding: 10px 25px 10px 15px;
	line-height: normal;
}

.logomanagetable .table>thead>tr>th,
.logomanagetable .table>tbody>tr>td {
	padding: 10px 30px !important;
}

.message-add {
	text-transform: capitalize;
}

.myprofilebg {
	background-color: var(--grey-color);
	border-radius: 15px 15px 0 0;
	margin-top: 24px;
}

.myprofilebg .editprofiles {
	position: absolute;
	right: 20px;
	top: 20px;
	background: var(--white-color);
	border-radius: 50%;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
}

.profiledatamain {
	padding: 0 20px;
	margin-top: -70px;
	grid-gap: 30px;
}

.profileimg {
	width: 286px;
	height: 241px;
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: center;
}

.profileimg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	box-shadow: 0px 0px 15.3px 0px #00000040;
	border-radius: 20px;
	margin-bottom: 15px;
}

.profiledata {
	width: calc(100% - 316px);
}

.profileinnerdata {
	display: flex;
	align-items: center;
	justify-content: space;
	flex-wrap: wrap;
	padding: 30px 40px 30px 30px;
	position: relative;
	border-bottom: 1px solid var(--border-color-4);
}

.listli,
.listli a {
	font-size: 16px;
	color: var(--black-color);
	word-break: break-all;
}

.listli {
	display: flex;
	align-items: center;
	grid-gap: 25px;
	margin: 0 0 20px 0;
	padding-right: 20px;
}

.listli svg {
	width: 20px;
	height: 20px;
}

.listli address {
	margin: 0;
}

.pwdlist {
	position: relative;
}

.pwdlist .viewiconeye {
	right: 0;
	top: 0;
	z-index: 1;
	cursor: pointer;
}

.listli label {
	margin: 0;
}

.recentactivity {
	margin: 0 auto 60px;
	background: #EBEBEB;
	border-radius: 10px;
}

.activitylist>li {
	color: var(--black-color);
	margin: 10px 0 0px;
}

.permisssionslist {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 20px;
}

.permisssionslist li {
	line-height: 19.6px;
	border: 1px solid var(--border-color-4);
	border-radius: 5px;
	padding: 2px 6px;
	color: var(--grey-color);
}

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

.worklabor .yesbtn {
	margin: 0 5px 0 5px;
}

.worklabor input {
	margin-left: 10px;
}

.adminlabors.camps-laborer .reportstab {
	width: 46%;
}

.ownerlabors.camps-laborer .reportstab {
	width: 27%;
}

.camps-laborer .theme-btn-my {
	width: 100%;
	margin: 0;
}

.emplabor>span {
	width: 100%;
	margin: 0 0 10px;
}

.emplabor>div>input {
	margin: 0 5px 0 0;
}

.emplabor>div {
	display: flex;
	align-items: center;
}

.lang-selector .lanname {
	width: 70px;
}

.lang-selector svg {
	width: 15px;
}

.user-dropdown .dropdown-item:last-child,
.lang-selector .dropdown-item:last-child {
	border: 0;
}

table.table.p-20.camp-manage-table.list-of-labor.m-0 {
	border-top: 1px solid var(--border-color-4);
}

.view-actions>.actions-btns>svg>path {
	stroke: var(--black-color);
}

.carousel-campmanage .carousel-inner {
	width: 100% !important;
	margin-left: 0 !important;
}

.w-10 {
	width: 10%;
}

.w-90 {
	width: 90%;
}

.iti__selected-flag {
	background-color: #f5f5f5;
}


.modal-dialog.singleremovelabpopup {
	max-width: 800px;
}

.temsconditions {
	padding: 30px 30px;
    background: var(--white-color);
    margin: 0 auto 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #0000001A;
}

.termscontioninner .section-title {
    font-size: 17px;
    margin: 40px 0 15px 0;
    line-height: normal;
    border-bottom: 1px solid #F0C805;
    background: #f7f9f3;
    border-radius: 50px;
    padding: 5px 20px;
    color: var(--full-black);
}
.termscontioninner ul {
    padding: 0 0 0 20px;
}

.termscontioninner li {
    list-style: square;
	font-size: 13px;
}

.termscontioninner li::marker {
    color: #F0C805;
}

.temsconditions p {
	font-size: 13px;
	margin: 0 0 10px;
}

.footer {
	margin: 90px 0 0 0;
}

.mysitename {
	width: 100px;
}

.mysitename-wrapper {
	width: auto;
	min-width: 210px;
	max-width: 300px;
}

.locat-select .form-control {
	height: 40px;
	padding: 10px 40px 10px 20px;
}

.arrow-cash,
.arrow-pay {
	width: 100%;
}

.searching-title {
	padding-right: 10px;
}

.talent-info {
	word-wrap: break-word;
	flex-wrap: wrap;
}

.permissioninner {
	margin: 0 0 20px 0;
	padding: 0 20px 20px 0;
}

.permissioninner>* {
	padding: 0;
}

.permissionactive {
	box-shadow: 0px 0px 10px 0px #0000001A;
	padding: 20px;
	border: 0 !important;
	border-radius: 10px;
}

.listpermissions {
	font-size: 16px;
	font-weight: 400;
	line-height: 22.4px;
	padding-left: 30px;
	color: #092C4C;
}

.permissioninner .toggle-switch {
	margin: 0;
}

.datemodel .btn-my-close {
	position: absolute;
	right: 50px;
	top: 50px;
	z-index: 1;
}

.erroricons svg {
	width: 40px;
}

.modal-footer .skip-button:active,
.modal-footer .skip-button:hover,
.modal-footer .skip-button:focus {
	box-shadow: none !important;
	background: transparent !important;
	color: #33333380;
}

.moreless-button::after {
	content: '';
	width: 10px;
	height: 10px;
	display: inline-block;
	background: #fff;
	border: 2px solid;
	transform: rotate(45deg);
	margin: 0 0 1px 10px;
	border-left: 0;
	border-top: 0;
}

.moreless-button {
	font-size: 16px;
	font-weight: 500;
}

.moreshow .moreless-button::after {
	transform: rotate(224deg);
	margin: 0 0 -3px 10px;
}

a.moreless-button:hover {
	color : #111111;
}

.locations-range.moreshow {
	max-height: 400px;
	display: flex;
}

.purchasebtns {
	justify-content: space-between;
}

.purchasebtns .col-md-4 {
	width: auto;
}

body .daterangepicker .drp-calendar.right,
.permissioninner .child-container>* {
	padding: 0;
}

.laborsfilters>* {
	width: 20%;
}

.reportsfilter>* {
	width: 16.66%;
}

.my_com_doc_file .file-upload-div {
	min-height: unset;
	padding: 0;
}

.my_com_doc_file {
	min-height: 246px;
	padding: 30px 10px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.steps-container {
	background: var(--white-color);
	padding: 45px 57px 20px 37px;
	border-radius: 16px;
}

.steps-container .steps-main {
	max-width: 500px;
	margin: 0 auto;
	background: transparent;
	padding: 0;
	border-radius: 0;
}

.steps-container .steps-main .progress {
	width: 79%;
}

.edit-labormanage .upload-btns {
	right: 8px;
}

.com_doc_file .btn {
	width: 100%;
	border: 0 !important;
}

.overviewdashboard .title-of-tab {
	width: 30%;
}

.overviewdashboard .rightscalender {
	width: 70%;
}

.register-upload iframe,
.my_com_doc_file .file-upload-div {
	border: 0;
}

.property-item-info .property-info-item:nth-of-type(1) {
	width: 100%;
}

.mediaimage {
	height: 100%;
    width: auto;
    margin: 0 auto;
}

.mediasectionimage {
    height: 200px;
    text-align: center;
    margin: 0 0 20px;
}

.modal-footer .btn.View-close,
.cmpny-leftul label {
	margin: 0;
}

.sign-link {
	padding: 0 10px;
}

.registerpage .sign-up-right-content {
	padding: 0;
}

.popularcmpny>.inner-title {
	width: 80%;
	padding: 0;
}

.popularcmpny>.filteronpopular {
	width: 20%;
	text-align: right;
}

.camp-list-icons svg {
	width: 20px;
	height: 20px;
}

.ratesdates>* {
	width: 50%;
}

.ratesdates .inner-title {
	text-align: left;
}

.custompagin {
	display: flex;
    width: 50%;
    flex-wrap: wrap;
    align-items: center;
    margin: -33px 0 20px;
    font-size: 14px;
    line-height: 20px;
    color: var(--black-color);
    font-weight: 400;
}

.custompagin>*,
.ratesdates>* .selectfeedback {
	width: auto;
}

.custompagin .form-select {
	margin: 0 10px;
    height: auto;
    padding: 4px 25px 4px 10px;
    font-size: 14px;
    background-position: 90%;
}

.page-item.previous a::before,
.page-item.first a::before,
.page-item.first a::after,
.page-item.next a::before,
.page-item.last a::before,
.page-item.last a::after {
	content: '';
    width: 5px;
    height: 5px;
    background: var(--white-color);
    transform: translateX(-50%) translateY(-50%) rotate(-130deg);
    border: 1.5px solid rgb(108 117 125);
    border-left: 0;
    border-bottom: 0;
    display: inline-block;
    margin: 6px 1px 0 0;
}

.page-item.next a::before,
.page-item.last a::before,
.page-item.last a::after {
	transform: translateX(20%) translateY(-50%) rotate(45deg);
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.first a,
div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.previous a,
div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.next a,
div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item.last a {
	font-size: 0;
	display: flex;
	align-items: center;
}


div.dataTables_wrapper div.dataTables_paginate ul.pagination .page-item {
	position: relative;
}

.page-item::before {
	width: 0;
	height: 0;
}

.page-item.previous::after {
	margin: 0 0 0 -18px;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
	align-items: center;
}

.evalutiontable {
    margin: 0 0 20px;
}

.contactdatasinner {
	margin: 0;
}

.ratesdates {
    padding: 20px 30px;
}

body .daterangepicker td.in-range {
    background-color: #fac858;
	color : var(--full-black);
}

body .daterangepicker .highlight-booked-date {
    background-color: #FF6F61 !important;
    color: white !important;
	text-decoration: none !important;
} 

body .daterangepicker td.active, 
body .daterangepicker td.active:hover {
    background-color: #f0c805;
	color : var(--full-black);
}

tfoot .paginationspace a {
    width: 18px;
    display: inline-block;
}

.ajax-loader {
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: 1111111;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00000042;
}

.popularcmpny+.sub-inner-title b {
    color: var(--black-color);
    font-weight: 500;
}

.reminders-list td,.reminders-list th {
    min-width: unset !important;
    max-width: unset;
    width: 50%;
    display: inline-flex;
    justify-content: flex-start;
}

.reminders-list tr {
    display: flex;
}

.reminders-list th:last-child ,
.reminders-list td:last-child {
    justify-content: flex-end;
}

.reminders-list [colspan="2"].color-yellow {
    justify-content: flex-start;
    width: 100%;
}

.admincreatenot svg {
    min-width: 30px;
}

.swal2-confirm.swal2-styled {
	background-color: var(--green-color) !important;
	box-shadow: unset !important;
	border: unset !important;
}

body form .btn-filter.financialsearch {
	width: auto;
	margin: 0 10px;
	padding: 0 10px !important;
}

.financialsearch svg {
	width: 17px;
}

body form .btn-filter.financialsearch svg path {
    fill: var(--white-color);
}

body form .dating-picker-section .btn,
body form .dating-picker-section .btn:hover,
body form .dating-picker-section .btn:active,
body form .dating-picker-section .btn:focus,
body form .dating-picker-section .btn:focus-visible {
    height: 45px;
	min-width: unset;
}

body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable,
body .select2-container--default .select2-results__option--selected{
    background-color: #111111 !important;
    color: var(--white-color);
}

body .select2-container--default.select2-container--focus {
    border: 1px solid #FAC858 !important;
    border-radius: 10px;
	min-height: 50px !important;
	height: 50px;
	box-shadow: 0px 0px 0px 4px #F0C8053D;
}

body .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 0;
    border-radius: 0;
    background: transparent;
	min-height: 50px !important;
	height: 50px;
}

body .select2-container--default .select2-selection--multiple .select2-selection__clear span {
    font-size: large;
    font-weight: bold;
}

body .select2-container--default .select2-selection--multiple {
    padding: 10px 20px;
	border-radius: 10px;
	min-height: 50px !important;
	height: 50px;
	overflow: unset !important;
}

body .select2-container--default .select2-search--inline .select2-search__field ,
body .select2-container .select2-search--inline .select2-search__field ,
body .select2-container .select2-selection__rendered{
	margin: 0;
    font-family: var(--body-font-family);
    font-size: 16px;
    min-height: unset !important;
}

body .select2-container--default .select2-selection--multiple .select2-selection__clear {
    right: 14px;
    top: 7px;
	margin: 0;
}

body .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin: 0 5px 5px 0;
}

body .select2-container .select2-search--inline .select2-search__field::placeholder {
	color: var(--body-font-color);
}

body .select2-container--default .select2-selection--multiple {
    padding-right: 45px;
}	

.select-wrapper .select2-container {
	width: 100% !important;
} 

.select-wrapper #profession {
    overflow: hidden;
}

.select-wrapper #profession option {
    height: 45px;
}

.text-up-input .custom-label {
    min-width: 115px;
}

.mysitebutton .page-title-right {
	display: inline-block;
}

.disabled-input, #company_logo {
    background-color: #D3D3D3 !important;
    cursor: not-allowed !important;
}

.commercial_regiter_border {
	border: 2px solid var(--green-color) !important;
}

.company_logo label.custom-label {
	background-color: #D3D3D3 !important;
}

.textclass label.custom-label {
    background-color: var(--white-color) !important;
}

.logmanagemain .search-forms {
    min-width: unset;
    width: auto;
}

.logmanagemain .search-forms .search-inputs,
.logmanagemain .search-forms .submit-search {
    height: 50px;
}

.adminfilter > .col-md-3 {
    width: 22.2%;
}

.errormsgcontainer {
	display: flex;
	justify-content: flex-start;
	position: absolute;
	right: 24px;
	top: 110px;
}

.errormsginner {
	max-width: 520px;
    background: var(--red-color);
    color: var(--white-color);
    text-align: center;
    border-radius: 25px;
    padding: 9px;
}

.errormsglink,
.errormsglink:hover,
.errormsglink:active,
.errormsglink:focus {
	color: var(--white-color);
}

.errorlist {
    box-shadow: 0px 0px 10px 0px #0000001A;
    padding: 20px;
    border-radius: 15px;
    margin: 10px 0 30px;
    max-height: 40vh;
    overflow: auto;
}

.errorlist li {
    background: #ffeaea;
    color: var(--red-color);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px dashed #de222247;
}

.errorlist li:not(:last-child) {
    margin: 0 0 10px;
}

.errorsmodal .modal-content {
    overflow: unset;
}

.hidestar .label-of-require::after {
    content: '';
}

.contact-hr {
    margin: 40px 0 0;
    border: 2px dashed #F0C805;
}

.temsconditions .tagcontact {
    display: inline-block;
    margin: 0 10px 0 0;
    background: #F0C805;
    color: var(--full-black);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 11px;
}

#campManageTable_wrapper table tr td span,
#campManageTable_wrapper table tr td {
    white-space: normal;
    word-break: break-word;
}

.ewallet {
	margin-left: auto !important;
}
.select2-selection__arrow {
    display: none !important;
}

.custom-label {
	padding-right: 37px !important;
}
.temsconditions-popup{
	box-shadow: none !important;
	padding: 0px 0px !important;
}
#termscontioninner_popup{
	display: block;
}

/* Apply black font color to all table data */
.labor-rate-detail .table td, .labor-rate-detail .table th {
	color: black;
}

.no-border-row td {
    border-top: none !important;
    border-bottom: none !important;
	color: black !important;
}

.open-subusers {
	text-decoration: underline;
    color: #007BFF; /* Choose your preferred color */
}

.open-subusers:hover {
	text-decoration: underline;
    color: #007BFF; /* Choose your preferred color */
}

.emirates-detail .custom-label {

    order: 1;

}
 
.emirates-detail {

    display: flex;

    flex-wrap: wrap;

}
 
.emirates-detail>select {

    order: 2;

}
 
.emirates-detail>.select2 {

    order: 3;

}
 
.emirates-detail>.custom-error {

    order: 4;

}

.pdf-preview-wrapper {
    position: relative;
}

.delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    z-index: 999;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: block;
}