/*
--------------------------------------
Global Style
--------------------------------------

Notes
- This file predates a design system; to reduce duplication we use a few CSS variables.
- Variables only mirror existing hard-coded values to keep visuals unchanged.
--------------------------------------*/

:root {
	/* Brand */
	--brand-green: #61ce70;
	--brand-green-hover: #52b563;

	/* Status */
	--success-green: #10b981;
	--danger-red: #dc3545;

	/* Neutrals */
	--text-dark: #171717;
	--text-link: #282933;
	--surface: #ffffff;
	--page-bg: #f5f5f5;
}

body {
	color: #8e8e8e;
	line-height: 30px;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
	margin: 0px;
	padding: 0px;
	background: var(--page-bg);
	width: 100%;
}

.swal2-container {
	padding: 0px;
}

a {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	outline: none;
	text-decoration: none;
	color: var(--text-link);
}

.footer-area a {
	color: #ffffff;
}

a:hover,
a:focus {
	outline: none;
	text-decoration: none;
}

p {
	margin-bottom: 8px;
}

p:last-child {
	margin-bottom: 0;
}

ul {
	margin: 0px;
	padding: 0px;
}

ul li {
	list-style: none;
}

strong,
b {
	font-weight: 700;
}

address {
	margin-bottom: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--text-dark);
}

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

html {
	scroll-behavior: smooth;
}

section {
	scroll-margin-top: 70px;
}

.muktonavbar {
	padding: 18px 0;
	font-weight: 600
}

.nav-item {
	padding: 0px 5px;
}

.navbar-nav .nav-link.active,
.navbar-nav .show>.nav-link {
	color: var(--brand-green);
}

.viewnavbar {
	padding: 30px 60px;
}

.userbutton {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50px;
	background: var(--brand-green);
	color: #fff;
}

button {
	border: none;
}



.btn-outline-primary {
	--bs-btn-color: var(--brand-green);
	--bs-btn-border-color: var(--brand-green);
	border: 1px solid var(--brand-green) !important;
}

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

.modal-content {
	padding: 20px;
}


/* --------------------------------------
	Additional Core Style
	-----------------------------------------*/
#preloader {
	position: fixed;
	z-index: 9999;
	background-color: #fff;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.preloader-logo {
	position: absolute;
	bottom: 20px;
}

