@import 'https://fonts.googleapis.com/css?family=Dancing+Script';

@font-face {
  font-family: DIN-Regular;
  src: url("../fonts/da088ecc-a53c-4831-a95b-6fd81b5b338a.eot?#iefix");
  src: url("../fonts/da088ecc-a53c-4831-a95b-6fd81b5b338a.eot?#iefix") format("eot"), url("../fonts/44e7b0fa-6c8d-43c2-b19e-f1e3ce9ea57c.woff2") format("woff2"), url("../fonts/c5a7f89e-15b6-49a9-8259-5ea665e72191.woff") format("woff"), url("../fonts/868c94b5-ca49-46b7-b62b-297f8d861125.ttf") format("truetype"), url("../fonts/e3145f65-29b5-4f7f-8c6e-2dc135021b6a.svg#e3145f65-29b5-4f7f-8c6e-2dc135021b6a") format("svg");
}
@font-face {
  font-family: DIN-Medium;
  src: url("../fonts/324dee78-6585-4c13-8ca3-5817cc600d84.eot?#iefix");
  src: url("../fonts/324dee78-6585-4c13-8ca3-5817cc600d84.eot?#iefix") format("eot"), url("../fonts/be607c9f-3c81-41b4-b7ad-17af005c80bb.woff2") format("woff2"), url("../fonts/4bf0ead4-e61b-4992-832b-6ff05828d99f.woff") format("woff"), url("../fonts/73713a0b-8f6a-4c4e-b8a8-7cf238e632f6.ttf") format("truetype"), url("../fonts/b90b6bdf-15e2-4544-9fe0-92c79fff0ecd.svg#b90b6bdf-15e2-4544-9fe0-92c79fff0ecd") format("svg");
}
@font-face {
  font-family: DIN-Bold;
  src: url("../fonts/b32ab78b-6c51-4bd3-bc37-4edcec0331f8.eot?#iefix");
  src: url("../fonts/b32ab78b-6c51-4bd3-bc37-4edcec0331f8.eot?#iefix") format("eot"), url("../fonts/121784c1-863c-4e49-b682-625ea7de55b0.woff2") format("woff2"), url("../fonts/9949035f-6226-4080-a14a-bf7d94ffb1e1.woff") format("woff"), url("../fonts/6241bd09-15c2-485e-9796-9db8d0aa6974.ttf") format("truetype"), url("../fonts/af94da3e-4232-416a-b6bc-f39f85dd5db6.svg#af94da3e-4232-416a-b6bc-f39f85dd5db6") format("svg");
}

/*
==============================================
slideLeft
==============================================
*/
.slideLeft{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	animation-delay: .3s;
	-webkit-animation-delay: .3s;

	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;

	visibility: visible !important;	
}

@keyframes slideLeft {
	0% {
		transform: translateX(150%);
		opacity: 0;
	}
	50%{
		transform: translateX(-8%);
		opacity: 1;
	}
	65%{
		transform: translateX(4%);
	}
	80%{
		transform: translateX(-4%);
	}
	95%{
		transform: translateX(2%);
	}			
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
		opacity: 0;
	}
	50%{
		-webkit-transform: translateX(-8%);
		opacity: 1;
	}
	65%{
		-webkit-transform: translateX(4%);
	}
	80%{
		-webkit-transform: translateX(-4%);
	}
	95%{
		-webkit-transform: translateX(2%);
	}			
	100% {
		-webkit-transform: translateX(0%);
		opacity: 1;
	}
}

