/* Styles par défaut pour la popup de tarifs gérée par popupTarif.js */
.popupTarifs {
	margin: auto;
	width: 450px;
	background-color: #FFF;
	padding: 10px;
	font-size: 12px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	border: 3px solid #EEE;
	border-radius: 10px;
	overflow-y: auto;
}

.popupTarifs .body table .place {
	font-weight: bold;
}

/* Entête du panneau */
.popupTarifs .header {
	background: none transparent;
	padding: 5px 10px;
	color: #3e3c3d;
}

.popupTarifs .header .title {
	font-family: Arial Narrow, Arial, sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

.popupTarifs .header .close {
	margin-top: 3px;
	float: right;
	cursor: pointer;
	border: none;
	background: none transparent;
	text-decoration: underline;
	font-size: 10px;
}

.popupTarifs tr .body span {
	display: ruby;
}

/* Corps du panneau */
.popupTarifs .body {
	max-height: 800px;
	overflow: auto;
	background: url("../../images/separateur_bas.gif") repeat-x scroll 50% -10px transparent;
	padding: 10px;
	text-align: center;
}

.popupTarifs .body table {
	margin: auto;
	width: 100%;
}

.popupTarifs .body table thead th {
	padding: 10px 0;
	font-size: 12px;
	font-family: Arial, sans-serif;
	font-weight: normal;
}

.popupTarifs .body table .place {
	text-align: left;
	padding: 0 10px;
}

.popupTarifs .body table .place.sep {
	width: 10px;
	padding: 0;
	text-align: center;
}

.popupTarifs .body table td.place {
	padding: 0;
	white-space: nowrap;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: bold;
}

.popupTarifs .body table .price {
	min-width: 400px;
}

.popupTarifs .body table .price select {
	margin: 0;
	width: 90%;
	font-size: 11px;
	padding: 7px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg fill='black' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 30px;
}

.popupTarifs .body table .price select.disabled {
	border: none;
	color: #000;
}

/* Codes promo */
.popupTarifs .body table .codePromo {
	padding: 0 2px;
	text-align: center;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: bold;
}

.popupTarifs.hideCodesPromo .body table .codePromo {
	display: none;
}

.popupTarifs .body table th.codePromo {
	white-space: nowrap;
}

.popupTarifs .body table .codePromo input {
	width: 100px;
	visibility: hidden;
	font-size: 13px;
	font-weight: bold;
}

.popupTarifs .body table .codePromoPrompted .codePromo input {
	visibility: visible;
	padding-top: 6px;
}

/* Annulation / Fermer */
.popupTarifs .body table .cancel {
	width: 30px;
	text-align: center;
}

.popupTarifs .body table .cancel input,
.popupTarifs .body table .cancel button {
	cursor: pointer;
	border: none;
	background: transparent url(../images/iko-croix.png) no-repeat top center;
	color: #FFF;
	width: 17px;
	height: 17px;
	font-weight: bold;
	font-size: 12px;
}

.popupTarifs .body table .cancel input:hover,
.popupTarifs .body table .cancel button:hover {
	background-position: center bottom;
}

.popupTarifs .body table .added {
	width: 20px;
	text-align: center;
	background: transparent url(../images/ico_ok.gif) no-repeat top center;
}

.popupTarifs .body table tbody tr td {
	padding-top: 2px;
	padding-bottom: 2px;
}

/* Actions */
.popupTarifs .submit {
	margin-bottom: 10px;
	border: none;
	text-align: center;
	position: relative;
	padding: 2%;
}

.popupTarifs .submit button,
.popupTarifs .submit input {
	cursor: pointer;
	margin: 0 5px;
	border-radius: 5px;
	width: 160px;
	height: 40px;
	background-color: #999;
	padding: 0;
	color: #FFF;
	text-align: center;
	font-size: 21px;
}

.popupTarifs .submit .cancel {
	color: #666;
}

.popupTarifs .justificatif {
	font-style: italic;
	font-size: 10px;
	position: relative;
	top: 5px;
}

/* Styles pour les tablettes */
@media (max-width: 768px) {
	.popupTarifs {
		width: 300px;
		padding: 15px;
		font-size: 14px;
		border: 3px solid #ededed;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	}

	.popupTarifs .body {
		max-height: 320px;
	}

	.popupTarifs .submit {
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.popupTarifs .body table .price {
		min-width: 250px;
	}

	.popupTarifs .header .close {
		margin-top: 0;
	}

	.popupTarifs .submit .cancel {
		margin-top: 10px;
	}
}

/* Styles pour les mobiles */
@media (max-width: 480px) {
	.popupTarifs {
		padding: 10px;
		font-size: 12px;
		border: 3px solid #EEE;
		width: 90%;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, .1);
		overflow: hidden;
	}

	.popupTarifs .body {
		max-height: 270px;
	}

	.popupTarifs .header .title,
	.popupTarifs .submit {
		width: 100%;
		text-align: center;
	}

	.popupTarifs .header .close {
		margin-top: 4px;
	}

	.popupTarifs .submit .cancel {
		margin-top: 10px;
	}

	.popupTarifs .body table .price {
		min-width: 100%;
	}

	.popupTarifs .body table .price select {
		width: 95%;
		float: left;
	}

	.popupTarifs .body table .codePromo input {
		width: 100px;
	}
}