/**
 * @author: Procurios
 * @about:  mmt-meeting-list.css
 *          Default layout and structure settings of the meetling list snippet of mod_meeting2.
 */

/**
 * Generic settings, resets, defaults
 */

/** Reset lists */
.mmt-ml-meetings {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #c7dfe9;
}

/** Contain floats / clearfix */
.mmt-clearfix:before,
.mmt-clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}

.mmt-clearfix:after {
    clear: both;
}

.mmt-clearfix {
    zoom: 1;
}

/**
 * Search form
 */

.mmt-meeting-list form {
    padding: 0;
    background: transparent;
    margin-bottom: 3em;
}

/**
 * Lists
 */

.mmt-ml-meeting {
    position: relative;
    border-bottom: 1px solid #c7dfe9;
    transition: .1s background-color ease-out;
}

.mmt-ml-meeting:hover {
    background: #ecf6fd;
}

.mmt-meeting-list a {
    text-decoration: none;
}

.mmt-ml-footer-pane a:after,
.mmt-ml-title:after {
    font: normal .8em/1em 'icons';
    content: '\21d2' !important;
    margin: .5em 0 0 .3em !important;
}

.mmt-meeting-list-detailed a:hover,
.mmt-ml-meeting:hover .mmt-ml-title {
    color: #c6285f;
    cursor: pointer;
}

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

.mmt-ml-location a,
.mmt-ml-date-location {
    margin-bottom: 0;
    color: rgba(0,0,0,0.5);
}

.mmt-meeting-list a:hover .mmt-ml-date-location {
    color: inherit;
}

.mmt-ml-title {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

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

.mmt-ml-footer-pane .mmt-meeting-list-detailed a {
    margin-right: 1em;
}

/**
 * Meeting list simple
 */

.mmt-meeting-list-simple a {
    position: relative;
    display: block;
    min-height: 3.5em;
    padding: 1em .5em 1em 5em;
}

.mmt-meeting-list-simple .mmt-ml-date {
    position: absolute;
    left: 0;
    width: 1em;
    padding: 3px 15px 7px 11px;
    border: 1px solid #c7dfe9;
    font-size: 24px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #c6285f;
    background-color: #fff;
}

.mmt-meeting-list-simple .startDate__month {
    display: block;
    font-size: 13px;
    line-height: 18px;
    color: #113d8d;
}

.mmt-meeting-list-simple .mmt-ml-meeting:hover .mmt-ml-date,
.mmt-meeting-list-simple .mmt-ml-meeting:hover .startDate__month {
    border-color: #c6285f;
    color: #fff;
    background: #c6285f;
}

/**
 * Meeting list detailed
 */

.mmt-meeting-list-detailed .mmt-ml-meeting {
    padding: .5em 0;
}