/**
 * @author: Procurios
 * @about:  mmt-mdp-location.css
 *          Additional layout settings for the "location"-page of the meeting detail page
 */

/**
 * Layout of locations
 */

.mmt-mdp-section-location {
    padding-bottom: 1.6em;
    margin-bottom: 1.6em;
    border-bottom: 1px solid #ccc;
}

.mmt-mdp-section-last {
    padding: 0;
    margin: 0;
    border: 0;
}

.mmt-mdp-location-images ul {
    margin: 0 0 50px;
    padding: 0;
    list-style: none;
}

.mmt-mdp-location-images ul:not(.hasSingleImage ){
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

ul.hasSingleImage {
    float: left;
    width: 50%;
    margin-right: 20px;
}

.mmt-mdp-location-images li {
    -webkit-box-flex: 1 0 20%;
    -webkit-flex: 1 0 20%;
    -ms-flex: 1 0 20%;
    flex: 1 0 20%;
    background: #eee;
}

.mmt-mdp-location-images img {
    display: block;
    cursor: pointer;
}

.mmt-mdp-location-map {
    width: 100%;
    height: 300px;
}