/* Body */
body.plans {
	background: #efebe8;
}

.plans .main-intro {
	min-height: 400px;
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.plans .main-intro:after {
	content: '';
	display: block;
	height: 12vh;
	width: 100%;
	position: absolute;
	z-index: 320;
	bottom: -1px;
	background-color: #efebe8;
	-webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
	margin-top: -90px;
	border-bottom: 4px solid #efebe8;
}

.plans .main-intro .wrapper {
	position: absolute;
	z-index: 100;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

@media only screen and (max-width: 640px) {
	.plans .main-intro {
		min-height: 300px;
	}
	.plans .main-intro:after {
		height: 4vh;
	}
	.plans .main-intro .wrapper {
		top: 58%;
	}
}

/* Header */

h2 {
	margin-top: 12px;
	font-size: 25px;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.1;
	text-align: center;
	font-family: 'PT Sans Narrow', sans-serif;
}

@media only screen and (min-width: 1271px) {
	h1 {
		font-size: 50px;
	}
}

@media only screen and (max-width: 1270px) and (min-width: 641px) {
	h1 {
		font-size: 48px;
	}
}

@media only screen and (max-width: 640px) {
	h2 {
		font-size: 22px;
	}
}

/* Plans */

.plan-type-buttons-wrapper {
	margin: 16px auto 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.plan-type-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #121212;
	background: #fff;
	padding: 5px 8px;
	border-radius: 100px;
	position: relative;
}
.plan-type-buttons button {
	flex: 1;
	background: transparent;
	border: none;
	color: #181818;
	border-radius: 36px;
	padding: 4px 20px;
	font-family: 'PT Sans';
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	transition: color 0.3s;
	z-index: 1;
}
.plan-type-buttons .active {
	color: #fff;
	font-weight: 700;
}
.plan-type-buttons .marker {
	transition: all 0.3s;
	background: #181818;
	border-radius: 36px;
	position: absolute;
	top: 4px;
	bottom: 4px;
	z-index: 0;
}

.plans-header ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: stretch;
	gap: 24px;
}

.plans-header ul li {
	flex: 1;
	gap: 8px;
	border-radius: 20px;
	padding: 32px;
	background-color: #fff;
	border: 2px solid #fff;
	display: flex;
	flex-direction: column;
	display: none;
	position: relative;
	cursor: pointer;
}

@media only screen and (max-width: 1216px) {
	.plans-header ul li {
		min-width: 90%;
	}
}

.plans-header ul li.current {
	border-color: #121212;
}

.plans-header .title {
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
}

.plans-header .desc {
	height: 78px;
	color: #666666;
}

.plans-header .feat {
	margin: 0 0 22px;
	line-height: 22.4px;
}

.plans-header .feat p {
	padding: 4px 0;
}
.plans-header .feat p::before {
	content: url('data:image/svg+xml,%3Csvg%20width%3D%2211%22%20height%3D%228%22%20viewBox%3D%220%200%2011%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%204L4%207L10%201%22%20stroke%3D%22black%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
	display: inline-block;
	margin-right: 7px;
}

.plans-header .prices {
	margin-top: auto;
	padding: 6px;
	background: #fafafa;
	display: flex;
	gap: 10px;
}

.plans-header .monthly,
.plans-header .yearly {
	font-weight: 700;
	font-size: 26px;
	line-height: 100%;
	display: none;
	white-space: nowrap;
}
.plans-header .monthly::after,
.plans-header .yearly::after {
	content: ' / month';
	font-weight: 400;
	font-size: 15px;
}
.plans-header .annually {
	display: none;
}

.plans-header .select-pricing {
	position: relative;
	display: inline-block;
	margin-left: auto;
}
.plans-header .select-pricing::after {
	--size: 0.3rem;
	display: block;
	position: absolute;
	content: '';
	right: 1rem;
	pointer-events: none;
	border-left: var(--size) solid transparent;
	border-right: var(--size) solid transparent;
	border-top: var(--size) solid black;
	top: calc(50% - var(--size) / 2);
}
.plans-header .select-pricing select {
	display: block;
	width: 140px;
	height: 32px;
	border-radius: 20px;
	border-width: 1px;
	padding: 0 32px 0 14px;
	font-weight: 400;
	font-size: 14px;
	line-height: 32px;
	letter-spacing: 0px;
	border: 1px solid #dfdfdf;
	background-color: #fff;
	color: #000;
	appearance: none;
}
.plans-header .select-pricing .change-plan-pricing {
	cursor: default;
}
.plans-header .get_started {
	margin-top: 10px;
	background: #fff;
	color: #121212;
	height: 48px;
	border-radius: 5px;
	border: 1px solid #121212;
	width: 100%;
	vertical-align: middle;
	line-height: 48px;
	text-align: center;
}
.plans-header .current .get_started {
	background: #121212;
	color: #fff;
}

.plans-header ul li .get_started:hover {
	text-decoration: underline;
}

.plans-header label {
	font-size: 14px;
	line-height: 26px;
	text-align: center;
	color: #41464d;
	margin: 20px auto;
	display: block;
}

.plans-header .badge {
	background: #a97cef;
	text-transform: uppercase;
	padding: 4.5px 8px;
	position: absolute;
	color: #fff;
	font-weight: 700;
	font-size: 11px;
	line-height: 100%;
	letter-spacing: 0.5px;
	top: 0;
	display: flex;
	align-items: center;
}
.plans-header .badge::before {
	content: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2217%22%20viewBox%3D%220%200%2016%2017%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cmask%20id%3D%22mask0_19593_6221%22%20style%3D%22mask-type%3Aalpha%22%20maskUnits%3D%22userSpaceOnUse%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2216%22%20height%3D%2217%22%3E%3Crect%20y%3D%220.5%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23D9D9D9%22%2F%3E%3C%2Fmask%3E%3Cg%20mask%3D%22url%28%23mask0_19593_6221%29%22%3E%3Cpath%20d%3D%22M7.29967%209.83333L10.5997%206.53333L9.64967%205.6L7.29967%207.95L6.34967%207L5.39967%207.95L7.29967%209.83333ZM3.33301%2014.5V3.83333C3.33301%203.46667%203.46356%203.15278%203.72467%202.89167C3.98579%202.63056%204.29967%202.5%204.66634%202.5H11.333C11.6997%202.5%2012.0136%202.63056%2012.2747%202.89167C12.5358%203.15278%2012.6663%203.46667%2012.6663%203.83333V14.5L7.99967%2012.5L3.33301%2014.5ZM4.66634%2012.4667L7.99967%2011.0333L11.333%2012.4667V3.83333H4.66634V12.4667Z%22%20fill%3D%22%23FDFDFA%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A');
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
}

.explore-plans {
	display: none;
	text-align: center;
	margin-top: 20px;
}
.explore-plans-artist,
.explore-plans-gallery {
	color: inherit;
	text-align: center;
	margin-top: 20px;
	text-decoration: underline;
}
@media only screen and (max-width: 640px) {
	.explore-plans {
		display: block;
	}
}

/* Comparison Table */

.comparison-table-section {
	background: #fdfdfa;
	padding: 30px 0;
}

.comparison-table-section h3 {
	font-family: 'PT Sans Narrow';
	font-weight: 700;
	font-size: 24px;
	line-height: 27px;
	letter-spacing: 0.25px;
	text-align: center;
	color: #121212;
	margin: 16px 0;
}

.comparison-table {
	margin: 30px auto;
	width: 90%;
}
.comparison-table table {
	width: 100%;
	border-collapse: separate;
	background: #fff;
	border-top: 1px solid #121212;
}
.comparison-table th,
.comparison-table td {
	padding: 16px;
	text-align: center;
	border-right: 1px solid #121212;
	border-bottom: 1px solid #121212;
	font-size: 16px;
	line-height: 30px;
	color: #121212;
	width: 20%;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
	width: 40%;
	text-align: left;
	z-index: 1;
	background: #fff;
	position: sticky;
	left: 1px;
	border-left: 1px solid #121212;
	border-right: 1px solid #121212;
}
.comparison-table td {
	padding: 16px;
}
.comparison-table .yes,
.comparison-table .no {
	color: transparent;
	position: relative;
	display: inline-block;
	font-size: 0px;
	height: 20px;
}
.comparison-table .yes::after,
.comparison-table .no::after {
	position: absolute;
	top: 3px;
	left: -8px;
}
.comparison-table .yes::after {
	content: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%2016C10.1217%2016%2012.1566%2015.1571%2013.6569%2013.6569C15.1571%2012.1566%2016%2010.1217%2016%208C16%205.87827%2015.1571%203.84344%2013.6569%202.34315C12.1566%200.842855%2010.1217%200%208%200C5.87827%200%203.84344%200.842855%202.34315%202.34315C0.842855%203.84344%200%205.87827%200%208C0%2010.1217%200.842855%2012.1566%202.34315%2013.6569C3.84344%2015.1571%205.87827%2016%208%2016ZM11.5312%206.53125L7.53125%2010.5312C7.2375%2010.825%206.7625%2010.825%206.47188%2010.5312L4.47188%208.53125C4.17813%208.2375%204.17813%207.7625%204.47188%207.47188C4.76562%207.18125%205.24062%207.17813%205.53125%207.47188L7%208.94063L10.4688%205.46875C10.7625%205.175%2011.2375%205.175%2011.5281%205.46875C11.8187%205.7625%2011.8219%206.2375%2011.5281%206.52812L11.5312%206.53125Z%22%20fill%3D%22%23121212%22%2F%3E%3C%2Fsvg%3E');
}
.comparison-table .no::after {
	content: url('data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%2016C10.1217%2016%2012.1566%2015.1571%2013.6569%2013.6569C15.1571%2012.1566%2016%2010.1217%2016%208C16%205.87827%2015.1571%203.84344%2013.6569%202.34315C12.1566%200.842855%2010.1217%200%208%200C5.87827%200%203.84344%200.842855%202.34315%202.34315C0.842855%203.84344%200%205.87827%200%208C0%2010.1217%200.842855%2012.1566%202.34315%2013.6569C3.84344%2015.1571%205.87827%2016%208%2016ZM5.46875%205.46875C5.7625%205.175%206.2375%205.175%206.52812%205.46875L7.99687%206.9375L9.46562%205.46875C9.75937%205.175%2010.2344%205.175%2010.525%205.46875C10.8156%205.7625%2010.8187%206.2375%2010.525%206.52812L9.05625%207.99687L10.525%209.46562C10.8187%209.75937%2010.8187%2010.2344%2010.525%2010.525C10.2312%2010.8156%209.75625%2010.8187%209.46562%2010.525L7.99687%209.05625L6.52812%2010.525C6.23438%2010.8187%205.75938%2010.8187%205.46875%2010.525C5.17812%2010.2312%205.175%209.75625%205.46875%209.46562L6.9375%207.99687L5.46875%206.52812C5.175%206.23438%205.175%205.75938%205.46875%205.46875Z%22%20fill%3D%22%23DDDDDD%22%2F%3E%3C%2Fsvg%3E%0A');
}
@media only screen and (max-width: 640px) {
	.comparison-table-section .container {
		width: calc(100% - 24px) !important;
	}
	.comparison-table {
		width: 100%;
	}
	.comparison-table th,
	.comparison-table td {
		padding: 8px;
		font-size: 14px;
		line-height: 24px;
	}
}

/* Plans Footer */
.table-foot {
	padding-top: 40px;
	padding-bottom: 60px;
	color: #000;
}
.table-foot h3 {
	margin-top: 32px;
}
.table-foot a {
	color: inherit;
	text-decoration: underline;
}

/* Book sales */
.book-sales {
	display: none;
	padding: 6px;
	text-align: center;
	background: #000000;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 200000;
	color: #fff;
	font-size: 85%;
}
.book-sales a {
	color: inherit;
	text-decoration: none;
	border: 1px solid #fff;
	padding: 0 10px;
	border-radius: 5px;
	font-weight: 400;
	margin-left: 10px;
	display: inline-block;
}
.book-sales a:hover {
	background: #fff;
	color: #000;
}
.book-sales button {
	float: right;
	margin: 0 20px;
	background: none;
	border: none;
	color: inherit;
	font-size: 28px;
	cursor: pointer;
	font-weight: 400;
}
.book-sales button:hover {
	text-decoration: none;
}
body.show-book-sales header {
	top: 40px;
}
body.show-book-sales .book-sales {
	display: block;
}
