.form-container {
	display: flex;
	justify-content: space-around;
	padding: 50px;
}
.form-box {
	border: 2px solid #047ffd; /* blue outline */
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
	width: 300px;
	text-align: center;
	background-color: #f8f9fa; /* Light gray background */
}
.form-box h2 {
	margin-bottom: 20px;
	color: #047ffd; /* blue text color */
}
.form-box label, 
.form-box select, 
.form-box input[type="submit"] {
	font-size: 1.2em; /* Increased font size */
}
.form-box input[type="submit"] {
	margin-top: 20px;
	background-color:#047ffd !important; /* blue button */
	border: none;
	color: white;
	padding: 10px 20px; /* Increased padding */
}


body {
  background: #F5F5F5;
font-family: Arial, sans-serif;
}



.container {
	max-width: 90% !important;
	margin: 50px auto;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(3,121,243);
        border:2px solid #047ffd;
}
.form-title {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.form-label {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}
.template-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.template {
	height: auto;
	aspect-ratio: 16 / 9;
	background-color: #ffffff;
	padding: 20px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border 0.3s ease, box-shadow 0.3s ease;
}
.template.selected {
	border: 2px solid #0089ff;
	box-shadow: 0 0 10px rgba(0,121,245);
}
.btn-next {
	display: block;
	width: 100%;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 5px;
	margin-top: 20px;
}
.car-image-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 20px;
}
.car-image-wrapper {
	width: 18%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background:#ebebeb;
	padding: 5px;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.car-image-wrapper-multi {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background:#ebebeb;
	padding: 5px;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.car-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	background-size:cover; 
	height:185px; 
}
.car-image-multi {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	background-size:cover; 
	height:220px; 
}
.selection-controls {
	display: flex;
	gap: 10px;
}
.c1ar-checkbox {
	width: 40px;
	height: 40px;
}
.image-order-input {
	width: 100px;
	text-align: center;
	font-size:20px;
	color:#000;
	border:1px solid #000;
}
.template img{height:250px; width:250px;}






  .checkbox-wrapper-38 {
	--toggleWidth: 100px;
    --toggleHeight: 40px;
    --switchSize: 40px;
    --dotSize: 6px;

    width: var(--toggleWidth);
    height: var(--toggleHeight);
    position: relative;
  }

  .checkbox-wrapper-38 .toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    border: 1px solid #cd2d27;
    background-color: #ed352d;
    background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    z-index: 5;
    -webkit-transition: background-color 0.2s, border-color 0.2s;
  }
  .checkbox-wrapper-38 .toggle-label:after {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    width: var(--switchSize);
    height: var(--switchSize);
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #fff;
    border-radius: 3px;
    background-image: -webkit-linear-gradient(bottom, rgba(230, 233, 239, 0.31) 0%, rgba(255, 255, 255, 0.31) 100%);
    background-image: linear-gradient(to top, rgba(230, 233, 239, 0.31) 0%, rgba(255, 255, 255, 0.31) 100%);
    -webkit-transition: left 0.2s;
  }
  .checkbox-wrapper-38 .toggle-label:before {
    content: "";
    display: block;
    position: absolute;
    top: calc((var(--switchSize)/2) - 4px);
    left: calc((var(--switchSize)/2) - 4px);
    width: var(--dotSize);
    height: var(--dotSize);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.25);
    background: #d4d6db;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 10;
    -webkit-transition: left 0.2s;
  }

  .checkbox-wrapper-38 .toggle-input {
    margin-left: 10px;
    margin-top: 5px;
  }
  .checkbox-wrapper-38 .toggle-input:checked + .toggle-label {
    border: 1px solid #2c8512;
    text-align: left;
    background-color: #29a105;
  }
  .checkbox-wrapper-38 .toggle-input:checked + .toggle-label:after {
    left: calc(var(--toggleWidth) - var(--switchSize));
  }
  .checkbox-wrapper-38 .toggle-input:checked + .toggle-label:before {
    left: calc(var(--toggleWidth) - var(--switchSize) + 10px);
  }

.img-fluid2{
	height:210px !important;
	width:auto !important;
}