.swiper-arrow-style-02 {
	background: transparent !important;
}
.swiper-arrow-style-02:hover {
	background: #1c304d !important;
}
.bg-secondary {
	background-color: #ab251a !important;
}
.text-red {
	color:#ab251a !important;
}
.accordion-button:not(.collapsed) {
	color: #ab251a !important;
}
p a {
	color: #ab251a !important;
}

.error-message {
	color: #D8000C;
	background-color: #FFD2D2;
	border: 1px solid #D8000C;
	padding: 10px 20px;
	border-radius: 5px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	text-align: left;
	display: block;
	max-width: 100%;
	box-sizing: border-box;
}
.error-message:before {
	content: "❗";
	padding-right: 5px;
	font-weight: bold;
}

.loader {
	width: 35px;
	height: 35px;
	border: 4px solid #1c407c;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

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

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