@charset "utf-8";

/* CSS Document */
/*----------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------PORTAIL---------------------*/
/*----------------------------------------------------------------------------------------------------------*/

.container_portail {
		position: relative;
		width: 100%;
		min-height: 100vh;
		background: var(--background-radient);
		background-size: 200% 200%;
		animation: fond_glow 14s ease-in-out infinite;
		padding: 8% 4%;
		box-sizing: border-box;
}

.carte_portail {
		position: relative;
		z-index: 1;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
		flex-direction: column;
}

/*----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------ENTETE------*/

.entete_portail {
		width: 100%;
		flex-direction: column;
		margin-bottom: 8%;
}

.logo_portail {
		width: 90px;
		height: 90px;
		object-fit: contain;
		background-color: #FFFFFF;
		border-radius: 50%;
		padding: 15px;
		box-sizing: border-box;
		box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
}

.titre_portail {
		color: #FFFFFF;
		font-family: 'poppinssemibold';
		font-size: 1.8em;
		letter-spacing: 2px;
		margin-top: 5%;
}

.soustitre_portail {
		color: #FFFFFF;
		font-family: 'poppinsregular';
		font-size: 0.9em;
		opacity: 0.8;
		margin-top: 2%;
}

/*----------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------------------LIENS-----------*/

.liste_liens_portail {
		width: 100%;
		display: flex;
		flex-direction: column;
}

.lien_portail {
		display: flex;
		align-items: center;
		width: 100%;
		background-color: #FFFFFF;
		border-radius: 50px;
		padding: 4% 6%;
		box-sizing: border-box;
		margin-bottom: 5%;
		text-decoration: none;
		box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
		transition: box-shadow 0.2s ease;
}

.lien_portail:hover {
		box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
}

.icone_lien_portail {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		min-width: 32px;
		color: var(--background);
		margin-right: 5%;
}

.texte_lien_portail {
		color: var(--title-color);
		font-family: 'poppinsmedium';
		font-size: 1em;
		word-break: break-word;
		flex: 1;
}

.fleche_lien_portail {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		min-width: 32px;
		margin-left: 4%;
		border-radius: 50%;
		background-color: var(--background);
		color: #FFFFFF;
		overflow: hidden;
		transition: background-color 0.2s ease;
}

.lien_portail:hover .fleche_lien_portail {
		background-color: var(--selector);
}

.fleche_rouleau {
		position: relative;
		width: 16px;
		height: 16px;
		overflow: hidden;
}

.fleche_icone {
		position: absolute;
		top: 0;
		left: 0;
		transition: transform 0.4s ease, opacity 0.4s ease;
}

.fleche_icone_copie {
		transform: translateX(-150%);
		opacity: 0;
}

.lien_portail:hover .fleche_icone:not(.fleche_icone_copie) {
		transform: translateX(150%);
		opacity: 0;
}

.lien_portail:hover .fleche_icone_copie {
		transform: translateX(0);
		opacity: 1;
}

/*----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------RWD---*/

@media (max-width:576px) {

		.container_portail {
				padding: 15% 6%;
		}

		.titre_portail {
				font-size: 1.5em;
		}

		.lien_portail {
				padding: 5% 6%;
		}

}
