@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	/*Color*/
	--primary: #00A390;
	--primary-trasparent: rgba(0,163,144,0.1);
	--secondary: #fffcf6;
	--gray: #707070;
	--gray-transparent: rgba(112,112,112,0.4);
	--white: #FFFFFF;
	--black: #000000;
	--trasparent: rgba(0,0,0,0);
	/*Font size*/
	--big: 175%;
	--medium: 125%;
	--small: 85%;
	--extra-small: 75%;
}
@media (max-width: 991.98px) {
	:root {
		/*Font size*/
		--big: 150%;
		--medium: 120%;
		--small: 85%;
		--extra-small: 75%;
	}
}
@media (max-width: 767.98px) {
	:root {
		/*Font size*/
		--big: 120%;
		--medium: 110%;
		--small: 85%;
		--extra-small: 75%;
	}
}
* {
	margin: 0px;
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: "Poppins", sans-serif;
}
b {
	font-weight: 500;
}
.bg-primary {
	background-color: var(--primary-trasparent);
}
.bg-secondary {
	background-color: var(--secondary);
}
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0px auto;
	padding: 50px 20px;
}
.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
@media (max-width: 1200px) {
	.container {
		max-width: 100%;
	}
	.grid {
		grid-template-columns: 1fr;
	}
}

