/* normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */
button,hr,input{overflow:visible}audio,canvas,progress,video{display:inline-block}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}h1{font-size:2em;/* margin:.67em 0 */}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{margin:0}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}

* {
	box-sizing: border-box;
	margin: 0 ;
	font-family: 'Roboto', sans-serif;
}

body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	/* position: relative; */
}

h1 {
	margin: 0;	
}

/*Login css*/
.logIn__body {
	min-height: 100vh;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: linear-gradient(rgba(31, 91, 105, 0.9), rgba(49,118,134,0.9)), url(../img/files-bg.jpg);
}

/*Login header*/
.logIn__header {
	background-color: white;
	text-align: center;
}

.header__text,
.header__text:visited {
	font-size: 20px;
	color: #1e2426;
	font-weight: 900;
	padding: 29px 0;
	text-align: center;
	text-transform: uppercase;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
}

.header__text--blue {
	color: #00b1e8;
}

/*Login content*/
.logIn__form {
	margin: auto;
	max-width: 271px;
	padding: 54px 0;
}

.logIn__block {	
	margin-bottom: 36px;
}

.logIn__label {
	display: block;
	color: white;
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 10px;
}

.logIn__input {
	width: 100%;
	height: 56px;
	font-size: 16px;
	padding: 0 16px;
	border: 0 none;
}

.logIn__input:focus {
	outline: 0 none;
	box-shadow: 0 1px 20px 0 rgba(0,0,0,0.25);
}

.logIn__enterBtn {
	display: block;
	margin: auto;
	background-color: #ffd259;
	border: none;
	width: 100%;
	color: #0f0f0f;
	font-size: 15px;
	height: 56px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: .3s all;
}

.logIn__enterBtn:hover {
	background-color: #ffd971;
}

.logIn__enterBtn:focus{
	outline: 0 none;
}

@media (min-width: 600px) {
	.logIn__form {
		padding: 15% 0;
	}
}

@media (min-width: 1024px) {
	.logIn__form {
		padding: 10% 0;
	}
}

/*Files css*/
/*Header*/
.files__header {
	position: relative;
	padding: 0 15px;
}

.files__header .header__text {
	text-align: left;
}

.files__header__containerBtn {
	position: absolute;
	top: 23px;
	right: 15px;
}

.files__header .header__btn {
	position: relative;
	color: black;
	border: 1px solid #b5b5b5;
	background-color: #f8f8f8;
	/* height: 34px; */
	border-radius: 4px;
	font-weight: 500;
	font-size: 12px;
	padding: 10px 25px 9px 13px;
	cursor: pointer;
	text-transform: uppercase;
	line-height: 1;
	display: inline-block;
	text-decoration: none;
}

.header__btn--admin {
	display: none!important;
}
	
.header__btn i {	
	font-size: 18px;	
	position: absolute;	
	top: 6px;	
	right: 10px;
}

/*Folders*/
.fileFolders__mobBtn {
	display: block;
	width: 100%;
	background-color: #f8f8f8;
	border: none;
	border-top: 1px solid #b5b5b5;
	border-bottom: 1px solid #b5b5b5;
	color: #3d7c8a;
	height: 66px;
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 20px;
	cursor: pointer;
}

.fileFolders__mobBtn:focus {
	outline: 0 none;
}


.fileFolders__mobBtn p {
	position: relative;
	width: 120px;
	margin: auto;
}

.fileFolders__mobBtn i {
	font-size: 22px;
	position: relative;
	top: 1.5px;
	/* right: 5px; */
	margin-left: 7px;
}

.fileFolders__mobBtn__angle-up{
	display: none;
}

/*Folders list visable to 1024 open when clicking on .fileFolders__mobBtn*/
.fileFolders__list__mob {
	display: none;
}

.fileFolders__list__mob ul {
	list-style-type: none;
	padding: 20px;
}

.fileFolders__list__mob li {
	padding: 20px 0;
	border-bottom: 1px solid #cacaca;
	color: #777777;
	font-size: 16px;
}

.fileFolders__list__mob i {
	margin-right: 10px;
	color: #777777;
}

.fileFolders__list__mob a {
    text-decoration: none;
    color: #777777;
}

