.main-nav {
	display: none !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "montserrat";
}

:root {
	--muted: #6b6b6b;
	--line: #e7e7e7;
	--bg: #ffffff;
	--dark: rgba(30, 30, 30, 1);
	--dark-2: #1f1f1f;
	--cta: rgba(187, 255, 179, 1);
	--cta-2: #aaf39f;
	--cta-3: #96e58a;
}

.ct {
	color: #000;
	background: var(--bg);
	position: relative;
}

.container {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 20px;
}

.header {
	margin-bottom: 54px;
	position: relative;
	z-index: 2;
}

.header .left {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 100vw !important;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: 0.4px;
}

.logo-dot {
	background: rgba(2, 219, 115, 1);
	height: 44px;
	width: 44px;
	border-radius: 50%;
}

.brand-text {
	font-size: 36px;
	font-family: "montserrat";
}

.subbrand {
	font-size: 16px;
	color: #000;
	font-weight: 600;
}

.subbrand a {
	color: #000;
	text-decoration: underline;
	font-weight: 600;
}

.right {
	display: flex;
	align-items: center;
	gap: 30px;
}

.desktop-nav {
	display: flex;
	align-items: center;
	gap: 30px;
}

.mobile-menu-btn,
.mobile-nav-panel {
	display: none;
}

.nav-link {
	color: #000;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
}

.cta {
	background: var(--cta);
	color: #000;
	padding: 0px 40px;
	border-radius: 8px;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	font-weight: 900;
	text-decoration: none;
	border: 1px solid #c9f9c1;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
	height: 101px;
	padding-top: 41px;
	margin-top: -19px;
	font-size: 28px;
}

.hero {
	padding: 16px 0 28px;
	margin-bottom: 90px;
	position: static;
}

.hero-title {
	font-size: 72px;
	line-height: 0.96;
	letter-spacing: -0.8px;
	margin: 8px 0 10px;
	font-weight: 900;
	margin-bottom: 30px;
	margin-left: 30px;
}

.top-title {
	position: relative;
	z-index: 2;
	display: inline-block;
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.22s ease, transform 0.22s ease;
	will-change: opacity, transform;
}

.top-title.is-fading-out {
	opacity: 0;
	transform: translateY(-8px);
}

.top-title.is-fading-in {
	opacity: 1;
	transform: translateY(0);
}

.hl {
	position: relative;
	padding: 0 30px;
	background-color: rgba(187, 255, 179, 1);
	margin-left: -30px;
	z-index: 1;
}

.hero-sub {
	font-size: 24px;
	color: #000;
	margin-bottom: 40px;
	margin-left: 30px;
	position: relative;
	z-index: 1;
}

.hero-sub-2 {
	font-size: 18px;
	color: #000;
	background: linear-gradient(-64deg, rgba(255,255,255,0) 0%, rgba(239,252,237,1) 100%);
	padding: 10px;
	border-radius: 5px;
	max-width: 815px;
	font-weight: 600;
	margin-top: -20px;
	margin-bottom: 30px;
	padding-left: 31px;
	position: relative;
	z-index: 1;
}

.hero-sub a {
	color: #0a0a0a;
	text-decoration: underline;
}

/* Hero background video */
.hero-inner {
	position: relative;
	z-index: 1;
}

.hero-video {
	position: absolute;
	top: -250px;
	right: -150px;
	width: 640px;
	height: auto;
	object-fit: cover;
	pointer-events: none;
	z-index: 0;
}

.tabs {
	display: inline-grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin: 16px 0 10px;
	background: rgba(216, 216, 216, 1);
	border-radius: 14px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	height: 49px;
	width: 330px;
}

.tab {
	appearance: none;
	border: 0;
	color: #0e0e0e;
	background: rgba(216, 216, 216, 1);
	padding: 9px 16px;
	border-radius: 14px;
	font-weight: 600;
	cursor: pointer;
	font-size: 24px;
}

.tab[aria-selected="true"] {
	background: var(--cta);
}

.bullets ul {
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	display: grid;
	gap: 8px;
}

.bullets li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 18px;
	font-weight: 600;
}

.bullets li strong {
	font-weight: 900;
}

.bullets li a {
	color: #000;
}

.bullets li .ul {
	text-decoration: underline;
}

.bullets li img {
	width: 26px;
	height: 26px;
}

