.settings_row{
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.settings_row:first-child{
	margin-top: 0;
}

.settings_row_name{
	font-size: 16px;
}

.settings_row_toggler{
	width: 50px;
	height: 30px;
	background: #3a393f;
	margin-left: auto;
	border-radius: 15px;
	transition: background 0.2s;
	position: relative;
	padding: 2px;
}

.settings_row_toggler[active="1"]{
	background: #49cd5b;
}

.settings_row_toggler::after{
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	background: white;
	border-radius: 50%;
	transition: transform 0.2s;
}

.settings_row_toggler[active="1"]::after{
	transform: translateX(20px);
}

