#AccorPage {
	font-family: "Poppins", sans-serif;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	gap: 12px 0;
}
#AccorPage .tab {
	position: relative;
	background: #fff;
	padding: 0 20px 20px;
	box-shadow: 0 15px 25px rgb(0 0 0 / 5%);
	border-radius: 5px;
	overflow: hidden;
}
#AccorPage .tab input {
	appearance: none;
	-webkit-appearance: none;
}
#AccorPage .tab label {
	display: flex;
	align-items: center;
	cursor: pointer;
}
#AccorPage .tab label::after {
	content: "+";
	position: absolute;
	right: 20px;
	font-size: 2em;
	color: rgb(0 0 0 / 10%);
	transition: transform 1s;
}
#AccorPage .tab:hover label::after {
	color: #333;
}
#AccorPage .tab input:checked ~ label::after {
	transform: rotate(135deg);
	color: #fff;
}
#AccorPage .tab label h2 {
	width: 40px;
	height: 40px;
	font-size: 1.5em;
	background: #333;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.25em;
	border-radius: 5px;
	margin-right: 10px;
}
#AccorPage .tab input:checked ~ label h2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: rgb(255 255 255 / 20%);
	font-size: 8em;
	justify-content: flex-end;
	padding: 20px;
}
#AccorPage .tab:nth-child(1) label h2 {
	background: linear-gradient(135deg, #70f570, #49c628);
}
#AccorPage .tab:nth-child(2) label h2 {
	background: linear-gradient(135deg, #3c8ce7, #00eaff);
}
#AccorPage .tab:nth-child(3) label h2 {
	background: linear-gradient(135deg, #ff96f9, #c32bac);
}
#AccorPage .tab:nth-child(4) label h2 {
	background: linear-gradient(135deg, #fd6e6a, #ffc600);
}
#AccorPage .tab label h3 {
	position: relative;
	font-size: 1.1em;
	font-weight: 500;
	color: #333;
	z-index: 10;
}
#AccorPage .tab input:checked ~ label h3 {
	background: #fff;
	padding: 2px 10px;
	color: #333;
	border-radius: 2px;
	box-shadow: 0 5px 15px rgb(0 0 0 / 5%);
}
#AccorPage .tab .content {
	max-height: 0;
	transition: 0.5s;
	overflow: hidden;
}
#AccorPage .tab input:checked ~ .content {
	max-height: 100vh;
}
#AccorPage .tab .content p {
	position: relative;
	padding: 10px 0;
	color: #333;
	z-index: 10;
}
#AccorPage .tab input:checked ~ .content p {
	color: #fff;
}
