#mocha .test.pass .duration{

}

#mocha .test.pass.fast .duration{
    background: #708090;
}

#mocha .test.pass.slow .duration{
    background: #708090;
}

#mocha .test.pass.medium .duration {
    background: #708090;
}

#mocha .test.pass.fast .extradata {
    display: inline;
}

#mocha .test a.replay {
  display: none;
}

/* MARK'S CSS CHANGES*/
.hidden{
	display: none;
}

#mocha-report h2{
	line-height: inherit;
}

.main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}
#current-user-header{
	margin: 0;
	text-align: center;
	color: #727d84;
}
.main-container > *, #main-container-header-text{
	font-family: 'Montserrat', sans-serif;
}
.uploadBox{
	background-color: #0072BC;
    height: 35px;
    width: 35px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 10px 0 0;
}
.uploadBox:hover,
.upload-icon:hover{
	cursor: pointer;
}
.mdl-textfield__label:after, #import, #reset{
	background-color: #0072BC;
}
#input-text-div, #password-div{
	width: 150px;
}
#input-text{
	color: #727d84;
}
.upload-icon{
	line-height: 0;
}
.input-box, .content-row{
	display: flex;
    justify-content: center;
    align-items: center;
}
.material-icons{
	color: white;
}
.content-row > div, #import, #reset{
	margin: 0 10px;
}
#image-logo{
	width: 250px;
	color: #727d84;
}
#main-container-header{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #727d84;
}
.json-content-div{
	width: 600px;
    padding: 10px;
    border-radius: 5px;
    background-color: #E0E0E0;
    min-height: 72px;
}

/* ANIMATIONS */
.shrink-header-text, .shrink-header-image,
.zoom-current-user-header, .zoom-current-user-text{
	animation-duration: 1.5s;
	animation-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55);
	animation-fill-mode: forwards;
}

.shrink-header-text{
	animation-name: shrink_header_text_animation;
}
@keyframes shrink_header_text_animation {
	to{
		font-size: 18px;
		margin: 12px 0;
	}
}
.shrink-header-image{
	animation-name: shrink_header_image_animation;
}
@keyframes shrink_header_image_animation {
	to{
		width: 50px;
	}
}
.zoom-current-user-header{
	animation-name: zoom-current-user-header_animation;
}
@keyframes zoom-current-user-header_animation {
	to{
		font-size: 45px;
	    margin: 10px 0;
	}
}
.zoom-current-user-text{
	animation-name: zoom-current-user-text_animation;
}
@keyframes zoom-current-user-text_animation{
	to{
		font-size: 20px;
    	margin: 16px 0;
	}
}
