.tickets-items{
    padding: 0;
}

.tickets-item{
    height: 400px;
    list-style: none;
}

.tickets-item .tickets-item__image {
    height: 180px;
    display: block;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
}

.tickets-item__badge{
    background: rgb(237,1,65);
    color: rgb(255,255,255);
    border-radius: 0 8px 5px 0;
    height: 27px;
    width: 56px;
    font-weight: bold;
    text-align: center;
    position: absolute;
    top: 20px;
}

.tickets-item__body{
    height: 220px;
    background: rgb(238,238,238);
    padding: 0 15px 20px 15px;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.tickets-item__header{
    display: flex;
    justify-content: space-between;
    height: 28px;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
}

.tickets-item__date:before{
    content:"";
    background-size: 100%;
    background: url("../../images/v3__date-icon.png") no-repeat center;
    display: inline-block;
    width: 21px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.tickets-item__address:before{
    content:"";
    background-size: 100%;
    background: url("../../images/v3__icon_address.png") no-repeat center;
    display: inline-block;
    width: 21px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.tickets-item__date, .tickets-item__address{
    position: relative;
    padding-left: 26px;
}


.tickets-item__title{
    font-size: 23px;
    line-height: 26px;
    cursor: pointer;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tickets-item__title:focus{
    outline: none;
}

.tickets-item__preview{
    font-size: 15px;
    color: rgb(98,98,98);
    max-height: 65px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tickets-item__button{
    background: rgb(239,0,65);
    color: rgb(255,255,255);
    width: 50%;
    float: left;
    white-space: nowrap;
}

.tickets-item__price{
    width: 50%;
    float: left;
    padding-right: 10px;
}

.tickets-item__price__title{
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
}
.tickets-item__price__text{
    color: rgb(40,165,220);
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
}

.tickets-item__footer{
    margin-top: 10px;
}

@media screen and (min-width: 720px){
    .tickets-item__button{
        font-size: 15px;
    }
}


@media (min-width: 768px) and (max-width: 889px){
    .tickets-item__price__title,.tickets-item__price__text{
        font-size: 14px;
    }
    .tickets-item__button{
        font-size: 14px;
        padding: 10px 0;
    }

    .tickets-item__header{
        font-size: 13px;
        white-space: nowrap;
    }
}