html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}

::-moz-selection {
    background: #FB5D39;
	color: white;
    text-shadow: none;
}

::selection {
    background: #FB5D39;
	color: white;
    text-shadow: none;
}

header ::-moz-selection {
    color: #FB5D39;
	background: white;
    text-shadow: none;
}

header ::selection {
    color: #FB5D39;
	background: white;
    text-shadow: none;
}


body {
	text-align: center;
}
a {
	text-decoration: none;
	color: #FB5D39;
}
a:hover {
	text-decoration: underline;
}

.container {
	max-width: 750px;
	margin: 0 auto;
}

header {
	background-color: #FB5D39;
	color: white;
	padding: 50px 20px 30px 20px;
	position: relative;
}

section {
	padding: 50px 20px 30px 20px;
}
h1 {
	text-indent: -9999px;
	white-space: nowrap;
	overflow: hidden;
	background-image: url("../img/logo.png");
	background-image: url("../img/logo.svg");
    height: 44px;
    width: 196px;
	margin: 0 auto;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-size: 196px 44px;
}
h2 {
	font-size: 0.8em;
	font-weight: normal;
	margin: 20px 0 10px 0;
}
.language {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
    font-weight: 300;
    list-style: none;
    border-radius: 8px;
    background-color: #FB5D39;
    color: white;
	border: 2px solid white;
	cursor: pointer;
	line-height: 40px;
}
.language:hover {
    background-color: white;
    color: red;
}


p {
	font-size: 1.15em;
}
p.small {
	font-size: 0.8em;
	margin-top: 80px;
}
.local-cz {
	display: none;
}

.nick {
	display: inline-block;
	background-color: #efefef;
	border-radius: 18px;
	line-height: 36px;
	height: 36px;
	padding: 0 20px 0 40px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAABGdBTUEAALGPC/xhBQAAAaRJREFUOBGVVD1PAkEQnZk9WguBX6AohTUEO+k0scBY2dnS+1eoTPwFhn+gnQRqCySxs0HAgkILuB333bGX47wzegnZ+dj3dnZ2Hkw536JRb1kKO6p6pMRlJl0w87OQ6ZdH40EWwunAvHVQt6HtqdJJOp62melRjHQrg8nYxxOSeeOwbcn23ek7Plm0uqqWQtKpjF4esCciiSvQ4V8IPHFEZLiJigTB+Ar5FTBJz50192C/4kDg4DOauNb1k09mVzZyFrC8rdahK10r2XzAwbHgFbKJtK/W3ttQq6XAtPMqAl7wjGkQMX+4Tk2TH9EyJHsbKpfyiIAPMAeuzIiHiV+rw0nNNS0ObLHHzqxRu7NKNz4FfIBB8ggl3XtvHsynjf2V3xSv/CkSXBrWlevNdToHfIBJdCWdJgnV3cSGwfRlSK4kJvjRXOAFo7wFyjis5kIMz4peB3iBFjDKGWzK1fMiAuCAj4YNWsAEppCJqWS7efOB/cBhY0QSj650iogSxo0REUA7GxFGJMhBTO7uzd+v5vocqdhpZiM+YBMVw/Hff/9PvgH308vxjBrxIAAAAABJRU5ErkJggg==');
	background-repeat: no-repeat;
	background-position: 10px 10px;
	font-size: 1.2em;
	cursor: pointer;
}
.logos {
	margin: 40px 0 0 0;
}
.logos a {
	text-decoration: none;
	display: inline-block;
	margin: 0 3px 8px 3px;
}

footer {
	padding: 20px;
	font-size: 0.8em;
}

@media (max-width: 650px) {
	.logos a {
		display: block;
	}
}

#modal {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3);
}
#modal > div {
	display: inline-block;
	margin: 30vh auto 0 auto;
	padding: 10px;
	width: 100%;
	text-align: center;
	background-color: white;
	box-sizing: border-box;
}
#modal .askInstalledButton {
	border-radius: 8px;
	background-color: #FB5D39;
	color: white;
	padding: 5px 10px;
	width: 80px;
	display: inline-block;
	margin: 5px 3px;
	font-weight: 600;
}
@media (min-width: 400px) {
	#modal > div {
		width: 400px;
	}
}


#url {
	border: 0;
	opacity: 1;
	text-indent: -9999px;
	color: transparent;
	height: 1px;
	width: 1px;
	position: absolute;
	top: -10px;
	left: -10px;
	background-color: transparent;
	cursor: default;
}


/**
 * (C)Leanest CSS spinner ever
 * Source: http://lea.verou.me/2013/11/cleanest-css-spinner-ever/
 */
@keyframes spin {
	to { transform: rotate(1turn); }
}

.progress {
	position: relative;
	display: inline-block;
	width: 5em;
	height: 5em;
	margin: 0 .5em;
	font-size: 12px;
	text-indent: 999em;
	overflow: hidden;
	animation: spin 1s infinite steps(8);
	color: transparent;
}
.progress:before,
.progress:after,
.progress > div:before,
.progress > div:after {
	content: '';
	position: absolute;
	top: 0;
	left: 2.25em; /* (container width - part width)/2  */
	width: .5em;
	height: 1.5em;
	border-radius: .2em;
	background: #eee;
	box-shadow: 0 3.5em #eee; /* container height - part height */
	transform-origin: 50% 2.5em; /* container height / 2 */
}
.progress:before {
	background: #555;
}
.progress:after {
	transform: rotate(-45deg);
	background: #777;
}
.progress > div:before {
	transform: rotate(-90deg);
	background: #999;
}
.progress > div:after {
	transform: rotate(-135deg);
	background: #bbb;
}