/*
	DEVELOPED BY 	: ARJUNANE (Dimas Awang Kusuma)
	VERSION			: 1.0.1
*/
html, body {
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #444;
  z-index: 1000;
  padding: 0px 10px;
  border-bottom: 1px solid #ecf0f1;
}
header .icon {
  height: 50px;
  display: inline-block;
}
header .icon img {
  height: 100%;
}
header .text {
  margin-left: 20px;
  display: inline-block;
  font-size: 20pt;
  color: white;
}

.container {
  padding-top: 70px;
}

.col-right {
  position: fixed;
  z-index: 1000;
  top: 80px;
  right: 0;
  bottom: 10px;
}
.col-right .inner {
  width: 100%;
  max-height: 100%;
  overflow: auto;
}
.col-right .inner .number {
  display: inline-block;
  width: 50px;
  padding: 5px;
  color: white;
  margin: 5px;
  text-align: center;
  cursor: pointer;
}
.col-right .inner .number.done {
  background: #2ecc71;
}
.col-right .inner .number.undone {
  background: #e84118;
}

.card {
  border: 1px solid #ecf0f1;
  background: white;
  -webkit-box-shadow: 0 0 3px #CCC;
  -moz-box-shadow: 0 0 3px #CCC;
  -ms-box-shadow: 0 0 3px #CCC;
  -o-box-shadow: 0 0 3px #CCC;
  box-shadow: 0 0 3px #CCC;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}

p {
  margin: 0;
}
