.form-container,
.form-container.store-list {
	max-width: 1400px;
	width: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	_border: 1px solid rebeccapurple;
}

.form-wrapper {
	max-width: 100%;
	padding: 0;
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	grid-gap: 30px;
	align-self: center;
	justify-self: stretch;
	grid-auto-flow: row;
	margin: 40px 20px;
	_border: 1px solid red;
}

@-moz-document url-prefix() {
	.form-wrapper {
		width: 100%;
		max-width: 900px;
	}
	.plan-list .form-wrapper {
		width: unset;
		max-width: unset;
	}
}


.flip-card-container {
	margin: 60px 30px;
	perspective: 1000px;
	width: 100%;
	max-width: 420px;
	min-width: 360px;
	height: 460px;

	justify-self: center;
	cursor: pointer;
}

.flip-card {
	width: inherit;
	height: inherit;

	position: relative;
	transform-style: preserve-3d;
	transition: all .2s ease-in-out;
}

.flip-card:hover .card-front{
	background-color: #e5f9f8;
	transition: all .2s ease-in-out;
}


.plan-list .flip-card:hover .card-front{
	background-color: #fff;
	transition: all .2s ease-in-out;
	box-shadow: 0 0 35px rgba(0, 163, 173, .5);
}

.form-container.store-list .flip-item .store-list__option:checked + .plan-list .flip-card .card-front {
	box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
}

.flip-card:active {
	transform: scale(1.05);
	transition: all .2s ease-in-out;
}

.flip-card-container.flip-it .flip-card {
	transform: rotateY(180deg);
}


.card-front,
.card-back {
	width: 100%;
	height: 100%;
	border-radius: 24px;
	padding: 30px;

	background: #eff2f1;

	position: absolute;
	top: 0;
	left: 0;

	-webkit-backface-visibility: hidden;

					backface-visibility: hidden;
	display: flex;
	justify-content: center;
	align-items: space-between;
	flex-direction: column;
}

.card-front {
	transform: rotateY(0deg);
	z-index: 20;
}

.card-back {
	transform: rotateY(180deg);
	z-index: 10;
	background-color: #00a3ad;
}


.form-container.store-list:not(.plan-list) .flip-item .store-list__option:checked + .flip-card-container .card-front {
	background: rgb(0,158,168);
	background: linear-gradient(90deg, rgba(0,158,168,1) 0%, rgba(4,119,170,1) 100%);
	transition: all ease .2s;
}
.plan-list.store-list .store-list__item .store-list__option:checked + .store-list__content {
	background: none;
}

.store-list__img {
	width: 100%;
	height: 70%;
	min-height: 200px;
	background-position: center;
	background-size: cover;
}
.store-list__text {
	width: 100%;
	height: 30%;
	font-size: 36px;
	color: #34495e;
	font-family: "Poppins";
	font-weight: 500;
	line-height: 1em;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	text-align: center;
}

.store-list__name {
	font-weight: 700;
	text-transform: capitalize;
}

.store-list__price {
	position: relative;
	font-weight: 500;
	font-size: 54px;
	line-height: 1em;
	padding-top: 0.3em;
}
.store-list__price b{
	font-size: 0.8em;
	font-weight: unset;
}
.store-list__text sup{
	font-size: 0.25em;
	font-weight: 600;
	font-weight: unset;
}
.store-list__price.store-list__no-price {
	font-size: 0.92em;
	line-height: 0.9em;
	color: #a9a9a9;
}
.store-list__oldprice {
	text-decoration: line-through;
	font-size: 38px;
}
.store-list__oldprice b{
	font-size: 0.8em;
	font-weight: unset;
}
.store-list__newprice{
	font-size: .42em;
	color: #00a3ad;
	line-height: 1.1em;
}
.store-list__newprice em{
	font-size: 2em;
	text-decoration: none;
	text-transform: none;
	font-style: normal;
}

.store-list__newprice b{
	font-size: 0.8em;
	font-weight: unset;
}
.store-list__desc {
	font-size: 0.8em;
	line-height: 1em;
}

