@font-face {
    font-family: 'UKNumberPlate';
    src: url('../fonts/UKNumberPlate.woff') format('woff'),
         url('../fonts/UKNumberPlate.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



.site-header .site-description {
    line-height: 1.5;
    font-weight: 700;
	margin-top: 2px;
}

.metal-link {
    text-decoration: none !important;
	    color: #000 !important;

}

.metal-link:hover {
    color: #6528f7 !important;
}	




    .main-header-bar {
        border-bottom-width: 0px !important;
    }





@media only screen and (max-width: 768px) {

	.neon-button {
		font-size: 85% !important;
	}

}

.neon-button:hover {
    color: #fff !important;
    background-color: #6528f7; 
}

.neon-button {
    text-decoration: none;
    color: #6528f7 !important;
    background-color: #f7f7ff;
    padding: 3px 14px;
    border-radius: 8px;
	border: 2px solid #6528f7;
    display: inline-block;
    font-size: 100%;
    font-weight: 700;
    word-break: break-word;
    margin: 5px 0px;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
    animation: neonPulse 0s infinite ease-in-out; /*change to 2s*/
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 0px #6528f7, 0 0 0px #6528f7, 0 0 0px #6528f7;
    }
    50% {
        box-shadow: 0 0 0px #6528f7, 0 0 10px #6528f7, 0 0 10px #6528f7;
    }
}






a {
    font-weight: 700;
    /* text-decoration-style: dotted !important; */
    text-underline-offset: 4px; /* Adjusts the space between text and underline */
}

a:focus {
    outline: none;
    outline-color: initial;
    outline-style: none;
    outline-width: thin;
}

a:hover {
color: #6528f7;
}






/* Target the table */
table {
    border-collapse: separate; /* Ensures border-radius works */
    border-spacing: 0; /* Removes gaps between cells */
	border: none;
	border-radius:4px;
}

/* Top-left corner of the first header cell */
th:first-child {
    border-top-left-radius: 8px;
}

/* Top-right corner of the last header cell */
th:last-child {
    border-top-right-radius: 8px;
}

/* Bottom-left corner of the first cell in the last row */
tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

/* Bottom-right corner of the last cell in the last row */
tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

/* Optional: Ensure borders are visible if needed */
th, td {
    border: 0px solid #ddd; /* Adjust border style as needed */
}

td {
	padding: 2em 1em;
}



.elementor-widget-image-carousel .swiper .swiper-slide figure {
    filter: grayscale(1) !important;
}



.elementor img {
    filter: grayscale(100%);
	border-radius: 8px;
    transition: filter 0.3s ease; /* Smooth transition */
}

img {
    filter: grayscale(1);
	border-radius: 8px;
}

.elementor img:hover {
    filter: grayscale(0);
    transition: filter 0.3s ease; /* Smooth transition */

}










.table-anchor {
    padding-top: 20px;
}

.premium-vehicle-notice {
    padding: 20px;
    text-align: center;
    background: #d8d8f5;
    border-radius: 8px;
    border: 0px solid #000;
}





.wpcf7-spinner {
    display: none !important;
}

input.wpcf7-submit {
  border: 0px solid #000;
  background-color: #6528f7;
  color: #fff; /* Optional: makes the text visible on black background */
  width: 100%;
}


input.wpcf7-submit:hover {
  background-color: #038127;
   color: #fff;
}

.wpcf7 input.wpcf7-form-control:not([type=submit]),
.wpcf7 textarea.wpcf7-form-control {
    padding: 12px 16px;
    border: 2px #6528f7 solid;
	border-radius: 8px;
    color: #000 !important;
    font-weight: 600;
    font-size: 16px; 
	background: #fff;
}

.wpcf7 input.wpcf7-form-control:not([type=submit]) {
    height: 65px;
}

.wpcf7 textarea.wpcf7-form-control {
    height: 130px; /* Adjust as needed */
    resize: vertical;  /* Allow resizing */
}




.wpcf7 input.wpcf7-form-control:not([type=submit]), .wpcf7 textarea.wpcf7-form-control {
    text-transform: uppercase !important;
}

.cf7-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cf7-columns .column {
    flex: 1;
    min-width: 250px;
}







/* Lightbox Styles */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}

