﻿
@font-face {
	font-family: Gilroy;
	src: url(/fonts/Gilroy.otf);
	font-weight: normal;
}

@font-face {
	font-family: Gilroy;
	src: url(/fonts/Gilroy-Medium.otf);
	font-weight: 500;
}

@font-face {
	font-family: Gilroy;
	src: url(/fonts/Gilroy-Bold.otf);
	font-weight: bold;
}

@font-face {
	font-family: Gilroy;
	src: url(/fonts/Gilroy-Semibold.otf);
	font-weight: 600;
}

@font-face {
	font-family: Gilroy;
	src: url(/fonts/Gilroy-ExtraBold.otf);
	font-weight: 900;
}

:root {
	--saa-blue: #153655;
	--saa-yellow: #f3bc41;
	--saa-lightBlue: #f5fbff;
	--sal-dark-blue: #081929;
	--sal-light-blue: #abdfff;
}

* {
	font-family: Gilroy, Arial;
	padding: 0;
	margin: 0;
	letter-spacing: 0.3px;
	/*-webkit-tap-highlight-color: transparent;*/ /* Safari */
	/*-webkit-touch-callout: none;*/ /* iOS Safari */
	/*-webkit-user-select: none;*/ /* Safari */
	text-decoration: none;
	list-style: none;
}

body {
	overflow-x: hidden;
}

a {
	color: inherit;
}

input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

:is(.content-grid, main,header,footer) {
	display: grid;
	grid-template-columns: [full-width-start] 12% [content-start] 1fr [content-end] 12% [full-width-end];
}

	:is(.content-grid, main,header,footer) > *,
	:is(.content-grid, main,footer) > .full-width > * {
		grid-column: content;
	}

:is(.content-grid, main,footer) > .full-width {
	grid-column: full-width;
	display: grid;
	grid-template-columns: [full-width-start] 12% [content-start] 1fr [content-end] 12% [full-width-end];
}

.saa-slide {
	position: absolute;
	bottom: -10px;
	left: 0;
	display: block;
	height: 4px;
	width: 75px;
	border-radius: 10px;
	background: var(--saa-yellow);
	transition: 400ms;
}

.advert {
	display: flex;
	justify-content: center;
	align-items: center;
	height: fit-content;
	max-width: 100%;
	width: 100%;
	margin: 2rem auto;
	overflow: hidden;
}

	.advert > * {
		width: 100% !important;
		height: fit-content;
	}

:is(.salBtn,.salBtnYellow,.salBtnGray, .salBtnGreen, .salBtnRed) {
	padding: 4px 10px;
	border-radius: 5px;
	cursor: pointer;
	border: 0 !important;
	font-size: 10px;
}

	:is(.salBtn,.salBtnYellow,.salBtnGray, .salBtnGreen, .salBtnRed) i {
		font-size: 9px;
	}

.fixedOne,
.fixedTwo {
	position: fixed !important;
	top: 50%;
	z-index: 9;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 8%;
	height: 100%;
	transform: translateY(-50%);
	transition: 300ms;
}

	.fixedOne > *,
	.fixedTwo > * {
		height: 100%;
		min-width: 100% !important;
		object-fit: contain;
	}

.commentLike,
.commentDisLike,
.motorcycleCommentLike,
.motorcycleCommentDisLike {
	cursor: pointer;
}

.fixedOne {
	right: 14px;
}

.fixedTwo {
	left: 14px;
}

.menu {
	position: relative;
	margin: 2rem auto;
	display: inline-flex;
	align-items: center;
	gap: 3rem;
}

	.menu > *:not(span:last-of-type) {
		font-size: 18px;
		color: #464646;
		cursor: pointer;
		transition: 400ms ease;
		transition-property: color, font-size;
		position: relative;
		font-weight: 500;
		text-align: center;
	}

	.menu > *.active:not(span:last-of-type) {
		font-weight: 600 !important;
	}

	.menu > span.saa-slide {
		left: 0px;
	}

section > h1,
section > h2,
section > h3,
section > h4 {
	margin: 1.2rem 0;
	color: var(--saa-blue);
	font-size: 24px;
	text-align: center;
	font-weight: 500;
}

.ui-checkbox {
	--primary-color: var(--saa-blue);
	--secondary-color: #fff;
	--primary-hover-color: var(--saa-yellow);
	--checkbox-diameter: 16px;
	--checkbox-border-radius: 4px;
	--checkbox-border-color: #d9d9d9;
	--checkbox-border-width: .5px;
	--checkbox-border-style: solid;
	--checkmark-size: 0.8;
}

	.ui-checkbox,
	.ui-checkbox *,
	.ui-checkbox *::before,
	.ui-checkbox *::after {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

.ui-checkbox {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: var(--checkbox-diameter);
	height: var(--checkbox-diameter);
	border-radius: var(--checkbox-border-radius);
	background: var(--secondary-color);
	border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	cursor: pointer;
	position: relative;
	min-width: 15px;
}

	.ui-checkbox::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		-webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
		box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
		border-radius: inherit;
		opacity: 0;
		-webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
		-o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
		transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
	}

	.ui-checkbox::before {
		top: 40%;
		left: 50%;
		content: "";
		position: absolute;
		width: 4px;
		height: 7px;
		border-right: 2px solid var(--secondary-color);
		border-bottom: 2px solid var(--secondary-color);
		-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
		-ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
		transform: translate(-50%, -50%) rotate(45deg) scale(0);
		opacity: 0;
		-webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
		-o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
		transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
	}

	/* actions */

	.ui-checkbox:hover {
		border-color: var(--primary-color);
	}

	.ui-checkbox:checked {
		background: var(--primary-color);
		border-color: transparent;
	}

		.ui-checkbox:checked::before {
			opacity: 1;
			-webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
			-ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
			transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
			-webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
			-o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
			transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
		}

	.ui-checkbox:active:not(:checked)::after {
		-webkit-transition: none;
		-o-transition: none;
		-webkit-box-shadow: none;
		box-shadow: none;
		transition: none;
		opacity: 1;
	}

