.sapp-checkout,
.sapp-content-area,
.sapp-account {
	box-sizing: border-box;
	width: 100%;
}

.sapp-checkout__intro,
.sapp-content-header {
	margin-bottom: 24px;
}

.sapp-plan-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.sapp-plan,
.sapp-video,
.sapp-notice,
.sapp-account-list {
	border: 1px solid #d8dee4;
	border-radius: 8px;
	padding: 20px;
	background: #fff;
}

.sapp-price {
	font-size: 2rem;
	font-weight: 700;
	margin: 12px 0 18px;
}

.sapp-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px;
	background: #155eef;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.sapp-button:hover,
.sapp-button:focus {
	background: #0846bd;
	color: #fff;
}

.sapp-button--secondary {
	background: #475467;
}

.sapp-category {
	margin: 32px 0;
}

.sapp-category h3 {
	margin-bottom: 14px;
}

.sapp-video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, 3in);
	gap: 16px;
	justify-content: start;
}

.sapp-video h4 {
	margin-top: 0;
}

.sapp-video {
	position: relative;
	box-sizing: border-box;
	width: 3in;
	height: 3in;
	overflow: hidden;
	background-position: center;
	background-size: cover;
}

.sapp-video > * {
	position: relative;
	z-index: 1;
}

.sapp-video--has-thumbnail {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.3);
}

.sapp-video--has-thumbnail::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	background: rgba(0, 0, 0, 0.58);
	content: "";
}

.sapp-video--has-thumbnail h4,
.sapp-video--has-thumbnail .sapp-video__description,
.sapp-video--has-thumbnail .sapp-video__unlock-date {
	color: #fff;
}

.sapp-video__description {
	overflow: hidden;
	font-size: 75%;
	line-height: 1.35;
}

.sapp-video__description p {
	margin: 0 0 0.55em;
}

.sapp-video__embed iframe {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.sapp-video__placeholder,
.sapp-video__locked {
	background: #f6f8fa;
	border: 1px dashed #98a2b3;
	border-radius: 6px;
	padding: 14px;
}

.sapp-video--has-thumbnail .sapp-video__placeholder,
.sapp-video--has-thumbnail .sapp-video__locked {
	background: rgba(255, 255, 255, 0.88);
	color: #1f2937;
}

.sapp-video__link a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 6px;
	background: #155eef;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.sapp-video__link a:hover,
.sapp-video__link a:focus {
	background: #0846bd;
	color: #fff;
}

.sapp-video--locked {
	background: #f8fafc;
	color: #475467;
}

.sapp-video__unlock-date {
	font-size: 0.95rem;
}

.sapp-account-list {
	display: grid;
	grid-template-columns: minmax(130px, 220px) 1fr;
	gap: 10px 18px;
}

.sapp-account-list dt {
	font-weight: 700;
}

.sapp-account-list dd {
	margin: 0;
}

@media (max-width: 640px) {
	.sapp-video-grid {
		grid-template-columns: repeat(auto-fill, minmax(min(3in, 100%), 3in));
	}

	.sapp-video {
		max-width: 100%;
	}

	.sapp-account-list {
		grid-template-columns: 1fr;
	}

	.sapp-account-list dd {
		margin-bottom: 10px;
	}
}