.form-container.store-list .flip-item .store-list__option:checked + .flip-card-container .card-front .store-list__desc,
.form-container.store-list .flip-item .store-list__option:checked + .flip-card-container .card-front .store-list__name,
.form-container.store-list .flip-item .store-list__option:checked + .flip-card-container .card-front .store-list__price,
.form-container.store-list .flip-item .store-list__option:checked + .flip-card-container .card-front .store-list__oldprice,
.form-container.store-list .flip-item .store-list__option:checked + .flip-card-container .card-front .store-list__newprice {
	color: #fff;
}

.store-list__backtext {
	display: flex;
	flex-direction: column;
	text-align: center;
	width: 100%;
	height: 100%;
	font-family: "Open Sans";
	font-size: 15px;
	text-align: left;
	color: #fff;
	margin: 0;
}

.store-list__backtext .title {
	font-size: 20px;
	font-weight: 700;
	font-family: "Poppins";
	margin: 0;
}

.store-list__backtext .title:nth-of-type(1) {
	text-transform: uppercase;
	line-height: 1.4em;
}

.store-list__backtext .description {
	font-size: 15px;
	margin-top: 30px;
	line-height: 1.8em;
	font-weight: 300;
}

.store-list__offlabel {
	display: none;
	align-items: center;
	position: absolute;
	left: 0;
	top: 35px;
	height: 45px;
	font-size: 19px;
	line-height: 1em;
	font-weight: 600;
	background-color: #00a3ad;
	color: #fff;
	text-transform: uppercase;
	padding-right: 10px;
}

.store-list__offlabel div:nth-of-type(1) {
	font-size: 30px;
	font-weight: 800;
	margin: 0 10px 0 20px;
}

.flip-item .card-pull {
	position: absolute;
	display: flex;
	align-items: center;
	bottom: -50px;
	left: calc(50% - 110px);
	width: 220px;
	height: 50px;
	background-color: #0f8c92;
	cursor: grab;
	color: #fff;
	border-radius: 0 0 10px 10px;
	transition: all .15s ease-in-out;
	z-index: -1;
	padding: 5px 10px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	z-index: 50;
}

.form-container.store-list .flip-item .store-list__option:checked + .flip-card-container .card-pull,
.form-container.plan-list .flip-item .store-list__option:checked + .flip-card-container .card-pull {
	background: #065357;
}

.flip-item .card-pull:hover {
	bottom: -65px;
	height: 65px;
	transition: all .15s ease-in-out;
}

.flip-item .card-pull:active {
	cursor: grabbing;
}

.flip-item .card-pull img {
	width: 22px;
	margin: 0 14px 0 0;
}



/*--plan-list--------------------------------------------------------------*/
.plan-list .store-list__item .flip-card-container.plan-list {
	height: 550px;
	margin: 0;
	padding: 0;
}

.plan-list {
	font-family: 'Poppins';
	color: #34495e;
	text-align: center;
}
.plan-list .card-front {
	display: flex;
	flex-direction: column;
	align-items: space-between;
	justify-content: space-between;
}

.plan-list__title {
	position: relative;
	line-height: 1.2em;
	font-size: 26px;
}

.plan-list__title>.name {
	font-size: 1.1em;
	font-weight: 600;
	text-transform: uppercase;
}
.plan-list__title>.type {
	font-size: 0.9em;
	font-weight: 500;
	line-height: 1.5em;
}
.plan-list__price {
	font-size: 54px;
	margin: 5px 0;
}

.plan-list__price>.seal{
	position: absolute;
    top: 25%;
    right: 3%;
    width: 35%;
    max-width: unset;
    z-index: 9;
    opacity: .9;
}
.plan-list__price>.amount {
	font-size: 1.4em;
	font-weight: 600;
	line-height: 1em;
}

.plan-list__price>.new-amount {
	font-size: 0.32em;
	font-weight: 700;
	line-height: 1em;
	margin-top: 1.2em;
}
.plan-list__price>.new-amount.aci{
	font-size: 0.28em;
	margin-top: 0.6em;
	margin-bottom: 1em;
	color: #065357;
	font-style: italic;

}
.plan-list__price>.new-amount em{
	font-size: 2.2em;
	text-decoration: none;
	text-transform: none;
	font-style: normal;
}
.plan-list__price>.new-amount.aci em{
	font-style: italic;
}
.plan-list__price>.new-amount-label {
	font-size: 0.4em;
	font-weight: 700;
	line-height:1em;
	color: #00a3ad;
}
.plan-list__price>.old-amount {
	font-size: 0.7em;
	text-decoration: line-through;
	font-weight: 400;
	line-height: 1em;
}
.plan-list__price b {
	font-size: 0.65em;
	font-weight: unset;
}

