.top-bar-container {
	background-color: #0057A4;
}

#top-bar {
	display: none;
}
.top-bar {
	display: flex;
	padding: 10px 0px;
}

.notification-bar-mobile {
	display: none;
}

.left {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: auto;
	justify-content: flex-start;
}

.right {
	display: flex;
	align-items: center;
	gap: 15px;
	flex: auto;
	justify-content: flex-end;
}

.middle {
	display: flex;
	align-items: center;
	flex: auto;
	color: #ffff;
	justify-content: center;
}

.brand {
	font-size: 1rem;
	font-weight: bold;
}

.easyhome {
	color: #ffffff;
}

.easyfinancial {
	color: #ffffff;
	opacity: 0.8;
	font-weight: unset;
}

.easyfinancial:hover {
	color: #ffffff;
	opacity: 1;
}

.loan-info {
	display: flex;
	gap: 10px;
	font-size: 1rem;
	white-space: nowrap;
}

.apply-now {
	color: #ffffff;
	text-decoration: underline;
	transition: color 0.3s ease, transform 0.3s ease;
}

.apply-now:hover {
	color: inherit;
	transform: scale(1.1);
}

.apply-now::after {
	transition: width 0.3s ease;
}

.apply-now:hover::after {
	width: 100%;
}

.contact {
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.9rem;
}

.contact:hover {
	color: #e4e5e6;
}

.language-btn {
	background: none;
	border: 1px solid white;
	color: white;
	padding: 0px 3px;
	font-size: 0.9rem;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-weight: 600;
}

.language-btn:hover {
	background-color: white;
	color: #0057A4;
}

.payment-btn {
	background-color: white;
	color: #0057A4;
	border: 1px solid #ffffff;
	padding: 2px 8px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border-radius: 4px;
}

.payment-btn:hover {
	background-color: transparent;
	color: #ffffff;
}

@media screen and (max-width: 1199px) {
	.language-btn, .payment-btn, .contact, .brand, .easyfinancial {
		font-size: 0.8rem;
	}

	.loan-info {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 991px) {
	.middle, .right {
		display: none;
	}
	#top-bar {
		display: block;
	}

	.brand, .easyfinancial {
		font-size: 1rem;
	}

	.loan-info {
		font-size: 1.2rem;
	}

	.message-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px 0px;
		color: #ffffff;
	}

	#top-bar {
		display: block;
		opacity: 1;
		transform: unset;
		transition: unset;
	}
}

@media screen and (max-width: 768px) {
	.loan-info {
		font-size: 0.9rem;
		gap: 8px;
	}

	.brand, .easyfinancial {
		font-size: 0.9rem;
	}
}

@media screen and (max-width: 425px) {
	.loan-info {
		font-size: 0.8rem;
		display: block;
		white-space: normal;
	}
	.apply-now {
		display: inline-block;
	}

	#notificationBarMessageMobile {
		padding-right: 5px;
	}

	.message-wrapper {
		padding: 15px 0px;
	}
}