/*@media only screen and (min-width: 801px) {*/
    .events-list {
        list-style-type: none;
        padding: 0;
    }

    #events-list-container{
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;
    }

    .event {
        background-color: white;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }

    .event-past {
        background-color: #eee;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }

    .event-date {
        width: 30px;
        font-weight: bold;
        font-size: 16pt;
        text-align: center;
    }

    .event-time {
        text-align: left;
        padding-left: 20px;
        font-size: 14px;
    }

    .event-weekday {
        width: 30px;
        font-size: 10pt;
        text-align: center;
        vertical-align: top;
    }

    .event-name {
        text-align: left;
        padding-left: 20px;
        font-size: 16px;
    }

    .month-heading {
        background-color: black;
        text-align: left;
        color: white;
        font-weight: bold;
        font-size: 12pt;
        height: 30px;
        line-height: 30px;
        padding-left: 20px;
    }

    .pagination {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .pagination button {
        display: inline-block;
        outline: 0;
        cursor: pointer;
        border: 1px solid #1d1c1d4d;
        font-weight: 700;
        background: #fff;
        padding: 0 12px 1px;
        font-size: 15px;
        border-radius: 4px;
        color: rgb(29, 28, 29);
        height: 36px;
        transition: all 80ms linear;
        :hover{
            background: gainsboro;
        }       
    }

    .pagination button:disabled {
        background-color: #eee;
        color: #aaa;
        border-color: #ccc;
    }

    #event-details{
        width: 80%;
    }

    #event-title {
        font-family: 'Noto Sans Japanese', sans-serif;
        font-size: 16pt;
        font-weight: 600;
        padding-bottom: 30px;
    }

    #event-description, #event-location{
        font-size: 11pt;
        text-align: left;
        padding-bottom: 30px;
    }

    #close-dialog {
        display: inline-block;
        outline: 0;
        cursor: pointer;
        border: 1px solid #1d1c1d4d;
        font-weight: 700;
        background: black;
        padding: 0 12px 1px;
        font-size: 15px;
        border-radius: 4px;
        color: white;
        height: 36px;
        transition: all 80ms linear;
        :hover{
            background: gainsboro;
        }       
    }

/*}*/