*, *:after, *:before {
	box-sizing: border-box;
}
a { 
	text-decoration: none; 
	outline: none;
}
body {
	overflow: hidden;
	height: 100vh;
	font-family: 'Fira Mono', monospace;
	font-weight: 500;
	font-style: normal;
	margin: 0;
	color: #cecece;
    background: #e5e5e5;
}
.registration__content {
    position: fixed;
    width: 100vw;
    height: 100vh;
	overflow-y: scroll;
    background: #545953;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-direction: column;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    text-align: center;
	color: #FEFEFE;
}
.registration__content.active {
	opacity: 1;
	z-index: 100;
}
.close__registration {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 16px;
    padding: 5px 9px;
    width: 38px;
    height: 38px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    font-size: 22px;
    color: #e5e5e5;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    z-index: 1000;
    text-align: center;
}
.page {
    position: fixed;
    width: 100%;
    height: 100vh;
    pointer-events: auto;
    background: #e5e5e5;
}
.form {
    position: relative;
    margin: 0 auto;
    min-height: 100vh;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.page .form {
	max-width: 320px;
}
.registration__content .form {
	max-width: 420px;
}
.form__item__row {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
}
.form__item {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    margin: 0 0 1rem 0;
}
.form__item p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
	margin: 0 0 0.5rem 0;
}
.form__item h4 {
    color: #e66d6d;
	text-align: center;
	margin: 0;
}
.form__link {
	padding: 0.6rem;
    font-size: 1rem;
    line-height: 1.3rem;
	font-family: 'Fira Mono', monospace;
	font-weight: 500;
	font-style: normal;
    color: #fff;
    background: #2579BF;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    outline: none;
    -webkit-box-shadow: 0 -2px 6px rgba(14,21,47,.03), 0 6px 18px rgba(14,21,47,.13);
    box-shadow: 0 -2px 6px rgba(14,21,47,.03), 0 6px 18px rgba(14,21,47,.13);
}
.form__link:disabled {
	background: rgba(37, 121, 191, 0.4);
}
.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    color: #fff;
    text-align: center;
}
.form__input {
	display: block;
    font-size: 1.1rem;
    padding: 0.8rem;
    width: 100%;
    border: 2px solid #aaa;
    background: #aaa;
    position: relative;
    font-weight: bold;
    color: #fff;
    outline: none;
}
.form__input.reded {
	border-bottom: 2px solid #e66d6d;
}
#signature {
	border-top: 2px solid transparent;
}
#signature.reded {
	border-top: 2px solid #e66d6d;
}
.form__button {
	display: block;
    padding: 1rem 1.5rem;
    font-weight: bold;
    font-size: 1rem;
    border: 0;
    margin: 0.2rem auto;
    background: #2579BF;
    border-radius: 2px;
    color: #FEFEFE;
    align-self: center;
	cursor: pointer;
	outline: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}
.form__button:hover {
    background: #FEFEFE;
    color: #2579BF;	
}
.form__checkbox {
    width: 30px;
    height: 30px;
    padding: 0;
	margin: 0 0.6rem;
}
.checkbox__info {
	font-size: 0.6rem;
    font-weight: 700;
	color: #e66d6d;
}
.carname {
    background: #545953;
    text-align: center;
    font-size: 1.2rem;
    padding: 1rem 1rem 0.5rem;
}
.driver {
    background: #545953;
    text-align: center;
    font-size: 1rem;
    padding: 0 1rem 0.5rem;
    display: -webkit-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	border-bottom-right-radius: 2px;
	border-bottom-left-radius: 2px;
}
.driver i {
	font-size: 1.2rem;
}
.driver span {
    padding-left: 0.6rem;
}
label[for="platenum"] {
	color: #545953;
	font-size: 1rem;
}
input[name="platenum"] {
	color: #545953;
	border: 2px solid #545953;
    background: #fff;
	text-transform: uppercase;
    font-size: 2.2rem;
    padding: 0.8rem;
	text-align: center;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}
input[name="platenum"]::-webkit-input-placeholder {
	color: #cecece;
}
input[name="platenum"]::-moz-placeholder {
	color: #cecece;
}
input[name="platenum"]::-ms-input-placeholder {
	color: #cecece;
}
.penalty__box {
	width: 100%;
    height: 400px;
	padding-bottom: 10px;    
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.penalty__box.scrolling {
	overflow-y: scroll;
}
.penalty__box h2 {
    color: #e66d6d;
    font-size: 1.3rem;
    text-align: center;
    margin: 120px 0 20px 0;
}
.penalty__box h6, .penalty__box a {
    color: #598986;
    text-align: center;
    font-size: 0.7rem;
	margin: 0.2rem;
    font-family: 'PT Sans Narrow', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.penalty__box a {
    border-bottom: 1px solid #598986;
}
.penalty__box i {
    color: #e66d6d;
    font-size: 4rem;
    text-align: center;
}
.penalty {
	margin: 12px;
    display: -webkit-box;
    display: flex;
	-webkit-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 16px rgba(0,0,0,.1);
}
.penalty span {
    color: #545953;
    font-size: 0.8rem;
    margin: 0 0 0.4rem;
    text-align: center;
}
.penalty__row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
	padding: 0.6rem 0.6rem 0 0;
}
.penalty__box a i {
	color: #545953;
	font-size: 1.1rem;
}
.penalty__column {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 0.6rem 0.6rem;
}
.penalty__row span:nth-child(1) {
	padding: 0.3rem 0.7rem;
    background: #F7B32B;
    font-size: 1.1rem;
    font-weight: 700;
    border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.penalty__row span:nth-child(2) {
	padding: 0.2rem 0.4rem;
	border-radius: 2px;
	font-size: 0.8rem;
	color: #aba8a8;
	font-weight: 700;
}
.penalty__column span:nth-child(2) {
	color: #e66d6d;
    font-weight: 700;
    font-size: 0.7rem;
}
.clear__sign {
	position: absolute;
	bottom: 0;
	right: 0;
	background: transparent;
	color: #757575;
	border: 0;
	outline: none;
	cursor: pointer;
	padding: 8px;
	font-size: 26px;
}
.clear__sign:hover {
    color: #cecece;
}
::-webkit-scrollbar {
	width: 17px;
    height: 17px;
}
::-webkit-scrollbar-thumb {
	min-height: 34px;
    min-width: 34px;
    background-color: rgba(170,170,170,.5);
    background-clip: content-box;
    border: 5px solid transparent;
}
@media screen and (max-height: 768px), (max-width: 540px) {
	.form {
		width: 300px;
	}
	.penalty__box {
		height: 310px;
	}
	label[for="platenum"] {
		font-size: 0.9rem;
	}
	input[name="platenum"] {
		font-size: 1.8rem;
		padding: 0.6rem;
	}
	.carname, .driver {
		font-size: 0.9rem;
	}
	.form__link {
		font-size: 0.9rem;
		line-height: 1rem;
	}
	.form__item {
		margin: 0 0 0.5rem 0;
	}
	.form__label {
		font-size: 0.6rem;
	}
	.form__input {
		font-size: 0.9rem;
		padding: 0.35rem;
	}
	.form__item p {
		font-size: 0.6rem;
	}
	.form__button {
		padding: 0.8rem 1rem;
		font-size: 0.9rem;
	}
}
@media screen and (max-height: 375px) {
    #signature, #push__subscribe, .checkbox__info, .form__button, .clear__sign, .close__registration, .form__item p, .penalty__box {
		display: none;
    }
}