* {
    --dark-purple: #505079;
    --light-purple: #7171b6;
    --lilac: #a3aff1;
}
/* Event Page */
/* .event.slider {
    margin-bottom: -60px;
}
.eBodyInfo {
    margin-top: 60px;
} */
.event .accommodationrow {
    display: flex;
    column-gap: 1em;
}
.event .accommodationrow > div:first-child {
    order: 2;
    position: relative;
    margin-left: 3em;
    margin-top: -12em;
}
.eInfoBox {
    color: white;
    background-color: var(--dark-purple);
    border-radius: 30px;
    padding: 3em;
    margin-bottom: 1em;
    position: sticky;
    top: 100px;
    width: fit-content;
    max-width: 100%;
    font-size: 1.4rem;
}
.eName {
    display: none;
}
.eVenue {
    font-size: 2.5rem;
    font-weight: 600;
}
.eDateRng {
    font-size: 1.8rem;
}
.eHours {
    margin: 1em 0;
}
.eHours > div {
    display: grid;
    grid-template-columns: 45% 65%;
    column-gap: 1em;
    align-items: center;
}
.eHours > div div:nth-child(2) {
    font-size: 1.8rem;
}
.eAddy a {
    color: white;
}
.eAddy a:hover {
    color: var(--highlight-colour);
}
.eCTA {
    display: flex;
    margin-top: 2em;
    gap: 1em;
}
.eCTA.btm {
    display: none;
}
.btn {
    padding: .25em .75em;
    border-radius: 10px;
    text-align: center;
    width: 90px;
    font-size: 1.5rem;
}
.btn.outLW {
    color: white;
    border: 2px solid white;
    transition: .3s;
	width: auto;
	font-family: 'Merriweather', serif;
}
.btn.fillP {
    color: white;
    background-color: var(--light-purple);
    border: 2px solid var(--light-purple);
    transition: .3s;
	width: auto;
	font-family: 'Merriweather', serif;
}
.btn.outLW:hover,
.btn.fillP:hover {
    color: var(--dark-purple);
    background-color: white;
    border: 2px solid var(--light-purple);
    transition: .3s;
}
.btn.outLP {
    color: var(--light-purple);
    border: 2px solid var(--light-purple);
    transition: .3s;
}
.btn.outLP:hover {
    color: white;
    background-color: var(--light-purple);
    border: 2px solid var(--light-purple);
    transition: .3s;
}
@media screen and (max-width:900px) {
    .eInfoBox {
        padding: 2em;
    }
}
@media screen and (max-width:750px) {
    .event .accommodationrow {
        flex-direction: column;
    }
    .event .accommodationrow > div:first-child {
        order: unset;
        margin-left: unset;
    }
    .eInfoBox {
        position: unset;
        margin: 0 auto 2.5rem;
    }
    .eInfoBox > div:nth-child(2) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1em;
        text-align: center;
    }
    .eDateRng,
    .eVenue {
        font-size: 1em;
    }
    .eDateRng {
        order: 2;
    }
    .eVenue {
        padding-right: 1em;
        border-right: 2px solid white;
    }
    .eName {
        display: block;
        font-size: 3rem;
        text-align: center;
    }
    .eHours {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
    .eHours > div {
        grid-template-columns: 100%;
    }
    .eHours > div div:first-child {
        order: 2;
    }
    .eCTA {
        justify-content: center;
    }
    .eCTA.btm {
        display: flex;
        width: 100%;
        background-color: white;
        padding: 1em 0;
        position: sticky;
        bottom: 0;
    }
    .btn.outLW {
        display: none;
    }
    .btn.fillP.book {
        width: 100%;
    }
    .eAddy {
        display: none;
    }
}
@media screen and (max-width:460px) {
    .event .accommodationrow {
        margin: 2.5rem;
    }
}
@media screen and (max-width:350px) {
    .eHours {
        grid-template-columns: 1fr;
    }
    .eHours > div {
        grid-template-columns: repeat(2, 1fr);
    }
    .eHours > div div:first-child {
        order: unset;
        text-align: left;
    }
}