div#payment-period-container  {
	text-align: center;
}

div#payment-period-container p {
	display: inline-block;
}

#prices-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#prices-list div {
	padding: 10px;
}

#prices-list .price-item {
	margin: 10px;
}

.price-item {
	border: 1px solid #ccc;
	margin: 0;
	padding: 0;
	transition: 0.3s;
	transition: 0.3s;
	width: 250px;
	background: #fff;
}

.price-item:hover {
	box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

.price-item .header {
	color: white;
	font-size: 20pt;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	margin-bottom: 5px;
}

.price-item .price {
	background-color: #666;
	font-size: 18pt;
	text-align: center;
	color: #fff;
	font-weight: bold;
}

.price-item .price.price-yearly {
	display: none;
}

.price-item .price span.payment-period,
.price-item .price span.anual_payment_discount {
	font-size: 12pt;
	font-weight: normal;
}

.price-item .price span.anual_payment_discount {
	display: block;
}

.price-item .detail {
	border-bottom: 1px solid #ddd;
  	padding: 20px;
	text-align: center;
	color: #888;
}

.price-item button {
	height: 40px;
	background: #5ab7d2;
	border-color: #3aa9ca;
	color: #fff;
	font-weight: bold;
	display: block;
	width: 100%;
	margin: 15px auto;
}

#payment-methods-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#payment-methods-list div {
	padding: 10px;

}

#payment-methods-list div h4 {
	text-align: center;
}

#payment-methods-list div img {
	display: block;
	margin: 5px auto;
}

#payment-methods .payment-method {
	border: 1px solid #ccc;
	margin: 0;
	padding: 0;
	transition: 0.3s;
	transition: 0.3s;
	width: 250px;
	background: #fff;
	margin: 10px;
}

form {
	max-width: 800px;
	margin: auto;
	padding: 10px;
	display: grid;
	grid-template-columns: 1fr, 1fr;
    grid-gap: 5px;
}

form div.form-field label {
	display: block;
}

form div.form-field input, form div.form-field textarea {
	width: 100%;
}

form div.form-field textarea {
	height: 150px;
}

form div.form-field {
	margin: 2px;
}

form div.form-field:nth-child(2) {
	grid-column: 1 / 3;
}

form div.form-field:nth-child(n+5){
	grid-column: 1 / 3;
}

form div.form-field:nth-child(n+7) {
	text-align: center;
}

form div.form-field:nth-child(n+7) input {
	width: 80px !important;
	text-align: center;
}

@media (max-width: 600px) {
	form div.form-field {
		grid-column: 1 / 3;
	}
}

@media only screen and (max-width: 600px) {
	.price-item {
		width: 100%;
	}
}