.lightbox-trigger {
    text-decoration-line: none;
    text-decoration-style: dotted !important;
    text-underline-offset: 4px; /* Adjusts the space between text and underline */
	font-weight: 700 !important;
	min-width: 150px !important;
	border: 2px solid #6528f7;
	font-size: 17px !important;
	padding: 12px 0;
	background-color: #6528f7 !important;
	color: #fff !important;
	border-radius: 8px;
	
}



.lightbox-trigger:hover {
	border: 2px solid #6528f7;
	background-color: #f7f7ff !important;
	color: #6528f7 !important;
	
}


.lightbox-content {
    background: #fff;
    padding: 40px 20px 20px 20px; /* Increased top padding to account for close button */
    max-width: none;
    width: 90%;
    max-height: 80vh; /* Limit height to 80% of viewport height */
    overflow-y: auto; /* Enable vertical scrolling */
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #000;
	text-align: left;
    z-index: 999999999999; /* ensure it's above the overlay */

}

.close-btn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 16px;
    color: #fff;
	background-color: #6528F7; 
    font-weight: bold;
	padding: 10px 15px;
    z-index: 1001; /* Ensure it’s above other content */
	border-radius: 8px;
}

.close-btn:hover {
    color: #fff; /* Slightly darker on hover for better visibility */
}






button {
    box-shadow: none;
}



/* Toggle Switch Styles */
    .switch {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 20px;
		margin-bottom: 10px;
    }
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: 0.4s;
        border-radius: 18px;
    }
    .slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }
    input:checked + .slider {
        background-color: #6528f7;
    }
    input:checked + .slider:before {
        transform: translateX(20px);
    }
    .toggle-label {
        margin-left: 10px;
        vertical-align: middle;
		font-size: 100%;
		font-weight: bold;
    }

@media only screen and (max-width: 767px) {
    .toggle-label {
        margin-left: 10px;
        vertical-align: middle;
		font-size: 90%;
		font-weight: bold;
    }
}






@font-face {
    font-family: 'UKNumberPlate';
    src: url('fonts/UKNumberPlate.woff') format('woff'),
         url('fonts/UKNumberPlate.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}




/*
    ---------- HIDE ALLOY / STEEL WHEEL PRICES BUTTON OFFERS ON LIVEPRICES PAGE ------------


.page-id-11960 td:nth-child(3), .page-id-11960 th:nth-child(3) {
display: none !important;
}

.page-id-17832 td:nth-child(3), .page-id-17832 th:nth-child(3) {
display: none !important;
}

    ---------- END ------------
*/



/*
    ---------- SCRAP CAR PRICES ------------
*/
#quote-form {
	display: inline-block;
	align-items:center;
	justify-content:center;
}

#quote-form .form-group {
	min-width:33.3%;/* width:33.3%; */
	padding-right:0px;
	position:relative; 
	max-width:100%; 
	align-items:center;
	justify-content:center;
}

#quote-form2 .form-group {
	min-width:50%;/* width:50%; */
	padding-right:0px;
	position:relative; 
	max-width:100%; 
	align-items:center;
	justify-content:center;
}

small {
    font-size: 50% !important;
}

.quoteForm h3 { 
	color: #480f54; 
	font-size: 36px; 
	text-align: center; 
	font-weight: bold; 
	margin-bottom: 20px; 
	display: none;
}

.quoteForm h3 span { 
	color:#00a300;
}

#quote-form .form-group .overlay {
	position: absolute;
	top: 0px;
	left: 0;
    background: #000;
	width: 30px;
	height: 64px;
	border:solid 2px #000;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	color: #fff;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	font-size: .5em;
	font-weight: 600;
	padding: 3px;
}

#quote-form .form-group .overlay img {
	max-width: 100%;
	margin: 0 3px;
    filter: grayscale(0); 
}

