/* Your custom CSS here */

.border-item {
	border: solid 2px var(--border-color);
	border-radius: 14px;
	height: 110px;
	margin-bottom: 14px;
}

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

.no-border {
	border: none !important;
}

.overflow-unset {
	overflow: unset;
}

.category-list:not(.make-compact):not(.make-grid) .item-list:last-child {
	border-bottom: solid 2px var(--border-color);
}

.shadow-form {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
}

.shadow-form-2 {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
}

.text-unset {
	text-align: unset !important;
}

.bg-inherit {
	background-color: inherit;
}

.card-price {
	background-color: #eaf2ff;
    border-color: #c6ddff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	overflow: hidden;
}

.btn-price-primary:hover {
	background-color: #1c6edc !important;
}

.btn-price-outline:hover {
	background-color: #f0f8ff !important;
    border-color: #1c6edc !important;
    color: #1c6edc !important;
}

.color-db {
	color: #1d3b72;
}

/* Step Progress Bar */
.step-container {
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
	position: relative;
	width: 100%;
	padding-top: 20px;
	height: 120px;
}

/* Progress Line (Connector between steps) */
.progress-line {
	position: absolute;
	width: 100%;
	height: 3px;
	background: #ccc;
	top: 32%;
	left: 0%;
	z-index: 0;
}

.progress-line.progress-bar {
	background-color: #2880f9;
	width: 50%;
	transition: width 0.4s ease-in-out, background-color 0.3s;
}

.progress-line.start {
	top: 39%;
}

/* Step Wrapper */
.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	flex: 1;
	text-align: center;
	z-index: 1; /* Ensure it's above the line */
	width: 90px;
}

/* Step Circle */
.step-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 3px solid #2880f9;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2880f9;
	font-weight: bold;
	transition: background 0.3s, color 0.3s;
	position: relative;
}

/* Active & Completed Steps */
.step.active .step-circle {
	background: #2880f9;
	color: white;
	font-weight: bold;
}

.step.completed .step-circle {
	background: #2880f9;
	color: white;
	border: 3px solid #2880f9;
}

/* Step Labels */
.step-label {
	margin-top: 5px;
	font-size: 14px;
}

.dropdown-container {
	position: relative;
	width: 100%;
}

.dropdown-container input {
	width: 100%;
	padding: 8px;
	font-size: 16px;
}

#dropdownJobList.dropdown,
.dropdown-container .dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	border: 1px solid #ccc;
	border-top: none;
	max-height: 150px;
	overflow-y: auto;
	display: none;
	z-index: 1000;
}

#dropdownJobList.dropdown div,
.dropdown-container .dropdown div {
	padding: 8px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

#dropdownJobList .dropdown div:hover,
#dropdownJobList .dropdown .selected,
.dropdown-container .dropdown div:hover,
.dropdown-container .dropdown .selected {
	background-color: #f0f0f0;
}

.chat-body {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
	max-height: 70dvh;
}

.message {
	margin-bottom: 10px;
	max-width: 70%;
	padding: 10px;
	border-radius: 10px;
	clear: both;
}

.message.user {
	background-color: #daf1da;
	align-self: flex-end;
	margin-left: auto;
}

.message.developer,
.message.bot {
	background-color: #e3e3e3;
	align-self: flex-start;
	margin-right: auto;
}

.height-100 {
	height: 100%;
}

.width-100 {
	width: 100%;
}

.ai-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #4A90E2;
	border: none;
	color: white;
	font-size: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	transition: background-color 0.3s ease;
}

.ai-button:hover {
	background-color: #357ABD;
}

.chatbox {
	position: fixed;
	bottom: 90px;
	right: 20px;
	width: 350px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	padding: 15px;
	display: none;
	flex-direction: column;
}

.chatbox p {
	margin: 0 0 10px 0;
	font-weight: bold;
}

.chat-options {
	display: flex;
	gap: 10px;
	margin-bottom: 8px;
}

.chat-options button {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background-color: #eee;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.chat-options button:hover {
	background-color: #ddd;
}

.chat-input {
	display: flex;
	gap: 5px;
}

.chat-input textarea {
	flex: 1;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 5px;
	resize: none; /* prevents resizing if you want a fixed height */
	font-family: inherit;
	font-size: 14px;
  }

.chat-input button {
	padding: 8px 12px;
	background-color: #4A90E2;
	border: none;
	color: white;
	border-radius: 5px;
	cursor: pointer;
	margin-left: auto;
}

.chat-input button:hover {
	background-color: #357ABD;
}

.flex-40 {
	flex: 40%;
}

.flex-30 {
	flex: 30%;
}

.height-50dvh {
	height: 50dvh;
}

.flex-1 {
	flex: 1;
}

.text-container .tox.tox-tinymce {
	width: 565px !important;
}

