
/* GENERAL SETTINGS */

.entry .entry-content > div.fca-ept-layout2 > *:first-child{
	margin-top: auto;
}

div.fca-ept-layout2 {
	font-size: 16px;
	margin: 50px auto;
	display: flex;
	font-family: inherit;
	line-height: 1.33;
} 

div.fca-ept-layout2 div.fca-ept-column {
	font-family: inherit;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.14);
	border-radius: 24px;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 0%;
	position: relative;
	
	margin: 0 8px 0 8px;
	display: grid;
	grid-template-rows: auto auto auto 1fr auto;
	padding: 42px 30px 30px 30px;
	
}

div.fca-ept-layout2 div.fca-ept-column.fca-ept-most-popular {
	padding-top: 18px;	
}

/* POPULAR */
div.fca-ept-layout2 div.fca-ept-popular-div{
	font-family: inherit;
	display: none;
    text-align: left;
	margin-bottom: 6px;
}

div.fca-ept-layout2 .fca-ept-popular-svg{
	display: none;
}

div.fca-ept-layout2 .fca-ept-popular-text{
	display: inline-block;
    text-transform: uppercase;
	font-weight: bold;
	padding: 0 5px;
}

/* PLAN */
div.fca-ept-layout2 div.fca-ept-plan-div{
	font-family: inherit;
	text-align: start;
}

div.fca-ept-layout2 div.fca-ept-plan-image img, div.fca-ept-layout2 div.fca-ept-plan-div .fca-ept-plan img {
	display: block;
	margin: 0 auto 20px;
}

div.fca-ept-layout2 div.fca-ept-plan-div img {
	margin: 10px auto 0;
	max-width: 100%;
}

div.fca-ept-layout2 div.fca-ept-plan-image img.fca-ept-image1{
	margin: 10px auto;
	display: block;
}

div.fca-ept-layout2 div.fca-ept-plan-image img.fca-ept-image2{
	margin: 10px auto;
	display: none;
}

div.fca-ept-layout2 div.fca-ept-plan-image {
	justify-items: center;
} 
 
div.fca-ept-layout2 .fca-ept-plan{
	font-weight: bold;
}

div.fca-ept-layout2 .fca-ept-plan-subtext {
	display: block;
	margin-top: -6px;
}

div.fca-ept-layout2 span,
div.fca-ept-layout2 li,
div.fca-ept-layout2 .fca-ept-button { 
	word-break: break-all;
}


/* PRICE */

div.fca-ept-layout2 .fca-ept-price-container{
	font-family: inherit;
	padding: 0;
	margin-top: 10px;
}

/* PRICE SUBTEXT CONTAINER */
div.fca-ept-layout2 .fca-ept-price-subtext{
	line-height: 1;
	margin-top: -6px;
	display: block;
}

div.fca-ept-layout2 .fca-ept-price-svg{
	display: none;
}

div.fca-ept-layout2 div.fca-ept-price-div .fca-ept-price-period{
	
}

div.fca-ept-layout2 div.fca-ept-price-div .fca-ept-price-billing{
	display: none;
}

/* FEATURES */
div.fca-ept-layout2 div.fca-ept-features-div ul{
	font-family: inherit;
	letter-spacing: inherit;
	text-align: start;
	margin: 26px 0;
	padding-left: 0;
	font-weight: 500;
}

div.fca-ept-layout2 div.fca-ept-features-div .fca-ept-features li{
	font-family: inherit;
	list-style-type: none;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

/* Fix for Gutenberg bug where removing an entire line adds a span to the element */
div.fca-ept-layout2 div.fca-ept-features-div .fca-ept-features li span:not( div.fca-ept-tooltip-div>span.fca-ept-tooltiptext ){
	font-size: inherit !important;
}

div.fca-ept-layout2 div.fca-ept-features-div .fca-ept-features li::marker{
	color: #0f61d8;
}

div.fca-ept-layout2 div.fca-ept-features-div .fca-ept-features li img {
	display: block;
	margin: 12px auto;
}


/* BUTTONS */
div.fca-ept-layout2 a.fca-ept-button{
	display: block;
	font-family: inherit;
	padding: 10px;
	border-radius: 8px;
	white-space: normal;
	text-align: center;
	align-self: self-end;
	text-decoration: none !important;
	-webkit-appearance: unset;
	cursor: pointer;
}

div.fca-ept-layout2 a.fca-ept-button:hover{
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Custom tooltips - General settings */
.fca-ept-tooltip {
	position: relative;
}

.fca-ept-tooltip:before {
	visibility: hidden;
	position: absolute;
	
	bottom: 18px;
	max-width: 300px;
	
	line-height: 1;
	font-family: sans-serif;
	font-size: 14px;
	font-weight: initial;
	
	color: #fff;
	background-color: #424242;
	text-align: center;
	padding: 5px;
	
	text-transform: initial;
	border-radius: 5px;
	/* LIGHT WIZARDRY */
	width: max-content;
	content: attr( data-tooltip );
	transform:translateX( calc( -50% + 7px ) );
}

.fca-ept-tooltip:hover:before {
	visibility: visible;
	z-index: 2;
}

/* OLD TOOLTIPS */

div.fca-ept-tooltip-div {
	position: relative;
	font-size: 20px;
	display: inline-block !important;
	line-height: 1;
}

div.fca-ept-tooltip-div .fca-ept-tooltiptext {
	visibility: hidden;
	width: max-content;
	background-color: #424242;
	font-weight: initial;
	color: #fff;
	text-align: center;
	padding: 5px;
	bottom: -23px;
	position: absolute;
	line-height: 1;
	z-index: 1;
	font-size: 14px;
	text-transform: initial;
	border-radius: 5px;
	font-family: sans-serif;
}

div.fca-ept-tooltip-div:hover .fca-ept-tooltiptext {
	visibility: visible;
}

div.fca-ept-tooltip-div .fca-ept-tooltiptext:hover {
	visibility: hidden;
}

div.wp-block-fatcatapps-easy-pricing-tables .fca-ept-plan-image .fca-ept-image1, div.wp-block-fatcatapps-easy-pricing-tables .fca-ept-plan-image .fca-ept-image2{
  display: none;
}

/* small display */

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

	.entry .entry-content > *.alignfull{
		max-width: unset !important;
		width: unset !important;
		min-width: 250px !important;
	}

	div.fca-ept-layout2, div.fca-ept-toggle-period-container {
		font-size: 75%;
		display: block;
		padding-right: 0;
	}

	/* keep from overlapping with previous column */
	div.fca-ept-layout2 div.fca-ept-column{
		margin-top: 15px !important;
	}

}

