@import url(https://fonts.googleapis.com/css?family=Lato:700);
body {
	background-color: #111;
}

.wrapper-card {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 70px auto;
	font-family: 'lato', sans-serif;
	-webkit-font-smoothing: antialiased;    
}

.price-table-card {
	background: #222;
	border: double #fff200;
	border-radius: 3px;
	box-shadow: 0 1px 1px transparent;
	flex: 1;
	margin: 8px 8px 8px 8px;
	padding: 30px;
	position: relative;
	text-align: center;
	transition: all 0.5s ease-in-out;
}

.price-table-card.popular .card-title h3 {
	color: #fff200;
	font-size: 22px;
}

.price-table-card.popular .card-price {
	margin-bottom: 10px;
}

.price-table-card.popular .card-price h1 {
	color: #fff200;
	font-size: 60px;
}

.price-table-card.popular .card-action button {
	background-color: #3498db;
	border-radius: 80px;
	color: #fff;
	font-size: 17px;
	margin-top: -15px;
	padding: 15px;
	height: 80px;
}

.price-table-card.popular .card-action button:hover {
	background-color: #2386c8;
	font-size: 23px;
}

.price-table-card:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-ribbon {
	position: absolute;
	overflow: hidden;
	top: -4px;
	left: -4px;
	width: 114px;
	height: 112px;
}

.card-ribbon span {
	position: absolute;
	display: block;
	width: 160px;
	padding: 4px 0;
	background-color: #fff200;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	color: #000;
	font-size: 9px;
	font-weight: 795;
	text-transform: uppercase;
	text-align: center;
	left: -43px;
	top: 25px;
	transform: rotate(-45deg);
}

.card-ribbon::before,
.card-ribbon::after {
	position: absolute;
	z-index: -1;
	content: '';
	display: block;
	border: 5px solid #2980b9;
	border-top-color: transparent;
	border-left-color: transparent;
}

.card-ribbon::before {
	top: 0;
	right: 0;
}

.card-ribbon::after {
	bottom: 0;
	left: 0;
}

.card-title {
	margin: 10px 0;
}

.card-title h3 {
	color: #ff9400;
	font-size: 18px;
	text-transform: uppercase;
}

.card-title h4 {
	color: #fff;
}

.card-price {
	margin: 0 0;
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	padding-left: 50px;
	padding-right: 50px;
}

.card-price h1 {
	color: #ff9400;
	font-size: 46px;
}

.card-price h1 sup {
	font-size: 15px;
	display: inline-block;
	margin-left: -20px;
	width: 10px;
}

.card-price h1 small {
	color: #999;
	display: block;
	font-size: 11px;
	text-transform: uppercase;
}

.card-description ul {
	display: contents;
	list-style: none;
}

.card-description li {
	color: #fff;
	font-size: 15px;
	margin: 0 0 2px;
	font-weight: 100;
}

.card-action button {
	background: transparent;
	border: 2px solid #3498db;
	border-radius: 30px;
	color: #3498db;
	cursor: pointer;
	display: block;
	font-size: 15px;
	font-weight: bold;
	width: 100%;
	height: 60px;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}

.card-action button:hover {
	background-color: #3498db;
	box-shadow: 0 2px 4px #196090;
	color: #fff;
	font-size: 17px;
}