#quote-form button.getquote {
	display: block;
	clear: both;
	width: 33.3%;
	margin-top: 0px;
	border: 2px solid #6528F7;
	box-shadow: none;
	border-radius: 8px;
    background: #6528F7;
	text-shadow: none;
	text-transform: none;
	color:#fff;
	min-width:33%;
	height:64px;
	margin-bottom:12px;
    font-size:18px;
    font-style: normal;
    padding: 0px !important;
}

#quote-form	.erroReg, #quote-form .erroPost, #quote-form .erroPostN { 
	position:absolute; 
	margin-top:-9px; 
	font-size:15px; 
	color:#fff; 
	display:none;
	background-color: #bf0007;
    padding: 10px;
    width: 100%;
	border-radius: 8px;
}

.loader-image {
	width: 100%; 
	height: 100%; 
	display:none; 
	text-align: center;
	position: fixed; 
	left: 0;
	right: 0;
	top: 0; 
	bottom: 0;
	background: rgba(0,0,0,0.7);
	line-height: 100%;
	z-index: 9;
}

.loader-image img { 
	height:80px; 
	padding:0; 
	border-radius: 8px; 
	background:#fff; 
	position: relative; 
	top: 50%; 
	transform: translateY(-50%); 
	-moz-transform: translateY(-50%); 
	-webkit-transform: translateY(-50%);
}

div#msg {
    margin: auto;
    text-align: center;
    padding: 10px;
    width: 500px;
}

div#msg #success {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #00a300;
    color: #fff;
    font-size: 16px;
}

div#msg #errorMsg {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #e6697b;
    color: #fff;
    font-size: 16px;
}

div#tablepress-10_wrapper {
    display: none !important;
}

.example thead tr th { 
	font-size:16px; 
	line-height:16px; 
	font-style:normal; 
	font-weight: 700;
	color: #fff;
	background-color: #340b3c;
}

.example tbody tr td { 
	font-size:14px; 
	line-height:18px;
	text-align: left;
	text-transform: uppercase;
	vertical-align: middle; 
}

.example tbody tr td .no-alloy { 
	background: #480f54;
    padding: 10px 0px 20px 0px;
	display: inline-block;
	color: #fff;
	border-radius: 8px;
	line-height: 18px;
	font-size: 22px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease 0s;
	text-align: center;
	width: 100%;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
    cursor: pointer;
    animation: pulse 0s infinite;
}



.example tbody tr td .with-alloy { 
	background: #000;
	padding: 10px 0px 20px 0px;
	display: inline-block;
	color: #fff;
	border-radius: 8px;
	font-size: 32px;
	transition: all 0.3s ease 0s;
	text-align: center;
	line-height: 30px;
	width: 100%;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
	text-decoration: none;
  cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse 0s infinite;
}












.example tbody tr td .with-alloy.customFilter:before {
	content: "MAXIMUM BID";
	font-size: 50%;
}



.example tbody tr td .with-alloy.customFilterdeliver:before {
	content: "MAXIMUM BID";
	font-size: 50%;
}

.example tbody tr td .with-alloy.customFill:before {
	content: "PER TONNE";
	font-size: 50%;
}

.example td:nth-child(2),
th:nth-child(2) {
	text-align: left;
	padding: 15px 30px;
}

.example td:nth-child(3),
th:nth-child(3) {
	text-align: center;
	padding: 15px 30px;
}

.example tbody tr td .with-alloy:hover {
    background: #000;
    color: #fff;
}

.example tbody tr td .no-alloy:hover {
	background: #562062;
	color: #fff;
}


.example .sorting::after {
	content: "\f0dc";
}

.example .sorting_asc::after {
	content: "\f0d8";
	padding: 0 0 2px;
}

.example .sorting_desc::after {
	content: "\f0d7";
}

#errorMsg { 
	text-align:center; 
	color:#000; 
	background-color: #fff; 
	padding: 10px;
	width: 100%;
	font-size: 100%;
}

#errorMsg1 { 
	text-align:center; 
	color:#fff; 
	background-color: #bf0007; 
	padding: 10px;
	width: 100%;
	font-size: 100%;
	font-weight: bold;
		border-radius: 8px;


}

