* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

body {
	font-family: 'Roboto', Calibri;
	font-size: 0.9rem;
}

header {
	background: #2856A3;
	border-bottom: 7px solid #FFC700;
}

header h1 {
	margin: 0;
}

header a {
	color: #fff;
}

header a:hover {
	color: #FFC700;
}


main {}



.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus {
	background-color: #2856A3;
	border-color: #ddd;
}

.btn-primary {
	background-color: #2856A3;
	border-color: #ddd;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited,
.btn-primary:focus {
	background-color: #1d407a;
	border-color: #FFC700;
}


/* Cookie */
.cookieConsentContainer {
	z-index: 999;
	width: 350px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 30px 30px 30px 30px;
	background: #232323;
	overflow: hidden;
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: none
}

.cookieConsentContainer .cookieTitle a {
	font-family: OpenSans, arial, sans-serif;
	color: #fff;
	font-size: 22px;
	line-height: 20px;
	display: block
}

.cookieConsentContainer .cookieDesc p {
	margin: 0;
	padding: 0;
	font-family: OpenSans, arial, sans-serif;
	color: #fff;
	font-size: 13px;
	line-height: 20px;
	display: block;
	margin-top: 10px
}

.cookieConsentContainer .cookieDesc a {
	font-family: OpenSans, arial, sans-serif;
	color: #fff;
	text-decoration: underline
}

.cookieConsentContainer .cookieButton a {
	display: inline-block;
	font-family: OpenSans, arial, sans-serif;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	margin-top: 14px;
	background: #000;
	box-sizing: border-box;
	padding: 15px 24px;
	text-align: center;
	transition: background .3s
}

.cookieConsentContainer .cookieButton a:hover {
	cursor: pointer;
	background: #3e9b67
}

@media (max-width:980px) {
	.cookieConsentContainer {
		bottom: 0 !important;
		left: 0 !important;
		width: 100% !important
	}
}


/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #888;
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}


.stepper-wrapper {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.stepper-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;

	@media (max-width: 768px) {
		font-size: 12px;
	}
}

.stepper-item::before {
	position: absolute;
	content: "";
	border-bottom: 2px solid #ccc;
	width: 100%;
	top: 20px;
	left: -50%;
	z-index: 2;
}

.stepper-item::after {
	position: absolute;
	content: "";
	border-bottom: 2px solid #ccc;
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 2;
}

.stepper-item .step-counter {
	position: relative;
	z-index: 5;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ccc;
	margin-bottom: 6px;
}

.stepper-item.active {
	font-weight: bold;
}

.stepper-item.completed .step-counter {
	background-color: #2856A3;
	color: #fff;
}

.stepper-item.completed::after {
	position: absolute;
	content: "";
	border-bottom: 2px solid #2856A3;
	width: 100%;
	top: 20px;
	left: 50%;
	z-index: 3;
}

.stepper-item:first-child::before {
	content: none;
}

.stepper-item:last-child::after {
	content: none;
}


.checkbox-lg .form-check-input{
	top: .8rem;
	scale: 1.4;
	margin-right: 0.7rem;
}

.checkbox-xl .form-check-input {
	top: 1.2rem;
	scale: 1.7;
	margin-right: 0.8rem;
}

@media (max-width: 575.98px) {}