/*#endregion*/

/*#region Header*/

header {
	height: 75px;
	background: var(--saa-blue);
	color: white;
	position: relative;
	z-index: 10;
}

	header > nav {
		display: grid;
		align-items: center;
		gap: 1.5rem;
		grid-template-columns: 120px minmax(0,1fr) 350px;
	}

		header > nav > a {
			width: 100%;
		}

		header > nav > ul {
			height: 100%;
			display: flex;
			align-items: center;
			gap: 13px;
		}

			header > nav > ul > li {
				height: 50%;
				display: flex;
				align-items: center;
			}

				header > nav > ul > li:first-of-type {
					position: relative;
				}

					header > nav > ul > li:first-of-type > div {
						position: absolute;
						background: var(--saa-blue);
						left: -17px;
						top: 50px;
						opacity: 0;
						pointer-events: none;
						transition: 300ms;
						z-index: 100;
					}

						header > nav > ul > li:first-of-type > div > a {
							font-size: 15px;
							margin: 5px 0;
							display: block;
							padding: 5px 20px;
							transition: 200ms;
						}

					header > nav > ul > li:first-of-type:hover div {
						opacity: 1;
						top: 38px;
						left: -17px;
						pointer-events: auto;
					}

					header > nav > ul > li:first-of-type > div > a:hover {
						color: var(--saa-yellow);
					}

				header > nav > ul > li > a {
					height: 100%;
					display: flex;
					align-items: center;
					text-decoration: none;
					font-size: 14px;
					padding: 5px;
					transition: 200ms;
					white-space: nowrap;
				}

					header > nav > ul > li > a:hover {
						color: var(--saa-yellow);
					}


		header > nav > div {
			height: 75px;
			display: flex;
			justify-content: end;
			align-items: center;
		}

			header > nav > div > button {
				display: flex;
				align-items: center;
				background: var(--saa-yellow);
				color: var(--saa-blue);
				border-radius: 2rem;
				z-index: 12;
				padding: 3px 18px;
				border: 2px solid #041f34;
				white-space: nowrap;
				font-weight: bold;
				gap: 5px;
				cursor: pointer;
				font-size: 12px;
			}

				header > nav > div > button > img {
					filter: invert(12%) sepia(44%) saturate(1900%) hue-rotate(174deg) brightness(91%) contrast(98%);
					width: 20px;
				}

			header > nav > div > a {
				background-color: transparent;
				padding: 8px 12px;
				font-weight: 500;
				font-size: 13px;
				transition: filter 200ms ease;
				max-height: 44px;
				border: 0;
				color: white;
				position: relative;
				z-index: 1;
				display: flex;
				justify-content: center;
				align-items: center;
				white-space: nowrap;
			}

				header > nav > div > a > img {
					width: 18px;
					margin-right: 5px;
					filter: invert(96%) sepia(0%) saturate(7500%) hue-rotate(320deg) brightness(106%) contrast(100%);
				}
/*#endregion*/
footer {
	position: relative;
	z-index: 10;
}

	footer > div:last-of-type {
		background: linear-gradient(3deg, rgba(0,76,125,1) 0%, rgb(21 54 85) 100%);
	}

	footer > div > img {
		height: 40px;
		position: absolute;
		bottom: 105px;
		right: 0;
	}

	footer * {
		transition: 100ms;
	}
/*#region Links */

#Links {
	background: var(--saa-lightBlue);
	padding: 10px 0 40px 0;
	margin-top: 100px;
}

	#Links > div > div.menu {
		margin: 0rem auto 1rem auto;
	}

#LinksLine {
	left: 0px;
}

#Links > div {
	grid-column: content-start;
	justify-content: center;
	display: flex;
	flex-direction: column;
}

	#Links > div > h3 {
		margin: 1.2rem 0;
		color: var(--saa-blue);
		font-size: 24px;
		text-align: center;
		font-weight: 500;
	}

	#Links > div > div:last-of-type {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(210px,1fr));
		row-gap: 5px;
		column-gap: 15px;
	}

		#Links > div > div:last-of-type > a {
			display: none;
			padding: 5px 0;
			color: var(--saa-blue);
			font-size: 13px;
			transition: 100ms;
		}

			#Links > div > div:last-of-type > a:hover {
				color: var(--saa-yellow);
			}

			#Links > div > div:last-of-type > a[data-id='1'] {
				display: block;
			}

.bodywork-types {
	position: relative;
	margin: 1rem auto;
	display: none;
	align-items: center;
	gap: 2rem;
}

