@media all and (max-width: 800px) {
	.section {
		padding: 10px;
		padding-left: 0px;
	}
	.section input[type="radio"],
	.section input[type="checkbox"]{
		display: none;
	}
	.container {
		margin-bottom: 50px;
		margin-left: 35px;
	}
	.container label {
		position: relative;
	}

	/* Base styles for spans */
	.container span::before,
	.container span::after {
		content: '';
		position: absolute;
		top: 30;
		bottom: 0;
		margin: auto;
	}
	.container span.checkbox::before {
		width: 20px;
		height: 20px;
		background-color: #FD5F53;
		left: -35px;
		box-sizing: border-box;
		border-radius: 3px;
		border: 3px solid transparent;
		transition: border-color .3s;
	}
	.container span.checkbox:hover::before {
		border-radius:3px;
		border: 3px solid #4c79ff;
	}
	.container span.checkbox::after {
		content: '\f00d';
		font-family: 'FontAwesome';
		left: -31px;
		top: 0px;
		color: transparent;
		transition: color .3s;
	}
	input[type="checkbox"]:checked + label span.checkbox::after {
		color: #000000;
	}
}

@media all and (min-width: 800px) {
	.container{
		display: none;
	}
}