.plan-list__price sup {
	font-size: 0.2em;
	font-weight: 800;
	font-weight: unset;
}

.plan-list__price>.free-trial {
	line-height: 1em;
	margin-top: 0.3em;
	margin-bottom: 0.4em;
	color: #00a3ad;
	font-size: 0.7em;
	font-weight: 500;
	text-transform: uppercase;
}

.plan-list__price>.label {
	font-size: 0.3em;
	font-weight: 600;
	margin-top: 0.5em;
}
.plan-list__info {
	font-size: 14px;
}

.plan-list__info>.checklist {
	font-size: 1em;
	font-weight: 500;
	text-align: left;
	margin: 5px 0;
}
.plan-list__info>.checklist ul {
	text-decoration: none;
	line-height: 2em;
	list-style-type: none;
}
.plan-list__info>.checklist ul li{
	position: relative;
}
.plan-list__info>.checklist img{
	max-height: 1em;
	max-width: 1em;
	margin: 0 10px 0 0;
}
.plan-list__info>.extra{
	font-size: 9px;
	text-align: justify;
}
.plan-list__select {
	border: 2px solid #34495e;
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 14px;
	font-weight: 600;
}

.form-container.plan-list .flip-item .store-list__option:checked + .flip-card-container .card-front,
.plan-list.active .card-front {
	background: rgba(0, 163, 173, 0.15);
}
/*--/plan-list-------------------------------------------------------------*/





@media screen and (max-width: 1400px) {
	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	}

	.plan-list .store-list__item .flip-card-container.plan-list {
		height: 480px;
	}

	.flip-card-container {
		max-width: 360px;
		min-width: 280px;
		height: 420px;
	}

	.store-list__text {
		font-size: 32px;
	}

	.store-list__price {
		font-size: 50px;
	}
	.store-list__oldprice {
		font-size: 36px;
	}

	.store-list__newprice {
		_font-size: 50px;
	}

	.store-list__backtext {
		font-size: 14px;
	}

	.store-list__backtext .title {
		font-size: 18px;
	}

	.store-list__backtext .description {
		font-size: 14px;
	}

	.store-list__offlabel {
		font-size: 17px;
	}

	.store-list__offlabel div:nth-of-type(1) {
		font-size: 28px;
		margin: 0 15px 0 10px;
	}

	.flip-item .card-pull {
		font-size: 17px;
	}
	.store-list .store-list__select.plan-list__select {
		font-size: 14px;
	}

	/*--plan-list--------------------------------------------------------------*/
	.flip-card-container.plan-list {
		height: 460px;
	}

	.plan-list__title {
		font-size: 21px;
	}

	.plan-list__price {
		font-size: 44px;
		margin: 5px 0;
	}


	.plan-list__price>.new-amount {
		margin-top: 4px;
	}

	.plan-list__info {
		font-size: 12px;
	}

	.plan-list__info>.extra{
		font-size: 9px;
	}
	.plan-list__select {
		font-size: 13px;
	}
	/*--/plan-list-------------------------------------------------------------*/


}


@media screen and (max-width: 1200px) {

	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	}

	.plan-list .store-list__item .flip-card-container.plan-list {
		height: 450px;
	}

	.flip-card-container {
		margin: 20px 10px;
		max-width: 340px;
		min-width: 280px;
		height: 400px;
	}

	.card-front,
	.card-back {
		border-radius: 22px;
		padding: 25px;
	}

	.store-list__img {
		min-height: 100px;
	}
	.store-list__text {
		font-size: 28px;
	}
	.store-list__price {
		font-size: 46px;
	}
	.store-list__oldprice {
		font-size: 32px;
	}
	.store-list__newprice {
		_font-size: 46px;
	}
	.store-list__backtext {
		font-size: 12px;
	}
	.store-list__backtext .title {
		font-size: 18px;
		font-weight: 700;
	}

	.store-list__backtext .description {
		font-size: 13px;
		margin-top: 28px;
		line-height: 1.6em;
		font-weight: 400;
	}

	.store-list__offlabel {
		left: 0;
		top: 30px;
		height: 38px;
		font-size: 15px;
		font-weight: 600;
	}

	.store-list__offlabel div:nth-of-type(1) {
		font-size: 24px;
		font-weight: 800;
		margin: 0 14px 0 9px;
	}

	.flip-item .card-pull {
		height: 42px;
		bottom: -42px;
		left: calc(50% - 90px);
		width: 180px;
		border-radius: 0 0 10px 10px;
		z-index: -1;
		padding: 5px 10px;
		font-size: 15px;
		font-weight: 600;
	}

	.flip-item .card-pull:hover {
		bottom: -55px;
		height: 55px;
	}

	.flip-item .card-pull img {
		width: 22px;
		margin: 0 14px 0 0;
	}


	/*--plan-list--------------------------------------------------------------*/
	.flip-card-container.plan-list {
		height: 440px;
	}

	.plan-list__title {
		font-size: 20px;
	}

	.plan-list__price {
		font-size: 42px;
		margin: 5px 0;
	}

	.plan-list__info {
		font-size: 12px;
	}

	.plan-list__info>.extra{
		font-size: 9px;
	}
	.plan-list__select {
		font-size: 13px;
	}
	/*--/plan-list-------------------------------------------------------------*/



}



