



html {
}

body {
	font-family: Roboto, sans-serif;
	color: #0f3c4b;
	background-color: #e5edf1;
	padding: 5rem 1.25rem; /* 80 20 */
}

.container_dragdrop {
	width: 100%;
	max-width: 680px; /* 800 */
	text-align: center;
	margin: 0 auto;
}

.container_dragdrop h1 {
	font-size: 42px;
	font-weight: 300;
	color: #0f3c4b;
	margin-bottom: 40px;
}
.container_dragdrop h1 a:hover, 
.container_dragdrop h1 a:focus {
	color: #009e85;
}

.container_dragdrop nav {
	margin-bottom: 40px;
}

.container_dragdrop nav a {
	border-bottom: 2px solid #c8dadf;
	display: inline-block;
	padding: 4px 8px;
	margin: 0 5px;
}

.container_dragdrop nav a.is-selected {
	font-weight: 700;
	color: #009e85;
	border-bottom-color: currentColor;
}

.container_dragdrop nav a:not( .is-selected ):hover, 
.container_dragdrop nav a:not( .is-selected ):focus {
	border-bottom-color: #0f3c4b;
}

.container_dragdrop footer {
	color: #92b0b3;
	margin-top: 40px;
}

.container_dragdrop footer p + p {
	margin-top: 1em;
}

.container_dragdrop footer a:hover,
.container_dragdrop footer a:focus {
	color: #39bfd3;
}

.box-upload-area {
	font-size: 1.25rem; /* 20 */
	background-color: #009e8550;
	position: relative;
/* 	padding: 100px 20px; */
	border-color: #009e8500;
	border-width: 3px;
	border-style: solid;
    background-image: url("/ArkigestWeb/Arkigest/images/upload-1.png");
    background-size: 10%;
    background-repeat: no-repeat;
    background-position: center;
}

.box-upload-area.has-advanced-upload {
/* 	outline: 2px dashed #009e85; */
/* 	outline-offset: -10px; */

	-webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
	transition: outline-offset .15s ease-in-out, background-color .15s linear;
}

.box-upload-area.is-dragover {
	outline-offset: -20px;
	outline-color: #009e85;
	background-color: #009e8588;
	border-color: #009e85;
	border-width: 3px;
	border-style: dashed;
}
			
.box-upload-area__dragndrop,
.box-upload-area__icon {
	display: none;
}

.box-upload-area.has-advanced-upload .box-upload-area__dragndrop {
	display: inline;
}

.box-upload-area.has-advanced-upload .box-upload-area__icon {
	width: 100%;
	height: 80px;
	fill: #92b0b3;
	display: block;
	margin-bottom: 40px;
}

.box-upload-area.is-uploading .box-upload-area__input, 
.box-upload-area.is-success .box-upload-area__input, 
.box-upload-area.is-error .box-upload-area__input {
	visibility: hidden;
}

div.box-upload-area__input {
	text-align: center;
	vertical-align: top;
	font-weight: bold;
	height: 100%;
	min-height: 150px;
}

.box-upload-area__uploading, 
.box-upload-area__success, 
.box-upload-area__error {
	display: none;
}

.box-upload-area.is-uploading .box-upload-area__uploading, 
.box-upload-area.is-success .box-upload-area__success, 
.box-upload-area.is-error .box-upload-area__error {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;

	-webkit-transform: translateY( -50% );
	transform: translateY( -50% );
}

.box-upload-area__uploading {
	font-style: italic;
}

.box-upload-area__success {
	-webkit-animation: appear-from-inside .25s ease-in-out;
	animation: appear-from-inside .25s ease-in-out;
}
				
@-webkit-keyframes appear-from-inside {
	from	{ -webkit-transform: translateY( -50% ) scale( 0 ); }
	75%		{ -webkit-transform: translateY( -50% ) scale( 1.1 ); }
	to		{ -webkit-transform: translateY( -50% ) scale( 1 ); }
}

@keyframes appear-from-inside {
	from	{ transform: translateY( -50% ) scale( 0 ); }
	75%		{ transform: translateY( -50% ) scale( 1.1 ); }
	to		{ transform: translateY( -50% ) scale( 1 ); }
}

.box-upload-area__restart {
	font-weight: 700;
}

.box-upload-area__restart:focus, 
.box-upload-area__restart:hover {
	color: #39bfd3;
}

.js .box-upload-area__file {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.js .box-upload-area__file + label {
	max-width: 80%;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
}

.js .box-upload-area__file + label:hover strong, 
.box-upload-area__file:focus + label strong, 
.box-upload-area__file.has-focus + label strong {
	color: #39bfd3;
}

.js .box-upload-area__file:focus + label, 
.js .box-upload-area__file.has-focus + label {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}

.js .box-upload-area__file + label * {
	/* pointer-events: none; */ /* in case of FastClick lib use */
}

.no-js .box-upload-area__file + label {
	display: none;
}

.no-js .box-upload-area__button {
	display: block;
}

.box-upload-area__button {
	font-weight: 700;
	color: #e5edf1;
	background-color: #39bfd3;
	display: none;
	padding: 8px 16px;
	margin: 40px auto 0;
}
				
.box-upload-area__button:hover, 
.box-upload-area__button:focus {
	background-color: #0f3c4b;
}
