#customcal {
	font-family: Arial, sans-serif;
}

#customcal .customcal-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 105px;
}

#customcal .customcal-summary {
	background-color: #f8f8f8;
	padding: 20px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#customcal .customcal-summary .tl1 {
	font-family: 'Poppins';
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 25px;
	font-weight: 600;
	line-height: 30px;
}

#customcal .customcal-payment-summary p {
	font-family: 'Poppins';
	margin: 10px 0;
	font-size: 22px;
	line-height: 27px;
}

#customcal .customcal-disclaimer {
	font-family: 'Poppins';
	font-size: 15px;
	color: #666;
	margin-top: 20px;
	line-height: 20px;
}

#customcal .customcal-container {
	width: 100%;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#customcal .customcal-container p {
	font-family: 'Poppins';
	color: #000;
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 28px;
	font-weight: normal;
}

#customcal .customcal-input-group {
	margin-bottom: 20px;
}

#customcal label {
	display: block;
	font-family: 'Poppins';
	margin-bottom: 12px;
	font-weight: 600;
	color: #666;
	font-size: 14px;
	letter-spacing: 0.5px;
}

#customcal .customcal-input-field {
	width: 100%;
	position: relative;
}

#customcal .customcal-input-field:after {
	content: '';
	display: block;
	height: 1px;
	width: 100%;
	background-color: #ccc;
	position: absolute;
	bottom: 0;
	left: 0;
}

#customcal .customcal-select-container {
	position: relative;
	width: 100%;
}

#customcal select {
	width: 100%;
	font-family: 'Poppins';
	padding: 8px 0;
	border: none;
	font-size: 16px;
	box-sizing: border-box;
	background-color: transparent;
	appearance: none;
	-webkit-appearance: none;
	color: #333;
	background-image: none;
	/* Suppression de l'image de fond par défaut */
}

#customcal .customcal-select-arrow {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	pointer-events: none;
	display: inline-block;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

#customcal select:focus {
	outline: none;
}

#customcal .customcal-button-container {
	display: flex;
	justify-content: flex-start;
}

#customcal .customcal-button {
	display: inline-block;
	background-color: #222;
	color: white;
	border: none;
	padding: 12px 20px;
	font-size: 15px;
	cursor: pointer;
	transition: background-color 0.2s;
	text-decoration: none;
	line-height: 21px;
	font-weight: 600;
}

#customcal .customcal-button:hover {
	background-color: #000;
}

#customcal .customcal-result {
	margin-top: 30px;
	text-align: center;
	display: none;
}

#customcal .customcal-result.active {
	display: block;
	animation: customcalFadeIn 0.5s;
}

@keyframes customcalFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

#customcal .customcal-payment-amount {
	font-size: 36px;
	font-weight: 700;
	color: #000;
	margin: 15px 0;
}

#customcal .customcal-info-text {
	font-size: 14px;
	color: #777;
	margin-top: 5px;
}

/***** responsive ****/
@media only screen and ( max-width: 767px) {
	#customcal .customcal-grid {gap: 15px;}
	#customcal .customcal-grid {grid-template-columns: 1fr!important;}
	#customcal .customcal-summary .tl1 { font-size: 22px; line-height: 27px; margin-bottom: 0px!important; }
	#customcal .customcal-payment-summary p {margin: 10px 0; font-size: 18px; line-height: 23px;}
	#customcal .customcal-disclaimer {margin-top: 0px; line-height: 20px; margin-bottom: 0px;}
	#customcal .customcal-container p { font-size: 22px;}
	#customcal label { margin-bottom: 10px;	font-size: 13px;}
	#customcal .customcal-container {grid-row-start: 1;}
	#customcal .customcal-button {
		width: 100%;
		text-align: center;
	}
}