ul.custom-data { 
	display: flex; 
	flex-wrap: wrap; 
	border-top:1px solid #ddd; 
	border-left:1px solid #ddd; 
	text-align: center;
}


ul.custom-data li { 
	width: 33.33%; 
	border-bottom: 1px solid #ddd; 
	border-right:1px solid #ddd; 
	margin: 0; 
	padding: 10px 15px;
}

ul.custom-data li .text-primary { 
	color: #480f54; 
	font-weight:600;
}

ul.custom-data li .text-muted { 
	color: #000; 
	font-style: italic; 
	font-size: 90%;
}

span.clsL { 
	font-size: 14px !important; 
	font-style: normal;
	text-transform: uppercase;
}

span.memName {
	font-size: 22px !important; 
	font-weight: bold;
	text-transform: none;
	line-height: 26px;

}

.quoteForm.reg-form { 
	width: 100%; 
	text-align: center; 
	margin: auto;
}

.quoteForm.reg-form #quote-form .form-group {
	min-width: 50%
}

.quoteForm.reg-form #quote-form button.getquote {
	min-width: 50%
}






/*
    ---------- EXAMPLE TABLE WITH NO FILTER TABLE CSS ------------    
    ---------- EXAMPLE TABLE WITH NO FILTER TABLE CSS ------------    
    ---------- EXAMPLE TABLE WITH NO FILTER TABLE CSS ------------    
    ---------- EXAMPLE TABLE WITH NO FILTER TABLE CSS ------------    
    ---------- EXAMPLE TABLE WITH NO FILTER TABLE CSS ------------    

*/



.exampleNofilter thead tr th { 
	font-size:16px; 
	line-height:20px; 
	font-style:normal; 
	background-color: #6528f7;
    color: #fff;
	border: 0px solid #ddd;
	font-weight: 700;
	text-transform: uppercase;
	
}

.exampleNofilter tbody tr td { 
	font-size:15px !important; 
	line-height:22px !important;
	text-transform: none;
	vertical-align: middle; 
	text-align: left;
	background-color: #f7f7ff;
    border: 0px solid #ddd;
	padding: 1.5em 1em !important;
	border-bottom: 10px solid #fff;

	

}

.exampleNofilter tbody tr td .no-alloy { 
	background: #480f54;
    padding: 10px 0px 20px 0px;
	display: inline-block;
	color: #fff;
	border-radius: 8px;
	line-height: 18px;
	font-size: 22px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease 0s;
	text-align: center;
	width: 100%;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
    cursor: pointer;
    animation: pulse 0s infinite;
}



.exampleNofilter tbody tr td .with-alloy { 
	background: #6528F7;
	padding: 5px 0px 20px 0px;
	display: inline-block;
	color: #fff;
	border-radius: 8px;
	font-size: 36px;
	transition: all 0.3s ease 0s;
	text-align: center;
	line-height: 30px;
	width: 100%;
	font-weight: 700;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
	text-decoration: none;
    cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse 0s infinite;
}












.exampleNofilter tbody tr td .with-alloy.customFilter:before {
	content: "MAXIMUM BID";
	font-size: 50%;
}

.exampleNofilter tbody tr td .with-alloy.customFilterdeliver:before {
	content: "BOOK DELIVERY";
	font-size: 35%;
}

.exampleNofilter tbody tr td .with-alloy.customFillNofilter:before {
	content: "BOOK COLLECTION";
	font-size: 35%;
}

.exampleNofilter th:nth-child(1) {
	text-align: left !important;
	padding: 15px 15px !important;
}

.exampleNofilter th:nth-child(2) {
	text-align: center !important;
	padding: 15px 30px;
}

.exampleNofilter th:nth-child(3) {
	text-align: center !important;
	padding: 15px 30px;
}


.exampleNofilter td:nth-child(1) {
	text-align: left;
	padding: 15px 30px;

}


.exampleNofilter td:nth-child(2),
th:nth-child(2) {
	text-align: center;
	padding: 15px 30px;

}

.exampleNofilter td:nth-child(3),
th:nth-child(3) {
	text-align: center;
	padding: 15px 30px;
}