.menuCase {
	font-size: 16px;
	color: var(--sal-dark-blue);
	cursor: pointer;
	/*transition-property: color, font-size;*/
	position: relative;
	font-weight: 500;
	/*text-align: center;*/
}

.bodywork-types .menuCase {
	font-size: 15px;
	font-weight: 500;
}

	.bodywork-types .menuCase.active {
		text-decoration: underline;
	}

/*#endregion*/
/*#region FooterBrands */
#FooterBrands {
	position: relative;
	margin: 30px 0;
	text-align: center;
}

	#FooterBrands > a {
		color: #fff;
		font-size: 13px;
		margin: 5px 0;
		display: inline-block;
		padding: 2px 8px;
	}

		#FooterBrands > a:hover {
			color: var(--saa-yellow);
		}

/*#endregion  */
/*#region PriceList*/
#PriceList {
	margin: 30px 0;
	text-align: center;
}

	#PriceList > a {
		color: #fff;
		font-size: 13px;
		margin: 5px 0;
		display: inline-block;
		padding: 2px 8px;
	}

		#PriceList > a:hover {
			color: var(--saa-yellow);
		}

/*#endregion PriceList*/

/*#region FooterMenus */
#FooterMenus {
	grid-column: full-width;
	padding: 0 152px;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 50px;
}

	#FooterMenus > div:not(#NewsFooter) {
		display: flex;
		gap: 1rem;
		justify-content: space-between;
		width: 51%;
	}

		#FooterMenus > div:not(#NewsFooter) > div {
			display: flex;
			flex-direction: column;
			color: #fff;
		}

			#FooterMenus > div:not(#NewsFooter) > div > span {
				padding: 2px 0;
				font-size: 15px;
				margin-bottom: 5px;
				font-weight: 600;
				white-space: nowrap;
				letter-spacing: 0.9px;
			}

			#FooterMenus > div:not(#NewsFooter) > div > a,
			#FooterMenus > div:not(#NewsFooter) > div > div > a {
				font-weight: 100;
				color: #fff;
				font-size: 12px;
				margin: 5px 0;
				padding: 2px 0;
				white-space: nowrap;
			}

				#FooterMenus > div:not(#NewsFooter) > div > a:hover,
				#FooterMenus > div:not(#NewsFooter) > div > div > a:hover {
					color: var(--saa-yellow);
				}

			#FooterMenus > div:not(#NewsFooter) > div > div {
				display: flex;
				flex-wrap: wrap;
				flex-direction: column;
			}

				#FooterMenus > div:not(#NewsFooter) > div > div > a {
					width: 42%;
				}

#NewsFooter {
	display: flex;
	flex-direction: column;
	color: #fff;
	width: 32%;
}

	#NewsFooter > span {
		padding: 2px 8px;
		margin-bottom: 10px;
		font-weight: 600;
		letter-spacing: 0.9px;
		color: #fff;
		font-size: 15px;
		border-bottom: 1px solid #93bad2;
		padding-left: 0;
	}

/*	#NewsFooter > div {
		display: flex;
		gap: 1rem;
	}*/

/*	#NewsFooter > div a {
			position: relative;
			font-weight: 100;
			color: #93bad2;
			font-size: 13px;
			margin: 10px 0;
			padding: 3px 0px;
			width: 250px;
			display: block;
			white-space: nowrap;
			text-overflow: ellipsis;
			overflow: hidden;
		}
*/

footer .swiper {
	width: 100%;
	height: 100%;
	padding-bottom: 36px;
	border-radius: 0;
}

footer .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .swiper-backface-hidden .swiper-slide {
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: self-start;
	gap: 9px;
	height: 100%;
	border-radius: 0;
}

	footer .swiper-backface-hidden .swiper-slide a {
		font-size: 14px;
		text-align: start;
	}

		footer .swiper-backface-hidden .swiper-slide a:hover {
			color: var(--saa-yellow);
		}

footer .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
footer .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	background: var(--saa-yellow);
	width: 10px;
	height: 10px !important;
	opacity: 0.2;
	transition: 200ms;
}

footer .swiper-pagination-bullet-active {
	background: var(--saa-yellow);
	opacity: 1 !important;
	width: 25px !important;
	border-radius: 10px;
}

footer .swiper-horizontal > .swiper-pagination-bullets,
footer .swiper-pagination-bullets.swiper-pagination-horizontal {
	display: flex;
}

#NewsFooter > div > div > a:hover {
	color: #fff;
}

	#NewsFooter > div > div > a:hover::before {
		background: #fff;
	}
