.pricing-container {
	width: 90%;
	max-width: 1170px;
	margin: 4em auto;
}

.pricing-container {
    margin: 6em auto;
}
.pricing-container.full-width {
    width: 100%;
    max-width: none;
}

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

.pricing-switcher .fieldset {
	display: inline-block;
	position: relative;
	padding: 2px;
	border-radius: 50em;
	border: 2px solid #364550;
	background-color: #96A9B6;
}

.pricing-switcher input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.pricing-switcher label {
	position: relative;
	z-index: 1;
	display: inline-block;
	float: left;
	width: 90px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	font-size: 0.8rem;
	color: #ffffff;
	text-transform: capitalize;
}

.pricing-switcher .switch {
	position: absolute;
	top: 2px;
	left: 2px;
	height: 40px;
	width: 90px;
	background-color: #364550;
	border-radius: 50em;
	-webkit-transition: -webkit-transform 0.5s;
	-moz-transition: -moz-transform 0.5s;
	transition: transform 0.5s;
}

.pricing-switcher input[type="radio"]:checked + label + .switch,
.pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
	-webkit-transform: translateX(90px);
	-moz-transform: translateX(90px);
	-ms-transform: translateX(90px);
	-o-transform: translateX(90px);
	transform: translateX(90px);
}

.no-js .pricing-switcher {
	display: none;
}

@media only screen and (min-width: 768px) {
	.pricing-list {
	    display: flex;
		align-items: stretch; /* make children equal height */
	    gap: 1.5rem; /* nice even spacing */
	}

	.pricing-list > li {
		flex: 1 1 0; /* evenly distribute columns */
		display: flex;
		flex-direction: column;
	}

	.pricing-wrapper {
		flex: 1; /* make the wrapper stretch fully */
		display: flex;
		flex-direction: column;
	}
	
	.pricing-features {
		flex: 1; /* fill remaining vertical space inside the card */
	}
}

.pricing-wrapper {
	margin: 1em 0;
}

.pricing-wrapper.popular {
    border: 2px solid #0088F0;
}

.pricing-wrapper {
    background-color: #ffffff;
    padding: 1.5em;
    border-radius: 1.5em;
}

.pricing-header {
	color: #364550;
	text-align: center;
}

.pricing-header h3 {
	font-size: 2rem;
	font-weight: 500;
	padding: 1em;
}

.price-wrapper {
    position: relative;
    height: 100px;
}

.price {
  position: absolute; /* remove from flow */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9); /* center and scale */
  opacity: 0;
  transition: all 0.4s ease;
  width: 100%; /* optional, helps center text */
}

.price.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.price.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}

.price .currency {
	font-size: 1em;
	font-weight: 700;
	vertical-align: top
}

.price .value {
	font-size: 4em;
	font-weight: 600;
}

.price .duration {
	font-size: 1em;
	font-weight: 700;
}

.price .duration:before {
	content: '/'
}

.pricing-btn-wrapper {
	text-align: center;
	margin: 2em 0;
}

.pricing-btn {
	position: static;
    display: inline-block;
    height: auto;
    padding: 0.5em 2em;
    color: #0088F0;
    border-radius: 2rem;
    border: 2px solid #0088F0;
    font-size: 1rem;
    text-indent: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .6s;
    width: 70%;
}

.pricing-btn.popular {
    background-color: #0088F0;
    color: #ffffff;
}

.pricing-features {
	padding: 1em;
	color: #637E92;
}

.pricing-features li {
	padding: 0.5em 0;
}

.feature-table {
    display: flex;
    border-radius: 1.5rem;
    color: #637E92;
    background-color: #ffffff;
    padding-bottom: 1em;
}

.feature-table-header {
	background-color: #0088F0;
	color: #ffffff;
	padding: 1.2em 4em;
	font-size: 1.1em;
	font-weight: 500;
	text-align: center;
}

.feature-table-row:first-of-type {
	flex: 1 1 auto;
}

.feature-table-row:first-of-type header {
	border-top-left-radius: 1.5rem;
	padding-left: 2em;
	text-align: left;
}

.feature-table-row:first-of-type p {
	padding-left: 2em;
	text-align: left;
}

.feature-table-row:last-of-type header {
	border-top-right-radius: 1.5rem;
}

.feature-table-row p {
	text-align: center;
	padding: 1em;
	margin: 0;
}

.feature-table-row.first p {
	text-align: left;
}