@media screen and (max-width: 900px) {

	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		grid-gap: 10px;
		margin: 20px 10px;
	}
	.store-subtitle {
		font-size: 26px;
	}

	.plan-list .store-list__item .flip-card-container.plan-list {
		height: 400px;
	}

	.flip-card-container {
		margin: 30px 10px;
		max-width: 300px;
		min-width: 240px;
		height: 360px;
	}
	.card-front,
	.card-back {
		border-radius: 20px;
		padding: 22px;
	}

	.store-list__text {
		font-size: 24px;
	}
	.store-list__price {
		font-size: 42px;
	}
	.store-list__oldprice {
		font-size: 28px;
	}
	.store-list__newprice {
		_font-size: 42px;
	}
	.store-list__backtext {
		font-size: 11px;
	}
	.store-list__backtext .title {
		font-size: 14px;
		font-weight: 700;
	}

	.store-list__backtext .description {
		font-size: 11px;
		margin-top: 26px;
		line-height: 1.5em;
		font-weight: 500;
	}

	.store-list__offlabel {
		left: 0;
		top: 30px;
		height: 35px;
		font-size: 14px;
		font-weight: 600;
	}

	.store-list__offlabel div:nth-of-type(1) {
		font-size: 22px;
	}

	.store-list .store-list__select.plan-list__select {
		font-size: 12px;
		height: 40px;
	}


	.flip-item .card-pull {
		height: 42px;
		bottom: -42px;
		left: calc(50% - 80px);
		width: 160px;
		border-radius: 0 0 10px 10px;
		z-index: -1;
		padding: 5px 10px;
		font-size: 15px;
		font-weight: 600;
		animation: updown 2.5s ease-in-out infinite;
	}

	.flip-item .card-pull:hover {
		height: 42px;
		bottom: -42px;
	}

	@keyframes updown {
		0%, 20%, 50%, 80%, 100% {
			height: 42px;
			bottom: -42px;
			}
			40% {
				bottom: -55px;
				height: 55px
			}
			60% {
				bottom: -50px;
				height: 50px
			}
	}

	.flip-item .card-pull img {
		width: 22px;
		margin: 0 14px 0 0;
	}

	/*--plan-list--------------------------------------------------------------*/

	.flip-card-container.plan-list {
		height: 400px;
	}

	.plan-list__title {
		font-size: 16px;
	}

	.plan-list__price {
		font-size: 38px;
		margin: 5px 0;
	}

	.plan-list__info {
		font-size: 11px;
	}

	.plan-list__info>.extra{
		font-size: 8px;
	}
	.plan-list__select {
		font-size: 12px;
	}
	/*--/plan-list-------------------------------------------------------------*/



}


