:root {
	--bs-primary: #2e59a6;
}

.bg-primary {
	background-color: var(--bs-primary) !important;
}

.btn-primary {
	background-color: var(--bs-primary) !important;
}

.navbar-logo {
	max-width: 437px;
	width: 100%;
}

.custom-toggler.navbar-toggler {
	border-color: lightgreen;
}

@media (max-width: 767px) {
	.logo-phone-container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 20px;
		width: 100%;
	}

	.navbar-logo {
		width: 177px;
		height: 55px;
	}

	.phone-container {
		margin-top: 10px;
	}

	.phone-number {
		font-size: 18px;
	}
}

.logo-phone-container {
	display: flex;
	/* justify-content: center; */
	align-items: center;
	width: 100%;
	padding: 20px 0;
	max-width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.phone-container {
	text-align: center;
	margin-left: 20px;
}

.phone-number {
	font-size: 18px;
	color: #1e3d8e;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1050;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease;
	flex-direction: column;
}

.overlay.show {
	visibility: visible;
	opacity: 1;
}

.loading-text {
	color: white;
	margin-top: 10px;
	font-size: 18px;
	font-weight: bold;
}

.lds-dual-ring {
	display: flex;
	flex-direction: column;
	position: fixed;
	z-index: 1000;
	width: 100%;
	top: 0;
	height: 100%;
	justify-content: center;
	align-items: center;
	background-color: rgba(187, 187, 187, 0.3);
}

.spinner:after {
	content: ' ';
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 6px solid #2e59a6;
	border-color: #2e59a6 transparent #2e59a6 transparent;
	animation: spinner 1.2s linear infinite;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 100%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}