/* Apply a natural box layout model to all elements: http://paulirish.com/2012/box-sizing-border-box-ftw/ */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

.chromeframe {position: absolute; top: 0;}

/* Ok, this is where the fun starts.
-------------------------------------------------------------------------------*/

/* A Linux- and Windows-friendly sans-serif font stack: http://prospects.mhurrell.co.uk/post/updating-the-helvetica-font-stack */
body {
	/*font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; */
	font-family: "nimbus-sans", sans-serif; letter-spacing: 0.2px;
	font-weight: 100;

}

/* Using local fonts? Check out Font Squirrel's webfont generator: http://www.fontsquirrel.com/tools/webfont-generator */

/* We like off-black for text. */
body, select, input, textarea {color: #50555a; line-height: 25px; font-weight: normal;}

a {color: #03f; text-decoration: none;}
a:hover {color: #69f;}

/* Custom text-selection colors (remove any text shadows: http://twitter.com/miketaylr/status/12228805301) */
::-moz-selection{background: #a5aab0; color: #fff; text-shadow: none;}
::selection {background: #a5aab0; color: #fff; text-shadow: none;} 

/*	j.mp/webkit-tap-highlight-color */
a:link {-webkit-tap-highlight-color: #a5aab0;} 

ins {background-color: #fcd700; color: #000; text-decoration: none;}
mark {background-color: #fcd700; color: #000; font-style: italic; font-weight: bold;}

/* Mozilla dosen't style place holders by default */
input:-moz-placeholder { color:#a9a9a9; }
textarea:-moz-placeholder { color:#a9a9a9; }

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.clear{clear: both;}

.wrapper{
	width: 600px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 50px;
}

/* Header
-------------------------------------------------------------------------------*/
.avatar{
	width: 80px;
	height: 80px;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	background-size: 80px;
	margin: 50px auto;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
}

.avatar .logout{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -13px;
	margin-top: -40px;
	opacity: 0;
	background: url(../images/logout-btn.png) center center no-repeat;
	width: 27px;
	height: 27px;
	display: block;
	float: right;
	height: 80px;
}

.avatar .settings{
	position: absolute;
	top: 50%;
	right: 50%;
	margin-right: -13px;
	margin-top: -40px;
	opacity: 0;
	background: url(../images/wrench-btn.png) center center no-repeat;
	width: 27px;
	height: 27px;
	display: block;
	float: left;
	height: 80px;
}

header{
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 43px;
	margin-bottom: 17px;
}

header h1{
	font-size: 26px;
	font-weight: normal;
	text-align: center;
	margin-bottom: 3px;
	font-weight: 100;
}

header h2{
	text-align: center;
	color: #a5aab0;
	font-weight: normal;
	font-weight: 100;
}

/* Login
-------------------------------------------------------------------------------*/
.wrapper.login{
	position: relative;
	width: 100%;
	height: 100%;
}

.login-wrapper{
	position: absolute;
	top: 50%;
	margin-top: -178px;
	left: 50%;
	margin-left: -172px;
}

.login-wrapper.sign-up{
	position: absolute;
	top: 50%;
	margin-top: -266px;
	left: 50%;
	margin-left: -192px;
}

header.login{
	/*margin-top: 180px;*/
	border-bottom: none;
	margin-bottom: -10px;
}

.loginForm{
	width: 300px;
	margin: 0 auto;
}

.loginForm input{
	height: 40px;
	width: 298px;
	margin-bottom: 19px;
	background: none;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #e6e6e6;
	font-weight: lighter;
	color: #50555a;
}

.loginForm input:focus{
	border-bottom: 1px solid #51C0FF;
	outline: 0;
	-webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
}

.loginForm input:focus::-webkit-input-placeholder {
    opacity: 0.5;
    -webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
  }

/* Firefox < 19 */
.loginForm input:focus:-moz-placeholder {
    opacity: 0.5;
    -webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
}
/* Firefox > 19 */
.loginForm input:focus::-moz-placeholder {
    opacity: 0.5;
    -webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
}
/* Internet Explorer 10 */
.loginForm input:focus:-ms-input-placeholder {
    opacity: 0.5;
    -webkit-transition: all .2s ease-in;
	-moz-transition: all .2s ease-in;
}

.loginForm input[type=submit]{
	border: 1px solid #e6e6e6;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	height: 48px;
	line-height: 44px;
	color: #50555a;
	margin-top: 31px;
}

.socialLogin{
	width: 299px;
	margin: 0 auto 14px auto;
	height: 40px;
}

.socialLogin a{
	font-family: "Helvetica Neue" sans-serif;
	font-weight: 500;
}

.socialLogin a.fb{
	float: left;
	color: #5d78b2;
	background: url(../images/facebook-login.png) left center no-repeat;
	padding-left: 26px;
	display: block;
	margin-left: 50px;
}

.socialLogin a.tw{
	float: right;
	color: #4099ff;
	background: url(../images/twitter-login.png) left center no-repeat;
	padding-left: 30px;
	display: block;
	margin-right: 50px;
}

/* Project overview
-------------------------------------------------------------------------------*/
.project{
	float: left;
	width: 100%;
}

.project:last-child{
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 25px;
}

/*.project:hover{
	background-color: red;
	}*/

	.project .play-btn{
		height: 34px;
		width: 34px;
		/*background: url(../images/play-btn.png) center center no-repeat;*/
		float: right;
		margin-top: -18px;
		cursor: pointer;
	}

	.project .play-btn a{
		display: block;
		height: 100%;
	}

	.project .play-btn a.start-project{
		background: url(../images/play-btn.png) center center no-repeat;
	}

	.project .play-btn a.pause-project{
		background: url(../images/clock.svg) center center no-repeat;
		/*background-size: 32px 32px;*/
	}

	.project .play-btn a.pause-project:hover{
		background: url(../images/pause-btn.png) center center no-repeat;
		/*background-size: 32px 32px;*/
	}

	.projects .play-btn2 a{
		display: block;
		height: 100%;
		width: 36px;
		height: 36px;
	}

	.projects .play-btn2 a.start-project{
		background: url(../images/play-btn.png) center center no-repeat;
	}

	.projects .play-btn2 a.stop-project{
		background: url(../images/clock.svg) center center no-repeat;
		width: 36px;
		height: 36px;
	}

	.projects .play-btn2 a.stop-project:hover{
		background: url(../images/pause-btn.png) center center no-repeat;
		/*background-size: 32px 32px;*/
	}

	.project .projectInfo{
		padding-top: 16px;
	}

	.projectInfo h2 a{
		color: #50555a;
		float: left;
		font-size: 20px;
		font-weight: normal;
		padding-bottom: 1px;
		font-weight: 100;
	}

	.projectInfo p{
		color: #a5aab0;
		float: left;
		clear: both;
		padding-bottom: 18px;
		font-weight: 100;

	}

/* Action buttons
-------------------------------------------------------------------------------*/
header a{
	height: 28px;
	width: 28px;
	display: block;
	position: absolute;
	top: 142px;
}

a.back{
	background: url(../images/back-btn.png) center center no-repeat;
	left: 0;
}

a.addTime{
	background: url(../images/plus-btn.png) center center no-repeat;
	right: 0;
}

a.add_new_project{
	background: url(../images/plus-btn.png) center center no-repeat;
	right: 0;
	height: 28px;
	width: 28px;
	display: block;
	position: absolute;
	top: 142px;
	cursor: pointer;
}

/* Timelog Entries
-------------------------------------------------------------------------------*/
.projects .play-btn2{
		height: 36px;
		width: 36px;
		margin: 24px auto 14px auto;
		cursor: pointer;
	}

	.project .play-btn2 .start-project{
		background: url(../images/play-btn.png) center center no-repeat;
	}

	.project .play-btn2 .stop-project{
		background: url(../images/pause-btn.png) center center no-repeat;
	}

.timeLogEntries{
	width: 100%;
}

.timeLogEntries:last-child{
	border-bottom: 1px solid #e6e6e6;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.timeLogEntries .timeLog:last-child p{
	padding-bottom: 20px;
}

.timeLogEntries h1{
	text-align: center;
	font-weight: normal;
	margin-top: 16px;
	margin-bottom: 0px;
	font-size: 20px;
	font-weight: 100;
}

.timeLogEntries p{
	min-height: 43px;
	color: #a5aab0;
}

.timeLogEntries p.workedToday{
	text-align: center;
	font-weight: 100;
}

.timeLogEntries .timeLog{
	position: relative;
	display: block;
}

.timeLogEntries .timeLog .line{
	width: 2px;
	background-color: #777c82;
	/*min-height: 62px;*/
	height: 100%;
	float: left;
	display: block;
	margin: 0 auto;
	/*margin-top: 15px;*/
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 50%;
	margin-left: -1px;
}

.timeLogEntries .timeLog .line .circle{
	position: absolute;
	background: #777c82;
	width: 12px;
	height: 12px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	top: 25px;
	left: -5px;
}

.timeLogEntries .timeLog h2{
	float: left;
	margin-left: 200px;
	color: #a5aab0;
	font-weight: normal;
	width: 70px;
	text-align: right;
}

.timeLogEntries .timeLog p{
	float: left;
	width: 265px;
	margin-left: 41px;
	padding-bottom: 2px;
}

.notesWrapper{
	padding-top: 19px;
	padding-bottom: 18px;
	width: 600px;
}

/* Timelog entries odd
-------------------------------------------------------------------------------*/
.timeLogEntries.odd{
	/*background: #e9e9e9;*/
}

.timeLogEntries.odd .timeLog p{
	text-align: right;
	margin-left: 20px;
	/*margin-right: -100px;*/
}

.timeLogEntries.odd .timeLog h2{
	float: right;
	margin-right: 200px;
	margin-left: 0px;
	text-align: left;
	width: 70px;
}

/* Timelog Textarea specific
-------------------------------------------------------------------------------*/
.timeLogEntries .timeLog p textarea{
	border: none;
	resize: none;
	height: 26px;
	font-weight: lighter;
	color: #50555a;
	padding-left: 10px;
	margin-top: -1px;
}



.timeLogEntries.odd .timeLog p textarea{
	text-align: right;
	/*padding-left: -10px;
	padding-right: 20px;*/
}

textarea:focus
{ 
	outline: 0 !important; 
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
}

::-webkit-input-placeholder { /* WebKit browsers */
	color:    #a5aab0;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
	color:    #a5aab0;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
	color:    #a5aab0;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
	color:    #a5aab0;
}


/* Dialogs
-------------------------------------------------------------------------------*/

.ui-widget-header{
	border: none;
  	background: none;
  	color: #222;
  	font-weight: bold;
}

.ui-widget-content{

}

.ui-widget{
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

/* Print styles!
-------------------------------------------------------------------------------*/
@media print {



}


/* Media queries!
-------------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {

	.wrapper{
		width: 90%;
	}

/* Specially for timelog entries
-------------------------------------------------------------------------------*/
.timeLogEntries{
	width: 90%;
}

.notesWrapper{
	width: 90%;
	margin-left: 20%;
}

.timeLogEntries h1{
	text-align: left;
}

.timeLogEntries .timeLog p{
	margin-left: -10px;
	float: left;
	width: 100%;
}

.timeLogEntries .timeLog .line{
	left: 10%;
}



.timeLogEntries .timeLog h2{
	margin-left: 0px;
	text-align: left;
	width: 62px;
}

.timeLogEntries.odd .timeLog p{
	float: left;
	text-align: left;
	width: 100%;
	margin-left: -10px;
}

.timeLogEntries.odd .timeLog p textarea{
	text-align: left;
}

.timeLogEntries.odd .timeLog h2{
	float: left;
	text-align: left;
	margin-left: 0px;
	width: 62px;
	margin-right: 0px;
}

.timeLogEntries p.workedToday{
	text-align: left;
}

}

@media screen and (max-width: 480px) {
	
	.projectInfo h2{
		overflow: hidden;
		white-space: nowrap;
		text-overflow:ellipsis;
		width: 90%;
	}

}