/*#endregion  */
/*#region Footer*/
#Footer {
	grid-column: full-width;
	background: var(--saa-blue);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 60px;
	margin-top: 100px;
}
	/*
	#Footer > div:first-of-type {
		display: flex;
	}*/

	#Footer > div:first-of-type > *:not(span:last-of-type) {
		color: #fff;
		padding: 0 20px;
		border-right: 1px solid #fff;
		font-size: 12px;
	}

	#Footer > div:first-of-type > span {
		padding: 0 20px 0 0;
		color: white;
	}

	#Footer > div:first-of-type > :is(a:nth-of-type(3),a:nth-of-type(5)) {
		border: none;
	}


	#Footer > div:first-of-type > a:hover {
		color: var(--saa-yellow);
	}

	#Footer > div:first-of-type > span:not(span:first-of-type) {
		margin-left: 60px;
	}

	#Footer > div:first-of-type > span:not(span:last-of-type) {
		padding-left: 0;
	}

	#Footer > div:first-of-type > span > a {
		color: #fff;
		padding: 0 20px;
		border: none;
	}

		#Footer > div:first-of-type > span > a:first-of-type {
			border-right: 1px solid #fff;
			font-size: 12px;
		}

	#Footer > div:last-of-type {
		display: flex;
		gap: 10px;
	}

		#Footer > div:last-of-type > a > i {
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			color: #fff;
			border: 1px solid #fff;
			border-radius: 50%;
			padding: 10px;
		}

			#Footer > div:last-of-type > a > i::before {
				text-align: center;
				display: block;
				height: 17px;
				width: 17px;
			}

			#Footer > div:last-of-type > a > i:hover {
				border-color: var(--saa-yellow);
				color: var(--saa-yellow);
			}

/*#endregion */
#Header,
#Navbar {
	display: none;
}

#vehicleMenu {
	border-radius: 30px;
	font-size: 12px;
	border: 1px solid var(--saa-blue);
	padding: 5px;
	outline: none;
	height: 33px;
	display: none;
	width: max-content;
	margin: 2rem auto;
	background: var(--saa-blue);
	color: #fff;
	width: 250px !important;
}
/*#region Alert*/
#Alert {
	position: fixed;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	padding: 1rem;
	background: #fff;
	border-radius: 7px;
	display: flex;
	align-items: center;
	gap: 7px;
	z-index: 100;
	top: -100px;
	right: 50%;
	transform: translateX(50%);
	font-size: 13px;
	opacity: 0;
	animation: slideIn 0.5s ease forwards, slideOut 0.5s ease 2.5s forwards;
}

#AlertJS {
	position: fixed;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
	padding: 1rem;
	background: #fff;
	border-radius: 7px;
	display: flex;
	align-items: center;
	gap: 7px;
	z-index: 100;
	top: -100px;
	right: 50%;
	transform: translateX(50%);
	font-size: 13px;
	opacity: 0;
	transition: top 0.5s ease, opacity 0.5s ease;
}


	#Alert > i,
	#AlertJS > i {
		font-size: 15px;
	}

.failed {
	background: #f6cfce !important;
}

	.failed > i {
		color: #ea5553;
	}

.success {
	background: #d8f1d0 !important;
}

	.success > i {
		color: #9ed08e;
	}

@keyframes slideIn {
	0% {
		top: -100px;
		opacity: 0;
	}

	100% {
		top: 13px;
		opacity: 1;
	}
}

@keyframes slideOut {
	0% {
		top: 13px;
		opacity: 1;
	}

	100% {
		top: -100px;
		opacity: 0;
	}
}
/*#endregion*/

/*#region QuickQuote*/
#QuickQuote {
	position: fixed;
	background: #0000004f;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}


	#QuickQuote > div {
		position: relative;
		width: 80vw;
		height: 80vh;
		background: #fff;
		border-radius: 5px;
		padding: 25px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: start;
	}

		#QuickQuote > div > i {
			position: absolute;
			right: 14px;
			top: 14px;
			font-size: 20px;
			color: var(--saa-blue);
			padding: 5px;
			cursor: pointer;
		}

#QuickQuoteNav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 70%;
	margin: 0 0 25px 0;
}

	#QuickQuoteNav > span {
		height: 5px;
		width: 25%;
		border-radius: 5px;
		background: #e9f0f6;
	}

		#QuickQuoteNav > span.navActive {
			background: var(--saa-yellow);
			transition: 500ms;
		}



