html, body
{
	height: 100%;
	margin: 0px;
	font-family: 'Lato', sans-serif;
}

h1
{
	font-weight: 300;
}

h2
{
	font-weight: 300;
	text-transform: uppercase;
	margin: 20px 0px 0px;
}

h4
{
	margin: 0px;
	color: #db0000;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 22px;
}

input
{
	padding: 0.4em;
	border: 1px solid #46c9e3;
	font-family: 'Lato', sans-serif;
	-webkit-appearance: none;
	border-radius: 0;
	display: block;
	margin: 0px auto;
	text-align: center;
	font-size: 20px;
}

.current_level
{
	display: inline-block;
	padding: 5px;
	background-color: #1179e4;
	border-radius: 7px;
	color: #FFF;
}

.wrapper
{
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: center;
}

.login_form p
{
	margin: 0px;
	font-weight: 300;
	font-size: 25px;
}

.login_form input
{
	width: 100%;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
}

.login_loader, #hidden_div
{
	display: none;
	min-height: 32px;
}

.header
{
	padding: 18px;
	background-color: #EEE;
	position: fixed;
	width: 100%;
	border-bottom: #AAA 1px solid;
	z-index: 9;
}

.header_progressbar_wrapper
{
	display: flex;
}

.header_progress
{
	flex: 1;
	display: flex;
}

.hp_container
{
	margin: 0px 10px;
	width: 100px;
	height: 5px;
}

.header_targets_wrapper
{
	margin-top: 5px;
	display: flex;
}

.header_targets
{
	flex: 1;
	display: flex;
}

.ht_metric
{
	padding: 0px 5px;
}

.panel_wrapper
{
	padding-top: 100px;
}

.task_wrapper
{
	max-width: 1000px;
	margin: 0px auto;
}

.task_list
{
	padding: 10px;
	border-radius: 5px;
	background-color: #EEE;
}

.task
{
	display: flex;
	padding: 20px 10px;
	border: #BCC4FF 1px solid;
	margin: 5px 0px;
	height: 32px;
}

.task:hover
{
	background-color: #FFF;
	border: #AAA 1px solid;
}

.task_priority
{
	height: 30px;
	width: 30px;
	background-color: #0477CC;
	border-radius: 20px;
	margin: 0px 10px;
	text-align: center;
	color: #FFF;
	font-weight: 300;
	line-height: 30px;
}

.priority_5
{
	background-color: #5b04be;
}

.priority_3
{
	background-color: #CC0404;
}

.priority_2
{
	background-color: #ec850e;
}

.priority_0
{
	background-color: #7c7c7c;
}

.task_name
{
	flex: 1;
	padding-top: 6px;
}

.points_total
{
	color: #AAA;
	font-style: italic;
	margin-left: 10px;
}

.status
{
	display: flex;
	min-height: 32px;
}

.complete_button
{
	padding: 5px 0px;
	background-color: #F9F9F9;
	color: #009000;
	cursor: pointer;
	margin: 0px 5px;
	width: 30px;
	text-align: center;
	border-radius: 20px;
}

.complete_button:hover
{
	background-color: #009000;
	color: #FFF;
	font-weight: 300;
}

.minus_completion
{
	color: #CC0404;
}

.minus_completion:hover
{
	background-color: #CC0404;
}

.completions_today
{
	margin: 6px;
}

.progress_balance_wrapper
{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-content: center;
}

.balance_item
{
	border-radius: 10px;
	padding: 10px;
	width: 70px;
	background-color: #EEE;
	display: flex;
	justify-content: center;
	align-content: center;
	margin: 0px 20px;
}

.balance_item:hover
{
	background-color: #EFE;
	cursor: pointer;
}

.balance_item img
{
	width: 30px;
	height: 30px;
}

.balance_item div
{
	margin-top: 5px;
	margin-left: 5px;
}

.overall_progress
{
	display: flex;
	text-align: center;
}

.op_bar
{
	flex: 1;
}

.completion_rewards
{
	position: relative;
	width: 50px;
}

.completion_rewards img
{
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: -10px;
	right: 0px;
	padding: 3px;
	background-color: #E6E6E6;
	border-radius: 5px;
	cursor: pointer;
}

.completion_rewards img:hover
{
	background-color: #c9f2c9;
}

.op_bar div
{
	height: 10px;
}

.reward_listing
{
	display: flex;
	margin: 20px;
	font-size: 20px;
}

.reward_listing img
{
	height: 25px;
	width: auto;
}

.modal_prizes_wrapper
{
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Modal */
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 201, 227, 0.5);
  display: table;
  transition: opacity .3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}

.modal-container {
  width: 400px;
  margin: 0px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
  transition: all .3s ease;
  border: 3px solid #46c9e3;
  overflow-y: auto;
}

.modal-header h3 {
  margin-top: 0;
  color: #42b983;
}

.modal-body {
  margin: 20px 0;
}

.modal-default-button {
  float: right;
}

.button
{
	display: inline-block;
	background-color: #46c9e3;
	color: #FFF;
	padding: 10px 40px;
	cursor: pointer;
	min-width: 70px;
	text-align: center;
}

.button:hover
{
	background-color: #ababab;
}

.btn_wrapper
{
	text-align: center;
}

.redeem_points
{
	margin: 40px;
}

.redeem_points_button
{
	width: 250px;
	padding: 20px;
	margin: 0px auto;
	background-color: #ec850e;
	text-align: center;
	color: #FFF;
	border-radius: 15px;
	text-transform: uppercase;
	cursor: pointer;
}

.redeem_points_button:hover
{
	background-color: #1179e4;
}

.point_acquisition
{
	text-align: center;
	font-style: italic;
	margin: 5px;
	color: #a10000;
}

.point_acquisition_something
{
	color: #777;
}

.point_acquisition_better
{
	color: #009a30;
}

.point_acquisition_good
{
	color: #00639a;
}

.point_acquisition_great
{
	color: #680075;
}

.stretch_goals
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.stretch_goal
{
	display: flex;
}

.stretch_goal_icon
{
	
}

.stretch_goal_icon img
{
	max-height: 75px;
	border-radius: 50%;
	border: 3px solid #C4C4C4;
}

.stretch_goal_icon.goal_active img
{
	border: 3px solid #00639a;
}

.stretch_goal_icon.goal_complete img
{
	border: 3px solid #009a30;
}

.stretch_goal_name
{
	font-size: 18px;
}

.stretch_goal_progress_bars
{
	margin: 10px 0px 0px 20px;
}

.days_bar_container
{
	width: 100px;
	height: 3px;
}

.days_bar, .cash_bar
{
	display: flex;
	align-items: baseline;
}

.abs_progress
{
	font-style: italic;
	font-size: 11px;
	display: none;
}

.abs_progress.active_abs_progress
{
	display: block;
}

.days_bar .abs_progress
{
	color: #00639a;
}

.cash_bar .abs_progress
{
	color: #009a30;
}

/*
 * the following styles are auto-applied to elements with
 * v-transition="modal" when their visiblity is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */

.modal-enter, .modal-leave {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.virtual_modal_button
{
	display: none;
}

.modal_error_mask
{
	background-color: rgba(223, 0, 0, 0.5);
}

.modal_error_container
{
	border: 3px solid #db0000;
}

.modal_success_mask
{
	background-color: rgba(0, 177, 92, 0.5);
}

.modal_success_container
{
	border: 3px solid #009618;
}