/*
==============================================
Styles
==============================================
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
em {
	text-decoration: underline;
}
:focus {
	outline: 0;
}
::-webkit-input-placeholder {
	color: rgba(255,255,255, .8);
}
::-moz-placeholder {
	color: rgba(255,255,255, .8);
}
:-ms-input-placeholder {
	color: rgba(255,255,255, .8);
}
html, body {
	min-height: 100%;
}
body {
	font-family: 'Din-Regular', Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.62857143;
	color: #fff;
	background: white;
	background-color: #D12A29;
	background: -webkit-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* Chrome 10+, Saf5.1+ */
	background:    -moz-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* FF3.6+ */
	background:     -ms-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* IE10 */
	background:      -o-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* Opera 11.10+ */
	background:         linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* W3C */
	margin-bottom: 6em;
	background: url(../img/pia-header-blue.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-transform: rotate(0deg);
		  transform: rotate(0deg);
}
header {
	background-color: rgba(255,255,255,.85);
	padding: 1.5em;
	margin-bottom: 1.5em;
	font-size: 1.6em;
}
header a {
	text-decoration: none;
	color: #D12A29;
	font-weight: bold;
}
header span {
	color: #bb2423;
	font-weight: normal;
	font-size: .7em;
	display: inline-block;
	opacity: 0;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
label {
	display: block;
	font-size: 1.5em;
	line-height: 2em;
}
h1 {
	font-size: 2em;
	text-align: center;
	line-height: 1.5em;
	font-weight: bold;
}
p {
	margin-bottom: 1.5em;
}
select, #passwordBtn, #password {
	min-width: 10em;
	font-size: 1.2em;
	font-family: arial, sans-serif;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	border: none;
	line-height: 2em;
	background-color: rgba(255,255,255,.3);
	outline:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	cursor:pointer;
	padding: .5em 1.5em;
	margin-bottom: 1.5em;
	width: 100%;
	color: #fff;
	transition: .5s;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
}
select:hover, #passwordBtn:hover {
	background-color: #fff;
	color: #000;
}
#password {
	background-color: #fff;
	color: #000;
	display: none;
}
#password-download-form #password {
	display: block;
}
#main {
	opacity: 0;
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
	transition: .8s;
}
#main.ready {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}
#file {
	margin-bottom: 1.5em;
}
#success {
	text-align: center;
	margin-top: 20px;
}
#download-link {
	padding: 15px 20px 15px 20px;
	background-color: rgba(0, 0, 0, .3);
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	word-wrap: break-word;
	margin-top: 20px;
	margin-bottom: 3em;
}
#download-link h1 {
	margin: 10px auto 0 auto;
	font-family: 'Din-Regular', Helvetica, Arial, sans-serif;
	font-size: 35px;
	line-height: 38px;
}
#download-link h3 {
	margin: 40px auto 0 auto;
	font-family: 'Din-Regular', Helvetica, Arial, sans-serif;
	font-size: 25px;
	line-height: 28px;
}
#download-link hr {
	background: white;
	display: none;
}
#download-link .highlight {
	background: white;
	padding: 2px;
	margin-top: 5px;
}
#download-link input {
	font-family: 'Din-Regular', Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 22px;
	width: 100%;
	max-width: 650px;
	height: 28px;
	padding: 10px 12px 10px 12px;
	border: 1px solid transparent;
	border-radius: 3px;
	background: #ffffff;
	opacity: 0.8;
}
#download-link input:hover, .fieldset input:active {
	border: 1px solid #b0b0b0;
	color: #D12A29;
	opacity: 0.95;
}
#expired {
	text-align: center;
}
#share {
	opacity: 0;
}
#share a {
	margin: 0 1.5em;
	opacity: 0.6;
	transition: .5s;
}
#share a:hover {
	opacity: 0.95;
}
#upload-block {
	background-color: rgba(255, 255, 255, .5);
	width: 350px;
	height: 350px;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	background-image: url(../img/disk.png);
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
	margin: 0 auto;
	-webkit-transform: scale(.8);
	transform: scale(.8);
	transition: .5s;
}
#upload-block.changed {
	background-image: url(../img/check.png);
}
#upload-block:hover {
	-webkit-transform: scale(1);
	transform: scale(1);
}
#upload-block input {
	display: none;
}
#filefield {
	padding: 1.5em;
	margin-bottom: 1.5em;
}
#expiration {
	max-width: 380px;
	margin: 0 auto;
	text-align: center;
 }
 #passwordBlock {
 	max-width: 380px;
 	margin: 0 auto;
 }
.clearfix {
	clear: both;
}
.submit {
	padding: 1.5em;
	text-align: center;
}
.submitted {
	display: none;
}
#loader {
	display: none;
	text-align: center;
}
#loader.active {
	display: block;
}
#progressBar {
	background-color: rgba(0,0,0,.3);
	width: 100%;
	height: 1.5em;
	margin-top: 3em;
}
#progressBarInner {
	background-color: #fff;
	height: 1.5em;
	width: 10%;
}
.btn {
	text-decoration: none;
	background-color: #D12A29;
	border: 3px solid #ffffff;
	color: #fff;
	font-family: arial, sans-serif;
	padding: .5em 1.5em;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	font-size: 1.5em;
	font-weight: bold;
	transition: .5s;
}
.btn .index {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
	text-align: center;
}
.btn:hover {
	cursor: pointer;
	background-color: #EC6502;
}
.notice {
	font-size: 1.4em;
	line-height: 1.5em;
}
#download {
	text-align: left;
	max-width: 600px;
	margin-top: 2%;
}
#download .notice a {
	color: #ffffff;
	text-decoration: underline;
}
#download .notice a:hover {
	color: #e7e7e7;
	text-decoration: none;
}
.success {
	text-align: center;
}
.error {
	text-align: center;
	font-size: 1.5em;
	line-height: 1.5em;
	color: #fff;
}
.container {
	max-width: 600px;
	margin: 0 auto;
	overflow: hidden;
}
.logo, .logo img {
	background: none;
	position: fixed;
	top: 4%;
	left: 3%;
	width: 100%;
	max-width: 150px;
	height: auto;
	margin: 0 30px 0 0;
	opacity: 1.0;
}
header {
	background: none;
	position: fixed;
	top: 1%;
	left: 1%;
}

@media only screen and (max-width: 479px) {
	.logo {
		display: none;
	}
	body {
		line-height: 1.5em;
		color: #fff;
		background: white;
		font-family: arial, sans-serif;
		background: none;
		background-color: #D12A29;
		background: -webkit-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* Chrome 10+, Saf5.1+ */
		background:    -moz-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* FF3.6+ */
		background:     -ms-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* IE10 */
		background:      -o-linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* Opera 11.10+ */
		background:         linear-gradient(160deg, #D12A29 10%, #bb2423 90%); /* W3C */
		margin-bottom: 6em;
		margin: 5%;
	}
	#upload-block {
		background-color: rgba(255, 255, 255, .5);
		width: 250px;
		height: 250px;
		-moz-border-radius: 100%;
		-webkit-border-radius: 100%;
		border-radius: 100%;
		background-image: url(../img/disk-mobile.png);
		background-repeat: no-repeat;
		background-position: center center;
		cursor: pointer;
		margin: 0 auto;
		-webkit-transform: scale(.8);
		transform: scale(.8);
		transition: .5s;
	}
	.btn {
		display:inline-block;
	}
}
@media only screen and (max-width: 900px) {
	.logo {
		display: none;
	}
	.container {
		max-width: 600px;
		margin: 30px 10px 10px 15px;
		overflow: hidden;
	}
}