.bullets ul.bullets-learner {
	display: none;
}
.bullets ul.bullets-educator {
	display: grid;
}
.ct[data-mode="learner"] .bullets ul.bullets-learner {
	display: grid;
}
.ct[data-mode="learner"] .bullets ul.bullets-educator {
	display: none;
}
.mute {
	color: var(--muted);
}

.mozilla-award {
	width: 411px;
	height: 157px;
	position: absolute;
	right: 0px;
	top: 445px;
	z-index: 9999;
	transition: all 1s;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18), 0 1.5px 4px rgba(0, 0, 0, 0.1);
}

.mozilla-award img {
	filter: invert(1);
	width: 90%;
}

.how {
	padding: 16px 0 0;
}

.h2 {
	font-size: 72px;
	font-weight: 900;
	margin: 0px;
	letter-spacing: -0.6px;
	line-height: 0.7;
}

.chooser {
	background: var(--dark);
	color: white;
	padding-top: 130px;
	width: 1479px;
	margin: 0 auto;
	height: 321px;
	margin-bottom: 113px;
	background-image: linear-gradient(
			rgba(30, 30, 30, 0.5),
			rgba(30, 30, 30, 0.5)
		),
		url("https://readocracy-img.s3.us-east-1.amazonaws.com/syl/bg-header.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.chooser-prompt {
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
	margin: 0 0 40px;
}

.chooser-tabs {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 0;
	background: rgba(216, 216, 216, 1);
	border-radius: 14px;
	width: 864px;
	height: 134px;
	margin-bottom: -40px;
	margin-left: -30px;
}

.chooser-btn {
	appearance: none;
	border: 0;
	background: rgba(216, 216, 216, 1);
	color: #000;
	padding: 20px 26px;
	border-radius: 14px;
	font-weight: 900;
	cursor: pointer;
	font-size: 36px;
	height: 100%;
}

.chooser-btn[aria-selected="true"] {
	background: var(--cta);
	color: #000;
}

.h3 {
	font-size: 48px;
	font-weight: 900;
	margin: 22px 0;
	margin-bottom: 54px;
}

.steps {
	display: grid;
	gap: 24px;
}
.how:not([data-steps-mode]) .steps {
	display: none;
}
.how:not([data-steps-mode]) .h3 {
	display: none;
}

.step {
	display: grid;
	grid-template-columns: 480px 1fr;
}

.step-media {
	background: rgba(73, 73, 73, 1);
	border-radius: 12px;
	height: 279px;
	position: relative;
	width: 420px;
	margin-bottom: 60px;
	background-image: url("https://images.unsplash.com/photo-1758260759982-ba89cf5820e8?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.how[data-steps-mode="educator"] .step:first-child .step-media {
	background-image: url("https://readocracy-img.s3.us-east-1.amazonaws.com/syl/Educators1.png");
}

.how[data-steps-mode="educator"] .step:nth-child(2) .step-media {
	background-image: url("https://readocracy-img.s3.us-east-1.amazonaws.com/syl/Educators2.png");
}

.how[data-steps-mode="educator"] .step:nth-child(3) .step-media {
	background-image: url("https://readocracy-img.s3.us-east-1.amazonaws.com/syl/Educators3.png");
}

.how[data-steps-mode="learner"] .step:first-child .step-media {
	background-image: url("https://readocracy-img.s3.us-east-1.amazonaws.com/syl/Learners1.png");
}

.how[data-steps-mode="learner"] .step:nth-child(2) .step-media {
	background-image: url("https://readocracy-img.s3.us-east-1.amazonaws.com/syl/Learners2.png");
}

.how[data-steps-mode="learner"] .step:nth-child(3) .step-media {
	background-image: url("https://readocracy-img.s3.us-east-1.amazonaws.com/syl/Learners3.png");
}

.step-num {
	position: absolute;
	right: -20px;
	top: -20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	width: 117px;
	height: 117px;
	color: rgba(0, 0, 0, 1);
	font-size: 48px;
	font-weight: 900;
	border-radius: 8px;
	background: linear-gradient(
		153deg,
		rgba(222, 222, 222, 1) 0%,
		rgba(132, 132, 132, 1) 100%
	);
}

.step-copy h4 {
	font-size: 36px;
	margin: 0 0 30px;
	line-height: 1;
	font-weight: 900;
	max-width: 560px;
}
.step-copy p {
	margin: 0;
	max-width: 560px;
	color: #000;
	font-size: 18px;
	font-weight: 600;
}

.step-copy-learner {
	display: none;
}
.step-copy-educator {
	display: block;
}
.how[data-steps-mode="learner"] .step-copy-learner {
	display: block;
}
.how[data-steps-mode="learner"] .step-copy-educator {
	display: none;
}

.cta-row {
	display: flex;
	justify-content: center;
	margin: 28px 0;
}
.how:not([data-steps-mode]) .cta-row {
	display: none;
}
.how:not([data-steps-mode]) ~ .faq {
	display: none;
}
/*
.how:not([data-steps-mode]) ~ .about {
	display: none;
}
*/
.cta-learner,
.cta-educator {
	display: none;
}
.ct[data-mode="learner"] .cta-learner {
	display: flex;
}
.ct[data-mode="educator"] .cta-educator {
	display: flex;
}

.cta-large {
	background: var(--cta);
	color: #000;
	padding: 20px 36px;
	border-radius: 8px;
	font-weight: 900;
	text-decoration: none;
	font-size: 36px;
	height: 105px;
	width: 677px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 10px 2px rgba(205, 213, 204, 1);
	margin-bottom: 50px;
	text-align: center;
}

.faq-title {
	margin-bottom: 30px;
	font-size: 72px;
	font-weight: 900;
}

.faq {
	padding: 8px 0 40px;
}

.faq-set {
	display: block;
	margin-left: -96px;
}

.faq-learner {
	display: none;
}

.ct[data-mode="learner"] .faq-learner {
	display: block;
}

.ct[data-mode="learner"] .faq-educator {
	display: none;
}

.faq-item {
	border-top: 1px solid var(--line);
}

.faq-item:last-child {
	border-bottom: 1px solid var(--line);
}
.faq-q {
	width: 100%;
	text-align: left;
	appearance: none;
	background: none;
	border: 0;
	padding: 18px 0;
	display: flex;
	align-items: center;
	gap: 40px;
	font-size: 32px;
	font-weight: 600;
	cursor: pointer;
	color: #000;
}

.faq-a {
	display: none;
	padding: 0 0 18px 30px;
	color: #2a2a2a;
	margin-left: 71px;
	font-size: 20px;
}

.faq-item.open .faq-a {
	display: block;
}

.plus {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cta);
	color: #000;
	font-weight: 900;
	line-height: 30px;
	text-align: center;
	border-radius: 8px;
	width: 59px;
	height: 59px;
	font-size: 28px;
}

.about {
	padding: 24px 0 60px;
}

.about-sub {
	color: #2a2a2a;
	font-size: 18px;
	font-weight: 600;
}

.about .h3 {
	font-size: 72px;
	font-weight: 900;
	margin-bottom: 30px;
	line-height: 0.9;
}

.sign-up-login {
	cursor: pointer;
}

.chooser-btn-divider {
	width: 1px;
	height: 70%;
	background: #bbbbbb;
}

.gradient {
	width: 100%;
	height: 150px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 1) 0%,
		rgba(187, 255, 179, 1) 100%
	);
}