.exampleNofilter tbody tr td .with-alloy:hover {
    background: #6528F7;
    color: #fff;
}

.exampleNofilter tbody tr td .no-alloy:hover {
	background: #562062;
	color: #fff;
}

.exampleNofilter .sorting, .exampleNofilter .sorting_asc, .exampleNofilter .sorting_desc {
	position: relative;
	padding-right: 20px;
	cursor: pointer;
	outline: 0;
}

.exampleNofilter .sorting::after, .exampleNofilter .sorting_asc::after, .exampleNofilter .sorting_desc::after {
	font-family: TablePress;
	font-weight: 400;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	position: absolute;
	top: 0;
	bottom: 0;
	left: auto;
	right: 6px;
	margin: auto;
	height: 14px;
	line-height: 1;
	display: none !important;

}

.exampleNofilter .sorting::after {
	content: "\f0dc";
}

.exampleNofilter .sorting_asc::after {
	content: "\f0d8";
	padding: 0 0 2px;
}

.exampleNofilter .sorting_desc::after {
	content: "\f0d7";
}





/*
    ---------- SCRAP CAR PRICES ------------
*/
#quote-form {
	display: flex;
	align-items:center;
	justify-content:center;
}

#quote-form2 {
	display: flex;
	align-items:center;
	justify-content:center;
}

#quote-form .form-group {
	min-width:33.3%;/* width:33.3%; */
	padding-bottom:10px;
	padding-right: 10px;
	position:relative; 
	max-width:100%; 
	align-items:center;
	justify-content:center;
}

#quote-form2 .form-group {
	min-width:33%;/* width:50%; */
	padding-right:0px;
	position:relative; 
	max-width:100%; 
	align-items:center;
	justify-content:center;
}

#quote-form .form-group input {
	height:64px;
	font-weight: bolder;
	font-size:40px;
	padding:0 20px 0 40px;
	width:100%;
	border-radius: 8px;
	border:solid 2px #000;
	margin-bottom: 0px;
	text-align:center;
	text-transform:uppercase;
	background-color:#fff;
	font-family: 'UKNumberPlate' !important;
	font-weight: 800;
	color: #000 !important;
}


.heroinput::placeholder {
    color: #888;
    opacity: 1;
}

small {
    font-size: 50% !important;
}

.quoteForm h3 { 
	color: #480f54; 
	font-size: 36px; 
	text-align: center; 
	font-weight: bold; 
	margin-bottom: 20px; 
	display: none;
}

.quoteForm h3 span { 
	color:#00a300;
}






#quote-form	.erroReg, #quote-form .erroPost, #quote-form .erroPostN { 
	position:absolute; 
	margin-top:5px; 
	font-size:15px; 
	color:#bf0007; 
	display:none;
	background-color: transparent;
    padding: 10px;
    width: 98%;
	text-align: center;
	text-transform: uppercase;
	border-radius: 8px;
	font-weight: 700;
}

.loader-image {
	width: 100%; 
	height: 100%; 
	display:none; 
	text-align: center;
	position: fixed; 
	left: 0;
	right: 0;
	top: 0; 
	bottom: 0;
	background: rgba(0,0,0,0.7);
	line-height: 100%;
	z-index: 9;
}

.loader-image img { 
	height:80px; 
	padding:0; 
	border-radius: 8px; 
	background:#fff; 
	position: relative; 
	top: 50%; 
	transform: translateY(-50%); 
	-moz-transform: translateY(-50%); 
	-webkit-transform: translateY(-50%);
}

div#msg {
    margin: auto;
    text-align: center;
    padding: 10px;
    width: 500px;
}

div#msg #success {
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #00a300;
    color: #fff;
    font-size: 16px;
}

div#msg #errorMsg {
    border: 0px solid #ccc;
    padding: 10px;
    background-color: #bf0007;
    color: #fff;
    font-size: 16px;
		border-radius: 8px;

}



.quoteForm.reg-form { 
	width: 100%; 
	text-align: center; 
	margin: auto;
}

.quoteForm.reg-form #quote-form .form-group {
	min-width: 50%
}





/*
    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------


*/








