/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.trapperkeeper-events {
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
    padding-left: 0 !important;
    width: 100%;
}

.trapperkeeper-header {
    background-color: #4B9CD3;
    border: 1px solid #4B9CD3;
    border-radius: 5px 5px 0 0;
    margin: 0;
    padding: 5px 5px 5px 25px;
    text-align: left;
}

.trapperkeeper-event {
    margin: 10px;
    width: 285px;
}

.trapperkeeper-event:first-of-type {
    margin-left: 0;
}

.trapperkeeper-event:last-of-type {
    margin-right: 0;
}

.trapperkeeper-event h2 {
    display: inline-flex;
    height: auto;
    margin-bottom: 0;
    width: 100%;
}

.trapperkeeper-day {
    font-weight: bold;
    min-width: 55px
}

.trapperkeeper-event-info {
    background-color: white;
    border: 1px solid #4B9CD3;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 230px;
    overflow-y: auto;
    padding: 15px 15px 5px 15px;
}

.trapperkeeper-event-info h3 {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 25px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.trapperkeeper-event-info a {
    font-size: 1.2rem;
}

.trapperkeeper-event-info p {
    margin-bottom: 15px;
    margin-left: 0;
    margin-top: 15px;
}

.trapperkeeper-dots {
    margin: auto 0;
    padding: 0 8px;
}

.trapperkeeper-dots rect {
    height: 100%;
    width: 100%
}

/* Bootstrap medium breakpoint https://getbootstrap.com/docs/5.1/layout/breakpoints/ */
@media (max-width: 768px) {
    .trapperkeeper-events {
        flex-flow: column nowrap;
        width: 100%;
    }

    .trapperkeeper-event {
        margin: 10px auto;
        width: 98%;
    }

    .trapperkeeper-event-info {
        height: auto;
        padding-bottom: 15px;
    }
}