.footer {
	padding: 20px 0;
	background: #000;
	width: 100%;
	height: 100px;
}

.footer-text {
	color: #aaa;
	font-size: 14px;
}

@media (max-width: 992px) {
	.container {
		padding: 0 20px;
	}

	.header {
		margin-bottom: 40px;
	}

	.nav-row {
		flex-direction: row;
		align-items: flex-start;
		gap: 20px;
	}

	.brand {
		padding-top: 7px;
	}

	.header .left {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		flex-direction: column;
		align-items: start;
	}

	.right {
		flex-direction: row;
		align-items: center;
		gap: 0;
		width: auto;
	}

	.desktop-nav {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		padding: 10px;
		z-index: 1001;
		position: relative;
	}

	.mobile-menu-btn span {
		display: block;
		width: 25px;
		height: 3px;
		background-color: #000;
		margin: 5px 0;
		transition: all 0.3s;
	}

	.mobile-nav-panel {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(5px);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 30px;
		z-index: 1000;
	}

	.mobile-nav-panel.open {
		display: flex;
	}

	.nav-open .mobile-menu-btn span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}

	.nav-open .mobile-menu-btn span:nth-child(2) {
		opacity: 0;
	}

	.nav-open .mobile-menu-btn span:nth-child(3) {
		transform: rotate(-45deg) translate(7px, -7px);
	}

	.ct.nav-open {
		overflow: hidden;
	}

	.mobile-nav-panel .nav-link,
	.mobile-nav-panel .cta {
		display: block;
	}

	.mobile-nav-panel .cta {
		width: auto;
		text-align: center;
		border-radius: 8px;
	}

	.cta {
		margin-top: 0;
		height: auto;
		padding: 15px 20px;
		width: 100%;
		text-align: center;
	}

	.hero {
		padding-top: 0;
		margin-bottom: 0px;
	}

	.hero-video {
		width: 340px;
		top: -180px;
    right: -40px;
	}

	.hero-title {
		font-size: 48px;
		margin-left: 0;
	}

	.hero-sub {
		margin-left: 0;
		font-size: 18px;
	}

	.hl {
		margin-left: -30px;
		display: inline-block;
	}

	.mozilla-award {
		position: static;
		width: 100%;
		max-width: 300px;
		margin: 40px auto 0;
		height: auto;
		padding: 0px;
		margin-right: -20px;
		top: auto;
		right: auto;
	}

	.h2,
	.faq-title,
	.about .h3 {
		font-size: 42px;
	}

	.chooser {
		width: 100%;
		padding: 60px 20px;
		height: auto;
		margin-bottom: 90px;
	}

	.chooser-tabs {
		grid-template-columns: 1fr;
		width: 100%;
		height: auto;
		margin-left: 0;
		margin-bottom: -100px;
	}

	.chooser-btn-divider {
		width: 85%;
		height: 1px;
		background: #bbbbbb;
		margin: 0 auto;
	}

	.h3 {
		font-size: 36px;
	}

	.step {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.step-media {
		width: 97%;
		height: 251px;
		margin-bottom: 20px;
	}

	.step-copy h4 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.cta-large {
		width: 100%;
		font-size: 24px;
		height: auto;
		padding: 20px;
	}

	.faq-set {
		margin-left: 0;
	}

	.faq-q {
		font-size: 22px;
		gap: 20px;
	}

	.faq-a {
		margin-left: 0;
		padding-left: 0;
		font-size: 16px;
	}

	.step-num {
		right: -10px;
		top: -10px;
		width: 77px;
		height: 77px;
		font-size: 31px;
	}
}

