/*Test-Umgebung: https://www.w3schools.com/css/default.asp*/

/*a{color: white;}*/

/*a:VISITED{color: #C0C0C0;}*/

body{
	/* Farben, Schriftgrößen definieren */
	color: #000000;
	background: #FFFFFF;
	/*font-size: 16px;*/
	font-family: "Century Gothic", "Verdana", "Arial", "Helvetica", sans-serif;

	/* Hintergrundbild */
	/*background-image: url("https://www.fraenkische-museumseisenbahn.de/vorlagen/Dampflok.jpg");*/
	/*background-repeat: no-repeat;*/
	/*background-position: center center;*/

}

/* Überschriften */
h1 {
	/*font-size: 16px;*/
}

h2 {
	/*font-size: 16px;*/
}

/*Formatierung Überschrift über Kasten*/
legend {
	/*font-size: 16px;*/
	font-weight: bold;
}

/* Rahmen definieren */
fieldset{
	border: 1px solid black;
	border-radius: 15px;
	/*Abstand über Kasten*/
	margin-bottom: 30px;
}

/* Eingabefelder definieren */
input, select, textarea{
	border: 2px white inset;
	border-radius: 7px;
	color: black;
	background: #f3f3f3;
	padding: 1px 10px;
	font-family: "Century Gothic", "Verdana", "Arial", "Helvetica", sans-serif;
}

/* Button definieren */
button{
	border: 2px white outset;
	border-radius: 7px;
	color: black;
	background: #C0C0C0;
	padding: 1px 10px;
	font-family: "Century Gothic", "Verdana", "Arial", "Helvetica", sans-serif;
	font-weight: bold;
}

#Customer_city{
	max-width: 162px;
}


#orderSum{
	border-top: 2px solid white;
}

/* Tabellen (Mit Beschreibung, Anzahl, etc.) definieren */
td {
	/* Ausrichtung unten */
    vertical-align: center;
	/*Tabellen umranden zum testen */
	border-style: none; /*none oder solid*/
	color: black;
    border-width: 1px;
}

table {
	/* Tabelle über ganzes Fenster */
	width: 100%;
}


/* Spaltenbreiten definieren, teilweise Ausrichtung rechts */
td:nth-child(1) {
	padding: 2px;
    width: 20%; /*25%*/
}

td:nth-child(2) {
    padding: 2px;
    width: 40%; /*20%*/
    text-align:right;
}

td:nth-child(3) {
    padding: 2px;
    width: 15%; /*30%*/
    text-align:right;
    vertical-align: center;
}

td:nth-child(4) {
    padding: 2px;
    width: 25%; /*25%*/
    text-align:right;
}

td:nth-child(5) {
    width: 0%;
}