.mmt-ml-meetings {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.mmt-ml-meeting {
    position: relative;
    box-sizing: border-box;
    vertical-align: top;
}

.mmt-meeting-list-detailed .mmt-ml-meeting {
    display: inline-block;
    margin-bottom: 3em;
    cursor: pointer;
}

@media screen and (min-width: 900px) {
    .mmt-meeting-list-detailed .mmt-ml-meeting:nth-child(2n+2) {
        margin-left: 10%;
    }

    .mmt-meeting-list-detailed .mmt-ml-meeting {
        width: 45%;
    }
}

.mmt-ml-date-location {
    margin-bottom: 0;
    font-size: .8em;
    color: #757575;
}

.mmt-ml-title-pane h3 {
    margin-top: 0;
}

.mmt-ml-desc-pane img {
    display: block;
}

.mmt-ml-registrations {
    position: relative;
    display: block;
    margin-top: -1.9em;
    padding: 0.3em 1em;
    font-size: 0.85em;
    background: #a7db0d;
    transition: background-color 0.2s ease-in-out;
}

.mmt-ml-meeting:hover .mmt-ml-registrations {
    background-color: #a2d40c;
}

.mmt-ml-details {
    margin-top: 0.5em;
}

.mmt-ml-meta-data {
    margin-bottom: 0.1em;
}

.mmt-ml-description p {
    margin-bottom: 0;
}

.mmt-ml-location {
    display: block;
    font-size: 0.8em;
    line-height: 1.4;
    color: #444;
}

.mmt-ml-footer-pane {
    font-size: .85em;
}

.mmt-ml-footer-pane p {
    margin-bottom: 0;
}

.mmt-ml-more {
    display: block;
}

/**
 * Meeting list Date, Title and Labels table
 */

.mmt-ml-dateTitleTable {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.mmt-ml-dateTitleRow {
    display: table-row;
}

.mmt-ml-dateCell,
.mmt-ml-titleCell {
    height: 100px;
    display: table-cell;
    vertical-align: middle;
}

.mmt-ml-dateCell {
    width: 90px;
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    background-color: #a7db0d;
    transition: background-color 0.2s ease-in-out;
}

.mmt-ml-dateCellDay {
    display: block;
    font-size: 1.4em;
    line-height: 1.6;
}

.mmt-ml-dateCellMonth {
    display: block;
    margin-top: -0.7em;
    font-size: 0.8em;
    text-transform: uppercase;
}

.mmt-ml-meeting:hover .mmt-ml-dateCell {
    background-color: #a2d40c;
}

.mmt-ml-titleCell {
    padding: 0.8em 0.8em 0.8em 1.5em;
    line-height: 1.6;
    background-color: #e8e8e8;
}

.mmt-ml-label {
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.2s ease-in-out;
}

.mmt-ml-title {
    font-size: 0.9em;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
}

.mmt-ml-meeting:hover .mmt-ml-label,
.mmt-ml-meeting:hover .mmt-ml-title {
    color: #34842b;
}

@media (min-width: 400px) {
    .mmt-ml-title {
        font-size: 1.1em;
    }
}

/**
 * Simple list
 */

.mmt-meeting-list-simple {
    display: inline-block;
}

.mmt-meeting-list-simple .mmt-ml-showMoreLink {
    position: relative;
    float: right;
    padding-right: 1.5em;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    color: #222;
}

@-webkit-keyframes moveToRight {
    0% {
        -webkit-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(5px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}
@keyframes moveToRight {
    0% {
        -webkit-transform: translate(0, 0);
    }
    50% {
        -webkit-transform: translate(5px, 0);
    }
    100% {
        -webkit-transform: translate(0, 0);
    }
}

.mmt-meeting-list-simple .mmt-ml-showMoreLink:hover:after {
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

.mmt-meeting-list-simple .mmt-ml-showMoreLink:after {
    content: '⭢';
    vertical-align: middle;
    margin-left: 0.4em;
    font-family: 'SS BlackTie-Light';
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.8em;
    color: #090909;
}

.mmt-meeting-list-simple .mmt-ml-meeting a {
    display: block;
    position: relative;
    margin-bottom: 0.2em;
    max-width: 700px;
    text-decoration: none;
    color: inherit;
}