/* body {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, Segoe UI,
		Helvetica Neue, Helvetica, Arial, sans-serif;
	margin: 0 auto;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	color: #2f2f2f;
	line-height: 1.5;
} */

/* a {
	text-decoration: none;
	color: #2f20d1;
} */

/* a:hover {
	text-decoration: underline;
} */

/* img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
} */

.phppot-container {
	width: 740px;
	margin: 20 auto;
	padding: 0px 20px 0px 20px;
}

/* .row {
	padding: 6px 0 6px 0;
} */

.label {
	color: #565656;
	margin-bottom: 2px;
}

.card {
	padding: 1rem 2rem;
	border-radius: 4px;
	background: var(- -bg-color);
	box-shadow: 0 1px 3px #747681;
}

#phppot-message {
	padding: 6px 20px;
	font-size: 1em;
	color: rgb(40, 40, 40);
	box-sizing: border-box;
	margin: 0px;
	border-radius: 3px;
	width: 100%;
	overflow: auto;
}

.error {
	padding: 6px 20px;
	border-radius: 5px;
	background-color: #ffcccc;
	border: 1px solid #ffb3b3;
}
.error_reg {
	padding: 6px 20px;
	border-radius: 5px;
	background-color: #ffcccc;
	border: 1px solid #ffb3b3;
}

.success {
	padding: 6px 20px;
	border-radius: 3px;
	background-color:#c6ecc6;
	border: #9fdf9f 1px solid;
}

/* .validation-message {
	color: #e20900;
} */

.font-bold {
	font-weight: bold;
}

.display-none {
	display: none;
}

.inline-block {
	display: inline-block;
}

.float-right {
	float: right;
}

.float-left {
	float: left;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.full-width {
	width: 100%;
}

.cursor-pointer {
	cursor: pointer;
}

.mr-20 {
	margin-right: 20px;
}

.tile-container {
	width: 240px;
	border: #9a9a9a 1px solid;
	border-radius: 3px;
	padding: 10px 20px 10px 20px;
}

.toogle-align {
	display: flex;
}

.switch {
	width: 50px;
	height: 17px;
	position: relative;
	display: inline-block;
}

.switch input {
	display: none;
}

.switch .slider {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	cursor: pointer;
	background-color: #e7ecf1;
	border-radius: 30px !important;
	border: 0;
	padding: 0;
	display: block;
	margin: 7px 10px;
	min-height: 12px;
}

.switch .slider:before {
	position: absolute;
	background-color: #aaa;
	height: 15px;
	width: 15px;
	content: "";
	left: 0px;
	bottom: -2px;
	border-radius: 50%;
	transition: ease-in-out .5s;
}

.switch .slider:after {
	content: "";
	color: white;
	display: block;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 70%;
	transition: all .5s;
	font-size: 10px;
	font-family: Verdana, sans-serif;
}

.switch input:checked+.slider:after {
	transition: all .5s;
	left: 30%;
	content: "";
}

.switch input:checked+.slider {
	background-color: #d3d6d9;
}

.switch input:checked+.slider:before {
	transform: translateX(15px);
	background-color: #26a2ac;
}

/* @media all and (max-width: 780px) {
	.phppot-container {
		width: auto;
	}
}

@media all and (max-width: 400px) {
	.phppot-container {
		padding: 0px 20px;
	}
	.tile-container {
		width: auto;
	}
	input, textarea, select {
		width: 100%;
	}
} */