/*event list style*/
.eb-event-card-container{
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}
.eb-event-card {
    padding: 8px;
    width: 25%;
}
.eb-event-card-content{
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.eb-event-card-thumb {
    display: block;
    width: 100%;
    height: 170.09px;
    position: relative;
    overflow: hidden;
}
.eb-event-card-thumb:before{
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5), transparent);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: -57px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.eb-event-card-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.eb-event-card-thumb:hover img {
    -webkit-transform: scale(1.09);
    transform: scale(1.09);
}
.eb-event-card-meta{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 10px 10px 0;
}
.eb-event-card-meta .eb-card-meta-left-wrap{
    max-width: 50%;
    display: flex;
    align-items: center;
}
.eb-event-card-meta .eb-card-date-wrap{
    width: 46px;
    height: 46px;
    background: #0DC15C;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.eb-event-card-meta .eb-card-date-wrap .eb-card-date{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.eb-event-card-meta .eb-card-date .eb-card-day{
    line-height: 18px;
    font-weight: 600;
    font-size: 16px;
}
.eb-event-card-meta .eb-card-date .eb-card-month-name{
    line-height: 14px;
    font-weight: 400;
    font-size: 12px;
}
.eb-event-card-meta .eb-card-date-wrap i{
    font-size: 20px;
}
.eb-event-type{
    font-size: 17px;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.eb-event-type i.ebi-video-icon{
    font-size: 27px;
    margin-top: 0;
    line-height: 19px;
}
.eb-event-type span{
    margin-left: 6px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: calc(100% - 20px);
}

.eb-status-live {
    height: 46px;
    width: 46px;
    margin-left: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: red;
}
.eb-status-live > svg ellipse {
    transform-origin: 50% 50%;
    animation: on-air-circle 2s infinite;
}
@keyframes on-air-circle{
    0% {
        opacity: .1;
        transform: scale(1);
    }
    25% {
        opacity: 1;
        transform: scale(2.4);
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: .3;
    }
}
.eb-status-live > svg path.on-air-out {
    animation: on-air-out 2s infinite;
}
@keyframes on-air-out{
    0% {
        opacity: .3;
    }
    50% {
        opacity: .3;
    }

    75% {
        opacity: 1;
    }
    100% {
        opacity: .3;
    }
}
.eb-status-live > svg path.on-air-in {
    animation: on-air-in 2s infinite;
}
@keyframes on-air-in{
    0% {
        opacity: .3;
    }
    25% {
        opacity: .3;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: .3;
    }
}


.eb-event-card-details {
    position: relative;
    padding: 24px 15px 15px;
}
.eb-event-status-review-block{
    position: absolute;
    top: -12px;
    width: calc(100% - 30px);
    max-width: calc(100% - 30px);
}
.eb-event-status-review-block .eb-event-status-box{
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    /*background: #E9EAEE;*/
    /*color: #575E7A;*/
    border-radius: 30px;
    padding: 5px 15px;
    background: var(--eb-red-status-bg);
    color: var(--eb-red-status-color);
}
.eb-event-status-review-block .eb-event-status-box.eb-remaining-status{
    background: var(--eb-red-status-bg);
    color: var(--eb-red-status-color);
}
.eb-event-card-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 25px;
    font-size: 17px;
    font-weight: 500;
    min-height: 50px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.eb-event-card-title:hover{
    color: var(--eb-primary-color);
}
.eb-event-card-price {
    font-size: 17px;
    font-weight: 600;
    margin-top: 8px;
}
.eb-event-card-date {
    min-height: 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #4F4F4F;
    margin-top: 7px;
}
.eb-book-button {
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
    padding: 5px 15px;
    background: #0DC15C;
    display: inline-block;
    text-align: center;
    color: #fff;
    border: 0;
    box-shadow: 0 0 0 0;
    outline: none;
    cursor: pointer;
    margin: 12px 0 0 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.eb-book-button:hover{
    background: var(--eb-primary-color);
}

@media (max-width: 1200px){
    .eb-event-card-thumb{
        height: 165.58px;
    }
}
@media (max-width: 1080px){
    .eb-event-card-thumb{
        height: 147.48px;
    }
}
@media (max-width: 1024px){
    .eb-event-card-thumb{
        height: 189px;
    }
}
@media (max-width: 991px){
    .eb-event-card-thumb{
        height: 182.36px;
    }
}
@media (max-width: 820px){
    .eb-event-card-thumb{
        height: 147.89px;
    }
}
@media (max-width: 768px){
    .eb-event-card-thumb{
        height: 137.52px;
    }
}
@media (max-width: 767px){
    .eb-event-card-thumb{
        height: 211.42px;
    }
}
@media (max-width: 640px){
    .eb-event-card-thumb{
        height: 173.11px;
    }
}
@media (max-width: 575px){
    .eb-event-card-thumb{
        height: 317.89px;
    }
}
@media (max-width: 425px){
    .eb-event-card-thumb{
        height: 227.41px;
    }
}
@media (max-width: 360px){
    .eb-event-card-thumb{
        height: 188.19px;
    }
}
@media (max-width: 320px){
    .eb-event-card-thumb{
        height: 164.06px;
    }
}


@media (max-width: 1024px){
    .eb-event-card{
        width: 33.333%;
    }
    .eb-event-card-thumb{

    }
}
@media (max-width: 767px){
    .eb-event-card{
        width: 50%;
    }
}
@media (max-width: 575px){
    .eb-event-card{
        width: 100%;
    }
}

.eb-event-card-price-inner{
    display: flex;
    align-items: center;
    gap: 3px;
}
.eb-del-price{
    opacity: 0.5;
    text-decoration: line-through;
}
.eb-discounted-price{
    color: var(--eb-primary-color);
}

.eb-custom-tooltip-wrap{
    position: relative;
    cursor: pointer;
    display: inline-block;
    height: 24px;
    width: 11px;
}
.eb-custom-tooltip-btn{
    font-size: 24px;
    height: 24px;
    display: inline-block;
    line-height: 33px;
}
.eb-custom-tooltip-title{
    position: absolute;
    top: -34px;
    left: 0;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    margin-left: -48px;
    opacity: 0;
    visibility: hidden;
}
.eb-custom-tooltip-title.eb-tooltip-venue{
    margin-left: -35px;
}
.eb-custom-tooltip-title.eb-tooltip-to-be-announced{
    margin-left: -51px;
}
.eb-custom-tooltip-title.eb-tooltip-online-event{
    margin-left: -37px;
}

.custom-tooltip {
    position: absolute;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
    z-index: 9999;
}

.eb-custom-tooltip-title:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-width: 6px 6px 0 6px;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
    border-style: solid;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}
.eb-custom-tooltip-wrap:hover .eb-custom-tooltip-title{
    opacity: 1;
    visibility: visible;
}
.eb-custom-tooltip-wrap.eb-tooltip-width-auto{
    display: flex;
    align-items: center;
    height: auto;
    width: auto;
}

.eb-event-card-date-time-wrap span{
    position: relative;
}
.eb-event-card-date-time-wrap span:not(:first-child){
    padding-left: 8px;
    margin-left: 3px;
}
.eb-event-card-date-time-wrap span:not(:first-child):before{
    content: "";
    height: 4px;
    width: 4px;
    background: #999;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}