#Page1,
#Page2,
#Page3,
#Page4 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	width: 100%;
	height: 100%;
	overflow: hidden;
}


	#Page1 > h5,
	#Page2 > h5,
	#Page3 > h5 {
		font-size: 30px;
		color: var(--saa-blue);
	}

	#Page1 > p:first-of-type {
		margin: 15px 0 5px 0;
	}

	#Page1 > p,
	#Page2 > p,
	#Page3 > p {
		font-size: 15px;
	}

		#Page1 > p > a {
			font-weight: 500;
			color: var(--saa-blue);
			text-decoration: underline;
		}

	#Page1 > input {
		background: #fff;
		border: 1px solid var(--saa-blue);
		font-size: 15px;
		margin: 25px 0 10px 0;
		padding: 5px 10px;
		border-radius: 5px;
		outline: none;
	}

	#Page1 > div:first-of-type {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		margin-bottom: 20px;
	}

		#Page1 > div:first-of-type > button {
			font-size: 15px;
			color: var(--saa-blue);
			background: #fff;
			border: 1px solid var(--saa-blue);
			width: 100px;
			padding: 5px;
			border-radius: 4px;
			font-weight: 500;
			cursor: pointer;
		}

			#Page1 > div:first-of-type > button.active {
				background: var(--saa-blue);
				color: #fff;
			}

	#Page1 > div:not(div:first-of-type) {
		display: flex;
		align-items: start;
		justify-content: center;
		flex-wrap: wrap;
		gap: 20px;
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}

		#Page1 > div:not(div:first-of-type)::-webkit-scrollbar,
		#Page2 > div:last-of-type::-webkit-scrollbar,
		#Page3 > div:last-of-type::-webkit-scrollbar {
			width: 6px;
		}

		#Page1 > div:not(div:first-of-type)::-webkit-scrollbar-thumb,
		#Page2 > div:last-of-type::-webkit-scrollbar-thumb,
		#Page3 > div:last-of-type::-webkit-scrollbar-thumb {
			background-color: var(--saa-yellow);
			border-radius: 6px;
		}

		#Page1 > div:not(div:first-of-type)::-webkit-scrollbar-track,
		#Page2 > div:last-of-type::-webkit-scrollbar-track,
		#Page3 > div:last-of-type::-webkit-scrollbar-track {
			background-color: #e9e9e9;
			border-radius: 20px;
			width: 10px;
		}

		#Page1 > div:not(div:first-of-type) > label,
		#Page2 > div:last-of-type > label,
		#Page3 > div:last-of-type > label {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			gap: 10px;
			height: 100px;
			min-width: 100px;
			width: 100px;
			cursor: pointer;
			border-radius: 10px;
			border: 5px solid #fff;
			transition: 100ms;
		}

		#Page1 > div:not(div:first-of-type) > label,
		#Page2 > div:last-of-type > label {
			border: 1px solid #0000002b;
			text-align: center;
		}

		#Page1 > div:not(div:first-of-type) > input,
		#Page2 > div:last-of-type > input,
		#Page3 > div:last-of-type > input {
			width: 0;
			display: none;
		}

		/*#Page1 > div:not(div:first-of-type) > input:checked + label,
			#Page2 > div:last-of-type > input:checked + label,
			#Page3 > div:last-of-type > input:checked + label {
				border: 5px solid var(--saa-lightBlue);
			}*/

		#Page1 > div:not(div:first-of-type) > label > img {
			height: 50px;
		}

	#Page2 > button,
	#Page3 > button,
	#Page4 > button {
		background: var(--saa-yellow);
		color: var(--saa-blue);
		border: none;
		font-size: 15px;
		font-weight: 500;
		padding: 5px 15px;
		border-radius: 25px;
		cursor: pointer;
		margin: 15px 0 0 0;
	}

	#Page2 > p {
		margin: 15px 0 40px 0;
	}

	#Page2 > div:last-of-type {
		display: flex;
		width: 100%;
		gap: 20px;
		align-items: start;
		justify-content: center;
		flex-wrap: wrap;
		overflow-x: hidden;
		overflow-y: auto;
	}

		#Page2 > div:last-of-type > label {
			height: 120px;
			min-width: 180px;
			width: 180px;
		}

			#Page2 > div:last-of-type > label > img {
				height: 80px;
				width: 93%;
				object-fit: contain;
			}


	#Page3 > p {
		margin: 15px 0 40px 0;
	}

	#Page3 > div:last-of-type {
		display: flex;
		width: 100%;
		align-items: start;
		justify-content: center;
		gap: 10px;
		flex-wrap: wrap;
		overflow-x: hidden;
		overflow-y: auto;
	}

		#Page3 > div:last-of-type > label {
			height: 150px;
			width: 350px;
			transition: 0s;
			border: 1px solid #0000002b;
		}

			#Page3 > div:last-of-type > label > p {
				width: 100%;
				text-align: center;
				font-weight: 500;
				font-size: 18px;
				color: var(--saa-blue);
			}

				#Page3 > div:last-of-type > label > p:nth-of-type(2) {
					color: #153655ba;
					font-size: 15px;
				}

				#Page3 > div:last-of-type > label > p:last-of-type {
					font-weight: 600;
					border-top: 1px solid var(--saa-lightBlue);
					padding: 10px 0;
				}


#Page4 {
	align-items: center;
	justify-content: center;
}

	#Page4 > form {
		position: relative;
		z-index: 99;
		background: #fff;
		border: 0;
		border-radius: 1rem;
		padding: 1rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 400px;
		border: 1px solid #0000002b;
	}

		#Page4 > form > p {
			font-size: 25px;
			color: var(--saa-blue);
			margin: 10px 0 15px 0;
			font-weight: 600;
		}

		#Page4 > form > input {
			width: 235px;
			padding: 8px 16px;
			font-size: 12px;
			border-radius: 30px;
			outline: none;
			color: #b9b9b9;
			margin-top: 12px;
			background: #f6f6f6;
			border: solid 1px #dfdfdf52;
			transition: 200ms;
		}

		#Page4 > form > p:last-of-type {
			height: 50px;
			overflow: auto;
			font-size: 9px;
			width: 78%;
			color: gray;
			margin: 15px 0;
		}

			#Page4 > form > p:last-of-type::-webkit-scrollbar {
				width: 6px;
			}

			#Page4 > form > p:last-of-type::-webkit-scrollbar-thumb {
				background-color: var(--saa-yellow);
				border-radius: 6px;
			}

			#Page4 > form > p:last-of-type::-webkit-scrollbar-track {
				background-color: #e9e9e9;
				border-radius: 20px;
				width: 10px;
			}

		#Page4 > form > button {
			position: relative;
			z-index: 99;
			background: var(--saa-yellow);
			border: none;
			border-radius: 30px;
			font-weight: 700;
			color: var(--saa-blue);
			padding: 7px 70px;
			cursor: pointer;
			font-size: 14px;
		}

	#Page4 .OfferCheckBoxLabel {
		width: 259px;
		font-size: 12px;
		color: gray;
		margin-bottom: 10px;
		display: flex;
		align-items: center;
		gap: 5px;
	}

		#Page4 .OfferCheckBoxLabel input {
		}

