/* CSS */

.title-on-calendars {
    color: #972429;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.title-on-calendars:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

hr.curved-divider {
    overflow: visible; /* For IE */
    height: 30px;
    border-style: solid;
    border-color: black;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}
hr.curved-divider:before { /* Not really supposed to work, but does */
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: black;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}

.box {
    /*background: #f7f7f7;*/
    padding: 12px;
}

.faqs {
    padding-top: 20px;
    border: 1px solid #ebebeb;
    padding: 20px;
    border-top: 0;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

.faqs dt {
    font-size: 1rem;
    padding: 3px 0 10px 25px;
    position: relative;
    font-weight: 400;
}


dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

.flyer-tn {
    vertical-align: middle;
    border-style: none;
    max-height: 150px;
}

.caption {
    display: inline-block;
    max-width: 98%;
    font-weight: 800;
}
/* === Event Status Styles === */
.cancelled-overlay {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
}
.cancelled-overlay img {
    display: block;
    width: 100%;
    height: auto;
}
.cancelled-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
}

.old-event-dates {
    font-style: italic;
    opacity: 0.7;
    text-decoration: line-through;
    color: #c03;
}

 
