body{
	margin:0px;
}

#header{
	background-color:#00acc1;
	display:flex;
	align-items:center;
	padding:20px;
	user-select:none;
}
#header label {
	width:75%;
	font-size:1.5em;
}
#header div {
	width:25%;
}
.Button {
	float:right;
	background: #616161;
	border-radius: 3px;
	outline: 0;
	border: 0;
	-webkit-translation: all 0.3 ease;
	trasition: all 0.3 ease;
	curser: pointer;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.main_button span {
	float:right;
    border-radius: 50%;
	transition: all 0.1s ease-in-out;
	margin-left:-20px;
	font-size: 2em;
}

.main_button span:hover{
	background-color: #0095a8;
	box-shadow: 0px 0px 0px 15px #0095a8;
	transform: scale(1.05);
}

.main_button span, #header label {
	color:white;
}

.Button {
	color:white;
}


/* Main View Content */
.main_view{
	margin-top: 50px;
}

/* Button */
.Button{
	padding: 10px;
	margin-left: 10px;
}
.Button:hover,.Button:active{
	background: #757575;
}

/* List View Content */
.list_view {
	max-width: 780px;
	margin: auto;
}

.list_view > div:nth-child(even) {
	background-color: Lightgray;
}

.list_view div:nth-child(even) > a{
	
}


.nav {
	display:flex;
	justify-content: Right;
	margin-right: 20px;
}

/* Both Folders and Files*/
.Both {
	font-size: 2em;
	margin: 10px;
	text-align: left;
}

a {
	text-decoration: none;
	color:black;
	padding-left:10px;
}

/* Folders */
.Folder {
	
}

/* Files */
.File {

}


/*Dialog box*/
#boxBack{
  position: fixed; 
  z-index: 997;
  /* 2em button and 20px padding taken from header*/
  top: calc(2em + 40px);
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: block;
}

#boxWrap {
  position: absolute; 
  z-index: 998;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 30px 20px 10px 20px;
  background: #fff;
  border-radius: 5px;
  display:flex;
  flex-direction: column;
  display: flex;
}

#boxTxt {
	font-size:1.2em;
	pointer-events:none;
}

#pass {
	outline: none;
	border: 0px;
	border-bottom: 2px solid #009688;
	margin: 35px 0px 35px 0px;
	padding: 0px 5px 10px 5px;
	resize: none;
}

#auth {
	float:right;
	padding: 5px 10px 5px 10px;
	border: none;
	background: none;
	color:#009688;
	border-radius: 5px;
}

#auth:hover {
	background: rgba(0, 150, 136, 0.075);
}

/*progress spinner*/
#progress {
	display:flex;
	align-items:center;
	padding-bottom:15px;
}

#progress label{
	font-size:1.2em;
	pointer-events:none;
	padding-left:20px;
}

/*pass request*/
#dialog {
	display:none;
}

/*Dialog box end*/

.loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* makes things unhighlightable */
.unhighlight{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

/* Alarm Flag */
h2{
	margin-left: 20px;
}

::file-selector-button {
	display: none;
}

@media screen and (max-width: 1000px) {
	.list_view{
		max-width: 780px;
	}
}

@media screen and (max-width: 820px) {
	.list_view{
		max-width: 560px;
	}
	.Both {
		font-size: 1.7em;
		margin: 7px;
	}
	.main_view{
		margin-top: 35px;
	}
}

@media screen and (max-width: 600px) {
	.list_view{
		max-width: 340px;
	}
	.Both {
		font-size: 1.5em;
		margin: 5px;
	}
	.main_view{
		margin-top: 20px;
	}
}