/**
 * Pattriz External Courses – custom button styling.
 *
 * The button carries the theme's add-to-cart classes
 * (.button.alt.single_add_to_cart_button) so it inherits the same
 * padding, font and text-transform as the real "IN DEN WARENKORB"
 * button. These rules force white text (the theme otherwise colours
 * the link), set the black base / purple hover, and reduce the width
 * to 60%.
 */

.pattriz-external-button.button,
.pattriz-external-button.button.alt,
.pattriz-external-button.single_add_to_cart_button {
	display: inline-block;
	width: 60%;
	box-sizing: border-box;
	text-align: center;
	background-color: #000;
	color: #fff !important;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.pattriz-external-button.button:hover,
.pattriz-external-button.button:focus,
.pattriz-external-button.button.alt:hover,
.pattriz-external-button.button.alt:focus,
.pattriz-external-button.single_add_to_cart_button:hover,
.pattriz-external-button.single_add_to_cart_button:focus {
	background-color: #5f43d6;
	color: #fff !important;
}
