body.settings_page_adsense_invalid_click_protection {
	background-color: #f0f1f2;
}

.--panel {
	background-color: white;
	padding: 10px;
	margin-bottom: 20px;
	border-radius: 4px;
	box-shadow: 0px 0px 5px #d8d8d8;
	display: flow-root;
}

.--save {
	--p-button-color: var(--p-action-primary);
	--p-button-text: var(--p-text-on-primary);
	--p-button-color-hover: var(--p-action-primary-hovered);
	--p-button-color-active: var(--p-action-primary-pressed);
	background: -webkit-gradient(linear, left top, left bottom, from(#6371c7), to(#5563c1));
	background: linear-gradient(to bottom, #6371c7, #5563c1);
	border-color: #3f4eae;
	-webkit-box-shadow: inset 0 1px 0 0 #6774c8, 0 1px 0 0 rgba(22, 29, 37, 0.05), 0 0 0 0 transparent;
	box-shadow: inset 0 1px 0 0 #6774c8, 0 1px 0 0 rgba(22, 29, 37, 0.05), 0 0 0 0 transparent;
	color: white;
	padding: 5px 20px;
	border-radius: 3px;
	float: right;
}


/* Estilo iOS */

.switch__container {
	margin: 0px auto;
	width: 60px;
	zoom: 0.6;
	float: left;
}

.switch {
	visibility: hidden;
	position: absolute;
	margin-left: -9999px;
}

.switch+label {
	display: block;
	position: relative;
	cursor: pointer;
	outline: none;
	user-select: none;
}

.switch--shadow+label {
	padding: 2px;
	width: 120px;
	height: 60px;
	background-color: #dddddd;
	border-radius: 60px;
}

.switch--shadow+label:before,
.switch--shadow+label:after {
	display: block;
	position: absolute;
	top: 1px;
	left: 1px;
	bottom: 1px;
	content: "";
}

.switch--shadow+label:before {
	right: 1px;
	background-color: #f1f1f1;
	border-radius: 60px;
	transition: background 0.4s;
}

.switch--shadow+label:after {
	width: 62px;
	background-color: #fff;
	border-radius: 100%;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	transition: all 0.4s;
}

.switch--shadow:checked+label:before {
	background-color: #8ce196;
}

.switch--shadow:checked+label:after {
	transform: translateX(60px);
}


/* Estilo Flat */

.switch--flat+label {
	padding: 2px;
	width: 120px;
	height: 60px;
	background-color: #dddddd;
	border-radius: 60px;
	transition: background 0.4s;
}

.switch--flat+label:before,
.switch--flat+label:after {
	display: block;
	position: absolute;
	content: "";
}

.switch--flat+label:before {
	top: 2px;
	left: 2px;
	bottom: 2px;
	right: 2px;
	background-color: #fff;
	border-radius: 60px;
	transition: background 0.4s;
}

.switch--flat+label:after {
	top: 4px;
	left: 4px;
	bottom: 4px;
	width: 56px;
	background-color: #dddddd;
	border-radius: 52px;
	transition: margin 0.4s, background 0.4s;
}

.switch--flat:checked+label {
	background-color: #8ce196;
}

.switch--flat:checked+label:after {
	margin-left: 60px;
	background-color: #8ce196;
}

label {
	margin-bottom: 0px;
}

.form-control {
	width: 31%;
}

.btn-detete {
	--p-button-color: var(--p-action-critical);
	--p-button-text: var(--p-text-on-critical);
	--p-button-color-hover: var(--p-action-critical-hovered);
	--p-button-color-active: var(--p-action-critical-pressed);
	--p-button-color-depressed: var(--p-action-critical-depressed);
	background: linear-gradient(180deg, #e6391a, #d53417);
	border-color: #b02b13;
	box-shadow: inset 0 1px 0 0 #e73d1f, 0 1px 0 0 rgba(22, 29, 37, .05), 0 0 0 0 transparent;
	color: #fff;
	display: block;
	margin-bottom: 10px;
}

.--btn-clicked {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3.6rem;
	margin: 0;
	padding: .7rem 1.6rem;
	border: .1rem solid var(--p-border, #c4cdd5);
	border-radius: 3px;
	line-height: 1;
	color: #212b36;
	text-align: center;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	text-decoration: none;
	transition-property: background, border, box-shadow;
	transition-duration: var(--p-override-none, .2s);
	transition-timing-function: var(--p-override-none, cubic-bezier(.64, 0, .35, 1));
	-webkit-tap-highlight-color: transparent;
	border-color: #b8c3cd;
	box-shadow: 0 0 0 1px transparent, inset 0 1px 1px 0 rgba(99, 115, 129, .1), inset 0 1px 4px 0 rgba(99, 115, 129, .1);
	background: #dfe3e8;
}

.--navbar {
	margin: 15px 0px;
}


/* Snackbar to show messages */
.mf-easy-snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}
.mf-easy-snackbar.show {
  visibility: visible;
  -webkit-animation: mfeasyfadein 0.5s, mfeasyfadeout 0.5s 2.5s;
  animation: mfeasyfadein 0.5s, mfeasyfadeout 0.5s 2.5s;
}
@-webkit-keyframes mfeasyfadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}
@keyframes mfeasyfadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes mfeasyfadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}
@keyframes mfeasyfadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}