.checkbox-tools:checked + label,
.checkbox-tools:not(:checked) + label{
	position: relative;
	display: inline-block;
	padding: 20px;
	width: 110px;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-align: center;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	text-transform: uppercase;
	color: black;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear; 
	height: 5em;
	box-shadow:  2px 2px 6px #bebebe,
             	-2px -2px 6px #ffffff;
  	border-style: none;
}
.checkbox-tools:not(:checked) + label{
	background-color: var(--dark-light);
	box-shadow:  2px 2px 6px #bebebe,
             	-2px -2px 6px #ffffff;
  	border-style: none;
}
.checkbox-tools:checked + label{
	background-color: red;
	background: #FF3600;
	box-shadow:  2px 2px 6px #bebebe,
             	-2px -2px 6px #ffffff;
  	border-style: none;
}
.checkbox-tools:not(:checked) + label:hover{
	background: #e0e0e0;
	box-shadow:  2px 2px 6px #bebebe,
             	-2px -2px 6px #ffffff;
  	border-style: none;
}
.checkbox-tools:checked + label::before,
.checkbox-tools:not(:checked) + label::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 14px;
	background-image: linear-gradient(298deg, red, yellow);
	z-index: -1;
	background: #e0e0e0;
	box-shadow:  2px 2px 6px #bebebe,
             	-2px -2px 6px #ffffff;
  	border-style: none;
}