@charset "UTF-8";
@font-face {
	font-family: 'SF Pro';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/SFProDisplay-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'SF Pro';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/SFProDisplay-RegularItalic.woff2') format('woff2');
}
@font-face {
	font-family: 'SF Pro';
	font-style: normal;
	font-weight: 600;
	src: url('fonts/SFProDisplay-Semibold.woff2') format('woff2');
}
@font-face {
	font-family: 'SF Pro';
	font-style: thin;
	font-weight: 200;
	src: url('fonts/SFProDisplay-Thin.woff2') format('woff2');
}
@font-face {
	font-family: 'Courier Prime';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/CourierPrime-Regular.woff2') format('woff2');
}
:root {
	--black:#373D49;
	--red:#c7254e;
	--rose:#f9f2f4;
	--white: #fff;
	--blue: #1a73e8;
	--dark-blue: #145ab5;
	--sky: rgba(26, 115, 232, 0.1);
	--bil24: #32325d;
	--gray: #bdbdbd;
	--blue: #1a73e8;
	--dark-blue: #145ab5;
	--green: #007F00;
	--salat: #f3f8f3;
	
}
*, ::before, ::after {
	margin: 0;
	padding: 0;
	border: 0 none;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
:focus {
	outline: none;
}
html, body {
	height: 1px;
	min-height: 100%;
	font-family: 'SF Pro', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	font-feature-settings: 'dlig' 1,'liga' 1,'lnum' 1,'kern' 1;
	color: var(--black);
	background: var(--white);
	word-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
}
.body {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem;
}
.body.readme {
	max-width: 1024px;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
}
.inner {
	padding-bottom: 30px;
}
h3.upper {
	text-align: center;
	text-transform: uppercase;
}
p.subtitle {
	text-align: center;
	color: var(--red);
}
input {
	font-family: 'SF Pro', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	color: var(--black);
}
input[type="submit"],
input[type="text"]{
	-webkit-appearance: none;
}
input[placeholder] {
	text-overflow: ellipsis;
}
input:-moz-placeholder {
	text-overflow: ellipsis;
}
input:-ms-input-placeholder {
	text-overflow: ellipsis;
}
a {
	color: var(--blue);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
.breadcrumbs {
	width: 100%;
	margin: 1rem 0 2rem;
	display: block;
}
.breadcrumbs > div {
	position: relative;
	height: 100%;
}
.breadcrumbs a,
.breadcrumbs span {
	position: relative;
	padding-right: 30px;
	display: inline-block;
}
.breadcrumbs a::before,
.breadcrumbs a::after {
	content: '';
	position: absolute;
	top: 4px;
	right: 15px;
	width: 1px;
	height: 7px;
	background: var(--gray);
	display: block;
}
.breadcrumbs a::before {
	transform: rotate(-45deg);
}
.breadcrumbs a::after {
	top: 9px;
	transform: rotate(45deg);
}
.readme h1 {
	font-size: 2.0571429rem;
	margin-bottom: 0.21999rem;
	padding-top: 0.78001rem;
}
.readme h2 {
	font-size: 1.953125rem;
	margin-bottom: 0.1835837rem;
	padding-top: 0.8164163rem;
}
.readme h3 {
	font-size: 1.6457143rem;
	margin-bottom: 0.07599rem;
	padding-top: 0.92401rem;
}
.readme ul, .readme ol {
	margin-bottom: 0.83999rem;
	padding-top: 0.16001rem;
}
.readme p {
	margin-bottom: 1.33999rem;
	padding-top: 0.66001rem;
}
ul {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	text-align: left;
}
li {
	padding: 1rem 0 0;
	list-style: disc outside;
}
li ul {
	padding: 0 0 0 1rem;
}
li li {
	list-style: circle outside;
}
li blockquote {
	padding: 1rem;
}
blockquote li {
	padding: 0.5rem 0 0;
}
blockquote li:first-child {
	padding: 0;
}
code, mark, data {
	padding: 2px 4px;
	font-family: 'Courier Prime', monospace;
	font-size: 0.85rem;
	line-height: 1.15rem;
	color: var(--red);
	background: var(--rose);
	border-radius: 4px;
}
code {
	color: var(--red);
	background: var(--rose);
}
mark {
	color: var(--green);
	background: var(--salat);
}
data {
	color: var(--blue);
	background: var(--sky);
}
i {
	font-size: 0.85em;
	opacity: 0.85;
}
smile {
	font-size: 1.25em;
}
.fieldset {
	margin: 1.33999rem 0;
	padding: 1.33999rem 0.66001rem;
	width: 30rem;
	border: 1px solid var(--gray);
}
.field {
	padding-bottom: 0.66001rem;
}
.field:last-child {
	padding-bottom: 0;
}
.field-checkbox {
	display: flex;
	flex-wrap: wrap;
}
.required {
	position: relative;
}
.required::after {
	content: '*';
	color: var(--red);
}
input[type="checkbox"] {
	margin-right: 0.5rem;
}
select,
input[type="text"] {
	width: 20em;
	margin-top: 0.25rem;
	padding: 0.75em;
	border: 1px solid var(--gray);
	border-radius: 3px;
}
.error select,
.error input[type="text"] {
	border-color: var(--red);
}
select {
	width: 21em;
}
.desc {
	width: 100%;
	padding: 0.5rem 0 0 1.45rem;
	font-size: 0.9rem;
	line-height: normal;
	font-style: italic;
	opacity: 0.8;
}
.error .desc {
	color: var(--red);
}
.download, .linkmaker {
	position: relative;
	margin: 20px 20px 10px 0;
	padding: 10px 20px 12px 50px;
	font-size: 1.5em;
	font-weight: 500;
	color: var(--white);
	text-decoration: none !important;
	background: var(--blue);
	border-radius: 4px;
	display: inline-block;
}
.download:hover, .linkmaker:hover {
	background: var(--dark-blue);
}
.download ._svg, .linkmaker ._svg {
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.download path, .linkmaker path {
	fill: var(--white);
}
#version {
	position: relative;
	color: var(--blue);
	display: inline-block;
}
#linkhref {
	margin: 20px;
	color: var(--blue);
}
.hide {
	display: none;
}
footer {
	width: 100%;
	max-width: 960px;
	margin: 6rem auto 0;
	font-size: 14px;
	font-weight: 200;
	opacity: 0.75;
	border-top: 1px solid var(--gray);
}
footer p {
	margin-bottom: 1.33999rem;
	padding-top: 0.66001rem;
}

@media screen and (min-width: 768px) {
	html, body {
		font-size: 16px;
	}
}