#task-form .widget-head-color-box {
	border-radius: 9px 9px 0 0;
}
#task-form .widget-text-box {
	border-radius: 0 0 9px 9px;
}
#frm-task-create {
	color: #676A6C;
}
#frm-task-create h3 {
	font-size: 18px;
	font-weight: 400;
}
#frm-task-create .form-group {
	text-align: left;
}
#frm-task-create .form-group label {
	font-size: 15px;
	font-weight: 400;
}
#frm-task-create .font-weight-medium{
	font-weight: 600 !important;
}
.frm-buttons {
	text-align: right;
	margin-top: 50px;
}
.frm-buttons .btn-default, 
.frm-buttons .btn-info {
	border-radius: 7px;
	padding: 10px 15px;
}
.frm-buttons .btn-default {
	border: 1px solid #A7B1B5;
	color: #A7B1B5;
}
#frm-task-create > .row.form-group {
	align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#frm-task-create > .row.form-group > .col-sm-1 {
	margin-bottom: 10px;
	font-style: 14px;
}
#frm-task-create > .row.form-group .btn {
	text-transform: capitalize;
	width: 100%;
}
#frm-task-create > .row.form-group .btn img {
	margin-right: 6px;
}
.task-progress {
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}
.task-progress > .step {
	max-width: 150px;
	margin: 0 30px;
	position: relative;
}
.task-progress > .step:not(:last-child)::before {
	content: "";
	background: #A7B1B5;
	height: 2px;
	width: 180px;
	position: absolute;
	bottom: 28px;
	left: 90px;
}
.task-progress > .step > div {
	height: 56px;
	width: 56px;
	border-radius: 50%;
	background-color: #F8FAFB;
	border: 8px solid #A7B1B5;
	margin: 0 auto;
	position: relative;
}
.task-progress > .step.active > div {
	border-color: #23C6C8;
}
.task-progress > .step img {
	margin-top: 8px;
}
.task-progress > .step p {
	color: #676A6C;
	font-size: 16px;
	margin-bottom: 15px;
}
@media (max-width: 680px) {
	.task-progress {
		display: none;
	}
}