.dots {
	width: 56px;
	height: 26.9px;
	margin: 30px auto;
	text-align: center;
	background: radial-gradient(circle closest-side, var(--brand-green) 90%, #0000) 0% 50%,
		radial-gradient(circle closest-side, var(--brand-green) 90%, #0000) 50% 50%,
		radial-gradient(circle closest-side, var(--brand-green) 90%, #0000) 100% 50%;
	background-size: calc(100%/3) 13.4px;
	background-repeat: no-repeat;
	animation: dots-7ar3yq 1s infinite linear;
}

@keyframes dots-7ar3yq {
	20% {
		background-position: 0% 0%, 50% 50%, 100% 50%;
	}

	40% {
		background-position: 0% 100%, 50% 0%, 100% 50%;
	}

	60% {
		background-position: 0% 50%, 50% 100%, 100% 0%;
	}

	80% {
		background-position: 0% 50%, 50% 50%, 100% 100%;
	}
}


/* Spinners (shared style, different placement) */
#dash_spinner,
#spinner {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 9px solid;
	border-color: #dbdcef;
	border-right-color: var(--brand-green);
	animation: spinner-d3wgkg 1s infinite linear;
}

#dash_spinner {
	margin: 20px auto;
	text-align: center;
}

@keyframes spinner-d3wgkg {
	to {
		transform: rotate(1turn);
	}
}

.btn-primary {
	background: var(--brand-green) !important;
}

.form-control:focus {
	border: 1px solid var(--brand-green);
	border-radius: 5px;
	outline: 0px !important;
	box-shadow: none !important;
	transition: all 0.15s ease-in-out;
}


.delete-now {
	background: red;
	padding: 8px 10px;
	color: #fff;
	border-radius: 8px;
}

.delete-now:hover {
	color: #ffffff;
	background: #282933;
}

/* --------------------------------------
	Menu Header Style
	-----------------------------------------*/
body.admin-bar .scrl {
	top: 32px;
}

.logo {
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
}

.container {
	max-width: 1400px;
}

.first:first-child {
	padding-left: 0;
	margin-left: 0;
}

.last:last-child {
	padding-right: 0;
	margin-right: 0;
}



.hide-md {
	display: block !important;
}

.show-md {
	display: none !important;
}

.show-sm {
	display: none !important;
}

.hide-xs {
	display: block !important;
}

.show-xs {
	display: none !important;
}

.divider {
	line-height: 0;
	font-size: 0;
}

.main-header {
	width: 100%;
	background: #fff;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px 0px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: position 10s;
	-ms-transition: position 10s;
	-o-transition: position 10s;
	transition: all 0.5s ease;
	z-index: 24;
}

.hdr-nav>ul>li {
	padding-top: 30px;
	padding-right: 5px;
	padding-bottom: 30px;
	padding-left: 5px;
}

/*.height-fix{
	height: 90px;
	}*/
/*.hdr-nav{
	text-align: right;
	}*/
.hdr-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.hdr-nav ul li a {
	text-decoration: none;
	font-size: 17px;
	color: #171717;
}

.hdr-nav ul li a:hover {
	color: #737373;
}

.hdr-nav ul li a:active {
	color: #3730a3;
}

.hdr-nav>ul>li {
	display: inline-block;
	position: relative;
}

.hdr-nav ul.sub-menu {
	opacity: 0;
	position: absolute;
	z-index: 0;
	background-color: #FFF;
	background-position: bottom right;
	background-clip: border-box;
	background-repeat: no-repeat;
	text-align: left;
	box-shadow: 0 0 3px rgb(0 0 0 / 15%);
	width: 250px;
	transition: all .3s;
	visibility: hidden;
	padding: 1px 0 0 0;
	border-top: 1px solid var(--brand-green);
}

.hdr-nav ul.sub-menu li a {
	padding-top: 14px;
	padding-right: 20px;
	padding-bottom: 14px;
	padding-left: 20px;
	position: relative;
	display: block;
	word-break: break-word;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	text-transform: capitalize;
	color: #777;
	transition: all .3s;
	border-bottom: 1px solid #eaeaea;
}

.hdr-nav ul.sub-menu li a:hover {
	background-color: #F9F9F9;
	color: #777;
}

.hdr-nav>ul>li>ul.sub-menu {
	top: 160%;
	left: 0;
}

.hdr-nav>ul>li a {
	display: flex;
	align-items: center;
	flex-direction: row;
	padding-right: 10px;
	padding-left: 10px;
	text-transform: capitalize;
	line-height: 30px;
	font-weight: 500;
}

.logo img {
	max-width: 100%;
}

.nav-row {
	align-items: center;
}

.hdr-nav>ul>li.menu-item-has-children>a {
	position: relative;
	padding-right: 15px;
}

.hdr-nav>ul>li.menu-item-has-children:hover>ul.sub-menu {
	opacity: 1;
	top: 100%;
	visibility: visible;
	z-index: 20;
}

.hdr-nav>ul>li.menu-item-has-children>a:after {
	content: "\f107";
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	color: rgba(82, 82, 82, .45);
	font-size: 13px;
}

.hdr-nav ul.sub-menu li.menu-item-has-children>a {
	position: relative;
	padding-right: 15px;
}

.hdr-nav ul.sub-menu li.menu-item-has-children {
	position: relative;
}

.hdr-nav ul.sub-menu li.menu-item-has-children ul.sub-menu {
	position: absolute;
	left: 110%;
	top: 0;
	width: 180px;
}

.hdr-nav ul.sub-menu li.menu-item-has-children>a:after {
	content: "\f105";
	font-family: 'FontAwesome';
	position: absolute;
	right: 15px;
	color: rgba(82, 82, 82, .45);
}

.hdr-nav ul.sub-menu li.menu-item-has-children:hover>ul.sub-menu {
	left: 100%;
	opacity: 1;
	z-index: 20;
	visibility: visible;
}

.active-mobile-menu {
	position: fixed;
	overflow: hidden;
	z-index: 25;
	background: rgba(0, 0, 0, .6);
	height: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
}

.mobile-menu {
	position: fixed;
	height: 100%;
	width: 300px;
	right: -300px;
	top: 0;
	bottom: 0;
	background: #fff;
	visibility: hidden;
	transition: -webkit-transform .25s ease;
	transition: transform .25s ease;
	transition: transform .25s ease, -webkit-transform .25s ease;
	-webkit-transform: translate3d(300px, 0, 0);
	transform: translate3d(300px, 0, 0);
}

.mobile-menu.active {
	transition: -webkit-transform .25s ease;
	transition: transform .25s ease;
	transition: transform .25s ease, -webkit-transform .25s ease;
	background: #fff;
	visibility: visible;
	z-index: 30;
	-webkit-transform: none;
	transform: none;
	right: 0;
}

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

.mobile-menu li a {
	display: flex;
	align-items: center;
	flex-direction: row;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
	min-height: 50px;
	border-bottom: 1px solid rgba(129, 129, 129, .2);
	color: #2d2a2a;
	text-transform: uppercase;
	letter-spacing: .2px;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.3;
	text-decoration: none;
}

.mobile-menu ul.sub-menu {
	/*opacity: 0;*/
	/*visibility: hidden;*/
	/* background-position: bottom right;
	background-clip: border-box;
	background-repeat: no-repeat;*/
	/*height: 0;*/
	display: none;
	border-left: 1px solid #ed1c2580;
	background: #f7f7f7;
}

/*.mobile-menu li.menu-item-has-children.active ul.sub-menu{
	opacity: 1;
	visibility: visible;
	height: auto;
	}*/
.mobile-menu ul li.menu-item-has-children {
	position: relative;
}

.mobile-menu ul li.menu-item-has-children>a {
	position: relative;
	z-index: 1;
}

.mobile-menu ul>li.menu-item-has-children {
	position: relative;
}

.mobile-menu ul>li.menu-item-has-children.active>a {
	background: #eff0f1;
}

.mobile-menu ul>li.menu-item-has-children .menu-expand-s:before {
	content: "\f105";
	font-family: 'FontAwesome';
	position: absolute;
	right: 20px;
	color: rgba(82, 82, 82, .45);
	z-index: 2;
	height: 50px;
	width: 50px;
	top: 0;
	bottom: 0;
	right: 0;
	text-align: center;
	line-height: 50px;
	border-left: 1px solid rgba(129, 129, 129, .2);
}

.mobile-menu ul>li.menu-item-has-children .menu-expand-s.active:before {
	content: "\f107";
	background: var(--brand-green);
	color: #fff;
}

.scrl .hdr-nav>ul>li {
	padding-top: 20px;
	padding-right: 5px;
	padding-bottom: 20px;
	padding-left: 5px;
}

.main-header.scrl {
	box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0;
	right: 0;
	animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
	0% {
		transform: translateY(-100px);
	}

	100% {
		transform: translateY(0px);
	}
}

.navbar-search-box {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.navbar-search-box #search {
	padding: 5px 20px;
	border-radius: 30px;
	border: 1px solid #d9d9d9;
	font-size: 16px;
	color: #6f6f6f;
}

.navbar-search-box .search-icon {
	position: absolute;
	left: 188px;
	top: 7px;
	color: var(--brand-green);
	font-size: 16px;
}

.navbar-search-box .cat-bar {
	padding: 5px 20px;
	font-size: 24px;
	color: var(--brand-green);
}

.main-header .button-frame {
	width: fit-content;
	border-width: 2px;
	padding: 8px 30px;
	border-radius: 50px;
}

/* Pill buttons (primary + outline variants) */
.global-btn,
.secendary-btn,
.btn-secondary {
	padding: 14px 20px;
	border-radius: 50px;
	font-weight: bold;
	min-width: 100px;
	text-align: center;
	cursor: pointer;
	line-height: 1 !important;
	font-size: 16px;
	margin: 0 5px;
}

.global-btn {
	background: var(--brand-green);
	color: #fff;
	border: none;
}

a.secendary-btn {
	color: var(--brand-green);
}

.global-btn:hover {
	background: var(--brand-green-hover);
	color: #fff;
}

[type="button"],
[type="submit"] {
	border: none;
}

.secendary-btn,
.btn-secondary {
	background: transparent;
	color: var(--brand-green);
	border: 2px solid var(--brand-green);
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
	line-height: 1;
}

/* --------------------------------------
	Page Not Found
	-----------------------------------------*/
.page-404 {
	margin: 150px 0;
}

.images-404 {
	text-align: center;
	margin-top: 20px;
}

.images-404 img {
	max-width: 500px;
	text-align: center;
}

.content-404 {
	text-align: center;
}

.page404_bt {
	margin: 30px auto;
}

.page404_bt .button-frame {
	padding: 12px 30px;
}

/* --------------------------------------
	Login & Register
	-----------------------------------------*/
.box,
.login,
.register {
	width: 100%;
	max-width: 500px;
	margin: auto;
	padding: 40px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
}

.login .register .btn-primary {
	padding: 10px 0;
}

.underline {
	border-bottom: 2px solid var(--brand-green);
	padding-bottom: 2px;
}

/* --------------------------------------
	Dashboard
	-----------------------------------------*/
.border-left {
	border-left: 2px solid var(--primary) !important;
}

.dashsidebar {
	padding: 20px 24px;
}

.dashtopNav {
	height: auto;
	background: rgb(255, 255, 255);
	padding: 10px 0;
	min-height: 50px;
}

.dashlogo {
	padding: 12px 24px;
}

.dashtab {
	padding: 10px 10px;
	border-radius: 10px;
	margin-bottom: 10px;
	color: #2a3547;
	cursor: pointer;
	display: block;
}

.dashtab:hover {
	background-color: #f1f5f9;
}

.dashtab.active {
	background-color: var(--brand-green);
	color: #fff;
}

.dashtab i {
	padding: 0 18px;
	font-size: 20px;
}

.sidebar {
	z-index: 999;
}

/* sidebar for small screens */
@media screen and (max-width: 767px) {
	.sidebar {
		max-width: 18rem;
		transform: translateX(-100%);
		transition: transform 0.4s ease-out;
	}

	.sidebar.active {
		transform: translateX(0);
		z-index: 99999999;
	}
}

.dashuser {
	right: 20px;
	position: absolute;
	border-radius: 36px;
	box-sizing: border-box;
	border: none;
	background: var(--brand-green);
	padding: 0px;
	color: #fff;
	width: 30px;
	height: 30px;
	margin: auto;
}

.dashmenu {
	color: var(--brand-green);
	left: 20px;
	position: absolute;
	font-size: 22px;
}

.dashboard-page {
	margin: 20px 60px;
}

.dashcontrol {
	background-color: #fff;
	border-radius: 8px;
	padding: 40px;
}

.side-dropmenu {
	background-color: #fdfdfd;
	border: 1px solid rgb(238, 238, 238);
	padding: 5px;
	border-radius: 10px;
	display: none;
}

.menu-group {
	border-left: 1px solid var(--brand-green);
}

.sidemain-menu {
	position: relative;
}

.sidearrowicon {
	position: absolute;
	right: 10px;
	top: 6px;
	color: #b9b9b9;
	padding: 10px;
	cursor: pointer;
}

/* ---------
	Display Grid Checklis
	------------------------------*/
.displaychecklist {
	border: 1px solid #eaeaea;
	padding: 24px;
	border-radius: 10px;
	position: relative;
	background: #fff;
}

.displaychecklist .secendary-btn {
	padding: 10px 20px;
	border-radius: 50px;
	background: transparent;
	color: #828181;
	border: 1px solid #e4e4e4;
	text-align: center;
}

.displaychecklist .secendary-btn:hover {
	color: var(--brand-green);
}

.ck-completed {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--brand-green);
	color: #fff;
	font-weight: bold;
	padding: 2px 20px;
	border-radius: 0 0 0px 24px;
	font-size: 14px;
}

