.ticket-content {
    height: 250px;
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}
.ticket-left {
    height: 100%;
    width: 170px;
    border: 1px solid #535353;
    border-right: 1px dashed #535353;
    border-radius: 20px;
    position: relative;
}
.ticket-left:after {
    content: "";
    height: 20px;
    width: 100px;
    border-right: 1px solid #535353;
    border-bottom: 1px solid #535353;
    border-bottom-right-radius: 20px;
    position: absolute;
    right: -1px;
    bottom: -1px;
}
.ticket-right {
    height: 100%;
    width: calc(100% - 170px);
    border: 1px solid #535353;
    border-left: none;
    border-radius: 20px;
    position: relative;
}
.ticket-right:before {
    content: "";
    height: 250px;
    width: 100px;
    border-top: 1px solid #535353;
    border-bottom: 1px solid #535353;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    border-left: 1px dashed #535353;
    position: absolute;
    left: 0;
    top: -1px;
}
.ticket-right:after {
    content: "";
    height: 20px;
    width: 100px;
    border-left: 1px solid #535353;
    border-top: 1px solid #535353;
    border-top-left-radius: 20px;
    position: absolute;
    top: -1px;
    bottom: -1px;
}
h1.in-ticket {
    margin-top: 30px;
    width: 100%;
    height: 40px;
    background: #535353;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-transform: uppercase;
}
h3.in-ticket
{
    margin: 0;
    padding: 0 10px;
    font-weight: 600;
}
h4.in-ticket {
    padding: 0 10px;
    word-wrap: break-word;
    box-sizing: border-box;
}
h4.in-ticket-bis {
    padding: 0 10px;
    margin: 0;
    word-wrap: break-word;
    box-sizing: border-box;
    font-weight: 600;
}
p.in-ticket {
    padding: 0;
    margin: 0 10px 0;
    font-size: 14px;
}
.ticket-remaining-container {
    width: calc(100% - 20px);
    height: 20px;
    margin: 0 10px;
    border: 1px solid #535353;
    border-radius: 12px;
    margin-bottom: 8px;
}
.ticket-remaining {
    height: 20px;
    width: 100%;
    background: rgb(228,38,24);
    background: linear-gradient(135deg, rgba(228,38,24,1) 0%, rgba(253,29,208,1) 81%, rgba(252,69,166,1) 100%);
    border-radius: 10px;
}
.ticket-details {
    width: calc(100% - 20px);
    height: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
.ticket-details-logo {
    height: 150px;
    text-align: center;
    display: block;
    margin-bottom: 20px;
}
.ticket-details-text {
    width: 100%;
}
.ticket-number {
    margin-left: 10px;
    border-radius: 8px;
    height: 40px;
    width: 40px;
    border: #676767 1px solid;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}
.ticket-utils {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 150px;
}
.ticket-amicaliste-message {
    margin: 0;
    padding: 0 10px;
}
.ticket-soldout-message {
    margin: 0;
    padding: 0 10px;
    font-weight: 700;
    font-size: 18px;
    color: #E42618;
}
@media (max-width: 450px) {
    .ticket-details-logo {
        display: none !important;
    }
    h1.in-ticket {
        font-size: 20px;
    }
    h3.in-ticket {
        font-size: 18px;
    }
    h4.in-ticket {
        font-size: 16px;
    }
}
@media (max-width: 685px) {
    .ticket-left {
        display: none;
    }
    .ticket-right {
        width: 100% !important;
    }
    .ticket-right::before {
        border-left-style: solid !important;
    }
}