:root {
	--bs-white: #ffffff;
	/* --bs-primary: #124463; */
	--bs-primary: #000;
}
/*top hero section start*/
.hero-split {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	max-height: 600px;
	overflow: hidden;
	position: relative;
}

/* Left side image */
.hero-split__image {
	flex: 1;
	min-height: 600px; /* ensure height in desktop */
}
.hero-split__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
	object-position: center;
	display: block;
}

/* Right side content */
.hero-split__content {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px;
	color: #000000;
	background: #fff; /* added background so text never overlaps image */
	z-index: 2;
	position: relative;
}
.hero-split__inner {
	text-align: left;
}
.hero-split__inner h1 {
	font-size: 2.4rem;
	margin-bottom: 20px;
}
.hero-split__inner p {
	font-size: 1.1rem;
	line-height: 1.5;
	margin-bottom: 25px;
}
.hero-split__btn {
	display: inline-block;
	padding: 14px 30px;
	background: #fff;
	color: #a2bf33;
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: 2px solid #a2bf33;
	/* background: linear-gradient(180deg, #a2bf33 0%, #c8e066 100%); */
}
.hero-split__btn:hover {
	color: #fff;
	/* background: #124463; */
	background: linear-gradient(180deg, #a2bf33 0%, #c8e066 100%);
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
	.hero-split {
		flex-direction: column;
		max-height: unset; /* remove fixed height */
	}

	.hero-split__image {
		/* min-height: 250px; give fixed safe height for mobile */
		min-height: unset;
		max-height: 300px;
	}

	.hero-split__image img {
		clip-path: none; /* remove slant */
		object-position: center;
	}

	.hero-split__content {
		padding: 30px 20px;
		text-align: center;
		background: #fff; /* ensure white background always */
	}

	.hero-split__inner h1 {
		font-size: 1.8rem;
	}

	.hero-split__inner p {
		font-size: 1rem;
	}
}

/*top hero section end*/

/*booking form start*/
#loading {
	display: none;
	margin: auto;
	width: 40px;
	height: 40px;
	border: 5px solid #fff;
	border-radius: 50%;
	border-top: 5px solid #124463;
	width: 40px;
	height: 40px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*collapsible start*/
.collapsible-legend {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
	padding: 0.25rem 0;
}

.collapsible-legend .chev {
	transition: transform 0.2s ease;
}

.collapsible-legend[aria-expanded="true"] .chev {
	transform: rotate(180deg);
}
/*collapsible end*/

/* .form-section {
	background-color: #f4f7f6;
} */
.form-section h2 {
	text-align: center;
	/* color: var(--bs-primary); */
	color: #000;
}

.form-section h3,
.form-section h4,
.form-section h5,
.form-section strong {
	color: var(--bs-primary);
}

.additional-services {
	display: flex;
	justify-content: space-between;
}

.additional-services .form-check {
	flex: 1;
	margin-right: 10px;
}

.additional-services .form-check:last-child {
	margin-right: 0;
}

.additional-services .form-check label {
	font-size: 17px;
}

.additional-services .form-check .checkbox-wrapper-41 {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 700px) {
	.additional-services {
		display: block;
	}
}

.newstylecard {
	background-color: #faf9f6;
	padding: 20px;
	border-radius: 5px;
	/* Rounded corners */
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.extraservice .card:hover {
	background-color: #f5f5f5;
	border: 1px solid #124463;
	cursor: pointer;
}

.extraservice .card.selected {
	/* background-color: #dbe9f4; */
	background-color: #124463;
	color: white;
	/* Light blue background for selected card */
	border: 2px solid #124463;
	/* Highlight border for selected card */
}

.extraservice .card.selected svg path {
	/* fill: white; */

	stroke: white;
}

.extraservice .carptecard.selected svg path {
	fill: white;
	/* color: white; */
	/* stroke: black; */
	stroke: none;
}

fieldset {
	border: none;
	margin-bottom: 20px;
	margin-top: 30px;
}
@media screen and (max-width: 700px) {
	fieldset {
		margin-bottom: 10px;
	}
}
legend {
	font-size: 18px;
	/* color: #124463; */
	/* font-weight: bold; */
	margin-bottom: 15px;
	/* border-bottom: 1.5px solid #124463; */
	/* padding-bottom: 5px; */
}
.form-group {
	margin-bottom: 15px;
}
label {
	/* display: block; */
	/* margin-bottom: 8px; */
	font-size: 15px;

	/* font-weight: 500; */
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: 10px;
	/* border: 1px solid #ddd !important; */
	border: none;
	border-radius: 5px;
	/* margin-bottom: 15px; */
	font-size: 15px;
	background-color: #eaffea;
}

.language-checklist .form-check {
	margin-bottom: 5px;
	padding-left: 1.5rem;
	display: flex;
	align-items: center;
}

.language-checklist .form-check label {
	display: inline-block;
	font-size: 18px;
	margin-bottom: 0;
}

.language-checklist .form-check input {
	margin-right: 8px;
}
.phone-group {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.phone-group input[type="number"] {
	margin-bottom: 0px;
}
.quick-contact-content h3 {
	font-size: 1rem;
}
.quick-contact-btn {
	font-size: 0.8rem;
	padding: 0.5rem 1rem;
}

.checkbox-row {
	display: flex;
	justify-content: space-evenly; /* left + right align */
	align-items: center;
	gap: 20px; /* space between if needed */
	margin-top: 20px;
	margin-bottom: 20px;
}

.mycheckboxnew {
	display: flex;
	align-items: center;
	margin: 0; /* reset extra margins */
	margin-bottom: 15px;
}

.mycheckboxnew label {
	margin: 0;
}
@media screen and (max-width: 600px) {
	.checkbox-row {
		display: block;
	}
}
.language-checklist {
	display: flex;
	gap: 70px;
	align-items: flex-start; /* was: center  ✅ keep items top-aligned */
	justify-content: center;
}
.other-language {
	display: flex;
	flex-direction: column;
}
@media screen and (max-width: 600px) {
	.language-checklist {
		display: block;
		margin-left: 20px;
	}
}
.form-check-input {
	margin: 0px;
}

/* ✅ Mobile responsive tweak */
@media (max-width: 768px) {
	.phone-group {
		flex-direction: column; /* stack vertically */
		align-items: stretch; /* full width */
	}

	.phone-group select,
	.phone-group input,
	.mycheckboxnew {
		width: 100%;
	}

	.mycheckboxnew {
		margin-top: 8px;
		justify-content: flex-start;
	}
}

.cleaning-info {
	margin-top: 5px;
	font-size: 17px;
}

.property-type-items .form-check {
	margin-bottom: 5px;
	padding-left: 1.5rem;
	display: flex;
	align-items: center;
}

.property-type-items .form-check label {
	display: inline-block;
	font-size: 18px;
	margin-bottom: 0;
}

.property-type-items .form-check input {
	margin-right: 8px;
}

/* Floor Card Styles */
.floor-card {
	display: block;
	border: 2px solid #ccc;
	border-radius: 10px;
	text-align: center;
	padding: 4px;
	cursor: pointer;
	background: #fff;
	font-weight: 500;
	font-size: 12px;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Hide radios */
.floor-card input[type="radio"] {
	display: none;
}

/* Default label style inside card */
.floor-label {
	display: block;
	width: 100%;
	/* color: #124463; */
	transition: all 0.3s ease-in-out;
}

/* Selected Card */
.floor-card input[type="radio"]:checked ~ .floor-label {
	background: #a2bf33;
	color: #fff;
	border-radius: 8px;
	padding: 5px;
	font-weight: 500;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.floor-card:hover {
	border-color: #c8e066;
	transform: translateY(-2px);
}

/* Responsive Grid */
.floor-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.floor-row .col-card {
	flex: 1 1 calc(20% - 15px); /* 5 per row desktop */
	max-width: calc(20% - 15px);
}

@media (max-width: 768px) {
	.floor-row .col-card {
		max-width: calc(20% - 0px);
	}

	.floor-row {
		gap: 3px;
	}
	.floor-label {
		font-size: 10px;
	}
	.floor-card {
		padding: 3px;
	}
}

/*residential and regular cleaning start*/
.cleaning-type-card {
	display: block;
	border: 2px solid #ccc;
	border-radius: 10px;
	text-align: center;
	padding: 4px;
	cursor: pointer;
	background: #fff;
	font-weight: 400;
	font-size: 12px;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Hide radios */
.cleaning-type-card input[type="radio"] {
	display: none;
}

/* Default label style inside card */
.cleaning-type-label {
	display: block;
	width: 100%;

	transition: all 0.3s ease-in-out;
}

/* Selected Card */
.cleaning-type-card input[type="radio"]:checked ~ .cleaning-type-label {
	background: #a2bf33;
	color: #fff;
	border-radius: 8px;
	padding: 5px;
	font-weight: 500;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.cleaning-type-card:hover {
	border-color: #c8e066;
	transform: translateY(-2px);
}

/* Responsive Grid */
.cleaning-type-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.cleaning-type-row .col-card {
	flex: 1 1 calc(20% - 15px); /* 5 per row on desktop */
	max-width: calc(20% - 15px);
}

@media (max-width: 768px) {
	.cleaning-type-row .col-card {
		max-width: calc(20% - 0px);
	}
	.cleaning-type-label {
		font-size: 10px;
	}
	.cleaning-type-card {
		padding: 3px;
	}
	/* .cleaning-type-card input[type="radio"]:checked ~ .cleaning-type-label {
		padding: 7px;
	} */
	.cleaning-type-row {
		gap: 3px;
	}

	.deep_services_label {
		font-size: 15px;
	}
}

/*residential and regular cleaning end*/
.deep-services-card {
	border: 1px dashed #c8e066;
	padding: 4px 6px;
}

.deep-services-col {
	padding-right: 4px;
	padding-left: 4px;
}

.kitchen_customize_cleaning,
.customize_bathroom_cleaning {
	background: #eaffea !important;
	font-size: 14px !important;
	max-height: 80px !important;
}

/*booking form end*/

#home-form {
	width: 40%;
	margin: 0 auto;
}
@media (max-width: 1200px) {
	#home-form {
		width: 55%;
	}
	.step-progress {
		width: 75% !important;
	}
}
/* .step-progress {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px auto;
	position: relative;
	width: 58%;
}

.step-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #d9d9d9; 
	color: #fff;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 60px;
	text-align: center;
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

.step-active {
	background-color: #a2bf33; 
	box-shadow: 0 0 10px rgba(26, 167, 255, 0.5);
}

.step-line {
	flex: 1;
	height: 3px;
	background-color: #d9d9d9;
	position: relative;
	top: 0;
	z-index: 1;
	margin: 0 0px;
}

.step-active + .step-line {
	background-color: #a2bf33;
}


.step-circle:hover {
	transform: scale(1.05);
} */

.step-progress {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
	margin: 60px auto;
	position: relative;
}

/* circles */
.step-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #d9d9d9;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 28px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: all 0.3s ease;
}
.step-circle.active {
	background: #c8e066;
}

/* connector lines */
.step-line {
	position: relative;
	flex: 1;
	height: 3px;
	background: #d9d9d9;
	overflow: hidden;
}
.step-line-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background: #c8e066;
	width: 0%;
	transition: width 0.4s ease;
}

/* optional hover */
.step-circle:hover {
	transform: scale(1.05);
}

.form-step {
	opacity: 0;
	transform: translateX(40px);
	pointer-events: none;
	transition: all 0.5s ease;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.form-step-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
	position: relative;
	animation: fadeSlideIn 0.5s ease forwards;
}

/* Smooth fade-slide keyframes */
@keyframes fadeSlideIn {
	0% {
		opacity: 0;
		transform: translateX(40px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Optional: slide out animation for smoother next-step feeling */
@keyframes fadeSlideOut {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(-40px);
	}
}

/* Use this wrapper to apply flex layout safely */
/* .form-step-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	position: relative;
} */
.form-step-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.phone-group {
	align-items: normal !important;
}

.select2-container--default .select2-selection--single {
	background-color: #eaffea !important;
}

.newphonegroup {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}
.select2-container--default .select2-selection--single {
	border: none !important;
}
.select2-search__field {
	background-color: #eaffea !important;
	border-radius: 5px !important;
	border: none !important;
}

.select2-search__field::placeholder {
	font-size: 14px; /* Change this as you like */
	color: #a2bf33 !important;
	font-weight: 500; /* Optional: make it slightly bolder */
}
.select2-results__option--highlighted {
	background-color: #a2bf33 !important;
}
.select2-dropdown {
	border: 2px dashed #a2bf33 !important;
}

.form-next-btn {
	display: inline-block;
	/* background: linear-gradient(90deg, #a2bf33, #c8e066); */
	background: linear-gradient(180deg, #a2bf33 0%, #c8e066 100%);

	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	padding: 14px 26px;
	border-radius: 6px;
	transition: opacity 0.3s ease;
	border: none;
	width: 100%;
}

/* .zuri-beforeafter-btn:hover {
  opacity: 0.9;
} */

.form-next-btn:hover {
	background: none !important; /* clears gradient */
	background-color: #ffffff !important; /* solid white background */
	color: #c8e066 !important;
	border: 1px solid #c8e066 !important;
	/* transform: translateY(-2px); */
	box-shadow: 0 4px 10px rgba(26, 167, 255, 0.2);
}

.back-btn {
	background: none;
	border: none;
	color: #000;
	font-weight: 500;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.back-btn:hover {
	color: #c8e066;
	text-decoration: underline;
}

@media (max-width: 992px) {
	#home-form {
		width: 85%;
	}
	.newphonegroup {
		display: block;
	}
	.step-progress {
		width: 90% !important;
	}
	.step-circle {
		width: 50px;
		height: 50px;
		font-size: 25px;
		line-height: 50px;
	}
	.heading-in-form {
		margin-top: 5px !important;
		width: 100%;
		text-align: center;
	}
}
.form-header {
	margin-bottom: 30px;
}
.form-check-input:checked {
	background-color: #a2bf33 !important;
	border-color: #a2bf33 !important;
}

/*info tooltip for end of tenancy page start*/
.info-icon-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #a2bf33;
	font-size: 18px;
	transition: color 0.3s ease;
	line-height: 1; /* remove extra vertical space */
	vertical-align: middle; /* align perfectly with label text */
	margin-top: -2px; /* optional fine-tune (adjust if needed) */
}

.info-icon-wrapper:hover {
	color: #c8e066;
}

/* Tooltip styles */
.info-tooltip {
	position: absolute;
	top: 120%; /* position below icon */
	left: 50%;
	transform: translateX(-50%);
	width: 320px;
	background: #ffffff;
	color: #333;
	font-size: 13px;
	line-height: 1.4;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid #d6ecff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	opacity: 0;
	pointer-events: none;
	transition: all 0.25s ease;
	z-index: 10;
}

/* Tooltip arrow */
.info-tooltip::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: transparent transparent #ffffff transparent;
	filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.05));
}

/* Hover or focus show tooltip */
.info-icon-wrapper:hover .info-tooltip,
.info-icon-wrapper:focus .info-tooltip {
	opacity: 1;
	top: 135%;
}
@media (max-width: 767px) {
	.info-tooltip {
		right: 0%;
		transform: translateX(-100%);
	}
}
/*info tooltip for end of tenancy page end*/

/*balcony field start*/

/* Hidden by default */
.balconySizeContainer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transform: translateY(-10px);
	transition: all 0.4s ease-in-out;
	pointer-events: none;
}

/* Show animation */
.balconySizeContainer.show {
	max-height: 120px; /* adjust height if more content */
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* Optional: subtle appearance of input */
.balconySizeContainer.show input {
	animation: fieldGlow 0.5s ease;
}

@keyframes fieldGlow {
	from {
		box-shadow: 0 0 0px rgba(69, 184, 255, 0);
	}
	50% {
		box-shadow: 0 0 10px rgba(69, 184, 255, 0.3);
	}
	to {
		box-shadow: 0 0 0px rgba(69, 184, 255, 0);
	}
}

/*balcony field end*/

/*additional services cards start*/

/* Grid layout */
/* .extras-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 15px;
	margin-top: 20px;
} */

/* Service card styling */
/* ✅ Final Responsive & Contained Extra Services Grid */
.extras-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 🖥️ 4 cards per row on desktop */
	gap: 15px;
	margin-top: 20px;
	width: 100%;
	box-sizing: border-box;
}

/* 🧩 Service Card */
.service-card {
	position: relative;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	background: #f9f9f9;
	cursor: pointer;
	transition: all 0.3s ease;
	min-height: 95px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 12px;
	word-wrap: break-word;
}

.service-card p {
	margin: 0;
	font-size: 15px;
	font-weight: 500;
	color: #333;
	line-height: 1.4;
	width: 100%;
}

/* Tick icon */
.tick-icon {
	position: absolute;
	top: 8px;
	right: 8px;
	background: #c8e066;
	color: #fff;
	font-size: 14px;
	width: 22px;
	height: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.2s ease;
}

/* Hover + Selected */
.service-card:hover {
	border-color: #c8e066;
	background: #eef8ff;
}
.service-card.selected {
	border-color: #c8e066;
	background: #e6f4ff;
}
.service-card.selected .tick-icon {
	opacity: 1;
	transform: scale(1);
}

/* 💻 Tablet (4 per row) */
@media (max-width: 1199px) {
	.extras-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* 📱 Mobile (3 per row) */
@media (max-width: 767px) {
	.extras-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.service-card {
		min-height: 80px;
		padding: 8px;
	}

	.service-card p {
		font-size: 13px;
	}
}

/* 📱 Small Mobile */
@media (max-width: 480px) {
	.extras-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.service-card {
		min-height: 70px;
		padding: 6px;
	}

	.service-card p {
		font-size: 12px;
	}

	.tick-icon {
		width: 18px;
		height: 18px;
		font-size: 12px;
		top: 5px;
		right: 5px;
	}
}

/*additional services cards end*/

.form-step {
	display: none;
}
.form-step.form-step-active {
	display: block;
}

.message-box {
	padding: 10px;
	/* border: 1px solid #ddd !important; */
	border: none !important;
	border-radius: 5px;
	/* margin-bottom: 15px; */
	font-size: 15px;
	background-color: #eaffea;
}

/* ✅ Fade-in animation for new carpet rows */
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.carpet-size-row,
.mattress-size-row,
.sofa-size-row {
	opacity: 0; /* start invisible */
	animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeDown {
	animation: fadeDown 0.4s ease forwards;
}

.services-hero-btn {
	width: 50%;
	height: 56px;
	border: 2px solid #ffeb38;
	border-radius: 10px;
	font-size: 25px;
	font-weight: 500;
	color: #000;
	cursor: pointer;
	background: linear-gradient(180deg, #ffeb38, #ffc738);
	transition: all 0.3s ease;
}

.services-hero-btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

@media (max-width: 992px) {
	.services-hero-btn {
		height: 54px;
		border-radius: 8px;
		font-size: 16px;
		border-width: 1.5px;
	}
}
@media (max-width: 600px) {
	.services-hero-btn {
		height: 52px;
		font-size: 16px;
	}
}

#error-message {
	margin-top: 10px;
	text-align: center;
}

.errorfield {
	border: 2px dashed #dc3545 !important;
	background-color: #fff5f5 !important;
}
.heading-in-form {
	font-size: 32px;
	font-weight: 600;
}
.form-header {
	font-size: 28px;
	font-weight: 600;
}

/*custom checkbox start*/
.custom-check {
	position: relative;
	display: inline-block;
	width: 22px;
	height: 22px;
	cursor: pointer;
}

.custom-check input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* Outer circle */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 2px solid #a2bf33;
	background-color: #fff;
	transition: all 0.3s ease;
}

/* Tick mark */
.checkmark::after {
	content: "";
	position: absolute;
	display: none;
	left: 6px;
	top: 3px;
	width: 6px;
	height: 11px;
	border: solid #a2bf33;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	transition: all 0.3s ease;
}

/* When checked */
.custom-check input:checked ~ .checkmark {
	background-color: #a2bf33;
}

.custom-check input:checked ~ .checkmark::after {
	display: block;
	border-color: #fff;
}

/* Hover/Focus */
.custom-check:hover .checkmark {
	box-shadow: 0 0 5px rgba(163, 191, 51, 0.5);
}
/*custom checkbox end*/