@media screen and (max-width: 650px) {

	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
		grid-gap: 10px;
	}

	.plan-list .store-list__item .flip-card-container.plan-list {
		height: 340px;
	}

	.flip-card-container {
		margin: 20px 5px;
		max-width: 220px;
		min-width: 120px;
		height: 280px;
	}

	.card-front,
	.card-back {
		border-radius: 15px;
		padding: 10px;
	}

	.store-list__text {
		font-size: 20px;
	}
	.store-list__price {
		font-size: 32px;
	}
	.store-list__oldprice {
		font-size: 26px;
	}
	.store-list__newprice {
		font-size: .45em;
	}
	.store-list__backtext {
		font-size: 10px;
	}
	.store-list__backtext .title {
		font-size: 12px;
		font-weight: 700;
	}

	.store-list__backtext .description {
		font-size: 10px;
		margin-top: 10px;
		line-height: 1.4em;
		font-weight: 600;
	}

	.store-list__offlabel {
		left: 0;
		top: 22px;
		height: 28px;
		font-size: 10px;
		font-weight: 600;
		padding-right: 9px;
	}

	.store-list__offlabel div:nth-of-type(1) {
		font-size: 16px;
		font-weight: 800;
		margin: 0 8px 0 6px;
	}


	.store-list .store-list__select.plan-list__select {
		font-size: 11px;
		height: 35px;
	}

	.flip-item .card-pull {
		height: 36px;
		bottom: -36px;
		left: calc(50% - 60px);
		width: 120px;
		border-radius: 0 0 10px 10px;
		z-index: -1;
		padding: 5px 5px;
		font-size: 12px;
		font-weight: 600;
		animation: updown 2.5s ease-in-out infinite;
	}

	.flip-item .card-pull:hover {
		height: 36px;
		bottom: -36px;
	}

	@keyframes updown {
		0%, 20%, 50%, 80%, 100% {
			height: 36px;
		bottom: -36px;
			}
			40% {
				bottom: -44px;
				height: 44px
			}
			60% {
				bottom: -40px;
				height: 40px
			}
	}

	.flip-item .card-pull img {
		width: 20px;
		margin: 0 10px 0 0;
	}


	/*--plan-list--------------------------------------------------------------*/
	.flip-card-container.plan-list {
		height: 320px;
	}

	.plan-list__title {
		font-size: 14px;
	}

	.plan-list__price {
		font-size: 30px;
		margin: 5px 0;
	}

	.plan-list__info {
		font-size: 10px;
	}

	.plan-list__info>.extra{
		font-size: 7px;
	}
	.plan-list__select {
		font-size: 10px;
	}

	/*--/plan-list-------------------------------------------------------------*/



}


@media screen and (max-width: 500px) {

	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	}

	.plan-list .store-list__item .flip-card-container.plan-list {
		height: 260px;
	}

	.store-list .store-list__item {
		min-width: unset !important;
	}

	.flip-card-container {
		margin: 20px 5px;
		max-width: 190px;
		min-width: 110px;
		height: 250px;
	}

	.card-front,
	.card-back {
		border-radius: 13px;
		padding: 8px;
	}

	.store-list__text {
		font-size: 18px;
	}
	.store-list__price {
		font-size: 26px;
	}
	.store-list__oldprice {
		font-size: 20px;
	}
	.store-list__newprice {
		font-size: .5em;
	}
	.store-list__backtext {
		font-size: 9px;
	}
	.store-list__backtext .title {
		font-size: 11px;
		font-weight: 700;
	}

	.store-list__backtext .description {
		font-size: 9px;
		margin-top: 8px;
		line-height: 1.4em;
		font-weight: 700;
	}

	.store-list__offlabel {
		left: 0;
		top: 20px;
		height: 23px;
		font-size: 8px;
		font-weight: 600;
		padding-right: 9px;
	}

	.store-list__offlabel div:nth-of-type(1) {
		font-size: 13px;
		font-weight: 800;
		margin: 0 6px 0 5px;
	}

	.store-list .store-list__select.plan-list__select {
		font-size: 10px;
		font-weight: 700;
		height: 30px;
		letter-spacing: 0;
	}

	.plan-list__price>.old-amount {
		font-size: 0.7em;
	}

	.flip-item .card-pull {
		height: 36px;
		bottom: -36px;
		left: calc(50% - 50px);
		width: 100px;
		border-radius: 0 0 10px 10px;
		z-index: -1;
		padding: 5px 5px;
		font-size: 10px;
		font-weight: 700;
		animation: updown 2.5s ease-in-out infinite;
	}

	.flip-item .card-pull:hover {
		height: 36px;
		bottom: -36px;
	}

	@keyframes updown {
		0%, 20%, 50%, 80%, 100% {
			height: 36px;
			bottom: -36px;
			}
			40% {
				bottom: -44px;
				height: 44px
			}
			60% {
				bottom: -40px;
				height: 40px
			}
	}

	.flip-item .card-pull img {
		width: 20px;
		margin: 0 6px 0 0;
	}

	/*--plan-list--------------------------------------------------------------*/
	.flip-card-container.plan-list {
		height: 270px;
	}

	.plan-list__title {
		font-size: 12px;
	}

	.plan-list__price>.new-amount-label {
		font-size: 0.32em;
	}
	.plan-list__price>.new-amount {
		_font-size: 1.1em;
	}
	.plan-list__info>.checklist ul {
		line-height: 1.7em;
	}

	.plan-list__price {
		font-size: 28px;
		margin: 5px 0;
	}

	.plan-list__price>.new-amount {
		margin-top: 3px;
	}

	.plan-list__info {
		font-size: 9px;
	}

	.plan-list__info>.extra{
		font-size: 6px;
	}
	.plan-list__select {
		font-size: 9px;
		border-radius: 4px;
		padding: 6px 10px;
	}
	/*--/plan-list-------------------------------------------------------------*/
	.plan-list__info>.checklist img {
		margin: 0 6px 0 0;
	}
}