@media (max-width: 480px) {
	.brand-text {
		font-size: 28px;
	}

	.chooser .container {
		padding-left: 0px;
	}

	.logo-dot {
		width: 26px;
		height: 26px;
	}

	.subbrand {
		font-size: 14px;
	}

	.hero-title {
		font-size: 50px;
		line-height: 1;
	}

	.hero-sub {
		font-size: 16px;
	}

	.tab {
		font-size: 18px;
	}
	.tabs {
		width: 100%;
		height: 44px;
	}

	.hero-video {
		position: static;
		margin: 0 auto;
    display: block;
    margin-bottom: 20px;
		width: 356px;
		height: 229px;
	}

	.bullets li {
		font-size: 16px;
		margin-bottom: 10px;
		display: block;
	}

	.bullets li img {
		width: 16px;
		height: 16px;
		margin-right: 6px;
		margin-bottom: -2px;
	}

	.chooser-prompt {
		font-size: 24px;
	}

	.chooser-btn {
		font-size: 24px;
		text-align: left;
	}

	.h2,
	.faq-title,
	.about .h3 {
		font-size: 32px;
	}

	.h3 {
		font-size: 28px;
	}

	.faq-q {
		font-size: 18px;
		gap: 10px;
	}

	.plus {
		width: 30px;
		height: 30px;
		font-size: 20px;
		min-width: 30px;
	}

	.hero-sub-2 {
		padding-left: 10px;
		font-size: 16px;
		margin-left: -10px;
	}
}

.syl-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
	padding: 5vh 0;
}

.syl-modal.open {
	display: flex;
}

.syl-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
}

.syl-modal-content {
	position: relative;
	background: var(--bg);
	padding: 40px;
	border-radius: 12px;
	max-width: 600px;
	width: 90%;
	z-index: 1;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	color: var(--dark);
}

.syl-modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 30px;
	cursor: pointer;
	color: var(--muted);
	line-height: 1;
}

#syl-modal-title {
	margin-top: 0;
	margin-bottom: 20px;
}

#syl-prompt-heading {
	text-align: center;
	margin-top: 0;
	margin-bottom: 20px;
}

#syl-modal-text {
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: 600;
	color: #2a2a2a;
}