#Page4,
#Page2,
#Page3,
#Page1 > div#QuickQuoteMotorcycle,
#Page1 > div#QuickQuoteTruck,
#Page1 > div#QuickQuoteBus,
#FooterBrandsBtn {
	display: none;
}

/*#region Ajax Loading*/
svg {
	width: 3.25em;
	transform-origin: center;
	animation: rotate4 2s linear infinite;
	display: none;
	position: absolute;
	top: 50%;
	left: calc(50% - 1.95em);
}

circle {
	fill: none;
	stroke: var(--saa-blue);
	stroke-width: 2px;
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	stroke-linecap: round;
	animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes dash4 {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}

	50% {
		stroke-dasharray: 90, 200;
		stroke-dashoffset: -35px;
	}

	100% {
		stroke-dashoffset: -125px;
	}
}
/*#endregion*/


/*#region AdvertisementFormPopup*/

.openAdPopup {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.advertFormPopupContainer {
	position: fixed;
	background: #00000080;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	z-index: 999999999999999999;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}

	.advertFormPopupContainer > form {
		position: relative;
		width: 700px;
		height: max-content;
		background: #fff;
		border-radius: 20px;
		padding: 2rem;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: start;
		gap: 1rem;
		overflow: auto;
		width: 19vw;
		min-width: 263px;
	}

.closeAdvertFormPopup {
	position: absolute;
	padding: 5px;
	cursor: pointer;
	color: #ff00008c;
	right: 9px;
	top: 9px;
}

.advertFormPopup > input {
	height: 30px;
	border-radius: 20px;
	background: #f6f6f6;
	padding: 0 10px;
	border: solid 1px #dfdfdf;
	outline: none;
	width: 80%;
}

.advertFormPopup > button {
	width: max-content;
	margin: auto;
	background: var(--saa-blue);
	color: var(--saa-lightBlue);
	padding: 11px 24px;
	border: 0;
	border-radius: 11px;
	font-size: 12px;
	cursor: pointer;
}

/*#endregion*/

#LinksBrandsBtn {
	display: none;
	border: 1px solid var(--saa-blue);
	padding: 4px 15px;
	border-radius: 25px;
	background: transparent;
	font-size: 12px;
	transition: 300ms;
	transition-property: background, color;
	cursor: pointer;
	color: var(--saa-blue);
	width: max-content;
	margin: auto;
	position: relative;
	top: 13px;
}

.bodywork-types-select {
	display: none;
}






#MobileAppAds {
	position: relative;
	height: 76px;
	background: var(--saa-blue);
	overflow: hidden;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	border-bottom: 1px solid var(--sal-light-blue);
	padding: 0 12%;
}
	#MobileAppAds  i {
		position: absolute;
		top: 3px;
		right: 5px;
		color: #fff;
		cursor: pointer;
		font-size: 13px;
	}

	#MobileAppAds h5 {
		color: var(--saa-yellow);
		font-size: 30px;
		font-weight: 600;
	}

	#MobileAppAds p {
		color: var(--saa-lightBlue);
		font-size: 12px;
		font-weight: 100;
	}

	#MobileAppAds > div:first-of-type {
	}

	#MobileAppAds > div:last-of-type > a {
	}

	#MobileAppAds > div > a > img {
		width: 104px;
		height: 32px;
		object-fit: contain;
	}


#MobileAppAdsPopup {
	position: fixed;
	background: #00000080;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	z-index: 999999999999999999;
	display: none;
	align-items: center;
	justify-content: center;
}

	#MobileAppAdsPopup > div {
		width: 60%;
		max-width: 600px;
		padding: 1rem;
		display: flex;
		border-radius: 20px;
		align-items: center;
		text-align: center;
		position: relative;
		gap: 0rem;
		background: linear-gradient(355deg, rgba(21, 54, 85, 1) 0%, rgba(51, 110, 166, 1) 100%);
		height: 80%;
		max-height: 549px;
	}

		#MobileAppAdsPopup > div > i {
			position: absolute;
			right: 10px;
			top: 8px;
			color: white;
			cursor: pointer;
		}

		#MobileAppAdsPopup > div > div > h3 {
			font-size: 37px;
			color: var(--saa-yellow);
		}

		#MobileAppAdsPopup > div > div > P {
			color: white;
			font-size: 14px;
		}

		#MobileAppAdsPopup > div > img {
			width: 273px;
		}

		#MobileAppAdsPopup > div > div {
			display: flex;
			flex-direction: column;
			align-items: center;
			gap: 1rem;
		}

			#MobileAppAdsPopup > div > div > div {
				display: flex;
				align-items: center;
				gap: 1rem;
			}

				#MobileAppAdsPopup > div > div > div > a img {
					width: 133px;
					height: 49px;
					object-fit: contain;
				}


