@media only screen and (min-device-width : 768px) {
	.block-chores {
		height: calc(100vh - 160px);
		overflow: scroll;
	}
}

.block-chores button:first-child {
	border-top: none !important;
}
.block-chores button {
	background: #fff;
	width: 100%;
	position: relative;
	margin: 0;
	display: flex;
	align-items: center;
	transition: background 1s;
}
.block-chores button:hover {
	text-decoration: none;
}
.block-chores button.done {
	background: linear-gradient(90deg, #14DCD6 0, #10E7BD 100%);
}
.block-chores button .icon {
	position: absolute;
	width: 100px;
	left: 24px;
	transition: left 1s ease-out;
}
.block-chores button.done .icon {
	left: calc(100% - 124px);
	transition: left 1s;
}
.block-chores button .icon svg {
	max-height: 80px;
}
.block-chores button .icon svg path,
.block-chores button .icon svg rect,
.block-chores button .icon svg circle {
	fill: #000;
	transition: fill 0.25s ease, fill-opacity 0.5s ease;
}
.block-chores button.done .icon svg path,
.block-chores button.done .icon svg rect,
.block-chores button.done .icon svg circle {
	fill: #fff;
	fill-opacity: 0.5;
}
.block-chores button .icon.check {
	left: calc(100% - 124px);
	transition: width 0.4s ease-in 0s;
	width: 0;
}
.block-chores button.done .icon.check {
	transition: width 0.4s ease-in 0.5s;
	width: 100px;
}
.block-chores button.done .icon.check svg path {
	fill-opacity: 1;
}
.block-chores button h4 {
	color: #000;
	width: 100%;
	text-transform: none;
	margin: 28px 0 28px 100px !important;
	transition: margin 1s ease, color 0.25s ease;
	font-size: 2.8rem;
	z-index: 10;
}
.block-chores button.done h4 {
	margin: 28px 100px 28px 0 !important;
	color: #fff;
}
