body{
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	box-sizing: border-box;
}
.blue {
	background-color: #4848c7;
	color:#fff;
	font-size: 1.4rem;
	font-weight: bold;
}
.flex{
	display: flex;
	justify-content: space-between;
}
.successButton{
	background-color: green !important;
}
.topMenuItem{
	font-size:2rem;
}

.section {
	display: flex;
	font-family: 'Poppins', sans-serif;
}
.field{
	padding: 0 10px;
}

.jc_center{
	justify-content: center;
}
.jc_sb{
	justify-content: space-between;
}
.jc_sa{
	justify-content: space-around;
}

.activiti_edit_area{
	display: flex;
	justify-content: center;
}

.btn_round {
	width: 32px;
	height: 32px;
	margin: 0 10px;
	background-color: #4848c7;
	border-radius: 50%;
	color:#fff;
	font-weight: bold;
	text-align: center;
	line-height: 32px;
	font-size: 2rem;
	border: 1px solid black;
    box-shadow: 1px 1px 2px 3px rgb(0 0 0 / 40%);
    cursor: pointer;
}

.workout {
	flex-direction: column;
	background-color: #333;
	color:#eee;
	height: 80vh;
	overflow-y: scroll;
	border-bottom: 1px solid #666;
}
.activiti_body{
	margin-top:20px;
}
.activiti_title{
	text-align: center;
	font-size: 1.2rem;
}

.eventList{
	display: flex;
	flex-direction: column;
	height: 50vh;
	overflow-y: scroll;
}
.ev_duration{
	font-size: 1.5rem;
	font-weight: bold;
}
input.inField{
	background-color: #333;
	color:#eee;
	border-top:none;
	border-left: none;
	border-right: none;
	text-align: center;
	font-size: 2rem;
	width:140px;
}

input.titleWorkout{
	width: 260px;
	margin:20px 0px;
	font-size: 1.4rem;
}
.footer{
	padding:10px 0px;
	display: flex;
	justify-content: space-around;
	background-color: #333;
}

.Button{
	padding: 10px;
	background-color: #4848c7;
	color:#eee;
	font-size: 1.5rem;
	border-radius: 5px;
	border:1px solid #666;
	cursor: pointer;
}
.align_center{
	display: flex;
	justify-content: center;
	margin: 0px auto;
}
section.work{
	z-index: 2;
	flex-direction: column;
	display: flex;
	background-color: green;
}

.title_etap{
	text-align: center;
	color:#fff;
	font-size: 2rem;
}

.bigTimer{
	font-size:10rem;
	color: #fff;
	text-align: center;
}

.event{
	margin:5px;
	padding: 0px 20px;
	font-size: 1.2rem;
	color:#fff;
	border-bottom: 1px solid #ccc;
	display: flex;
	justify-content: space-between;
}

.currentStep{
	background-color: #ababab;
}

.pauseScreen{
	background-color: gray !important;
}

.work_panel{
	display: flex;
	justify-content: center;
}
.pause{
	font-size:4rem;
	color:#fff;
}
.back{
	font-size: 2.5rem;
	color:#fff;
}

.hidden{
	display: none !important;
}






/*
AUTH FORM
*/

.LoginForm{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0px);
	display: flex;
	flex-direction: column;
	background-color: #333;
	font-family: 'Poppins', sans-serif;
	padding: 20px;
	border: 2px solid #fff;
}

.formLine{
	display: flex;
	margin: 5px 0;
}
.formTitle{
	margin: 10px auto 0px;
	color: #fff;
	font-size: 2rem;
}
input[type="text"] {
	border-radius: 10px;
	font-size: 2rem;
	width: 90%;
	margin: 0px auto;
	background-color: transparent;
	color: #fff;
	text-align: center;
	border: none;
	border-bottom: 1px solid #eee;
}


/*
TaskList
*/

.TaskList {
	position: absolute;
	border: 1px solid #eee;
	border-radius: 10px;
	padding: 5px;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0px);
	width: 375px;
	background-color: #333;
}
.formTitle{
	font-weight: 2rem;
	color: #fff;
	text-align: center;
}

.tasks{
	margin:20px;
	max-height: 400px;
	display: flex;
	flex-direction: column;
	overflow-y: scroll;

}

.task{
	border-bottom: 1px dotted #fff;
	color:#fff;
	display: flex;
	justify-content: space-between;
	margin-right: 10px;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
}

.task:hover {
	color: yellow;
}
.task__name{
	font-size: 1rem;
}
.task_formula{
	font-size: 0.7rem;
}

.txtlabel{
	color:#fff;
}