/* STYLES VÉLOSANNE */
div.cardVelosanne{
	background: white;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,.19), 0 6px 6px #52a552;
    cursor: pointer;
    margin: 10px !important;
    padding: 20px;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.025);
    text-align: center;
    width: 283px;
}
div.cardVelosanne-big-card{
	background: white;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,.19), 0 6px 6px #52a552;
    cursor: pointer;
    margin: 20px auto;
    padding: 20px;
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.025);
    text-align: center;
    width: 100%;
}
/* BOUTON PARAMETRES COMMUNS */
button.bouton {
  font-weight: bold;
  border: none;
  padding: 9px 25px;
  transition: color 0.2s ease-in-out;
  border-radius: 8px;
  font-size: 12pt;
  margin: 10px;
  box-shadow: 2px 2px 2px #877d7d;
  text-decoration: none;
}
/* BOUTON NIVEAU 1 */
/* fond de la section blanche, grise et verte */
button.bouton.jaune {
  background-color: #f7d21c;
  color: black !important;
}
button.bouton.jaune:hover {
  color: red !important;
}
/* BOUTON NIVEAU 2 */
/* fond de la section blanche et grise */
button.bouton.vert {
  background-color: #5AAF4F;
  box-shadow: 2px 2px 2px #3B8731;
  color: white !important;
}
button.bouton.vert:hover {
  color: #f7d21c !important;
}
/* fond de la section verte */
#sp-top-vert button.bouton.vert, #sp-top-vert-2 button.bouton.vert, #sp-bottom-vert button.bouton.vert, #sp-bottom-vert-2 button.bouton.vert {
  background-color: #5AAF4F;
  box-shadow: 2px 2px 2px #3B8731;
  color: white !important;
  border: 1px solid white;
}
#sp-top-vert button.bouton.vert:hover, #sp-top-vert-2 button.bouton.vert:hover, #sp-bottom-vert button.bouton.vert:hover, #sp-bottom-vert-2 button.bouton.vert:hover {
  color: #f7d21c !important;
  border: 1px solid #f7d21c;
}
/* BOUTON NIVEAU 3 */
/* fond de la section blanc et gris */
button.bouton.blanc {
  background-color: white;
  border: 1px solid #5AAF4F;
  box-shadow: 2px 2px 2px #5AAF4F;
  color: #5AAF4F !important;
}
button.bouton.blanc:hover {
  color: #3B8731 !important;
  box-shadow: 2px 2px 2px #3B8731;
  border: 1px solid #3B8731;
}
/* CONCERTS */

.ticket {
	margin: 20px auto;
	display: flex;
	background: white;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
	width : 87%;
	position: relative;
}
.left {
	display: flex;
}
.image img{
	object-fit: cover; 
	width: 370px; 
	height: 100%; 
}
.concert_reseaux_sociaux a{ 
	font-size: 14pt; 
	margin: 5px 10px;
}
.admit-one {
	height: 231px;
	letter-spacing: 0.15em;
/*display: flex;

justify-content: space-around;*/
	writing-mode: vertical-rl;
	transform: rotate(-180deg);
	font-size: 7pt;
	color: white;
	padding: 5px;
	position: absolute;
    top: 0;
    left: 0;
	text-align: center;
}

.left .ticket-number {
height: 229px;
width: 297px;
display: flex;
justify-content: flex-end;
align-items: flex-end;
padding: 10px;
color: white;
}

.ticket-info {
padding: 10px 20px;
display: flex;
flex-direction: column;
text-align: center;
width: 56%;
align-items: center;
}

.date {
	border-top: 1px solid gray;
	border-bottom: 1px solid gray;
	padding: 5px 0;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
.date span:first-child {
	text-align: left;
	width: 100px;
}

.date span:last-child {
	text-align: right;
	width: 100px;
}
.show-name {
	font-size: 18px;
}

.time {
	color: #505050;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-weight: 700;
}
.left .time {
	font-size: 16px;
	margin-bottom: 5px;
}

.right {
	width: 200px;
	border-left: 1px dashed #404040;
}
.right .right-info-container {
	height: 210px;
	padding: 10px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.right .time {
	margin-top: 10px;
}
.image-container {
	position: relative;
	display: inline-block; /* Pour permettre le positionnement relatif */
}
.ticket-number {
	position: absolute;
	bottom: 0;
	left: 0;
	color: white;
	padding: 5px;
}
@media (max-width: 991px) {
	.left .ticket-number{
		display: none;
	}
}
@media (max-width: 767px) {
	
	
    .ticket {
        flex-direction: column;
        align-items: center;
		width: 100%;
    }
    .left {
        order: 1;
        display: block;
    }
    .right {
        order: 3;
        width: 100%;
        border: none;
        margin-top: 20px;
    }
    .ticket-info {
        order: 2;
        width: 100%;
		padding: 10px;
    }
	.image img {
    	width: 100%;
		margin: auto;
	}
	.right .right-info-container{
		height: 95%;
		padding: 0;
	}
	.time{
		 gap: 0px;
	}
}
