.locationgrid{
    width: 80vw;
    gap: calc(0.7vw + 0.7rem);
}

.locationtile{
    background-color: var(--color-accent-cream);
    color: var(--color-dark);
    border-radius: 10px;
    overflow: hidden;

}

.locationimage{
    max-height: calc(9rem + 9vw);
    object-fit: cover;
}

.locationtilecontent{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(0.75vw + 0.75rem);
    gap: calc(0.25vw + 0.25rem);
}

.locationbutton{
    background-color: var(--color-accent-purple);
    color: var(--color-accent-cream);
    border: none;
    text-decoration: none;
    border-radius: 5px;
    padding: calc(0.5vw + 0.5rem);
    font-weight: bold;
    align-content: center;
    justify-content: center;
    transition: 0.2s ease-in-out;
}

.locationbutton:hover{
    background-color: #601c93;
    cursor: pointer;
}

.locationinfo{
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-accent-cream);
}

.showact{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.showact[sortback]{
    justify-content: end;
}

.showimage{
    width: 55vw;
    object-fit: contain;
}

.showimage[sortback]{
    order: 2;
}

.showcontent{
    width: 40vw;
}



.actimages{
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    justify-content: center;
}

.actimages img{
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    overflow: hidden;
}

.ticketbutton{
    font-size: calc(1.5rem + 1.5vw);
    padding: calc(0.5vw + 0.5rem);
    border-radius: 5px;
    border: 5px solid var(--color-accent-cream);
    text-decoration: none;
    color: var(--color-accent-cream);
    transition: 0.2s ease-in-out;
}

.ticketbutton:hover{
    background-color: rgba(255, 248, 231, 0.3);
    cursor: pointer;
}

@media only screen and (max-width: 600px), only screen and (orientation: portrait) {
    .locationgrid{
        width: 95vw;
    }

    .showact{
        flex-direction: column;
    }

    .showimage{
        width: 95vw;
    }

    .showcontent{
        width: 95vw;
        align-self: center;
    }

    .showimage[sortback]{
        order: 1;
    }

    .showcontent[sortfor]{
        order: 2;
    }

    .showact[sortback]{
        align-items: end;
    }

    .ticketbutton{
        font-size: calc(1rem + 1vw);
        padding: calc(0.25vw + 0.25rem);
        border-radius: 5px;
        border: 2px solid var(--color-accent-cream);
        text-decoration: none;
        color: var(--color-accent-cream);
        transition: 0.2s ease-in-out;
    }
}