﻿/*#region Offer*/
#Offer {
	margin: 30px 0 20px 0px;
}

	#Offer > div {
		position: relative;
		background: var(--saa-blue);
		border-radius: 18px;
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 300px;
		justify-content: center;
	}

		#Offer > div::after {
			content: "";
			position: absolute;
			bottom: -1px;
			background: var(--saa-lightBlue);
			width: 100%;
			height: 150px;
			border-bottom-left-radius: 15px;
			border-bottom-right-radius: 15px;
		}

		#Offer > div > form {
			z-index: 9;
			background: #fff;
			padding: 34px 15px;
			border-radius: 15px;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			gap: 32px;
			border: 3px solid #e9f0f6;
			width: 500px;
		}



			#Offer > div > form > p {
				position: relative;
			}

				#Offer > div > form > p > input {
					border: 1px solid var(--saa-blue);
					border-radius: 30px;
					font-size: 20px;
					outline: none;
					height: 40px;
					width: 330px;
					padding: 0 34px 0 17px;
					font-weight: 500;
					color: var(--saa-blue);
				}

					#Offer > div > form > p > input::placeholder {
						color: #d9d9d9;
					}

				#Offer > div > form > p > i {
					position: absolute;
					right: 13px;
					top: 11px;
					color: #d9d9d9;
					font-size: 20px;
				}

			#Offer > div > form > button {
				font-size: 15px;
				font-weight: 500;
				background: var(--saa-yellow);
				border: 3px solid #e9f0f6;
				border-radius: 30px;
				padding: 10px 40px;
				cursor: pointer;
				color: var(--saa-blue);
			}

		#Offer > div > h1 {
			text-align: center;
			font-size: 25px;
			color: #fff;
			margin: 0 0 15px 0;
		}

			#Offer > div > h1 > span {
				color: var(--saa-yellow);
			}
/*#endregion */

/*#region CampaignCar*/
#CampaignCar {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}




	#CampaignCar > div:first-of-type {
		display: flex;
		align-items: center;
		justify-content: start;
		width: 100%;
		gap: 11px;
	}

		#CampaignCar > div:first-of-type > div:not(.select) {
			width: 40px;
			display: flex;
			align-items: center;
			justify-content: center;
			height: 40px;
			border-radius: 7px;
			transition: 200ms;
			cursor: pointer;
			font-size: 13px;
		}

		#CampaignCar > div:first-of-type > div:not(.select):hover {
			background: #00000012;
		}

		#CampaignCar > div:first-of-type > div:not(.select) > img {
			width: 22px;
		}
		#CampaignCar > div:first-of-type > div.active{
			background: #00000012;

		}
		/*#endregion */
		.select {
			max-width: 250px;
			width: 100%;
			position: relative;
			display: none
		}

.custom-select {
	max-width: 250px;
	padding: 10px 24px;
	border: 2px solid #00000017;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all .3s ease;
	grid-gap: 10px;
}

	.custom-select i {
		font-size: 12px;
	}

	.custom-select * {
		pointer-events: none;
	}

.select.show .custom-select {
	background: #fff;
}

.custom-select span {
	display: block;
}

.custom-select .label {
	font-size: 12px;
	font-weight: 600;
	color: var(--grey);
}

.custom-select .value {
	display: flex;
	align-items: center;
	grid-gap: 10px;
}

.custom-select i {
	transition: all .3s ease;
}

.select.show .custom-select i {
	transform: rotateZ(180deg);
}

.option {
	min-width: 250px;
	position: absolute;
	top: calc(100% + 10px);
	max-height: 0;
	overflow-y: hidden;
	transition: all .3s;
	z-index: 500;
}

.select.show .option {
	max-height: 260px;
}

.custom-option {
	border-radius: 10px;
	border: 2px solid #00000017;
	padding: 10px 0;
	max-height: 200px;
	overflow-y: auto;
	scrollbar-width: none;
	overflow-x: hidden;
	background: #fff;
}

	.custom-option::-webkit-scrollbar {
		display: none; /* For chrome browser */
	}

	.custom-option li {
		padding: 10px 10px 10px 24px;
		display: flex;
		align-items: center;
		grid-gap: 10px;
		transition: all .3s ease;
		cursor: pointer;
	}

		.custom-option li img {
			width: 20px;
			height: 20px;
			object-fit: contain;
		}

		.custom-option li:hover {
			background: var(--light-grey);
			color: var(--purple);
		}

.value img {
	width: 20px;
	height: 20px;
	object-fit: contain;
}
#BrandSelect {
	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;
	min-width: 250px;
}

@media(max-width:1400px) {
	#Offer {
		padding: 0 70px;
	}
}

@media(max-width:1200px) {
}

@media(max-width:992px) {
	#Offer > div > h1 {
		font-size: 30px;
	}

	#Offer > div > form {
		width: 400px;
	}

		#Offer > div > form > p > input {
			font-size: 20px;
		}

		#Offer > div > form > button {
			font-size: 15px;
		}

	#CampaignCar > div:first-of-type {
		flex-wrap: nowrap !important;
	}
}

@media(max-width:768px) {
	#Offer {
		padding: 0;
	}

		#Offer > div > h1 {
			font-size: 25px;
		}

		#Offer > div > form {
			width: 83%;
		}

	#CampaignCar > div:first-of-type > div:not(.select) {
		display: none
	}

	.select {
		display: block;
	}

	#CampaignCar > div:first-of-type {
		justify-content: center;
	}

	#CampaignCar > h2 {
		margin-bottom: 0;
	}
	#BrandSelect {
		display: block;
		width: 250px !important;
	}
}

@media(max-width:576px) {
	#Offer > div > h1 {
		padding: 0 5px;
	}

	#Offer > div > form > p {
		width: 98%;
		height: 40px;
	}

		#Offer > div > form > p > input {
			padding: 5px 29px 5px 20px;
			width: -webkit-fill-available;
			height: 30px;
		}

}
