.single-reservation-card-items{
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.single-reservation-card-item{
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    margin-bottom: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.single-reservation-card-img-wrapper{
    position: relative;
    height: 200px;
    width: 100%;
}

.single-reservation-card-img-wrapper img{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 5px 5px 0px 0px;
    object-fit: cover;
}

.single-reservation-card-price{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    font-family: 'Poppins',sans-serif;
    color: white;
    font-weight: 600;
    padding: 5px 15px;
    background-color: var(--wp--preset--color--rouge);
}

.single-reservation-card-price::before{
    content: "";
    display: block;
    background-color: white;
    width: 15px;
    height: 76%;
    position: absolute;
    right: -17px;
    bottom: 0;
    transform: translate(calc(100% - 10px), 0px) skew(20deg, 0deg);

}

.single-reservation-card-price::after{
   content: "";
   display: block;
   background-color: var(--wp--preset--color--rouge);
   width: 15px;
   height: 100%;
   position: absolute;
   right: -2px;
   bottom: 0;
   transform: translate(calc(100% - 10px), 0px) skew(20deg, 0deg);
}

.single-reservation-card-text-wrapper{
    background-color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-reservation-card-dispo{
    text-align: center;
    font-weight: 600;
    color: #51545e;
    font-family: 'Poppins',sans-serif;
    padding-top: 1em;
    margin-bottom: 1em;
    font-size: 20px;
}

.single-reservation-card-title{
    text-align: center;
    color: #51545e;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 0 2em;
    margin-bottom: .5em;
}

.single-reservation-card-ticket-type{
    text-align: center;
    color: #51545e;
    font-family: 'Poppins',sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 0 2em;
    margin-bottom: 15px;
}

.single-reservation-card-access-type{
    text-align: center;
    color: #51545e;
    font-family: 'Poppins',sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 0 2em;
    margin-bottom: 10px;
}

.single-reservation-card-link{
    display: flex;
    justify-content: center;
    padding: 0.5rem 1em;
    margin: auto 0 0 0;
}

.single-reservation-card-link a{
    background: none;
    color: var(--wp--preset--color--white);
    display: flex;
    background-color: var(--wp--preset--color--rouge);
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--wp--preset--color--rouge);
    gap: 10px;
    width: 100%;
}

.single-reservation-card-svg-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(98%);
    height: 28px;
    background: url('../../../assets/img/svg/ticket-border.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

.single-reservation-card-svg-bottom svg{
    width: 100%;

}

@media (max-width:576px){
    .single-reservation-card-items{
        flex-direction: column;
    }

    .single-reservation-card-img-wrapper{
        position: relative;
        height: 150px;
        width: 100%;
    }
}