/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
#vp_calendar{

}
.vp_events_title{
    font-weight: 700;
}
.vp_event_display{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    padding: 0 8px;
    max-height: 200px;
    overflow-y: auto;
}
.vp_event{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.vp_event_content{
    padding: 0 8px;
    display: flex;
    flex-direction: column;
}
.vp_event_title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
a.vp_event_title {
    color: #bd221a;
    cursor: pointer;
}
.vp_event_date > i{
    margin-right: 4px;
}
.vp_event_date{
    font-size: 0.75rem;
}
.vp_event_icon{
    background: #bd221a;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 1.25rem;
}