.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.nowrap {
	white-space: nowrap;
}

.table {
    display: table;
    width: 100%;
    margin-bottom: 1.5em;
    border-collapse: collapse;
    border-spacing: 0;
}

.tr {
    display: table-row;
}
.th, .td {
    display: table-cell;
    border-bottom: 1px solid #f2f2f2;
    padding: 0.5em 1em;
}
.th {
	font-weight: bold;
	vertical-align: bottom;
	border-bottom-width: 2px;
	padding: calc((1.6 / 1.2) * 0.5em) calc((1.6 / 1.2) * 1em); /* Faktor der Schriftgrösse * padding */
	font-size: 1.2rem;
	line-height: 1.3;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.shop__tbl--images {
	position: relative;
    width: calc(100% - 150px);
    margin-left: 150px;
}
.shop__tbl--cart {}
.shop__prod-img  {
    width: 100px;
    float: right;
}
.shop__prod-img a {
	color: #706f6f;
    text-decoration: none;
}
.shop__prod-img a:hover,
.shop__prod-img a:focus {
	color: #000;
}
.shop__prod-img a figcaption {
    font-weight: normal;
    font-size: 1.3rem;
}
.shop__price,
.shop__quantity {
    border-left: 1px solid #f2f2f2;
}

.shop__price-total {
	border-top: 2px solid #f2f2f2;
    border-bottom: 6px double #f2f2f2;
    font-weight: bold;
}
.shop__productname {
    width: 100%;
}

.shop__mainproduct {
    font-weight: bold;
}
.shop__add-to-cart .btn--secondary {
    margin: 1.5em 0;
    position: relative;
}
.shop__add-to-cart .btn--secondary::after {
	bottom: 100%;
	left: 1.5em;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(112, 111, 111, 0);
	border-bottom-color: #706f6f;
	border-width: 10px;
	margin-left: -10px;
}