#syl-modal-form .form-group {
	margin-bottom: 15px;
}

#syl-modal-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
}

#syl-modal-form input,
#syl-modal-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	resize: vertical;
}

#syl-modal-form .form-row {
	display: flex;
	gap: 15px;
}

#syl-modal-form .form-row .form-group {
	flex: 1;
}

#syl-modal-form .cta-large {
	width: 100%;
	height: auto;
	font-size: 24px;
	padding: 15px;
	margin-top: 10px;
	margin-bottom: 0;
}

#syl-modal-form .cta-large:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.util-form-error {
	color: #d93025;
	font-size: 14px;
	margin-top: 5px;
	min-height: 1em;
}

.success-message {
	color: #1e8e3e;
	font-weight: bold;
	margin-top: 10px;
	font-size: 18px;
}

.syl-modal-toggle {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	background-color: #f0f0f0;
	border-radius: 12px;
	padding: 4px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}

.syl-toggle-btn {
	flex: 1;
	padding: 10px 15px;
	border: none;
	background-color: transparent;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	transition: background-color 0.3s;
	color: var(--dark);
}

.syl-toggle-btn.active {
	background-color: var(--cta);
	color: var(--dark);
}

@media (max-width: 1450px) {
	.container {
		max-width: 1140px;
	}

	.mozilla-award {
		width: 331px;
		height: 127px;
	}
}

/* Pricing Modal Styles */
.syl-pricing-modal-content {
	position: relative;
	background: var(--bg);
	padding: 40px;
	border-radius: 12px;
	max-width: 1200px;
	width: 95%;
	z-index: 1;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	color: var(--dark);
	max-height: 90vh;
	overflow-y: auto;
}

.syl-pricing-content {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	color: var(--dark);
}

.syl-pricing-container {
	display: flex;
	gap: 20px;
}

.syl-pricing-card {
	background: var(--bg);
	padding: 20px 30px;
	border-radius: 15px;
	box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
	width: 310px;
	height: 532px;
	min-height: 450px;
	max-height: 532px;
	display: flex;
	flex-direction: column;
	border: 2px solid var(--line);
}

.syl-pricing-card h2 {
	color: rgba(2, 219, 115, 1);
	font-size: 24px;
	font-weight: 600;
}

.syl-pricing-card h1 {
	font-size: 48px;
	font-weight: 700;
	margin: 0;
	margin-bottom: 22px;
	color: #000;
}

.syl-pricing-card p {
	font-size: 16px;
	line-height: 1;
	margin-bottom: 16px;
	font-weight: 400;
	color: #000;
}

.syl-pricing-card .no-mb p {
	margin-bottom: 0;
}

.syl-pricing-card .mb-20 {
	margin-bottom: 20px !important;
}

.syl-pricing-card .last {
	margin-top: auto;
}

.syl-pricing-card .highlight {
	color: #349a24;
}

.syl-pricing-card .discount {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 8px;
}

.cta-pricing {
	background: var(--cta);
	color: #000;
	padding: 0px 40px;
	border-radius: 8px;
	font-weight: 900;
	text-decoration: none;
	border: 1px solid #c9f9c1;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-align: center;
	margin-top: 20px;
	cursor: pointer;
	height: 76px;
	width: 234px;
	box-shadow: 0 2px 10px 2px rgba(205, 213, 204, 1);
	margin-top: 30px;
}

/* Responsive Design for Pricing Modal */
@media (max-width: 1000px) {
	.syl-pricing-container {
		flex-direction: column;
		align-items: center;
	}

	.syl-pricing-card {
		width: 100%;
		max-width: 500px;
		height: auto;
		min-height: auto;
		max-height: none;
	}

	.syl-pricing-modal-content {
		padding: 30px 20px;
		margin: 20px 10px;
		width: calc(100% - 20px);
	}
}

@media (max-width: 600px) {
	.syl-pricing-modal-content {
		padding: 20px 15px;
		margin: 10px 5px;
		width: calc(100% - 10px);
		border-radius: 8px;
	}

	.syl-pricing-card h1 {
		font-size: 40px;
	}

	.syl-pricing-card {
		padding: 20px 15px;
		width: 100%;
	}

	.cta-pricing {
		font-size: 16px;
		padding: 14px 24px;
	}

	.syl-pricing-card .discount {
		font-size: 12px;
	}

	.syl-modal-close {
    top: 0px;
    right: 5px;
	}
}