.ck-unfinished {
	position: absolute;
	top: 0;
	right: 0;
	background: #eee;
	color: #f33;
	font-weight: bold;
	padding: 2px 20px;
	border-radius: 0 0 0px 24px;
	font-size: 14px;
}

/* --------------------------------------
	Inspections Checklist
	-----------------------------------------*/
.form-title {
	margin: 10px 0 40px 0;
	color: #424242;
	border-bottom: 1px dashed #c4c4c4;
	padding-bottom: 18px;
}

.form-subtitle {
	margin-bottom: 24px;
	color: #464646;
}

.form-block-area {
	background: #fff;
	padding: 24px;
	margin-top: 24px;
}

.questions-item {
	border: 1px solid #ced4da;
	border-radius: 5px;
	margin: 0 0px;
	position: relative;
}

.form-control {
	padding: 10px 20px;
	border-radius: 5px;
	border: 1px solid #ced4da;
	transition: all 0.15s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus {
	border: 1px solid var(--brand-green);
	border-radius: 5px;
	outline: 0px !important;
	box-shadow: none !important;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

/* Radio Input Styling */
.question_input {
	position: absolute;
	left: -9999px;
	/* Hide the default input element */
}

/* Label Styling */
.question__label {
	position: relative;
	display: block;
	line-height: 40px;
	border-radius: 5px;
	background-color: #fff;
	padding: 5px 0px 5px 48px;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

.question__label:hover {
	border-color: #DC3545;
}

/* Radio Button Custom Circle */
.question__label:before {
	position: absolute;
	top: 12px;
	left: 10px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: inset 0 0 0 1px #ced4da;
	content: "";
	transition: all 0.15s ease-in-out;
}

.question_input:checked+.question__label:before {
	background-color: var(--brand-green);
	box-shadow: none;
}

/* Radio Button Checkmark */
.question__label:after {
	position: absolute;
	content: "";
}

.question_input:checked+.question__label:after {
	top: 22px;
	left: 18px;
	width: 10px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

/* Hover Effect for Inputs */
input[type="radio"]:hover+.question__label {
	cursor: pointer;
}

/* Focus Effect */
input:focus {
	outline: none;
}

.area-border {
	border: 1px solid #ced4da;
	border-radius: 5px;
	padding: 10px 20px;
	margin-bottom: 10px;
	background: whitesmoke;
}

.progress-container {
	margin-bottom: 20px;
	text-align: center;
}

.progress-bar {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 33px auto;
	flex-direction: row;
	width: 900px;
	height: 100px;
}

.progress-step {
	width: 30px;
	height: 30px;
	border: 2px solid #ccc;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: white;
	font-size: 14px;
	font-weight: bold;
	margin: auto;
}

.progress-step.active {
	border-color: var(--brand-green);
	background-color: var(--brand-green);
	color: white;
}

.progress-step.completed::after {
	content: '✔';
	font-size: 16px;
	color: white;
	width: 30px;
	height: 30px;
	border: 2px solid #ccc;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--brand-green);
	font-weight: bold;
	position: absolute;
}

.progress-title {
	position: absolute;
	margin-top: 70px;
}

.progress-step.active .progress-title {
	color: rgb(255, 0, 0);
}

.progress-step.completed .progress-title {
	color: var(--brand-green);
}

.progress-step.active .active-indicator {
	display: inline-block;
}

.step {
	display: none;
}

.step.active {
	display: block;
}

.step-buttons {
	display: flex;
	justify-content: space-around;
	padding: 60px 0;
}

.hardware-area {
	background: #fff;
	padding: 50px 36px 40px 50px;
	position: relative;
	border-radius: 5px;
	margin-bottom: 30px;
}

.hardware-tools {
	font-size: 20px;
}

.hardware-title {
	position: absolute;
	background: var(--brand-green);
	width: fit-content;
	font-size: 15px;
	padding: 8px 28px;
	color: #fff;
	top: 0;
	left: 0;
	border-radius: 0 0 25px 0;
}

.hardware-sections {
	margin-top: 70px
}

.form-page-title {
	background: transparent;
	color: #646363;
	font-size: 18px;
	margin: 50px auto;
	padding: 12px 42px;
	border-radius: 40px;
	text-align: center;
	border: 2px solid var(--brand-green);
	width: fit-content;
	font-weight: bold;
	display: none;
}

.active-indicator {
	display: none;
	width: 10px;
	height: 10px;
	margin-right: 10px;
	background-color: #0fcc45;
	border-radius: 50%;
	position: relative;
}

span.blink {
	display: block;
	width: 10px;
	height: 10px;
	background-color: #0fcc45;
	opacity: 0.7;
	border-radius: 50%;
	animation: blink 1s linear infinite;
}

@keyframes blink {
	100% {
		transform: scale(2, 2);
		opacity: 0;
	}
}

.check-box-area {
	border: 1px solid #ced4da;
	padding: 0px 10px;
	margin: 24px 0;
	border-radius: 5px;
}

.check-box-area:hover {
	border: 1px solid var(--brand-green);
}

.preview-container {
	width: 180px;
	margin: 30px 12px;
	position: relative;
	display: inline-block;
	height: 130px;
}

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

.preview-container .delete-btn {
	width: 20px;
	height: 20px;
	background: red;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 12px;
	cursor: pointer;
	font-size: 12px;
	line-height: 1.8;
}

.preview-label {
	padding: 0 12px;
	max-width: 100%;
}

.preview-data {
	padding: 0 5px;
}

.checked-none {
	position: relative;
	margin-left: 20px;
	color: #e91818;
}

.checked-none::after {
	content: '\f06a';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	height: 22px;
	width: 22px;
	position: absolute;
	top: -2px;
	right: 103px;
	color: #797878;
	text-align: center;
	line-height: 22px;
	border-radius: 50%;
	font-size: 18px;
}

.checked-yes {
	position: relative;
	margin-left: 20px;
}

.checked-yes::after {
	background: var(--brand-green);
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	height: 20px;
	width: 20px;
	position: absolute;
	top: -1px;
	right: 34px;
	color: #fff;
	text-align: center;
	line-height: 20px;
	border-radius: 50%;
	font-size: 12px;
}

.checked-no {
	position: relative;
	margin-left: 20px;
}

.checked-no::after {
	background: #ff004c;
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	height: 20px;
	width: 20px;
	position: absolute;
	top: -1px;
	right: 34px;
	color: #fff;
	text-align: center;
	line-height: 20px;
	border-radius: 50%;
	font-size: 12px;
}

.itemview-area {
	border: 1px solid #eee;
	padding: 8px 14px;
	border-radius: 5px;
}

.itemview-area img {
	margin-bottom: 5px;
}

.form-stauts {
	position: relative;
}

.dashcontrol .ck-unfinished {
	background: #eee;
	color: #f00;
	font-weight: bold;
	padding: 2px 38px;
	border-radius: 0 0 24px 24px;
	font-size: 14px;
	position: absolute;
	top: 17px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: fit-content;
}

.dashcontrol .ck-completed {
	background: var(--brand-green);
	color: #fff;
	font-weight: bold;
	padding: 2px 38px;
	border-radius: 0 0 24px 24px;
	font-size: 14px;
	position: absolute;
	top: 17px;
	left: 50%;
	transform: translate(-50%, -50%);
	width: fit-content;
}

.view-form .form-block-area {
	padding: 44px 54px;
}

.hardware-atitle {
	background: var(--brand-green);
	width: fit-content;
	font-size: 15px;
	padding: 8px 28px;
	color: #fff;
	border-radius: 0 0px 30px 0;
	margin-right: 20px;
}

.workflow_view {
	display: flex;
	border-bottom: 1px dashed #d9d9d9;
	padding: 8px 0;
}

.info_header {
	width: 220px;
	text-align: right;
	padding: 0 10px 0 0;
	font-weight: bold;
}

.info_content {
	width: 100%;
	padding: 0 5px;
}


/* --------------------------------------
   Inbox Style (merged + cleaned)
   --------------------------------------*/
.inbox-main-wrapper {
	width: 100%;
	height: 100vh !important;
}

.inbox {
	height: 100%;
}

/* Chat Section */
.chat-card {
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	height: calc(100vh - 120px);
	display: flex;
	flex-direction: column;
	background: #fff;
}

.chat-header {
	padding: 20px;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
}

/* Avatar (single authoritative size) */
/* NOTE: I normalized to 40px (between your 35 and 45). Change if you want 35 or 45. */
.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--brand-green);
	padding: 2px;
}

/* Chat body */
.chat-body {
	flex-grow: 1;
	padding: 20px;
	overflow-y: auto;
	background-color: #fff;
}

/* Messages - single canonical row */
.message-row {
	margin: 20px 0;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	/* avatars align to top of bubble; change to flex-end if you prefer baseline alignment */
}

/* Incoming / outgoing row alignment */
.msg-incoming {
	justify-content: flex-start;
}

.msg-outgoing {
	justify-content: flex-end;
}

/* Bubble base styles */
.bubble {
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
	line-height: 1.4;
	font-size: 14px;
	color: #333;
	width: fit-content;
	max-width: 75%;
}

/* Incoming bubble specifics */
.msg-incoming .bubble {
	background-color: var(--chat-bubble-gray, #f5f5f5);
	color: #333;
	border-radius: 0 12px 12px 12px;
	font-size: 0.95rem;
	margin-left: 10px;
}

/* Outgoing bubble specifics */
.msg-outgoing .bubble {
	background: #f3f6ff;
	/* outgoing color */
	border: 1px solid #eee;
	color: #555;
	border-radius: 12px 0 12px 12px;
	padding: 15px;
	font-size: 0.95rem;
	max-width: 80%;
	text-align: left;
	float: right;
}

/* File Attachment Bubble */
.file-bubble {
	border-radius: 12px;
	padding: 10px 15px;
	background: #f3f6ff;
	border: 1px solid #eee;
}

.file-icon-circle {
	color: white;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	text-align: center;
	margin: auto;
}

/* Chat Footer */
.chat-footer {
	padding: 15px 20px;
	border-top: 1px solid #f0f0f0;
	position: relative;
}

.quick-reply-chip {
	position: absolute;
	top: -35px;
	right: 20px;
	background: white;
	border: 1px solid #ddd;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.input-box {
	border-radius: 30px;
	padding-left: 20px;
	border: 1px solid #ccc;
}

.btn-send {
	background-color: var(--brand-green);
	color: white;
	border: none;
	border-radius: 12px;
	width: 50px;
	height: 45px;
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.attach-google {
	background-color: #ffffff;
	color: #333;
	border-radius: 12px;
	width: 50px;
	height: 45px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	border: 1px solid #e0e0e0;

}

.attach-local {
	background-color: #ffffff;
	color: #333;
	border-radius: 12px;
	width: 50px;
	height: 45px;
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e0e0e0;
}

.btn-send:hover {
	background-color: #52c575;
	color: white;
}

.inbox-sidebar {
	padding: 30px;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	height: calc(100vh - 120px);
}

#jobListContainer {
	flex: 1;
	overflow-y: auto;
	border-top: 1px solid #e0e0e0;
	padding-top: 15px;
}

.unred-message {
	position: absolute;
	bottom: 3px;
	right: 0px;
}

.unred-message .badge {
	color: #ff0a66;
	border-radius: 12px;
	font-size: 14px;
}

.file-scoll-content {
	flex: 1;
	overflow-y: auto;
	border-top: 1px solid #e0e0e0;
	padding-top: 15px;
}

/* Sidebar */
.sidebar-card {
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	background: #fff;
	margin-bottom: 20px;
}

.design-phase-box {
	background-color: #f5f5f5;
	border: 1px dashed #ddd;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 20px;
}

.phase-icon {
	color: var(--brand-green);
	font-size: 1.5rem;
}

.delivery-time {
	font-size: 1.2rem;
	color: #666;
	font-weight: bold;
}

/* Attachment List */
.attachment-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 10px;
	margin-bottom: 12px;
	transition: 0.2s;
}

.attachment-item:hover {
	border-color: var(--brand-green);
}

.att-details h6 {
	font-size: 0.95rem;
	margin: 0;
	color: #444;
}

.att-details span {
	font-size: 0.75rem;
	color: #999;
}

.download-btn {
	background-color: #ffffff;
	color: #6c757d;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	margin-left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	border: 1px solid #e0e0e0;
}

.filepreview {
	width: 200px;
	border-radius: 8px;
}

.msgimgpreview {
	width: 100%;
	border-radius: 8px;
	height: 150px;
	object-fit: cover;
}

.download-btn:hover {
	background: var(--brand-green);
	border-color: var(--brand-green);
	color: #ffffff;
}

/* Download link container for absolute positioning */
.download-link {
	z-index: 10;
	position: absolute;
	right: 24px;
	top: 18px;
}

/* Utility */

/* kept variable approach - no !important */
.fw-500 {
	font-weight: 500;
}

.text-xs {
	font-size: 0.75rem;
}

/* Meta line (timestamp + ticks) */
.meta-line {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 12px;
	color: #6b7280;
	margin-top: 6px;
	justify-content: flex-end;
}

.meta-time {
	color: #374151;
	font-size: 12px;
}

.meta-tick {
	color: #6b7280;
	font-weight: 600;
	font-size: 12px;
}

/* seen state */
.meta-tick.seen {
	color: var(--success-green);
}

.msg-status-sending {
	color: #9ca3af;
	font-size: 12px;
}

.bubble-wrap {
	width: 100%;
}

.text-green {
	/* Prefer this class for success/seen states (keeps existing behavior) */
	color: var(--success-green) !important;
}

.chat-footer textarea {
	resize: none;
	width: 100% !important;
	font-size: 14px;

}

/* upload UI */
.google_drive_upload,
.local_drive_upload {
	background: #f7f7f7;
	border: 1px solid #ececec;
	padding: 20px 50px 0 50px;
	position: absolute;
	width: 100%;
	bottom: 80px;
	left: 0;
	color: #6c757d;
	cursor: pointer;
	z-index: 11;
}

.google_drive_upload .close-icon,
.local_drive_upload .close-icon {
	border: 2px dashed #e6e6e6;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	background: #fff;
	width: 80%;
	margin: auto;
}

.dropzone {
	border: 2px dashed #e6e6e6;
	padding: 30px 20px;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	background: #fff;
	color: var(--text-dark);
	transition: background-color 0.3s ease;
}

.dropzone input[type="file"] {
	width: fit-content;
	background: #fff;
	padding: 10px 20px;
	border-radius: 6px;
	border: 1px solid var(--brand-green);
	margin: 15px auto;
}

.dropzone.dragover {
	border-color: #4a90e2;
	background: rgba(74, 144, 226, 0.03);
}

.upload-preview-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.preview-item {
	width: 120px;
	border: 1px solid #f0f0f0;
	border-radius: 6px;
	padding: 8px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	background: white;
	margin-bottom: 14px;
}

.preview-thumb {
	width: 100px;
	height: 70px;
	object-fit: cover;
	border-radius: 4px;
	background: #fafafa;
	display: block;
}

.preview-name {
	font-size: 12px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

.preview-remove {
	background: #dc3545;
	color: #fff;
	line-height: 1;
	border-radius: 20px;
	font-size: 14px;
	right: 10px;
	top: 10px;
	position: absolute;
}

.upload-progress-wrap {
	margin-top: 12px;
	display: none;
}

.upload-progress {
	height: 12px;
	background: #eee;
	border-radius: 999px;
	overflow: hidden;
}

.upload-progress .bar {
	height: 100%;
	width: 0%;
	transition: width .16s linear;
	background: #4caf50;
	text-align: center;
	color: #fff;
	font-size: 11px;
	line-height: 12px;
}

.file-bubble.file-image {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.file-bubble.file-image .img-preview {
	width: 96px;
	height: 64px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.file-bubble.file-image .file-info {
	flex: 1;
	min-width: 0;
	/* allow text truncation */
}

.file-bubble.file-image .download-btn {
	margin-left: 8px;
	color: #666;
}

.attachment-size {
	font-size: 12px;
	margin-left: 10px;
}

.attachment-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100px;
}

.gsi-material-button {
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	appearance: none;
	-webkit-appearance: none;
	background-color: WHITE;
	background-image: none;
	border: 1px solid #747775;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #1f1f1f;
	cursor: pointer;
	font-family: 'Roboto', arial, sans-serif;
	font-size: 14px;
	height: 40px;
	letter-spacing: 0.25px;
	outline: none;
	overflow: hidden;
	padding: 0 12px;
	position: relative;
	text-align: center;
	-webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
	transition: background-color .218s, border-color .218s, box-shadow .218s;
	vertical-align: middle;
	white-space: nowrap;
	width: auto;
	max-width: 400px;
	min-width: min-content;
}

.gsi-material-button .gsi-material-button-icon {
	height: 20px;
	margin-right: 12px;
	min-width: 20px;
	width: 20px;
}

.gsi-material-button .gsi-material-button-content-wrapper {
	-webkit-align-items: center;
	align-items: center;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	height: 100%;
	justify-content: space-between;
	position: relative;
	width: 100%;
}

.gsi-material-button .gsi-material-button-contents {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	font-family: 'Roboto', arial, sans-serif;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
}

.gsi-material-button .gsi-material-button-state {
	-webkit-transition: opacity .218s;
	transition: opacity .218s;
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.gsi-material-button:disabled {
	cursor: default;
	background-color: #ffffff61;
	border-color: #1f1f1f1f;
}

.gsi-material-button:disabled .gsi-material-button-contents {
	opacity: 38%;
}

.gsi-material-button:disabled .gsi-material-button-icon {
	opacity: 38%;
}

.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
	background-color: #303030;
	opacity: 12%;
}

.gsi-material-button:not(:disabled):hover {
	-webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
	box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
	background-color: #303030;
	opacity: 8%;
}

.recent-attachment {
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	padding: 10px;
	margin: 14px auto;
}

.msg-actions {
	position: absolute;
	left: -40px;
	top: 20px;
}

.job-item {
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	padding: 22px;
	margin: 14px auto;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.job-item .text-muted {
	font-size: 14px;
	line-height: 24px;
	border-bottom: 1px dashed #e1e1e1;
	padding: 4px 0;
}

.job-status {
	position: absolute;
	top: 0;
	right: 0;
	background: #fff;
	padding: 0px 12px;
	border-radius: 0 0 0 12px;
	text-align: center;
	text-transform: capitalize;
	border: 1px solid;
	font-size: 14px;
}

.job-item:hover {
	background: #f5f5f5;
}

.jobListContainer {
	max-height: 400px;
	overflow-y: auto;
}

.kanban-column-card {
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 20px;
}

.leads-kanban .container {
	max-width: 1600px;
}

.kanban-card {
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	padding: 12px;
	background: #fff;
	color: #2a3547;
	cursor: pointer;
}

.kanban-header {
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 20px;
	background: #fff;
	color: #2a3547;
	font-weight: 700;
}

.kanban-header .col-count {
	background: var(--brand-green);
	padding: 4px 10px;
	color: #fff;
	border-radius: 24px
}

.kanban-item-title,
.djobs-item-title {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
}

.kanban-item-desc,
.djobs-item-desc {
	font-size: 12px;
	padding-bottom: 1px;
	border-bottom: 1px dashed #e1e1e1;
	line-height: 20px;
}

.kanban-item-desc i {
	margin-right: 5px;
}

.kanban-card .card-body a:hover {
	background: #e7e7e7;
	cursor: pointer;
}

.kanban-column {
	max-height: 80vh;
	overflow-y: auto;
}

.djoblists {
	width: 700px;
	height: 80vh;
	overflow-y: auto;
	margin: auto;
	padding: 20px;
}

.djobitem {
	margin: 10px 0;
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	padding: 23px;
	background: #fff;
	display: flex;
	position: relative;

}

.djobs-title {
	font-size: 16px;
	font-weight: 600;
}

.form-container {
	margin: 20px auto;
	padding: 30px;
	background: #fff;
	border-radius: 8px;
	max-width: 800px;
}

.submit-btn-add {
	padding: 6px 20px;
	border-radius: 50px;
	background: var(--brand-green);
	color: #fff;
	width: fit-content;
	text-align: center;
	font-size: 16px;
}

.add-new-project input[type="file"] {
	background: #fff;
	padding: 10px 0px 10px 18px;
	border-radius: 8px;
	border: 1px solid var(--brand-green);
	margin: 12px auto;
	font-size: 14px;
	width: fit-content;
}

.add-new-project .dropzone {
	padding: 30px 0;
}

.three-dots {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #999;
	padding: 5px 10px;
}

.three-dots:hover {
	background: transparent !important;
}

.three-dots-item {
	font-size: small;
	padding: 12px;
	line-height: 0;
}

.three-dots-item:hover {
	background: transparent !important;
}

.view-brief {
	position: absolute;
	right: 10px;
	top: 10px;
	border: 1px solid var(--brand-green);
	padding: 12px 10px;
	line-height: 0;
	font-size: 14px;
	border-radius: 5px;
}

.design-brief-content {
	width: 70%;
	margin: auto;
	background: #fff;
	padding: 30px;
	border-radius: 5px;
}

.recent-attachment .fw-medium {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 80%;
}

.upload-icon {
	font-size: 48px;
	color: var(--brand-green);
	margin-bottom: 12px;
}

.upload-icon img {
	width: 80px;
}


/* --------------------------------------
	Sign Off Form 
	-----------------------------------------*/
.poponlylogo {
	position: absolute;
	top: 40px;
	left: 40px;
}

.get_info {
	background: #f5f5f5;
	height: 100vh;
}

.signoffpage {
	opacity: 1;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 300ms;
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.get_info_field {
	width: 600px;
	margin: auto;
	padding: 40px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
}

.signoff-content-area {
	background: #ffffff;
	padding: 30px 50px;
	max-width: 980px;
	margin: 30px auto;
}

.signoff-title {
	font-size: 20px;
	margin-bottom: 10px;
	color: #0da2e1;
	font-weight: 600;
}

.signoff-subtitle {
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 600;
}

.signoff-paratitle {
	font-size: 18px;
	margin-top: 6px;
	color: #0da2e1;
	font-weight: 600;
	margin-bottom: 2px;
}

.signoff-input-area {
	display: flex;
	align-items: end;
	margin: 8px 0;
}

.formlabel-sign {
	width: auto;
	padding-right: 10px;
}

#client_draw_sign_bt {
	background: var(--brand-green);
	color: #fff;
	padding: 8px;
	cursor: pointer;
	margin: 0 10px;
	border-radius: 5px;
}

#signature-pad {
	border: 2px dashed #ced4da;
	border-radius: 5px;
	width: 100%;
	height: 200px;
	cursor: crosshair;
}

.sign-pad-area {
	margin-top: 20px;
}

#client_signature_preview img {
	max-width: 200px;
	max-height: 42px;
}

.frominput-sign {
	max-width: 100%;
}

.sign-off-gird {
	display: flex;
	width: 100%;
	justify-content: space-between;
	margin: 0 0 12px 0;
}

.singoff-grid-item {
	width: fit-content;
}

.dashed-separator {
	border: 1px dashed #ac9898;
	margin: 40px auto;
}

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

.signoffpage .form-control {
	width: 100%;
	border-top: none;
	border-right: none;
	border-left: none;
	border-radius: 0px;
	padding: 5px 18px;
	margin-bottom: 8px;
	background: transparent;
	border-bottom: 1px solid #ddd;
}

.signoffpage .check-box-area {
	border: none;
	padding: 0px 0;
	margin: 2px 0;
	border-radius: 0;
	font-size: 16px;
}

.signoffpage .check-box-area:hover {
	border: none;
	color: var(--brand-green);
}

.signoffpage .col-form-label {
	line-height: 20px;
	font-size: 18px;
	color: #0da2e1;
	padding: 0 0 6px 0;
}

.signoffpage input[type="text"]:focus,
.signoffpage input[type="email"]:focus {
	border-bottom: 1px solid var(--brand-green);
	border-top: none;
	border-right: none;
	border-left: none;
	border-radius: 0px;
}

.checked-item {
	list-style-type: none;
	position: relative;
	padding-left: 24px;
	margin: 0 0;
	font-size: 16px;
}

.checked-item::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 3px;
	top: 6px;
	color: #fff;
	width: 15px;
	height: 15px;
	text-align: center;
	border-radius: 23px;
	font-size: 8px;
	line-height: 15px;
	background: #0da2e1;
}

.signoffpage .question__label::before {
	position: absolute;
	top: 14px;
	left: 12px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: inset 0 0 0 1px #ced4da;
	content: "";
	transition: all 0.15s ease-in-out;
}

.signoffpage .question__label {
	position: relative;
	display: block;
	line-height: 26px;
	border-radius: 5px;
	background-color: #fff;
	padding: 12px 0px 5px 48px;
	cursor: pointer;
	transition: all 0.15s ease-in-out;
}

.checked-bullet {
	list-style-type: none;
	position: relative;
	padding-left: 19px;
	margin: 4px 0;
}

.checked-bullet::before {
	content: '\f111';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: 8px;
	top: 5px;
	color: #959393;
	width: 5px;
	height: 5px;
	text-align: center;
	border-radius: 23px;
	font-size: 5px;
	line-height: 20px;
}

.signoff_ack_list {
	margin-left: 10px;
	margin-top: 2px;
}

.signoff_ack_list .signoff-paratitle {
	color: #5e6364;
}

.empty-field {
	border: 1px solid rgb(255, 0, 0);
	/* Example style for the empty field */
}

/* Red border applied when no radio button is selected */
.questions-item.empty-field {
	border: 1px solid red;
}

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

.view_signoff {
	padding: 5px 0;
}

.client_signature_view {
	width: 100px;
	margin-left: 14px;
}

.agreed-checkbox {
	position: relative;
	margin-left: 34px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.agreed-checkbox::after {
	content: '\f00c';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	left: -23px;
	top: 6px;
	color: #fff;
	width: 18px;
	height: 18px;
	text-align: center;
	border-radius: 23px;
	font-size: 8px;
	line-height: 18px;
	background: var(--brand-green);
}

.signoff_print {
	width: 100%;
	padding: 0;
	margin: 0;
}

/* --------------------------------------
	Footer style
	-----------------------------------------*/
.footer-area {
	padding: 100px 0;
	background: #222;
	color: #fff;
}

.footer-bottom {
	padding: 18px 0;
	text-align: center;
	background-color: #222;
}

.copyright-text {
	color: #ffffff;
}