.toast {
	position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #38c172;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: sans-serif;
    z-index: 9999;
}

.z-index-1 {
	z-index: 1;
}

.btn-primary {
	background-color: #2880f9 !important;
    border-color: #2880f9 !important;
}

.iti__selected-flag {
	background-color: unset !important;
}

.input-group-text.iti-group-text {
	justify-content: center;
}

.salary-row {
	gap: 0.5rem;
}

span.input-group-text {
	background-color: #fcfaf8;
}

.typing-indicator {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 15px;
	background-color: #e0e0e0;
	border-radius: 20px;
	width: fit-content;
	max-width: 200px;
	margin: 10px;
}

.typing-dots span {
	width: 8px;
	height: 8px;
	margin: 0 3px;
	background-color: #555;
	border-radius: 50%;
	display: inline-block;
	animation: bounce 1.2s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
	animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes bounce {
	0%, 80%, 100% {
		transform: scale(0.8);
		opacity: 0.5;
	}
	40% {
		transform: scale(1);
		opacity: 1;
	}
}

.row-featured-category {
	.header-container {
		background-color: #2880f9;
		border-bottom: 1px solid #dddddd !important;
		color: #fff;
	}

	ul.cat-list li a {
		color: #1d3b72;
	}

	ul.cat-list li a:focus {
		color: #1d3b72 !important;
	}

	.sell-your-item:hover {
		color: #2b4d6c !important;
	}
	
	.text-white.sell-your-item:hover {
		color: #f5faff !important;
	}

	.list-categories-children.styled {
		.cat-list {
			h3.cat-title {
				background-color: #f5faff;
			}

			a:focus {
				color: #1d3b72 !important;
			}
		} 
	}
}

.city-list {
	background: unset;
}

.modal-header.primary-header {
	background-color: #2880f9;
	border-bottom: 1px solid #dddddd !important;
	color: #fff;
	border-top: unset;

	.close {
		background-color: #2880f9
	}
}

.modal-body {
	#locationsModalForm {
		.input-group .input-group-text {
			background-color: #f5faff;
			color: #1d3b72;
		}
	}

	#locationsList {
		.list-link a:hover {
			color: #1d3b72;
		}
	}
}

.footer-content {
	background: #4682B4;
	color: #fff;

	.container .row .col .footer-col {
		.footer-title,
		.footer-nav li a {
			color: #fff;
		}
	}
}

.icon-white {
	color: #fff !important;
}

.search-sidebar {
	background-color: #f5faff;
	.list-filter,
	.block-title {
		.list-title span {
		   color: #1d3b72;
	   }
	}

	.list-filter {
		.filter-content .browse-list li label,
		.list-unstyled li a .title,
		.browse-list li a,
		.filter-date ul li label {
			color: #1d3b72;
		}
	} 
}

.filter-employment-type .browse-list .form-switch .form-check-input {
	border-color: #d6d6d6;
}

.filter-employment-type .browse-list .form-switch .form-check-input:checked {
	border-color: #2880f9;
	background-color: #2880f9;
}

.tips-container,
.company-container {
	.card-header {
		background: #4682B4;
    	color: #fff;
	}
}

.item-list:hover {
	background-color: #f5faff;
}

.user-panel-sidebar .collapse-box .collapse-title {
	color: #1d3b72;

	a.float-end:hover,
	a.float-end:focus {
		color: #1d3b72;
	}
}

.company-container,
.messenger-container,
.post-container,
.resume-container {
	.btn-default {
		color: #1d3b72;
		
		&:hover {
			background-color: #f5faff;
			color: #1d3b72;
		}
	}

	.dropdown-menu > li a {
		color: #1d3b72 !important;
	}

	.message-list .list-group-item {
		.list-box-content {
			.title,
			.message-text {
				color: #1d3b72;
			}
		}

		.list-box-action a {
			color: #1d3b72;
		}
	}
}

.messages-container,
.messenger-container {
	.inbox-nav {
		li.nav-item:hover {
			background-color: #fff;

			a.nav-link {
				color: #1d3b72;
			}
		}

		li.nav-item:hover.active a {
			color: #fff;
		}
	}
}

.messages-container {
	.btn-secondary,
	.btn-secondary:hover {
		color: #1d3b72;
		background-color: #a9c1e8;
		border-color: #a9c1e8;
	}

	.type-message .type-form {
		border: unset;
	}

	.type-message .type-form .form-control {
		border: 1px solid #ddd !important;
	}
}

.company-create-container,
.edit-company-container,
.account-container {
	#accordion.panel-group {
		.card-header {
			background-color: #2880f9;
			.card-title a {
				color: #fff;
			}
		}

		.input-group .input-group-text {
			background-color: #f5faff;
			color: #1d3b72;
		}
	}
}