.fileFolders__cat,
.fileFolders__cat:visited {
	cursor: pointer;
	text-decoration: none;
    text-transform: capitalize;
    color: #048bb5;
}

.fileFolders__cat-picked {
	color: #048bb5 !important;
}

.subMenu {
	margin: 11px 0 0 0;
	display: none;
}

.subMenu a,
.subMenu a:visited {	
	font-size: 16px;
}

.fileFolders__cat-picked + .subMenu {
	display: block;
}

/*Folders list what appears after 1024px*/
.fileFolders {
	-ms-grid-column: 1;
	padding: 0 16px;
}

.fileFolders__list {
	border: 1px solid #c9c9c9;
	width: 100%;
	padding: 30px;
	display: none;
}

.allFilesBtn {
	background-color: transparent;
	border: none;
	font-weight: 500;
	font-size: 18px;
	color: #777777;
	padding: 0;
	padding-left: 30px;
	margin-bottom: 20px;
	cursor: pointer;
	transition: .3s color;
	position: relative;
}



.fileFolders__list button:hover {
	color: #333!important;
}

.fileFolders__list button:focus {
	outline: 0 none;	
}

.fileFolders__list button i {	
	font-size: 15px;
}

.fileFolders__list ul {
	list-style-type: none;
	padding: 0;
}

.fileFolders__list li {
	padding: 10px 0 10px 30px;
	font-size: 18px;
	color: #777777;
	user-select: none;
}

.fileFolders__list i {
	margin-right: 0;
	position: absolute;
	left: -30px;
	top: 2px;
}

.fileFolders__list a,
.fileFolders__list a:visited {
	text-decoration: none;
	color: #777777;
	position: relative;
}

.fileFolders__list a:hover {
	color: #111;
}

.--active > a,
.--active > a:visited {
	color: #048bb5;
}

/* allFilesBtn fix */

.allFilesBtn i {
	left: 3px;
}

@media (min-width: 1024px) {
	.fileFolders {
		padding: 0;
	}
}

/*File list*/
.fileList {
	-ms-grid-column: 2;
}

.fileList h2 {
	display: none;
	font-weight: 500;
	font-size: 30px;
	color: #6b6b6b;
	margin-bottom: 34px;
}

.fileList__table {
	padding: 8px 16px;
	border-spacing: 0;
	width: 100%;
}

.fileList__td {
	padding: 18px 5px 16px;
	border-bottom: 1px solid #cacaca;
	font-weight: 400;
	font-size: 14px;
	color: black;
	vertical-align: top;
	line-height: 1.4;
	word-break: break-word;
}

.fileList__td:first-of-type {
	width: 24px;
}

.fileList__td--logo {
	width: 30px;
}

.fileList__td--fileName {
	width: auto;
}

.fileList__td--fileName a,
.fileList__td--fileName a:visited {
	text-decoration: none;
	color: black;
	transition: .3s color;
}

.fileList__td--fileName a:hover {
	color: #048bb5;
}

.fileList__td--date {
	width: 100px;
	color: #737373;
	display: none;
}

.fileList__td--menu {
	width: 57px;
	padding: 10px 0  0 10px;
	/* vertical-align: middle; */
	text-align: right;
}


.fileList__td--folder {
	color: #048bb5;
}

.fileList__linkCat,
.fileList__linkCat:visited {
	color: #048bb5;
	text-decoration: none;
}

/* fileExt */

.fileExt {
	opacity:  0.6;
}

/*Filelist logos*/
.fileList__td .fa {
	font-size: 15px;
}

.fileList__td .fa-file-pdf-o {
	color: red;
}

.fileList__td .fa-file-text-o {
	color: blue;
}

.fileList__td .fa-file-excel-o {
	color: green;
}

.fileList__td .fa-file-image-o {
	color: purple;
}

.fileList__td .fa-file-o {
	color: gray;
}

.fileList__td--menu .fa-ellipsis-v {
	color: #737373;
	font-size: 20px;
}

@media (min-width: 600px) {
	.fileList__td--menu {
		width: 57px;
		padding: 8px 5px  0 10px;
	}
}