@media screen and (max-width: 450px) {

	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
	}

	.flip-card-container {
		margin: 20px 5px;
		max-width: 165px;
		min-width: 130px;
		height: 250px;
	}
	.store-list__price.store-list__no-price {
		font-size: 0.85em;
	}

	.plan-list__info>.checklist img {
		margin: 0 4px 0 0;
	}

}

@media screen and (max-width: 400px) {

	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(146px, 1fr));
	}

	.flip-card-container {
		margin: 18px 4px;
		max-width: 146px;
		min-width: 100px;
		height: 220px;
	}

	.card-front,
	.card-back {
		border-radius: 12px;
		padding: 6px;
	}

	.store-list__text {
		font-size: 16px;
	}
	.store-list__price {
		font-size: 24px;
	}
	.store-list__oldprice {
		font-size: 18px;
	}
	.store-list__newprice {
		_font-size: 24px;
	}
	.store-list__backtext {
		font-size: 9px;
	}
	.store-list__backtext .title {
		font-size: 9px;
		font-weight: 800;
	}

	.store-list__backtext .description {
		font-size: 8px;
		margin-top: 8px;
		line-height: 1.3em;
		font-weight: 700;
	}

	.store-list__offlabel {
		left: 0;
		top: 20px;
		height: 21px;
		font-size: 7px;
		font-weight: 700;
		line-height: 1em;
		padding-right: 6px;
	}

	.store-list__offlabel div:nth-of-type(1) {
		font-size: 11px;
		font-weight: 800;
		line-height: 0;
	}

	.flip-item .card-pull {
		height: 32px;
		bottom: -32px;
		left: calc(50% - 45px);
		width: 90px;
		border-radius: 0 0 10px 10px;
		z-index: -1;
		padding: 5px 5px;
		font-size: 9px;
		font-weight: 700;
		animation: updown 2.5s ease-in-out infinite;
	}

	.flip-item .card-pull:hover {
		height: 32px;
		bottom: -32px;
	}

	@keyframes updown {
		0%, 20%, 50%, 80%, 100% {
			height: 32px;
			bottom: -32px;
			}
			40% {
				bottom: -40px;
				height: 40px
			}
			60% {
				bottom: -36px;
				height: 36px
			}
	}


	.flip-item .card-pull img {
		width: 18px;
		margin: 0 6px 0 0;
	}

	/*--plan-list--------------------------------------------------------------*/
	.flip-card-container.plan-list {
		height: 250px;
	}

	.plan-list__title {
		font-size: 11px;
	}

	.plan-list__price {
		font-size: 26px;
		margin: 4px 0;
	}

	.plan-list__price>.new-amount {
		margin-top: 2px;
	}

	.plan-list__info {
		font-size: 8px;
	}

	.plan-list__info>.extra{
		font-size: 5px;
	}
	.plan-list__select {
		font-size: 7.5px;
		padding: 5px 8px;
	}
	/*--/plan-list-------------------------------------------------------------*/
}

@media screen and (max-width: 360px) {

	.form-wrapper {
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	}

	.flip-card-container {
		max-width: 140px;
		min-width: 100px;
	}
}