@media(max-width:1400px) {
	:is(.content-grid, main,footer) > .full-width {
		grid-template-columns: [ full-width-start ] 1fr [ content-start ] 76% [ content-end ] 1fr [ full-width-end ];
	}

	:is(.content-grid, main,header,footer) {
		grid-template-columns: [ full-width-start ] 1fr [ content-start ] 76% [ content-end ] 1fr [ full-width-end ];
	}


	header > nav > ul > li:first-of-type:hover div {
		top: 58px;
	}

	header > nav > ul {
		gap: 2px;
		height: 100%;
		display: flex;
		align-items: center;
	}

		header > nav > ul > li {
			height: 100%;
			display: flex;
			align-items: center;
		}

			header > nav > ul > li > a {
				font-size: 14px;
			}

	header > nav > div > a {
		padding: 5px 10px;
		font-size: 13px;
	}

	header > nav > div > button {
		padding: 5px 10px;
	}

	#Links > div > div:last-of-type {
		padding: 0 2rem;
	}

	#FooterMenus {
		padding: 0 30px;
	}
}

@media(max-width:1200px) {
	#MobileAppAds {
		padding: 0 5%;
	}
	.bodywork-types {
		gap: 1.3rem;
	}

		.bodywork-types .menuCase {
			white-space: nowrap;
			font-size: 14px;
		}

	:is(.content-grid, main,header,footer) {
		grid-template-columns: [ full-width-start ] 1fr [ content-start ] 90% [ content-end ] 1fr [ full-width-end ];
	}

	.fixedOne, .fixedTwo {
		display: none !important;
	}

	#Footer {
		padding: 20px 32px;
	}

		#Footer > div:first-of-type > span:last-of-type {
			margin-left: 20px !important;
		}


		#Footer > div:first-of-type > *,
		#Footer > div:first-of-type > span > a {
			padding: 0 13px !important;
			font-size: 15px;
		}

		#Footer > div:last-of-type > a > i {
			padding: 8px;
			font-size: 15px;
		}

	#NewsFooter {
		width: 47%;
	}
}

@media(min-width:992px) {
	#Filter {
		display: block !important;
	}

	#Header,
	#Navbar > div {
		display: none;
	}

}

@media(max-width:992px) {
	#MobileAppAds {
		padding: 0 1%;
	}

		#MobileAppAds > div:last-of-type {
			display: flex;
			width: max-content;
		}
	#MobileAppAdsPopup > div {
		width: 90%;
		max-width: 800px;
	}
	header {
		display: none !important;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}

	#Header {
		position: sticky;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		background: var(--saa-blue);
		height: 70px;
		z-index: 100;
		top: -1px;
	}

		#Header > i {
			position: absolute;
			right: 30px;
			color: var(--saa-yellow);
			font-size: 25px;
			padding: 5px;
			cursor: pointer;
			width: max-content;
		}

	#ResponsiveFilterBtn {
		position: absolute;
		cursor: pointer;
		height: 30px;
		top: 21px;
		z-index: 99;
		left: 30px;
		display: none;
	}


	#Header > a > img {
		width: 150px;
	}

	#Navbar {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #00000061;
		z-index: 9999991999 !important;
	}

		#Navbar hr {
			width: 100%;
			opacity: 0.3;
			margin: 20px 0;
		}

		#Navbar > div {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: start;
			background: #fff;
			height: 100%;
			width: 280px;
			position: fixed;
			right: -500px;
			top: 0;
			transition: 400ms;
			overflow-y: auto;
			overflow-x: hidden;
		}

			#Navbar > div > span {
				width: 40px;
				height: 40px;
				background: var(--saa-blue);
				border-radius: 50%;
				padding: 1rem;
				display: flex;
				align-items: center;
				justify-content: center;
				margin-top: 20px;
			}

				#Navbar > div > span > img {
					filter: invert(89%) sepia(90%) saturate(1802%) hue-rotate(319deg) brightness(95%) contrast(100%);
				}

			#Navbar > div > div {
				width: 100%;
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 1rem;
				margin: 15px 0;
			}

				#Navbar > div > div > p {
					font-size: 20px;
					font-weight: 500;
					color: var(--saa-blue);
				}

				#Navbar > div > div > a {
					display: flex;
					place-items: center;
					gap: 5px;
				}

					#Navbar > div > div > a > img {
						height: 20px;
						filter: invert(14%) sepia(23%) saturate(3446%) hue-rotate(183deg) brightness(93%) contrast(88%);
					}

			#Navbar > div > span:last-of-type {
				background: var(--saa-yellow);
				display: flex;
				align-items: center;
				justify-content: center;
				gap: 5px;
				border-radius: 30px;
				font-weight: 500;
				color: var(--saa-blue);
				width: 125px;
				height: 5px;
			}

				#Navbar > div > span:last-of-type > img {
					height: 20px;
					filter: invert(14%) sepia(23%) saturate(3446%) hue-rotate(183deg) brightness(93%) contrast(88%);
				}

			#Navbar > div > a {
				font-size: 18px;
				font-weight: 500;
				color: var(--saa-blue);
				padding: 5px 0;
				border-radius: 30px;
				margin: 5px 0;
				width: 100%;
				display: flex;
				justify-content: center;
			}



	.navActive {
		background: var(--saa-yellow);
	}


	@keyframes stickySlideDown {
		0% {
			transform: translateY(-100%);
		}

		100% {
			transform: translateY(0);
		}
	}

	#Footer {
		flex-direction: column;
		gap: 1rem;
	}

		#Footer > div:first-of-type > span:last-of-type {
			display: block;
			text-align: center;
			margin-top: 1rem;
		}

	footer > div > img {
		bottom: 182px;
		position: static;
		margin: 45px auto 0 auto;
	}

	#FooterMenus {
		flex-direction: column;
	}

	#Footer > div:first-of-type {
		text-align: center;
	}

	#FooterMenus > div:not(#NewsFooter),
	#NewsFooter {
		width: 100%;
	}
}

