html, body {
	width: 100%;
	height: 100%;
	background-color: #cfd1e1;
}
			
label
{
	  position: relative;
	  width: 120px;
	  height: 60px;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  cursor: pointer;
	  left: 50%;
	  top: 50%;
	  
      -ms-transform: translate(-50%, -50%); 
	  transform: translate(-50%, -50%);
}

.down_text {
	text-align: center;
	position: relative;
	left: 50%;
	top: 50%;
	
    -ms-transform: translate(-50%, -50%); 
	transform: translate(-50%, -50%);
	
	text-shadow: 1px 1px #fff;
}

label::before
{
  content: '';
  position: absolute;
	width: 60%;
	height: 4px;
	background: #444;
	border-radius: 4px;
}

label input
{
  position: absolute;
  appearance: none; 
}

.icon
{
  position: absolute;
	left: 0;
	width: 60px;
	height: 100%;
	transition: 0.7s;
}
			
label input:checked ~ .icon
{
  left: 60px;
}
			
.icon::before
{
  content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	background: linear-gradient( #fff, #fff, #a3aaba ); 
  filter: blur(1px);
	z-index: 1;
}

.icon::after
{
  content: '';
	position: absolute;
	top: 0;
	right: -1px;
	width: 10px;
	height: 100%;
	background: #9d9d9d;
  filter: blur(1px);
}

.shadow
{
  position: absolute;
	top: 30px;
	left: -12px;
	width: 84.85px;
	height: 50px;  
	background: linear-gradient(180deg, rgba(0,0,0,0.1),transparent,transparent);
	transform-origin: top;
	transform: rotate(315deg);
	pointer-events: none;
}

.iconBox
{
  position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient( #dbdae1, #a3aaba );
	box-shadow: 5px 5px 5px rgba(0,0,0,0.1),
	15px 15px 15px rgba(0,0,0,0.1),
	20px 20px 15px rgba(0,0,0,0.1),
	30px 30px 15px rgba(0,0,0,0.1),
	inset 1px 1px 2px #fff;
}

.iconBox ion-icon
{
  color: #555;
	font-size: 1.5em;
  --ionicon-stroke-width: 50px;
	transition: 0.7s;
}

			
label input:checked ~ .icon .iconBox ion-icon
{
	  color: greenyellow;
/*	filter: drop-shadow(0 0 5px #00ffe2) drop-shadow(0 0 15px #00ffe2); */
	filter: drop-shadow(0 0 5px greenyellow) drop-shadow(0 0 15px greenyellow);
}