@media(min-width: 1024px) {
	/*Moves folder part to the right and file part to teh right*/
	.mainSection {
		display: grid;
		display: -ms-grid;
		grid-template-columns: 300px 1fr;
		-ms-grid-columns:300px 1fr;
		padding: 57px 70px;
	}

	/*Files Header*/
	.files__header {
		padding: 0 76px;
		background-color: #f2f3f3;
		border-bottom: 1px solid #c9c9c9;
	}
	
	.files__headerInner {
		margin: 0 auto;
		max-width: 1200px;
		position: relative;
	}

	.files__header .header__text,
	.files__header .header__text:visited {
		font-size: 30px;
		transition: .3s all;
	}

	.header__text:hover {
		opacity: 0.8;
	}

	.files__header__containerBtn {
		right: 0;
		top: 25px;
	}

	.header__btn--admin {
		display: inline-block!important;
		margin-right: 10px;
		padding-right: 47px!important;
	}

	.files__header .header__btn {
		background-color: #fff;
		font-size: 15px;
		/* height: 42px; */
		padding: 13px 37px 11px 20px;
		transition: .2s all;
	}

	.files__header .header__btn:hover {
		border-color: #666;
		background-color: #666;
		color: #fff;
	}

	.header__btn i {		
		top: 8px;		
		font-size: 21px;		
		right: 18px;
	}

	/*Folders*/
	.fileFolders__list {
		display: block!important;
	}

	.fileFolders__mobBtn {
		display: none;
	}

	.fileFolders__list__mob ul {
		display: none;
	}

	/*File list*/
	.fileList h2 {
		display: inline-block;
	}

	.fileList {
		margin-left: 58px;
	}

	.fileList__table {
		padding: 0;
		/* border-bottom: 1px solid #cacaca; */
	}

	.fileList__table tr {
		transition: .2s background-color;
	}

	.fileList__table tr:hover {
		background-color: #fafafa;
	}

	.fileList__table .row-just-updated {
		background-color: #e5f5e5;
	}

	.fileList__td {		
		border-top: 1px solid #cacaca;		
		border-bottom: none;
	}

	.fileList__td--date {
		display: table-cell;
	}

}

@media (min-width: 1300px) {
	.mainSection {
		padding: 57px 0;
		max-width: 1200px;
		margin: 0 auto;
	}
}


/* .fileList__moreBtn */
.fileList__moreBtn {
	border: none;
	background-color: transparent;
	padding: 10px 15px;
	border-radius: 5px;
	transition: .3s all;
	cursor: pointer;
	opacity: 0.55;
}

.fileList__moreBtn:hover {
	background-color: #e5e5e5;
	opacity: 1;
}

.fileList__moreBtn:focus {
	outline: 0 none;
}



/* dotsIcon */

.dotsIcon {
	display: block;
	font-size: 10px;
}

.dotsIcon__dot {
	width: 0.3em;
	height: 0.3em;
	background-color: #000;
	margin-bottom: 0.3em;
	border-radius: 50%;
}

.dotsIcon__dot:last-of-type {
	margin-bottom: 0;
}

@media (min-width: 600px) {
	.dotsIcon {
		font-size: 12px;
	}
}


/*Note bar*/
.noteBar {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}

.noteBar p {
	padding: 20px 66px;
	font-family: 'Open Sans', sans-serif;
	color: white;
	font-size: 14px;
	font-weight: 400;
}

.noteBar__container {
	position: relative;
}

.noteBar__close {
	position: absolute;
	top: 15px;
	right: 40px;
	background-color: transparent;
	border: none;
	color: white;
	font-size: 45px;
	font-family: times new roman;
	display: none;
}

.noteBar__error {
	background-color: #80200d;
	display: none;
}

.noteBar__deleted {
	background-color: #4c898a;
	display: none;
}

.noteBar__saved {
	background-color: #03a389;
	display: none;
}

.noteBar__downloading {
	background-color: #048bb5;
	display: none;	
}

.noteBar__loading {
	background-color: #909b9e;
	display: none;
}

.noteBar__loading i {
	margin-left: 5px;
	font-size: 16px;
}

@media(min-width: 600px) {
	.noteBar p {
		padding: 35px 0;
		font-size: 16px;
	}

	.noteBar button {
		display: block;
	}
}

