#main-content .event-type-container {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

#main-content .event-type-container .toggle-event-type {
    height: 45px;
    color: #1f1f1f;
    position: relative;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0;
    text-decoration: none;
    background-color: #fff;
    cursor: default;
    transition: background-color .1s ease-in-out, color .1s ease-in-out, border-color .1s ease-in-out;
}

#main-content .event-type-container .toggle-event-type:first-of-type {
    margin-right: 50px;
}

#main-content .event-type-container .toggle-event-type.all-events:hover,
#main-content .event-type-container .toggle-event-type.all-events.active {
    border-color: #fd241d;
}

#main-content .event-type-container .toggle-event-type.anthem-events:hover,
#main-content .event-type-container .toggle-event-type.anthem-events.active {
    border-color: #b08a4c;
}

#main-content .event-type-container h2,
#main-content .event-type-container h4 {
    margin: 0 auto;
    padding: 0 20px;
}

#main-content .event-type-container .pin {
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    display: flex;
    height: 30px;
    width: 30px;
}

#main-content .event-type-container .pin img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 767px) {
    #main-content .event-type-container {
        flex-direction: column;
    }

    #main-content .event-type-container .toggle-event-type {
        margin: 0 auto;
    }

    #main-content .event-type-container .toggle-event-type:first-of-type {
        margin-bottom: 20px;
        margin-right: auto;
    }

    #main-content .event-type-container h2,
    #main-content .event-type-container h4 {
        margin: 0;
    }
}
