@font-face {
    font-family: 'Latin Modern Mono';
    src: url('./fonts/lmmono10-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Latin Modern Mono Caps';
    src: url('./fonts/lmmonocaps10-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html { 
	background: no-repeat center top fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-image: url('../images/bg4.jpg');
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	font-family: 'Latin Modern Mono', 'Lucida Console', Monaco, monospace;
	font-size: 18px;
	margin: 0;
	padding: 0;
	line-height: 1.2;
	height: 100%;
}

.flash {
	padding: 10px 10px;
	border: 2px solid;
	border-radius: 5px;
}

.flash .close {
	float: right;
	margin-left: 1em;
}

.success {
	background: #b3ff99;
	border-color: #269900;
}

.error {
	background: #ff8080;
	border-color: #990000;
}

h1, h2, h3, h4 {
	font-family: 'Latin Modern Mono Caps', 'Latin Modern Mono', 'Lucida Console', Monaco, monospace;
	color: #c44443;
}

h1 {
	font-size: 32px;
	margin: 50px 0 20px;
	letter-spacing: 3px;
}

h2 {
	font-size: 24px;
	margin: 40px 0 20px;
	letter-spacing: 1px;
}

h3 {
	font-size: 20px;
	margin: 20px 0 10px;
}

h1 + h2 {
	margin-top: 0px;
}

h2 + h3 {
	margin-top: -20px;
}

h4 {
	font-size: 18px;
	margin: 20px 0 10px;
}

a {
	color: #c44443;
	text-decoration: none;
}

a:hover {
	color: #798764;
}

nav.navigation {
	display: block;
	margin-bottom: 0px;
	margin-top: 40px;
}

nav.navigation ul, nav.locales ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

nav.navigation ul {
	width: 100%;
	margin-bottom: 10px;
	text-align: center;
}

nav.locales ul {
	text-align: right;
	margin-bottom: 20px;
}

nav.navigation ul li {
	display: inline;
	margin-right: 15px;
}

nav.locales ul li {
	display: inline;
	margin-left: 5px;
}

a.current {
	color: #798764;
	font-weight: bold;
}

#container {
	max-width: 560px;
	margin: 0px auto;
	padding: 10px 30px 40px;
	background: rgba(255, 255, 255, 0.85);
	text-align: center;
	min-height: 100%;
	box-sizing: border-box;
	position: relative;
}

#content p {
	margin: 0 0 1em;
}

#content ul {
	margin: 20px 0;
	padding: 0;
	list-style-type: none;
}

#content ul li {
	margin: 0 0 10px;
	padding: 0;
}

#content ul.gallery {
	text-align: center;
	width: 460px;
	margin: 40px auto 60px;
}

#content ul.gallery + * {
	clear: both;
}

#content .gallery li {
	display: block;
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	width: 140px;
}

#content .gallery li:last-of-type {
	margin-bottom: 40px;
}

#content .gallery li:nth-of-type(3n + 3) {
	margin-right: 0px;
}

.accordion {
	background: none;
    cursor: pointer;
    width: 100%;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    font-weight: bold;
}

.accordion:hover {
	color: #c44443;
	text-decoration: underline;
}

#content .accordion:active, #content .accordion:focus {
	outline: none;
}

a.accordion {
	color: #c44443;
}


#content ul.items, .more {
    display: none;
    margin-top: 10px;
}

.info {
	font-style: italic;
}

.news {
	border: 1px solid #c44443;
	background: rgba(82, 139, 170, 0.6);
	color: black;
}

.news li {
	display: block;
	padding: 20px 10px !important;
}

#content .news {
	margin: 40px 0 20px 0;
}

.anotation {
	margin-bottom: 20px !important;
}

.buy-button {
	display: block;
	width: 100px;
	margin: 40px auto 20px;
	font-weight: bold;
	padding: 10px 15px;
	border-radius: 5px;
	border: 2px solid #c44443;
	box-shadow: 0px 0px 10px red;
	font-family: 'Latin Modern Mono Caps', 'Latin Modern Mono', 'Lucida Console', Monaco, monospace;
}

@keyframes buyButton {
	from { box-shadow: 0px 0px 0px red; }
	to { box-shadow: 0px 0px 30px red; }
}

.animated {
	animation-name: buyButton;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}

.buy-button:hover {
	animation-play-state: paused;
	background: pink;
}

a.buy-button:hover {
	text-decoration: none;
}

form table {
	width: 90%;
	margin: 0px auto 40px;
	font-size: 15px;
}

form table th {
	text-align: right;
	vertical-align: baseline;
	padding: 5px 0 10px;
	white-space: nowrap;
}

form table td {
	padding: 5px 0 10px 10px;
	text-align: left;
	vertical-align: baseline;
}

.required th label:before {
	content: '*';
	color: #c44443;
	padding-right: 5px;
}

input, textarea {
	font-family: 'Latin Modern Mono', 'Lucida Console', Monaco, monospace;
	font-size: 15px;
	border: none;
	background: none;
}

input[type=text], input[type=email], input[type=date] {
	border-bottom: 1px dotted black;
	width: 100%;
}

input[type=number] {
	border-bottom: 1px dotted black;
	width: 3em;
}

textarea {
	border: 1px dotted black;
	width: 100%;
	height: 6em;
	resize: none;
}

input[type=submit] {
	border: 2px solid #c44443;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	color: #c44443;
	box-shadow: 0px 0px 10px red;
}

input[type=text]:focus, input[type=email]:focus, input[type=date]:focus, input[type=number]:focus, textarea:focus {
	background: white;
	outline: none;
}

input[type=submit]:hover, input[type=submit]:focus {
	background: pink;
}

form p.error {
	font-weight: bold;
	background: none;
	color: red;
	margin: 5px 0 0 !important;
}

p#price-info {
	margin: 0;
	font-weight: bold;
	color: #c44443;
}

table.cart {
	width: 100%;
}

table.cart td {
	vertical-align: top;
	padding-bottom: 15px;
}

table.cart td.title {
	text-align: left;
	width: 50%;
}

table.cart td.price {
	text-align: right;
	width: 25%;
}

table.overview {
	font-size: 90%;
}

table.overview th {
	width: 30%;
	text-align: right;
	vertical-align: top;
}

table.overview td {
	text-align: left;
	padding-left: 10px;
	vertical-align: top;
}

table.overview .price {
	font-weight: bold;
	color: #c44443;
}

table.email textarea {
	height: 20em;
}
