.PricingWrapper * {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*
body {
	background: #2e2a2a;
	color: #FFF;
	font-size: 62.5%;
	font-family: 'Roboto', Arial, Helvetica, Sans-serif, Verdana;
}
*/
.Pricing__table-list {
	list-style-type: none;
}

.Pricing__table-footer a {
	color: #e95846;
	text-decoration: none;
}

.Pricing__table-title {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 2.2em;
	color: #FFF;
	margin-top: 1rem;
	text-align: left;
	margin-bottom: 1.5rem;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.Pricing__table-title a {
	font-size: 0.6em;
}

.clearfix:after {
	content: '';
	display: block;
	height: 0;
	width: 0;
	clear: both;
}
/** ========================
 * Contenedor
 ============================*/
.PricingWrapper {
	width: 100%;
	margin: 10px auto 10px;
	font-size: 1rem;
}

.pricing__table {
	margin: 0 10px;
	text-align: center;
	width: 300px;
	width: calc(100vw/ 3 - 60px);
	float: left;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	float: left;
}

.pricing__table:hover {
	-webkit-transform: scale(1.06);
	-ms-transform: scale(1.06);
	-o-transform: scale(1.06);
	transform: scale(1.06);
}

.Pricing__title {
	color: #FFF;
	background: #e95846;
	padding: 20px 0;
	font-size: 2em;
	text-transform: uppercase;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.Bg--color-lightgray {
	background: lightgray;
}

.Bg--color-lightblue {
	background: lightblue;
}

.pricing__table.recommended .Pricing__title {
	background: #25AF01;
}

.pricing__table.recommended .pricing__enter {
	background: #2db3cb;
}

.pricing__table .Pricing__price {
	background: #403e3d;
	font-size: 2.4em;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
	color: white;
}

.pricing__table .Pricing__price sub {
	font-size: 0.4em;
	position: relative;
	left: 5px;
}

.Pricing__table-list {
	background: #FFF;
	color: #403d3a;
}

.Pricing__table-list li {
	font-size: 1rem;
	font-weight: 700;
	padding: 12px 8px 12px 24px;
	text-align: left;
}

.Pricing__table-menu--checked:before {
	right: 5px;
	font-size: 16px;
	display: inline-block;
	position: relative;
	content: '';
	width: 10px;
	height: 5px;
	border-left: 2px solid #25AF01;
	border-bottom: 2px solid #25AF01;
	transform: rotate(-45deg);
	margin-bottom: 3px;
}

.Pricing__table-menu--off:before {
	content: '+';
	position: absolute;
	top: 10px;
	width: 10px;
	height: 1px;
	background-color: red;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.Pricing__table-list li span {
	font-weight: 400;
}

.Pricing__table-list li span.unlimited {
	color: #FFF;
	background: #e95846;
	font-size: 0.7em;
	padding: 1px 7px;
	display: inline-block;
	-webkit-border-radius: 38px;
	-moz-border-radius: 38px;
	border-radius: 38px;
}

.Pricing__table-list li:nth-child(2n) {
	background: #F0F0F0;
}

.Pricing__table-footer {
	background: #FFF;
	padding: 15px;
	text-align: left;
	overflow: hidden;
}

.Pricing__table-footer p {
	float: left;
	color: #37353a;
	font-weight: 700;
	font-size: 2.4em;
}

.Pricing__table-footer p sup {
	font-size: 0.8rem;
	position: relative;
	left: 5px;
	font-weight: normal;
}

.Pricing__table-footer .pricing__enter {
	float: right;
	color: #FFF;
	background: #e95846;
	padding: 10px 16px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-weight: 700;
	font-size: 1.4em;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.Pricing__table-footer .pricing__enter:hover {
	background: #cf4f3e;
}

.recommended .Pricing__table-footer .pricing__enter:hover {
	background: #228799;
}

/** ================
 * Responsive
 ===================*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
	.PricingWrapper {
		width: 768px;
	}
	.pricing__table {
		width: 236px;
	}
	.Pricing__table-list li {
		font-size: 1.3em;
	}
}

@media only screen and (max-width: 767px) {
	.PricingWrapper {
		width: 96%;
	}
	.pricing__table {
		display: block;
		float: none;
		margin: 0 0 20px 0;
		width: 100%;
	}
}

@media only screen and (max-width: 479px) {
	.PricingWrapper {
		width: 96%;
	}
}