
/*
a{
color: white;

}
a:hover{
	color:yellow;
}
*/
:root {
  --progress-bar-width: 300px;
  --progress-bar-height: 300px;
  --font-size: 2rem;
}


.circular-progress {
  width: var(--progress-bar-width);
  height: var(--progress-bar-height);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0);
  
}
.inner-circle {
  position: absolute;
  width: calc(var(--progress-bar-width) - 30px);
  height: calc(var(--progress-bar-height) - 30px);
  border-radius: 50%;
  background-color: lightgrey;
  background-image: url("icons/buttons.png");
  			  background-repeat: no-repeat;
	  background-position: center;
		  background-size: 120%;
}

.progressHolder{
	position: relative;
}

#progressTime{
text-align: center;
	  display: block;
	  font-size: 25px;
}


#progressPercent{
text-align: center;
	   display: block;
	  font-size: 70px;
}


/*
.interesting{
	background-color: rgba(0,0,0,0.2);
	border-radius: 5px;
	padding: 2px 6px 2px 6px;
}



h1{
	color:white;
}

h3{
	color: white;
}


body {
  font-family: sans-serif;
  background-color: #8B2DB4;
  padding: 0px;
  margin: 0px;
    cursor: default;
}
*/


.main {
  height: 100%;
  text-align: center;
  min-height: 24em;
  overflow: hidden;
}

.wrapper {
  text-align: left;
  overflow: hidden;
  width: 1000px;
  margin: 100px auto;
}

.wrapper div {
  float: left;
  width: 400px;
}

.credits {
	color: gray;
	font-size: 8pt;
}


#statusHolder{
	width: 100%;
	background: linear-gradient(#191c23, #2d3341);
	margin: 5px;
	border: 2px solid black;
	border-radius: 20px;
}


#statusBar{

	color: white;
	text-align: center;
	width: 0%;
	height: 20px;
		border-radius: 20px;
			
		
				background:
			linear-gradient(#d0a9e2, transparent 85%), 
			linear-gradient(90deg, #433485, #dd3c6e)
}


#instructions{
	font-size: 9pt;
	//padding: 10px;
	color: black;
}


.bottomContainer {
    display: flex;
    align-items: center;
    justify-content: center; /* or center */
	position: relative;
}


.bot {
  float: left;
  position: relative;
  z-index: 999;
  border-radius: 20px;
  border: 2px solid #aaa;
  background-color: #fafafa;
  background-color: #eee;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
  padding: 20px;
  margin-right: 100px;
  height: 300px;
  width: 400px;
  margin-bottom: 20px;
}

.bot h1 {
  padding-top: 0;
  margin-top: 0;
  font-family: 'Fugaz One', cursive;
  color: #333;
}


.board {
	  border-radius: 20px;
  border: 2px solid #aaa;
    background-color: #fff;

    box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
  width: 400px;
  position: relative;
  z-index: 999;
}

.board img {
	 border-radius: 20px;
  height: 330px;
}

.board svg {
  font-family: sans-serif;
}
/*
label, input, select {
  display: block;
  margin: 0 0 15px 0;
  width: 200px;
}

select, input {
  height: 30px;
  margin-top: 8px;
  font-size: 15px;
}

.fileButtonWrapper {
	position: relative;

}
*/

.bottomSpacer{
	width: 20px;
}

.restWrap{
	display:inline-block;
	position: relative;
}

#fileButton {
  user-select: none; 
 display: inline-block;
  border-radius: 17px;
  //height: 30px;
  padding: 4px 8px 4px 8px;
  position: relative;
  overflow: hidden;


border: 2px solid rgba(0,0,0,0);

  cursor: pointer;
  font-size: 16px;
  color: white;
  background: rgba(255,255,255,0.1);
}
#fileButton:hover{
	border: 2px solid white;
}

#fileButton:active{
	  font-size: 14px;
	  //padding: 2px 6px 2px 6px;
	margin: 1.5px 5px 1px 5px;

}
/*
input[type=file] {
	display: inline-block;
	display: none;
  position: absolute;
  top: 0;
  right: 0;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;

}

input[type=file]:focus {
  outline: 3px solid #0000ff;
  border: 3px solid #0000ff;
}

button[type=submit] {
  float: right;
  font-size: 20px;

  margin-right: 5px;
  background-color: #99f89c;
  border: 2px solid #7fc381;
  padding: 10px;
  border-radius: 7px;
}

button[type=submit]:hover{
	background-color: #befdc1;
}

*/
#uploadBtn{
	
	cursor: pointer;
	  background: rgba(0,0,0,0.1);
	  		  border-radius: 100%;
			  height: 150px;
			  width: 150px;
			  
}

#uploadBtn:hover{
		border: 2px solid darkgrey;
}
#uploadBtn:active{
			  height: 148px;
			  width: 148px;
}



#uploadIco{
padding-top: 15px;
		background-image: url("icons/upload-icon.png");
		height: 100px;
		width: 100px;
			  background-repeat: no-repeat;
	  background-position: center;
		  background-size: 69%;
		  	
	
		 
}



#resetBtn{
	
	  background: rgba(0,255,255,0.1);
	  cursor: pointer;

position: absolute;

left: 200px;

	height:30px;
	width: 30px;
	background-image: url("icons/reset-icon.png");
	  background-repeat: no-repeat;
	  background-position: center;
	  background-size: 69%;
	  border: 2px solid rgba(0,0,0,0);
	 border-radius: 100%;
}

#resetBtn:hover{
	border: 2px solid white;
}

#resetBtn:active{
margin: 2px;
		height:26px;
	width: 26px;
}


#fileName {
	display: block;

  max-width: 300px;
  max-height: 20px;
  color: lightgrey;
  overflow: hidden;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;

}

#gear {
  position: absolute;
  margin-top: 60px;
  z-index: 1000;
  margin-left: 400px;
  width: 80px;
  height: 80px;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.spinning {
  animation: rotation 0.8s infinite linear;
}

#progress, #pipe {
  position: absolute;
  margin-top: 85px;
  margin-left: 461px;
  z-index: 1;
  text-align: left;
  width: 100px;
  max-width: 100px;
  height: 20px;
  overflow: hidden;
  border: 2px solid #f6f6f6;
  border: 2px solid #aaa;
  background-color: #fff;
  background-color: #eee;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
}

#progress {
  width: 0px;
  background-color: #99f89c;
  z-index: 3;
  color: forestgreen;
  text-align: center;
  text-transform: uppercase;
  padding-top: 2px;
  height: 17px;
  font-size: 15px;
  font-weight: bold;
  transition: width 0.2s;
}

#logbox {
  position: relative;
  text-align: left;
  width: 922px;
  max-width: 922px;
  margin-top: 30px;
  margin-left: 30px;
}

#logbox h2 {
  color: #ad9aff;
}

#log {
  position: relative;
  text-align: left;
  width: 922px;
  max-width: 922px;
  margin-top: 10px;
}

#log > span {
  margin-left: 5px;
  margin-bottom: 5px;
  border: 1px solid #0000ff;
  color: blue;
  border-radius: 4px;
  background-color: #ad9aff;
  padding: 1px 4px;
  font-family: monospace;
  font-size: 9px;
  float: left;
  display: inline-block;
}

