@charset "UTF-8";

.red{outline:1px solid red;}
.blue{outline:1px solid blue;}

/* //////////////////////
///////////////////// */

body { background: #ECEFF1; }

body, input, button {
	font-family: 'Roboto', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; 
}

.noFill {
	fill:none;
}

.phone-background { background: #fff; }

iframe{
	width: 290px;
	height: 512px;
	position: absolute;
	padding-top: 20px;
	padding-right: 1px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	cursor: pointer;
}

.phone-container {
	width: 350px;
	height: 688px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	background: url(../img/FlatIphone.png) no-repeat top center;
	background-image: url(../img/FlatIphone.png) no-repeat top center;
	z-index: -100;
}

/* phones */ 
@media screen and (max-width: 760px) {
	iframe{
		width: 100%;
		height: 100%;
		position: absolute;
		padding-top: 0px;
		padding-right: 0px;
		top: 0;
		left: 0;
		transform: translate(0%, 0%);
		display: block;
		cursor: pointer;
	}

	.phone-container {
		visibility: hidden;
		width: 0px;
		height: 0px;
	}
}

/* nexus 6p only  */
@media screen and (max-height: 435px) {
	iframe{
		width: 100%;
		height: 100%;
		position: absolute;
		padding-top: 0px;
		padding-right: 0px;
		top: 0;
		left: 0;
		transform: translate(0%, 0%);
		display: block;
		cursor: pointer;
	}

	.phone-container {
		visibility: hidden;
		width: 0px;
		height: 0px;
	}

}

header {
	width: 100%;
	height: 50px;
	position: fixed;
	position: relative;
	padding: 10px 8px 8px 8px;
	top: 0;
	left: 0;
	z-index: 5;
	background-color: #0091EA;
	box-shadow: 0px 2px 4px rgba(44,62,80,0.15);
}   

header input {
	width: 100%;
	height: 28px;
	float: left;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-indent: 10px;
	padding: 0 60px 0 0;
	background: rgba(255,255,255,0.25);
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
	border: 0px;
	box-shadow: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

/*input type color*/
header input::-webkit-input-placeholder {
	color: rgba(255,255,255,0.7);
}

header input:-moz-input-placeholder {
	color: rgba(255,255,255,0.7);
}

header input::-moz-input-placeholder {
	color: rgba(255,255,255,0.7);
}

header input::-ms-input-placeholder {
	color: rgba(255,255,255,0.7);
}

header button {
	width: 28px;
	height: 28px;
	position: absolute;
	top: 10px;
	right: 8px;
	z-index: 2;
	border-radius: 25px;
	background: #fff;
	background: rgba(255,255,255,1.0);
	background-color: #E91E63;
	border: 0px;
	box-shadow: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

header button svg {
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* + icon*/
header button svg .fill {
	fill: #fff;
	stroke: #fff;
  	stroke-width: 1.5px;
}

/*
animations
===================*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.container {
	width: 100%;
	float: left;
	padding: 0px;
}

ul.todo {
	width: 100%;
	float: left;
}

ul.todo li {
	width: 100%;
	min-height: 40px;
	float: left;
	font-size: 12px;
	font-weight: 500;
	color: #444;
	line-height: 11px;
	background: #fff;
	position: relative;
	box-shadow: 0px 1px 2px rgba(44,62,80,0.10);
	margin: 0 0 5px 0;
	padding: 14px 100px 14px 14px;

	animation-name: zoomIn;
	-webkit-animation-duration: 150ms;
  	animation-duration: 150ms;
  	-webkit-animation-fill-mode: both;
  	animation-fill-mode: both;
}

/* 
removes padding to the last li.
last of type instead of last-child.
*/
ul.todo li:last-of-type {
	margin: 0;
}

/* button containers*/
ul.todo li .buttons{
	width: 80px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
}

ul.todo li .buttons button {
	width: 40px;
	height: 40px;
	float: left;
	background: none;
	position: relative;
	border: 0px;
	box-shadow: none;
	outline: none;
	cursor: pointer;

	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

ul.todo li .buttons button:last-of-type:before {
	content: '';
	width: 1px;
	height: 20px;
	position: absolute;
	top: 10px;
	left: 0px;
	background: #edf0f1;
}

ul.todo li .buttons button svg {
	width: 22px;
	height: 22px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -11px 0 0 -11px;
}

ul.todo li .buttons button.complete svg {
	border-radius: 11px;
	border: 1.5px solid #1DE9B6;

	-webkit-transition: background: 0.2s ease;
	-moz-transition: background: 0.2s ease;
	-ms-transition: background: 0.2s ease;
	-o-transition: background: 0.2s ease;
	transition: background: 0.2s ease;
}

ul.todo#completed li .buttons button.complete svg {
	background: #1DE9B6;
	border: 0px;
}

ul.todo:not(#completed) li .buttons button.complete:hover svg {
	background: rgba(29,233,182,0.6);
}

ul.todo:not(#completed) li .buttons button.complete:hover svg .fill {
	fill: #fff;
}

ul.todo#completed li .buttons button.complete svg .fill {
	fill: #fff;
}

ul.todo li .buttons button svg .fill {
	-webkit-transition: fill 0.2s ease;
	-moz-transition: fill 0.2s ease;
	-ms-transition: fill 0.2s ease;
	-o-transition: fill 0.2s ease;
	transition: fill 0.2s ease;
}

ul.todo li .buttons button.remove svg .fill {
	fill: #c0cecb;
}

/*trash can*/	
ul.todo li .buttons button.remove:hover svg .fill {
	fill:#D81B60;
}

/*check mark*/
ul.todo li .buttons button.complete svg .fill {
	fill: #1DE9B6;
}

/* this is the line inbetween the todo and completed lists*/
ul.todo#completed{
	position: relative;
	padding: 30px 0 0 0;
}

ul.todo#completed:before {
	content: '';
	width: 150px;
	height: 1px;
	background: #CFD8DC;
	position: absolute;
	top: 15px;
	left: 50%;
	margin: 0 0 0 -75px;
}

ul.todo#todo:empty:after {
	content: 'You have nothing to do.';
	margin-top: 15px;
}

ul.todo#completed:empty:after {
	content: 'You have yet to complete any tasks.';
}

ul.todo#todo:after,
ul.todo#completed:after {
	width: 100%;
	display: block;
	text-align: center;
	color: #90A4AE;
}

/*  material design style animations  */
.matbtn {
  /*display: inline-block;*/
  overflow: hidden;
  transform: translateZ(0);
  transition: all 0.75s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*click*/
.matbtn:active {
  transform: scale(1.0, 1.0);
}
.matbtn:focus {
  outline: 0;
  border: none;
}
/*first wave*/
.drop {
  display: block;
  position: absolute;
  background: #d5f6f0;
  border-radius: 100%;
  transform: scale(0);
  pointer-events: none;
  width: 60px;
  height: 60px;
}
/*second wave*/
.drop:before {
  display: block;
  position: absolute;
  content: "";
  background-color: #abede1;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  top: 0;
  left: 0;
  transform: scale(0);
}

.drop.animate {
  animation: drop 1s ease-out;
}

.drop.animate:before {
  animation: drop2 1s ease-out;
}

@keyframes drop {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
@keyframes drop2 {
  30% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}