/* fileModal */
.fileModal {
	display: none;
	position: fixed;
	z-index: 10;
	width: 100%;
	top: 0;
	bottom: 0;
	background: #888;
	background: rgba(0,0,0,0.6);
	padding: 45px 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.fileModal__content {
	background-color: white;
	/* padding: 45px 20px; */
	margin:auto;
	z-index: 1;
	margin-top: 0;
	position: relative;
	width: 300px;
}

.fileModal--img .fileModal__content {
	width: 85%;
}

.fileModal__close {
	width: 100%;
	height: 100vh;
	position: absolute;
	z-index: -1;
	top: 0;
}

.fileModal__x {
	position: absolute;
    top: 13px;
    right: 13px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: black;
    font-size: 42px;
    font-family: "Times New Roman", serif;
    line-height: 1;
    padding: 0 10px;
    display: inline-block;
}

.fileModal __x:focus {
	outline: 0 none,
}

.fileModal__btn, 
.fileModal__btn:visited {
	border: none;
	padding: 12px 20px 11px;
	font-size: 14px;
	font-weight: 700;
	background-color: #5dba9a;
	color: white;
	border-radius: 3px;
	letter-spacing: 1px;
	cursor: pointer;
	text-transform: uppercase;
	display: inline-block;
	text-decoration: none;
	min-width: 100px;
}

.fileModal__btn--view,
.fileModal__btn--download {
	margin: 0 8px;
}

.fileModal__btn--download,
.fileModal__btn--download:visited {
	background-color: #5dc2de;
}

.fileModal__btn--only-desktop {
	display: none;
}


@media (min-width: 425px) {
	.fileModal--updateFile .fileModal__content {
		width: 400px;
	}
}

@media (min-width: 1024px) {
	.fileModal {
		padding: 80px 0;
	}
	
	.fileModal__content {
		/* margin-top: 70px; */
	}

	.fileModal--img .fileModal__content {
		width: 880px;
	}
}

@media (min-width: 1025px) {
	.fileModal__btn--only-mobile {
		display: none;
	}

	.fileModal__btn--only-desktop {
		display: inline-block;
	}

}	



/* Modal options for pdf files*/
.modalOptions__heading {
	margin: 0 0 20px;
	font-weight: normal;
	font-size: 16px;
	padding: 6px 0;
	color: black;
	font-weight: 500;
	word-break: break-word;
}

.modalOptions__fileDetails {
	margin-top:20px;
	color: #969696;
	font-size: 15px;
}

.modalOptions--content {
	width: 300px;
    min-height: 250px;
    margin-top: 100px;
}

.modalOptionsOverview {
    padding: 70px 40px 50px;
    margin: auto;
    position: relative;
}

.modalOptionsOverview__inner {
	text-align: center;
}

.modalOptionsOverview__footer {
    margin-top: 35px;
}

@media (min-width: 425px) {
	.modalOptions--content {
		width: 400px;
	}
}

/* pdfOverview*/
.pdfOverview {
	padding: 20px 20px 25px;
}

.pdfOverview__heading {
	margin: 0 0 20px;
	font-weight: normal;
	font-size: 16px;
	padding: 6px 0;
	color: black;
	font-weight: 500;
	word-break: break-word;
	max-width: 80%;
}

.pdfOverview__pdfWrap {
	font-size: 0;
	text-align: center;
	background: #ddd;
}

.pdfOverview__pdf {
    width: 100%;
    height: 600px;
    height: 68vh;
}

.pdf--content {
	width: 90%;
	max-width: 1400px;
}

@media (min-width: 1900px) {
	.pdfOverview__pdf {
		height: 70vh;
	}
}

/* imgOverview */

.imgOverview {
	padding: 20px 20px 25px;
}

.imgOverview__heading {
	margin: 0 0 20px;
	font-weight: normal;
	font-size: 16px;
	padding: 6px 30px 6px 0;
}

.imgOverview__imgWrap {
	font-size: 0;
	text-align: center;
	background: #ddd;
}

.imgOverview__img {
	max-width: 100%;
	height: auto;
	width: auto;
	max-height: 60vh;
}

.imgOverview__footer {
	margin-top: 25px;
}

.imgOverview__downloadLink,
.imgOverview__downloadLink:visited {
	text-decoration: none;
	color: #007cce;
	font-size: 15px;
}

/* fileModal change name*/
.updateFile {
	padding: 45px 20px;
}

.updateFile__label {	
	font-size: 14px;	
	font-weight: 500;	
	color: #575757;
	text-transform: uppercase;
	display: block;
	margin-bottom: 7px;
}

.updateFile__fileName {
	color: black;
	font-size: 16px;
	font-weight: 500;
	word-break: break-word;
}

.updateFile__fieldWrap {
	margin-bottom: 30px;
}

#updateFile__newName {
	/* border: 1px solid #ababab; */
	width: 100%;
}