/* ---------------- PAGES ---------------- */
/* ISCRIZIONE TRIAL */
.iscrizione-information {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.mobile {
	display: none;
}
@media (max-width: 1200px) {
	.desktop {
		display: none;
	}
	.mobile {
		display: flex;
	}
}
/* THANK YOU PAGE TRIAL */
.typ {
	width: 100%;
	max-width: 750px;
	margin: 0px auto;
}
.title-typ {
	font-size: calc(var(--big) + 10px);
	text-align: center;
	font-weight: 500;
	line-height: 1.2;
	color: var(--primary);
	margin-bottom: 30px;
}
.alert-box {
	background-color: #fff4e5;
	color: #d95c0b;
	border: 1px solid #d95c0b;
	padding: 10px;
	border-radius: 5px;
	margin-top: 20px;
	font-size: 14px;
	line-height: 1.5;
}

/* ---------------- COMPONENTS ---------------- */
/* NAVBAR*/
.navbar {
	padding: 10px 20px;
	backgroundColor: #ffffff;
	display: flex;
	gap: 1rem;
	border-bottom: solid 1px var(--black);
}
/* INFO ISCRIZIONE TRIAL */
.iscrizione-title {
	font-size: var(--big);
	font-weight: 500;
	line-height: 1.2;
	padding-bottom: 20px;
	border-bottom: solid 2px var(--primary);
	margin-bottom: 20px;
}
.trial-point {
	display: flex;
	justify-content: start;
	align-items: center;
	margin-bottom: 10px;
}
.trial-point img {
	width: 20px;
	margin-right: 8px;
}
/* FORM ISCRIZIONE TRIAL + FORM THANK YOU PAGE TRIAL */
.form {
	display: grid;
	gap: 14px;
}
.form a {
	text-decoration: underline;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
}
.section-title {
	font-weight: 500;
	margin-top: 20px;
}
.label {
	display: grid;
	gap: 8px;
}
.input,
select {
	border-radius: 10px;
	border: none;
	background-color: var(--white);
	padding: 10px 12px;
	color: var(--black);
	outline: none;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	padding: 20px;
	width: 100%;
}
.button {
	padding: 12px 28px 12px 30px;
	border: none;
	font-size: 100%;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 300;
	background-color: var(--primary);
	color: white;
	position: relative;
	width: fit-content;
	font-family: "Poppins", sans-serif;
}
.button::after {
	content: '';
	display: inline-block;
	background-image: url('https://psicologoinchat.it/wp-content/themes/psicologoinchat/assets/img/arrow-right.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
	margin-left: 10px;
	vertical-align: middle;
}
.button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	filter: grayscale(0.3);
}
.error {
	color: red;
}
.informazioni {
	color: var(--gray);
	font-size: var(--small);
	margin-top: 10px;
}
/* -------- GENERALE -------- */
/* REVIEW */
.checkout-review {
	display: flex;
	align-items: center;
	margin-top: 50px;
}
.checkout-review > img {
	width: 150px;
	margin-left: -35px;
}
.checkout-name {
	font-size: var(--medium);
	font-weight: 500;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}
.checkout-name img {
	margin-right: 5px;
}
.checkout-review p {
	color: var(--gray);
}
.checkout-date {
	font-size: var(--small);
	color: var(--gray);
	margin-top: 10px;
}
@media (max-width: 1200px) {
	.checkout-review {
		display: block;
	}
	.checkout-review > img {
		margin-bottom: 20px;
	}
}
/* STEP ONE */
.step-one {
	color: var(--gray);
	margin-bottom: 20px;
}
.bars {
	width: 100%;
	margin-top: 5px;
	background-color: #dddddd;
	border-radius: 100px;
}
.bars-step {
	background-color: var(--primary);
	width: 50%;
	height: 20px;
	border-top-left-radius: 100px;
	border-bottom-left-radius: 100px;
}
/* TRUST */
.trust {
	text-align: center;
	max-width: 1200px;
	border-radius: 10px;
	color: #069f4e;
	background-color: #b9d8b9;
	padding: 15px 20px;
	margin-top: 20px;
}
.trust-single {
	text-align: center;
	display: flex;
	align-items: center;
	margin: 2px auto;
}
.trust-single img {
	width: 20px;
	margin-right: 10px;
}
/* FAQ */
.faq-title {
	font-size: calc(var(--medium) + 10px);
	text-align: left;
	font-weight: 500;
	line-height: 1.2;
}
.accordion .accordion-item {
	border-bottom: 1px solid var(--black);
}
.accordion button {
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 20px 0px;
	color: var(--black);
	border: none;
	background: none;
	outline: none;
	font-family: "Poppins", sans-serif;
}
.accordion button .accordion-title {
	padding: 10px 0px 10px 0px;
	font-weight: 400;
	font-size: var(--big);
}
.accordion button .icon {
	display: inline-block;
	position: absolute;
	top: 22px;
	right: 0;
	width: 22px;
	height: 22px;
	border-radius: 22px;
}
.accordion button .icon::before {
	display: block;
	position: absolute;
	content: '';
	top: 9px;
	left: 5px;
	width: 10px;
	height: 2px;
	background: currentColor;
}
.accordion button .icon::after {
	display: block;
	position: absolute;
	content: '';
	top: 5px;
	left: 9px;
	width: 2px;
	height: 10px;
	background: currentColor;
}
.accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}
.accordion .accordion-content p {
	padding-bottom: 20px;
	line-height: 1.5;
	color: var(--gray);
}
.accordion button[aria-expanded="true"] .icon::after {
	opacity: 0;
}
/* FOOTER */
.footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #eceeef;
	color: var(--gray);
	padding: 50px 20px;
	text-align: center;
	font-size: var(--small);
}
.footer a {
	text-decoration: underline;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
}
.footer-column {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: center;
}
.footer-logo img {
	margin: 0px 0px 20px 30px;
}
.footer-verify {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0px 20px 0px;
}
.footer-verify img {
	margin-right: 5px;
}
.footer-privacy {
	margin-top: 50px;
}
.footer-copy {
	margin-top: 10px;
	font-size: 10px;
}
.footer button {
	padding: 12px 28px 12px 30px;
	border: none;
	font-size: 100%;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 300;
	background-color: var(--primary);
	color: white;
	position: relative;
	width: fit-content;
	font-family: "Poppins", sans-serif;
}
@media (max-width: 1200px) {
	.footer-column {
		grid-template-columns: 1fr;
		gap: 50px;
	}
}
