html, body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
	width: 370px;
	color: rgb(32, 33, 36);
	user-select: none;
	padding: 0;
	margin: 0;
	-webkit-font-smoothing: auto;
}

* {
	box-sizing: border-box;
}

.wrap {
	position: relative;
	padding: 9px 10px 10px 12px;
	margin: 8px 8px 11px 8px;
}

.header {
	background: #fff url('images/icon_256.png') no-repeat 0px -3px;
	background-size: 42px 42px;
	padding: 1px 2px 10px 64px;
	font-size: 26px;
	line-height: 34px;
	font-weight: 500;
	margin: 2px;
}

.message {
	padding: 12px 0px 7px 0px;
	font-size: 14px;
	line-height: 19px;
	text-align: left;
}
.message b {
	font-weight: 600;
}

.button-wrap {
	padding-top: 3px;
}
.button-wrap-center {
	text-align: center;
}
.button {
	display: inline-block;
	padding: 7px 40px 9px 40px;
	border-radius: 7px;
	border: 1px solid #DADCE0;
	color: rgb(26, 115, 232);
	cursor: pointer;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
	margin-top: 15px;
	transition: opacity 0.15s ease-out;
}
.button-dark {
	background: #1a73e8;
	background: #FA2B54;
	color: #fff;
	border: none;
}
.button-dark:hover {
	opacity: 0.95;
}


.toggle {
	display: none;
	margin: 24px 0px 0px 1px;
	height: 24px;
	width: 38px;
	border-radius: 50px;
	position: relative;
	transition: all 0.1s linear;
	cursor: pointer;
	background-color: rgb(221,223,224);
}
.toggle span {
	height: 20px;
	width: 20px;
	position: absolute;
    left: 2px;
    top: 2px;
	border-radius: 50px;
	background: #fff;
	background: rgba(255,255,255,0.96);
	transition: left 0.07s ease-in;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.toggle-selected {
	background-color: rgba(51,102,204,0.8); 
	background-color: #FA2B54;
}
.toggle-selected span {
	left: 16px;
}
.toggle-label {
	margin-top: 27px;
	padding-left: 8px;
	padding-right: 10px;
	display: inline-block;
	font-size: 14px;
	cursor: pointer;
}

.toggle-enabled {
	position: absolute;
    top: -5px;
    right: 5px;
	height: 15px;
	width: 23px;
}
.toggle-enabled span {
	height: 13px;
	width: 13px;
    left: 1px;
    top: 1px;
}
.toggle-enabled.toggle-selected span {
	left: 9px;
}