.updateFile__delete {
	background-color: transparent;
	border: none;
	display: block;
	padding: 0;
	color: #9e0303;
	text-decoration: underline;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 35px;
}

.lightBox__button--change {
	display: block;
}

@media(min-width: 425px) {
	.updateFile {
	    padding: 60px 45px;
	}

	#updateFile__newName {
		/* padding: 15px 12px 15px 12px; */
	}
}

/*Light box pdf file*/
.pdfFile {
	text-align: center;
	padding: 75px 40px 60px;
}

.pdfFile__title {
	color: black;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}

.pdfFile__filename {
	color: #565656;
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 33px;
}

.lightBox__button--blue {
	background-color: #5dc1e1;
	margin-top: 20px;
}

@media(min-width: 425px) {
	.pdfFile {
		padding: 80px 70px 70px;
	}
	.lightBox__button--blue {
		margin-left: 15px;
		margin-top: 0;
	}
}

/*Light box img file*/
.imgFile {
	width: 300px;
	padding: 25px 20px;
}

.imgFile__header {
	color: black;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	padding-right: 50px;
}

.imgFile__img {
	margin-bottom: 18px;
	width: 100%;
}

.imgFile__link,
.imgFile__link:visited {	
	display: block;	
	text-decoration: none;	
	color: #00b1e8;	
	font-size: 15px;	
	font-weight: 500;
}

@media(min-width: 600px) {
	.imgFile {
	    width: 500px;
	    padding: 25px;
	}
}

@media(min-width: 1024px) {
	.imgFile {
	    width: 736px;
	}
}

/* testPanel */

.testPanel {
	padding: 40px 20px;
}

.testPanel-heading {
	display: block!important;
	font-size: 15px!important;
	margin-bottom: 18px!important;
}

.testPanel-link {
	font-size: 14px;
	display: inline-block;
	color: #888;
	margin: 0 10px 9px 0;
}

@media (min-width: 1024px) {
	.testPanel {
		padding: 40px 0;
	}	
}

/* Form input */

.updateFile__fileInput {
	padding: 10px 12px;
	width: 100%;
}

.updateFile__select {
	padding: 10px 15px;
	display: inline-block;
	margin-right: 5px;
}

/* Loading */

.loadingFiles{
	color: #ccc;
	margin-left: 5px;
	display: none;
}

.scrollLoading {
	padding: 30px 20px 50px;
	font-size: 14px;
	color: #777;
}

@media (min-width: 1024px) {
	.scrollLoading {
		padding: 30px 0;
	}
}

/* file notifications */

.file__messageWrap {
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 1998;
    text-align: center;
    /* height: 60px; */
    display: none;
    padding: 0 20px;
    opacity: 0.9;
}

.file__messagePanel {
    padding: 30px 20px;
    margin: 0 auto;
	max-width: 600px;
	border-radius: 5px;
	box-shadow: 0 3px 80px 0 rgba(255, 255, 255, 0.9);
}

.file__messagePanel--waiting {
	background-color: rgb(144, 155, 157);
	color: #fff;	
}

.file__messagePanel--deleted {
	background-color: #4c898a;
	color: #fff!important;
}

.file__messagePanel--success {
	background-color: #03a389;
	color: #fff!important;
}

.file__messagePanel--errorConnection {
	background-color: rgb(129,32,13);
	color: rgb(255, 255, 255);
}

.file__messagePanel--errorName {
	background-color: rgb(15, 13, 129);
	color: rgb(255, 255, 255);
}



/* loggedOut */

.alert {
	text-align: center;
	background-color: #dbf8ff;
	margin-bottom: 45px;
	border: 3px solid #14434e;
	padding: 20px;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
	font-weight: 500;
}

.alert--error {
	background-color: #ffcba5;
}

@media (min-width: 600px) {
	.alert {
		margin-bottom: 70px;
	}
}