/*
    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------

    ---------- MOBILE CSS ------------    ---------- MOBILE CSS ------------


*/

@media only screen and (max-width: 991px) {

	
.exampleNofilter tbody tr td .with-alloy { 
	padding: 3px 0px 20px 0px;
		line-height: 24px;

}	
	
	
#quote-form button.getquote {
width: 100%;
}	
	
	


	
	
	
.exampleNofilter tbody tr td .with-alloy.customFilter:before {
	content: "MAXIMUM BID";
	font-size: 30%;
}

.exampleNofilter tbody tr td .with-alloy.customFilterdeliver:before {
	content: "BOOK DELIVERY";
	font-size: 30%;
}

.exampleNofilter tbody tr td .with-alloy.customFillNofilter:before {
	content: "BOOK COLLECTION";
	font-size: 30%;
}
	
	.quoteForm { 
	padding-top:0px;
	}
	
#quote-form {
	display:block;
	flex:nowrap;
	align-items:center;
	justify-content:center;
	margin:0 auto
	}
	
.example tbody tr td {
	font-size: 10px; 
	line-height: 11px;
	}
	
.exampleSkip tbody tr td {
	font-size: 9px; 
	line-height: 11px;
	}	

.exampleNofilter tbody tr td {
	font-size: 13px !important; 
	line-height: 20px !important;
	}	
}

@media only screen and (max-width: 767px) {
	
.exampleNofilter tbody tr td .with-alloy { 
	padding: 3px 0px 20px 0px;
		line-height: 24px;

}
	
.quoteForm h3 { 
	line-height:normal;
	}
	
#quote-form .erroReg, #quote-form .erroPost, #quote-form .erroPostN { 
	position:static; 
	margin:0 0 9px;
	width: 100%;
	}
	


	#quote-form .form-group {
	min-width:33.3%;/* width:33.3%; */
	padding-bottom: 10px;
	padding-right: 0px;
	position:relative; 
	max-width:100%; 
	align-items:center;
	justify-content:center;
}
	
	
	
	
	
#quote-form {
	display:block;
	flex:nowrap;
	align-items:center;
	justify-content:center;
	margin:0 auto
	}	
	

	
.example thead tr th { 
	min-width:0px; 
	font-size:10px; 
	line-height:12px;
	}

.example tbody tr td .no-alloy {
    font-size: 16px;
	}
	
.example tbody tr td .with-alloy{
     font-size: 20px;
	}
	

	
.exampleNofilter tbody tr td .with-alloy.customFilter:before {
	content: "MAXIMUM BID";
	font-size: 30%;
}

.exampleNofilter tbody tr td .with-alloy.customFilterdeliver:before {
	content: "BOOK DELIVERY";
	font-size: 30% !important;
}

.exampleNofilter tbody tr td .with-alloy.customFillNofilter:before {
	content: "BOOK COLLECTION";
	font-size: 30% !important;
}	
	
	
	.exampleNofilter thead tr th { 
	min-width:0px; 
	font-size:10px !important; 
	line-height:12px !important;
	}

.exampleNofilter tbody tr td .no-alloy {
    font-size: 16px !important;
	}
	
.exampleNofilter tbody tr td .with-alloy {
     font-size: 30px !important;
	}
	/* Cells in mobile table */
.exampleNofilter tbody tr td { 
	font-size: 11px !important; 
	line-height: 16px !important;
	}

	
span.clsL {
    font-size: 11px !important;
    font-style: normal;
    text-transform: uppercase;
}
	
span.memName {
    font-size: 14px !important;
    font-weight: bold;
	line-height: 20px;
}
	
.example td:nth-child(2),
th:nth-child(2)
	{
	text-align: center;
	padding: 10px 10px;
}

.example td:nth-child(3),
th:nth-child(3) {
	text-align: center;
	padding: 10px 10px;
}
	
.exampleNofilter td:nth-child(2),
th:nth-child(2)
	{
	text-align: center;
	padding: 10px 10px;
}

.exampleNofilter td:nth-child(3),
th:nth-child(3) {
	text-align: center;
	padding: 10px 10px;
}
	
	


	
	
	
	
}