@media(max-width:768px) {
	#MobileAppAds {
		padding: 8px 1%;
		height: max-content;
	}
		#MobileAppAds h5 {
			font-size: 22px;
		}
		#MobileAppAds p {
			font-size: 11px;
		}

	#MobileAppAds > div:last-of-type {
		display: flex;
		width: max-content;
		flex-direction: column;
	}
	#MobileAppAds > div > a > img {
		width: 82px;
		height: 26px;
		object-fit: contain;
	}
	#MobileAppAdsPopup > div > img {
		width: 229px;
	}
	footer {
		margin-top: 5rem;
	}

	#Page1 > h5, #Page2 > h5, #Page3 > h5 {
		font-size: 28px;
		text-align: center;
	}

	#NewsFooter > div {
		gap: 0rem;
		flex-direction: column;
	}

	#NewsFooter {
		width: 100%;
	}

		#NewsFooter > div > div > a {
			width: 100%;
		}

	#Links > div > div:last-of-type {
		padding: 0;
		grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
	}

	.bodywork-types-select {
		display: block;
		border-radius: 30px;
		font-size: 12px;
		border: 1px solid var(--saa-blue);
		padding: 5px;
		outline: none;
		height: 33px;
		width: max-content;
		margin: 0rem auto;
	}

	.bodywork-types span {
		display: none;
	}
}

.content-start1 {
	position: relative;
}

	.content-start1::before {
		content: "";
		width: 100%;
		height: 35px;
		position: absolute;
		background: linear-gradient(0deg, rgb(245 251 255) 0%, rgb(245 251 255 / 0%) 100%);
		bottom: 0;
		z-index: 10;
	}

@media(max-width:576px) {
	#MobileAppAdsPopup > div {
		width: 93%;
		padding: 8px;
		height:max-content;
	}
		#MobileAppAdsPopup > div > img {
			width: 155px;
		}
		#MobileAppAdsPopup > div > div > h3 {
			font-size: 24px;
		
			}
		#MobileAppAdsPopup > div > div > P {
			font-size: 11px;
		}
		#MobileAppAdsPopup > div > div > div > a img {
			width: 84px;
			height: 27px;
		}
		#MobileAppAdsPopup > div > div > div{
			gap:5px;
		}
		footer {
			display: flex !important;
			flex-direction: column !important;
		}

	.menu {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 1rem;
	}

	footer .menu > *:not(span:last-of-type) {
		font-size: 15px;
	}


	#Footer > div:first-of-type > span {
		display: block;
		border: none !important;
		margin-bottom: 1rem;
	}

	#QuickQuote > div {
		height: 87%;
	}

	#Page1 > p, #Page2 > p, #Page3 > p {
		text-align: center;
	}

	#Page1 > div:first-of-type {
		flex-wrap: wrap;
	}

	#Page3 > div:last-of-type > label > p {
		font-size: 15px;
	}

	#Page3 > div:last-of-type > label {
		height: 120px;
	}

	#Page4 > form {
		width: 87%;
	}

		#Page4 > form > input,
		#Page4 > form > p:last-of-type {
			width: 90%;
		}

	#FooterBrands {
		height: 150px;
		overflow: hidden;
		transition: height 500ms;
	}

	#FooterBrandsBtn {
		display: block;
		border: 1px solid #fff;
		padding: 4px 15px;
		border-radius: 25px;
		background: transparent;
		font-size: 12px;
		transition: 300ms;
		transition-property: background, color;
		cursor: pointer;
		color: #fff;
		width: max-content;
		margin: auto;
		position: relative;
		top: -20px;
	}

	#FooterMenus {
		row-gap: 3rem;
	}

		#FooterMenus > div:not(#NewsFooter) {
			flex-wrap: wrap;
			row-gap: 3rem;
		}

			#FooterMenus > div:not(#NewsFooter) > div > div {
				display: grid;
				grid-template-columns: 1fr 1fr;
				column-gap: 1rem;
			}

			#FooterMenus > div:not(#NewsFooter) > div:nth-of-type(1) {
				/*width: 50%;*/
			}

			#FooterMenus > div:not(#NewsFooter) > div:nth-of-type(2) {
				width: 40%;
			}

			#FooterMenus > div:not(#NewsFooter) > div:nth-of-type(3) {
			}

			#FooterMenus > div:not(#NewsFooter) > div:nth-of-type(4) {
			}

			#FooterMenus > div:not(#NewsFooter) > div:nth-of-type(5) {
				width: 40%;
			}
}

@media(max-width:526px) {
	#FooterMenus {
		padding: 0 17px;
	}

		#FooterMenus > div:not(#NewsFooter) > div:nth-of-type(2) {
			width: 18%;
		}
}

body > .advert {
	position: relative;
	z-index: 10;
	background: #fff;
	margin: 5px auto 0 auto;
	/*padding-bottom: 2rem;*/
}

.NullValueMessage {
	color: #9e9e9e;
	font-weight: 500;
	text-align: center;
	font-size: 1.4rem;
}


