.btn-v2-content {
	display: flex;
	margin-bottom: 5px;  
	justify-content: space-between;
	flex-direction: column;
}
.buttons-v2 {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}
.btn-v2 {
	background-color: #333333; 
	padding: 10px;
	color: #fff; 
	margin: 5px 10px;
	padding: 10px 20px;
	text-transform: uppercase;
	text-align: center;
}
.btn-v2:hover {
	background-color: #C61932;
	color: #fff;
}
.btn-v2-checkout:hover {
	background-color: #6d6b6b;
	color: #fff;
}

.card-details-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.card-details-right img {
	width: 140px;
}

@media screen and (min-width: 500px) {
	.buttons-v2 {
		flex-direction: row;
	}
}

@media screen and (min-width: 1000px) {
	.btn-v2-content {
		flex-direction: row;
	}
	.buttons-v2 {
		display: block;
		margin-top: 0;
	}
}