@import '../fonts/albertus.css';
body {
	background-repeat: no-repeat;
	background-position: bottom;
	background-color: #f9f9f9;
	background-image: linear-gradient(180deg, #ccc 0, rgba(0, 0, 0, 0) 75%),
		url(/img/avengers.jpg);
}
body.loaded:before ,
body.loaded::after{
	display: block;
	position: absolute;
	background-size: contain;
	background-position: right;
	background-repeat: no-repeat;
	z-index: -1;
}
body.loaded::after {
	right: 0;
	top: 0;
	width: 280px;
	height: 280px;
	background-image: url(/img/spiderman.png);
}
body.loaded::before {
	left: 0;
	top: -9px;
	width: 375px;
	height: 310px;
	background-image: url(/img/batman.png);
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
h1{
	font-family: 'Albertus MT Std Regular';
    font-size: 60px;
    background: -webkit-linear-gradient(#237777, #7E201E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    width: 100%;
    left: 0;
}
.dropzone__item,
.dropzone__message {
	display: none !important;
}
.dropzone__box:after {
	content: "Documentos";
	text-align: center;
	display: block;
	width: 100%;
}
/**
  Progress Loader
*/
#loader {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
#loader > .container {
	position: relative;
	z-index: 11;
}
#loader:after {
	content: "";
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	background: #343a40;
	opacity: 80%;
	height: 100%;
	position: absolute;
	z-index: 10;
}
#dock-container {
	position: fixed;
	bottom: 0;
	text-align: center;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
}
#dock {
	padding-top: 10px;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 10px 10px 0 0;
	max-width: 400px;
	width: 100%;
}
#dock-container ul {
	margin: 0;
	padding: 0;
}
#dock-container li {
	list-style-type: none;
	display: inline-block;
	position: relative;
}
#dock-container li img {
	width: 50px;
	height: 50px;
	-webkit-box-reflect: below 2px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.7, transparent), to(rgba(255, 255, 255, 0.5)));
	-webkit-transition: all 0.3s;
	-webkit-transform-origin: 50% 100%;
}

#dock-container li:hover img {
	-webkit-transform: scale(2);
	margin: 0 2em;
}
#dock-container li:hover + li img,
#dock-container li.prev img {
	-webkit-transform: scale(2);
	margin: 0 1.5em;
}

#dock-container li span {
	display: none;
	position: absolute;
	bottom: 115px;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	padding: 4px 0;
	border-radius: 12px;
}
#dock-container li:hover span {
	display: block;
	color: #fff;
}
@media (max-width: 1400px) {
	body:before {
		width: 250px;
		height: 210px;
	}
	body:after {
		width: 220px;
		height: 220px;
	}
	body {
		background-size: 100%;
	}
}
@media (min-width: 768px) {
	body:before,
	body:after {
		content: "";
	}
}
@media (max-width: 767px) {
	#dock-container {
		position: fixed;
		bottom: 50%;
		text-align: center;
		left: -50%;
		width: 100%;
		display: flex;
		justify-content: center;
		transform: rotate(90deg);
		margin-left: 30px;
	}
	body {
		background-image: none;
	}
}
