@font-face {
	font-display: swap;
	font-family: 'Merriweather';
	font-style: normal;
	font-weight: 400;
	src: url('merriweather-v30-latin-regular.woff2') format('woff2');
  }
  /* merriweather-700 - latin */
  @font-face {
	font-display: swap;
	font-family: 'Merriweather';
	font-style: normal;
	font-weight: 700;
	src: url('merriweather-v30-latin-700.woff2') format('woff2');
  }

body {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	justify-content: center;
	height: 100vh;
	min-height: 400px;
	font-family: 'Merriweather', 'Helvetica', sans-serif;
	color: #333333;
}

h1 {
	font-size: 18pt;
}

h1,
h2,
input,
a,
select {
	font-family: 'Merriweather', 'Helvetica', sans-serif;
}

#container h1 {
	margin-top: 0;
}

a.btn.full {
	display: block;
	box-sizing: border-box;
	width: 100%;
	text-align: center;
	margin: 0;
	margin-top: 15px;
}

a.btn.full.secondary {
	margin-top: 5px;
}

a.btn {
	background: #333333;
	color: #f0fc37;
	padding: 8px 15px;
	text-decoration: none;
	position: relative;
	z-index: 1;
	cursor: pointer;
	overflow: hidden;
	outline: 0;
}

a.btn.secondary {
	background: transparent;
	border: 2px solid #333333;
	padding: 6px 13px;
	color: #333333;
}

a.btn:hover {
	color: #333333;
	transition: 0.08s ease-in;
	-o-transition: 0.08s ease-in;
	-ms-transition: 0.08s ease-in;
	-moz-transition: 0.08s ease-in;
	-webkit-transition: 0.08s ease-in;
}
a.btn.secondary:hover {
	color: #333333;
}

a.btn:before {
	content: '';
	position: absolute;
	background: #f0fc37;
	bottom: 100%;
	left: 0;
	right: 0;
	top: 0;
	z-index: -1;
	transition: bottom 0.09s ease-in;
	-webkit-transition: bottom 0.09s ease-in;
}

a.btn.secondary:before {
	bottom: 0;
	top: 100%;
	transition: top 0.09s ease-in;
	-webkit-transition: top 0.09s ease-in;
}

a.btn:hover:before {
	bottom: 2px;
}

a.btn.secondary:hover:before {
	bottom: 0;
	top: 0;
}

/** file upload **/

select#recipient {
	display: block;
	margin: 0;
	width: 100%;
	padding: 10px 15px;
	background: #333333;
	color: #f0fc37;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	outline: none;
}

select#recipient.hidden {
	transition: 0.5s height, 0.5s opacity, 0.5s padding;
	height: 0;
	opacity: 0;
	padding: 0px 15px;
}

/* select#recipient.selected {
	border-bottom: 1px solid #F0FC37;
} */

.drop-area {
	background: #f0fc37;
	border: 2px solid transparent;
	margin: 0 auto;
	width: 200px;
	height: 150px;
	box-sizing: border-box;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.5s background, 0.3s height, 0.3s opacity;
	position: relative;
	overflow: hidden;
	padding: 20px;
}

.drop-area.disabled {
	height: 0;
	opacity: 0;
}

.drop-area .browse-files {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	z-index: 6000;
}

.drop-area .upload-progress {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: 0;
	padding: 0;
	background: #333333;
	width: 0%;
	transition: 0.5s width, 0.5s opacity;
	z-index: 100;
	overflow: hidden;
}

.drop-area .upload-progress .wrapper {
	width: 196px;
	height: 146px;
	margin: 0;
	padding: 0 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.drop-area .upload-progress p.state-uploading {
	color: #f0fc37;
}

.drop-area p {
	font-size: 9pt;
	display: none;
}

.drop-area p.time-remaining {
	font-size: 7pt;
}

.drop-area p.error {
	color: #f00;
	display: block;
}

.drop-area:not(.active):not(.uploading):not(.done):not(.disabled) p.state-default {
	display: block;
}

.drop-area.active {
	border: 2px dashed #333333;
}

.drop-area.active p.state-dragging {
	display: block;
}

.drop-area.uploading,
.drop-area.done {
	border: 2px solid #333333;
}

.drop-area.uploading p.state-uploading,
.drop-area.done p.state-uploading {
	display: block;
}

.drop-area.uploading p.state-default,
.drop-area.uploading p.state-dragging,
.drop-area.done p.state-default,
.drop-area.done p.state-dragging {
	display: none;
}

p.small {
	color: #aaa;
	font-size: 9pt;
	text-align: center;
}

#container {
	width: 200px;
	background: #fff;
	position: relative;
}

#container.large {
	width: 400px;
}

#container #container-logo {
	width: 100px;
	position: absolute;
	top: -130px;
	left: calc(50% - 50px);
}

.image-bottom-right {
	position: fixed;
	bottom: 5px;
	right: 5px;
	z-index: -100;
}

p.message {
	background: #f0fc37;
	color: #333333;
	padding: 15px;
	font-size: 10pt;
	text-align: left;
	margin: 20px 0;
}

a.show-comment {
	background: #333333;
	color: #f0fc37;
	padding: 10px 15px;
	border-top: 1px solid #f0fc37;
	border-bottom: 1px solid #f0fc37;
	font-size: 11px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
	height: 35px;
	transition: 0.3s height, 0.3s padding;
	opacity: 1;
	cursor: pointer;
}

a.show-comment.hidden {
	height: 0;
	padding: 0 15px;
	border: none;
}

textarea#comment {
	height: 100px;
	width: 100%;
	box-sizing: border-box;
	display: none;
	padding: 10px 15px;
	background: #333333;
	color: #fff;
	margin: 0;
	border: none;
	border-radius: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	transition: 0.5s height, 0.5s padding;
	overflow: hidden;
	border-top: 1px solid #f0fc37;
	border-bottom: 1px solid #f0fc37;
}

textarea#comment.hidden {
	height: 35px;
}

textarea#comment.fadeout {
	height: 0;
	padding: 0 15px;
}

@media (max-width: 400px) {
	.image-bottom-right {
		max-height: 100px;
	}

	#container.large {
		width: 90%;
		max-width: 400px;
	}
}
