.switch-mode-toggle-label
{
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}
  
.switch-mode-toggle-label .switch-mode-toggle
{
	opacity: 0;
	width: 0;
	height: 0;
}

.mode-toggle
{
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}
  
.mode-toggle:before
{
	position: absolute;
	content: "";
	height: 40px;
	width: 40px;
	left: 0px;
	bottom: 4px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	box-shadow: 0 0px 15px #2020203d;
	background: white url('https://i.ibb.co/7JfqXxB/sunny.png');
	background-repeat: no-repeat;
	background-position: center;
}
  
.switch-mode-toggle:checked + .mode-toggle
{
	background-color: var(--main-color);
}
  
.switch-mode-toggle:focus + .mode-toggle
{
	box-shadow: 0 0 1px #2196f3;
}
  
.switch-mode-toggle:checked + .mode-toggle:before
{
	-webkit-transform: translateX(24px);
	-ms-transform: translateX(24px);
	transform: translateX(24px);
	background: white url('https://i.ibb.co/FxzBYR9/night.png');
	background-repeat: no-repeat;
	background-position: center;
}

.mode-toggle.round
{
	border-radius: 34px;
}
  
.mode-toggle.round:before
{
	border-radius: 50%;
}

.mode-parent
{
	padding: 15px;
	z-index: 10000;
	position: absolute;
	top: 0;
}