/*
    Events Page
    page-events.php
*/
.events__event {
    margin-bottom: 2em;
}
.events__event-wrapper {
    position:relative;
    height: 400px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    display: block;
    margin: auto;
    text-align: center !important;
}

.events__event-wrapper:hover .events__event-poster {
    transform: scale(1.05);
}

.events__event-wrapper a {
    text-align: center;
    width: 100%;
    height: 100%;
}
.events__event-poster {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    object-fit: cover;
}

.events__event-flag {
    height: .8em;
    width:auto;
    margin-top: -.2em;
}

.events__event-info {
    position: absolute;
    bottom: 0;
    background-color: rgba(0,0,0,.7);
    width: 100%;
}

.events__event-venue,
.events__event-date,
.events__event-time {
    text-align: center !important;
}

.events__event-info p {
    margin-bottom: 0;
}

.events__event-venue {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.events__event-title {
    width: 100%;
    text-align: center;
    transition: all .1s linear;
}

.events__event-title h5 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.events__event-title h5 {
    margin: .5em 0;
}

.events__event-buyticket {
    text-indent: 0 !important;
}

.events-country-wrapper {
    overflow:hidden;
    height:10rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.background-flag {
    width: 100%;
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .3s linear;
}

.background-flag:hover {
	filter: brightness(80%);
    transform: scale(1.1);
}

.event-country-title-wrapper {
    height:50%;width:100%;
}

.event-country-flag-wrapper {
    width:100%;
    overflow:hidden;
    position:relative;
}

.event-country-row-wrapper {
    padding:1em;
    background-color:rgba(0,0,0,.2);
    border-radius:1em;
}

.event-country-list-item-wrapper {
    width: 100%;
}

.event-country-list-item {
    width: 100%;
    aspect-ratio: 9/16;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .3s linear;
}

.event-country-list-item:hover {
    transform: scale(1.1);
}



.one-line {
    
}