#main-content.pd-mg-loading-content .row {
	opacity: 0.2;
}

#main-content.pd-mg-loading-content {
	position: relative;
}

#main-content.pd-mg-loading-content::before {
	content: 'Loading products for your vehicle...';
	position: absolute;
	top: 110px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: bold;
	font-size: 20px;
	z-index: 2;
	padding: 50px;
	background: white;
	border-radius: 5px;
	border: 1px solid #fbb03b;
}

#pd-my-garage-details {
	display: flex;
}

#pd-mg-vehicles-list {
    background: white;
    border-radius: 5px;
    color: black;
    padding: 15px;
    cursor: pointer;
    width: 100%;
    position: relative;
}

#pd-mg-all-vehicles {
	position: absolute;
	background: white;
	top: -20px;
	left: -20px;
	right: -20px;
	padding: 20px 10px;
	z-index: 2;
	border-radius: 5px;
}

.pd-mg-all-vehicles-item {
	padding: 10px;
	border-bottom: 1px solid #efefef;
	cursor: pointer;
	font-size: 16px;
	position: relative;
	border-bottom: 1px solid #efefef;
}

.pd-mg-all-vehicles-item:hover {
	background: #efefef;
}

.pd-mg-all-vehicles-item-remove {
	font-size: 20px;
	color: black;
	cursor: pointer;
	padding: 10px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

.fa.fa-trash.pd-mg-all-vehicles-item-remove:hover {
	color: #c00;
}

.pd-mg-all-vehicles-item:last-child {
	border-bottom: none;
}

.pd-mg-all-vehicles-item:nth-child(1)::before {
	content: 'Current vehicle';
	display: block;
	font-size: 12px;
	color: #666;
}

.pd-mg-all-vehicles-item:nth-child(2)::before {
	content: 'Previous vehicles';
	display: block;
	font-size: 12px;
	color: #666;
}

#pd-mg-vehicles-list-icon {
	font-size: 16px
}

#pd-mg-vehicles-list-icon {
	float: right;
	margin: 1px;
	font-size: 19px;
}

#pd-mg-filtered-results-label {
	background: white;
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 20px;
	font-size: 16px;
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

#pd-mg-filtered-results-label-text {
	padding: 15px;
}

.pd-mg-button {
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 20px;
    border-radius: 5px;
    height: 50px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.pd-mg-button-primary {
	background: #fbb03b;
	color: black;
}

.pd-mg-button-primary:hover {
	background: #ffbd56;
}

.pd-mg-button-secondary {
	background: #a6a4a4;
	color: #ece3e3;
}

.pd-mg-button-secondary:hover::after {
	background: #b3b1b1;
}

.pd-mg-filter-toggle-icon {
	color: green;
	font-size: 18px;
	transform: translateY(2px);
	margin-left: 2px;
}

#pd-mg-actions {
	display: flex;
}

#pd-mg-vehicles {
	background: #FBB03B;
	font-weight: bold;
	color: black;
	border-radius: 5px;
}

#pd-mg-vehicles-label {
	margin: 0 13px 0 15px;
	width: 100px;
	transform: translateY(30%);
	white-space: nowrap;
}

.pd-mg-filter-toggle-icon.fa-times-circle {
	color: #c00;
}

@media only screen and (min-width: 768px) {
	#pd-mg-actions-add-mobile {
		display: none;
	}

	#pd-mg-vehicles {
		min-width: 300px;
		width: 600px;
		display: flex;
	}

	#pd-my-garage-details {
		margin: 0 auto;
	}

	#pd-mg-actions {
		margin-left: 15px;
	}
}

@media only screen and (max-width: 768px) {
	#pd-mg-actions-add {
		display: none;
	}
	
	#pd-mg-actions-add-mobile {
		display: block;
	}

	#pd-mg-vehicles-label {
		text-align: center;
	}

	#pd-my-garage-details {
		flex-direction: column;
		width: 100%;
	}

	#pd-mg-actions {
		margin: 15px 0;
		display: flex;
		justify-content: space-between;
	}
	
	#pd-mg-actions > div {
		width: 49%;
	}
}
