

/*--------------------------------------------------------------
Login
--------------------------------------------------------------*/
body {
    font-family: Montserrat;
}

h2 {
    font-family: Montserrat;
	text-align: center;
}

h4 {
    font-family: Montserrat;
	text-align: center;
	color: #b2b1b1;
}


.login-block {
    width: auto;
	max-width: 320px;
    padding: 20px;
    background: #404040;
    border-radius: 5px;
    border-top: 5px solid #ff656c;
    margin: 0 auto;
}

.login-block h1 {
    text-align: center;
    color: #FFF;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Montserrat;
    padding: 0 20px 0 50px;
    outline: none;
}

.login-block input#username {
    background: #fff url('images/u0XmBmv.png') 20px top no-repeat;
    background-size: 16px 80px;
}


.login-block input#username:focus {
    background: #fff url('images/u0XmBmv.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #fff url('images/Qf83FTt.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fff url('images/Qf83FTt.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #ff656c;
}

.login-block input#submit {
    width: 100%;
    height: 40px;
    background: #ff656c;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #e15960;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
	margin: 0px;
	padding: 0px;
}

.login-block input#submit:hover {
    background: #ff7b81;
}

/*--------------------------------------------------------------
Error
--------------------------------------------------------------*/


.error-block {
    width: auto;
	max-width: 320px;
    padding: 20px;
    margin: 0 auto;
}

.error-block button {
    width: 100%;
    height: 40px;
    background: #ff656c;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #e15960;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
	margin: 0px;
}

.error-block button:hover {
    background: #ff7b81;
}


.error-block h3 {
    text-align: center;
    color: #ff656c;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
}


/*--------------------------------------------------------------
listado
--------------------------------------------------------------*/

.listado-block {
    width: 60%;
    padding: 20px;
    margin: 0 auto;
	text-align: center;
}

.listado-block ul {
	padding: 0px;
}

.listado-block ul li {
	list-style: none;
	padding: 10px 0px 10px 0px;
}

.listado-block ul li a {
	text-decoration: none;
}

.listado-block a {
	text-decoration: none;
}



.listado-block ul li div.folder {
    width: 100%;
    height: 40px;
	background: #ff656c url('images/folder.png') 20px no-repeat;
    background-size: 16px 16px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #e15960;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
	margin: 0px;
	text-align: left;
	text-decoration: none;
	padding: 10px 20px 0 50px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	transition: 1s;
	-webkit-transition: 0.1s;
	-moz-transition:  0.1s;
	-o-transition:  0.1s;
	transition:  0.1s;
	
}

.listado-block ul li div.folder:hover {
    background: #ff7b81 url('images/folder.png') 20px no-repeat;
	background-size: 20px 20px;
	
}

.listado-block ul li div.file {
    width: 100%;
    height: 20px;
	background: url('images/download.png') 20px no-repeat;
    background-size: 16px 16px;
    box-sizing: border-box;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
	margin: 0px;
	text-align: left;
	text-decoration: none;
	padding: 1px 20px 0 50px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	transition: 1s;
	-webkit-transition: 0.1s;
	-moz-transition:  0.1s;
	-o-transition:  0.1s;
	transition:  0.1s;
	
}

.listado-block ul li div.file:hover {
    background: url('images/download.png') 20px no-repeat;
	background-size: 20px 20px;
	color: #666;
	
}

.back {
    width: 30px;
    height: 30px;
	background: #ff656c url('images/left-arrow.png') 10px no-repeat;
    background-size: 16px 16px;
	border-radius: 5px;
	border: 1px solid #e15960;
	color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
	margin: 0px;
	text-align: left;
	text-decoration: none;
	padding: 5px 20px 0 32px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	transition: 1s;
	-webkit-transition: 0.1s;
	-moz-transition:  0.1s;
	-o-transition:  0.1s;
	transition:  0.1s;
	
}

.back:hover {
    background: #ff7b81 url('images/left-arrow.png') 5px no-repeat;
	background-size: 16px 16px;
	
}


.listado-block button {
    width: 40%;
    height: 30px;
    background: #d8d6d6;
    box-sizing: border-box;
	border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
	margin: 0px;
	padding: 0px;
}

.listado-block button:hover {
    background: #a5a4a4;
}

@media screen and (max-width: 600px) {
	.listado-block {
    width: 90%;
    padding: 20px;
    margin: 0 auto;
	text-align: center;
	}
	
	.listado-block ul li div.folder {
    font-size: 10px;
	padding: 14px 20px 0 50px;
	}
	
	.listado-block ul li div.file {
    font-size: 10px;
	padding: 3px 20px 0 50px;
	
	}
}