#quickLogin {
	.input-group .input-group-text {
		background-color: #f5faff;
		color: #1d3b72;

		a.toggle-password-link:hover,
		a.toggle-password-link:focus {
			color: #1d3b72
		}
	}

	.forgot-register-password {
		a:hover {
			color: #1d3b72
		}
	}

	.btn-default:hover{
		background-color: #f5faff;
	}
}

#transactions,
#my-jobs,
#my-account {
	.acc-list li {
		a {
			color: #1d3b72
		}

		a:hover,
		a.active {
			background-color: #2880f9;
			color: #fff;
		}
	} 
} 

.bg-light-sky-blue {
	background-color: #f5faff;
}

.text-dark-blue {
	color: #1d3b72 !important;
}

#addManageTable {
	th, td,
	td a.btn-default {
		color: #1d3b72;
	}
}

#addManageTable.table-striped > tbody > tr:nth-of-type(odd) > * {
	--bs-table-accent-bg: #fff;
}

.resume-create-container,
.edit-resume-container {
	.title-2 {
		color: #1d3b72;
	}

	#accordion {
		.card.card-default {
			overflow: hidden;

			.card-header {
				background-color: #2880f9;

				h4.card-title a {
					color: #fff;
				}
			}

			#resumePanel.panel-collapse {
				.card-body {
					background-color: #f5faff;
				}

				.btn-default {
					color: #1d3b72
				}
			}
		}
	}
}

.location-content ul.cat-list li a {
	color: #1d3b72;
}
.location-content ul.cat-list li a:focus {
	color: #1d3b72;
}

.stat-container {
	.iconbox {
		.iconbox-wrap-icon i {
			color: #1d3b72 !important;
		}

		.iconbox-wrap-content {
			h5 {
				color: #1d3b72 !important;
			}

			.iconbox-wrap-text {
				color: #1d3b72 !important;
			}
		}
	}
}

#userMenuDropdown,
#langMenuDropdown,
#authDropdownMenu {
	.dropdown-item {
		a {
			color: #1d3b72 !important;

			i {
				color: #1d3b72;
			}
		}
	}

	.dropdown-item:hover {
		background-color: #f5faff;
	}

	.dropdown-item.active {
		background-color: #f5faff;

		a {
			background-color: #f5faff;
		}
	}
}

.job-item {
	.add-details {
		.job-title a:hover,
		.d-flex a.fs-5:hover {
			color: #2b4d6c;
		}
	}
}

.save-search-bar {
	.text-uppercase:hover {
		color: #2b4d6c !important;
	}
}

.search-breadcrumb {
	.breadcrumb {
		.breadcrumb-item {
			a:hover {
				color: #1d3b72;
			}
		}
	}
}

.locations-list {
	.maxlist-more {
		a:hover {
			color: #1d3b72;
		}
	}
}

.filter-salary {
	.btn-default:hover {
		background-color: #f5faff;
	}
}

.post-details-container {
	.enable-long-words {
		a:hover {
			color: #1d3b72;
		}
	}
}

.post-details {
	.is-premium {
		background-color: #f5b301;
		color: #fff;
		float: left;
	}
}

.featured-list-row {
	.owl-stage {
		.owl-item {
			.item a:hover {
				background-color: #f5faff;
				color: #1d3b72
			}
		}
	}
}

.transaction-container {
	table.table {
		color: #1d3b72;
	}
}

#signupForm {
	.input-group {
		.input-group-text {
			background-color: #f5faff;
			color: #1d3b72;
		}
	}
}

@media screen and (max-width: 768px){
	.inner-box.category-content {
		width: 600px;

		.row {
			width: 100%;
		}
	}

	.step-container {
		height: 100%;
	}

	.progress-line {
		top: 50%;
	}

	.step .step-label {
		display: none;
	}

	.text-container .tox.tox-tinymce {
		width: 455px !important;
	}

	.field-form {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.category-list:not(.make-grid):not(.make-compact){
		.photobox {
			width: 16.66666667%;
		}

		.add-desc-box {
			width: 83.33333333%;
		}
	}

	.job-item .d-flex {
		.post-details:nth-child(3),
		.post-details:nth-child(4) {
			display: none !important;
		}
	} 

	.search-submit strong {
		display: none;
	}
}

@media screen and (max-width: 425px) {
	.inner-box.category-content {
		width: 300px;
	}

	.step {
		display: none;
	}

	.step.active {
		display: flex;
	}

	.text-container .tox.tox-tinymce {
		width: 280px !important;
	}

	.flex-sm-50 {
		flex: 50%
	}

	.job-item .d-flex .d-flex:not(:first-child) {
		display: none !important;
	}

	.search-submit strong {
		display: inline-block;
	}
}