/* Basic setup */
:host {
--enviso-primary-color: #0050f5;
--enviso-secondary-color: #0050f5;
font-family: var(--bodyfontfamily), var(--nv-fallback-ff), Helvetica, Arial, sans-serif;
}
/* Hide a few things */
.enviso-filters,
.enviso-ticket-widget-offer-name,
.enviso-description,
.enviso-amount-inner {
display: none;
}
/* Different border color for the regular tickets vs group tickets */
enviso-ticket-item:nth-of-type(1),
enviso-ticket-item:nth-of-type(2),
enviso-ticket-item:nth-of-type(3) {
border-left-color: hsl(220 100% 66% / 1);
}
/* Distinction between regular and group tickets */
enviso-ticket-item:nth-of-type(3) {
margin-bottom: 4em;
}
@media (min-width: 700px) {
enviso-ticket-item:nth-of-type(3) {
grid-column: 1/-1 !important;
max-width: calc(50% - 1em) !important;
}
}
/* Add johnny's silhouette next to the tickets' name */
.enviso-name:before {
content: "";
background: url(https://www.johnnyhallydaylexposition.com/wp-content/uploads/2023/05/silhouette_Blue.png);
width: 20px;
height: 27px;
position: relative;
display: inline-block;
background-size: cover;
margin-right: 10px;
margin-bottom: -5px;
}
.enviso-info {
position:relative;
}
/* Add icon for each pack at the end of the ticket block */
enviso-ticket-item:nth-of-type(4):after {
content: "";
background: url(https://www.johnnyhallydaylexposition.com/wp-content/uploads/2023/06/JOH-A-GENOUX_OR-100px.png);
width: 50px;
height: calc(123px / 2);
position: absolute;
display: inline-block;
background-size: cover;
right: 5em;
top: 1em;
}
enviso-ticket-item:nth-of-type(5):after {
content: "";
background:
url(https://www.johnnyhallydaylexposition.com/wp-content/uploads/2023/06/JOH-A-GENOUX_Platine-100px.png);
width: 50px;
height: calc(123px / 2);
position: absolute;
display: inline-block;
background-size: cover;
right: 5em;
top: 1em;
}
enviso-ticket-item:nth-of-type(6):after {
content: "";
background:
url(https://www.johnnyhallydaylexposition.com/wp-content/uploads/2023/06/JOH-A-GENOUX_Diamant-100px.png);
width: 50px;
height: calc(123px / 2);
position: absolute;
display: inline-block;
background-size: cover;
right: 5em;
top: 1em;
}
enviso-ticket-item:nth-of-type(7):after {
content: "";
background:
url(https://www.johnnyhallydaylexposition.com/wp-content/uploads/2023/06/JOH-A-GENOUX_LEGENDE-100px-FINAL.png);
width: 50px;
height: calc(123px / 2);
position: absolute;
display: inline-block;
background-size: cover;
right: 5em;
top: 1em;
}
/* Center the picture for tickets' thumbs */
.enviso-basket-offer-image {
background-position: center center;
}
/* Fix issues with payment confirmation text color */
enviso-payment {
color: var(--enviso-primary-color);
}
enviso-ticket-order-complete-step {
color: var(--enviso-primary-color);
}