*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


body{
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 14px;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 100vh;
	box-sizing: border-box;
}

/* Aspectes generals: Tipografia */

.semibold-titular{
	font-family: Poppins;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
}

.semibold-subtitular{
	font-family: Poppins;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 20px;
}

.semibold-text{
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 16px;
}

.regular-text{
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
}

/* Encapçalat */

.cont-confirmacio{
	background-color: #fcf8ed;
	width: 100%;
	height: 100vh;
}

	.linia{
		padding-top: 52px;
	}

	.confirmacio{
		margin-top: 40px;
	}

		.confirmacio .semibold-titular{
			margin-top: 30px;
		}

	.linia-dos{
		padding-top: 170px;
	}

		.animado-revelacion{
				position: relative;
				opacity: 1;
				overflow: hidden;
			}

			.animado-revelacion::before {
				content: '';
				position: absolute;
				top: 0;
				right: 0;
				width: 100%;
				height: 100%;
				background-color: #fcf8ed;
				transition: width 4s ease-out;
				z-index: 1;
			}

			.animado-revelacion.visible::before {
				width: 0%;
			}

		.animado-revelacion-dos{
				position: relative;
				opacity: 1;
				overflow: hidden;
			}

			.animado-revelacion-dos::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background-color: #fcf8ed;
				transition: width 7s ease-out;
				z-index: 1;
			}

			.animado-revelacion-dos.visible::before {
				width: 0%;
			}