/**
 * @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 {
    margin-bottom: 1em;
}

.mmt-mdp-location-images ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowarp;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mmt-mdp-location-images li {
    float: left;
    -webkit-box-flex: 1 1 30%;
    -webkit-flex: 1 1 30%;
    -ms-flex: 1 1 30%;
    flex: 0 1 30%;
}

.mmt-mdp-location-images img {
    display: block;
    max-width: 100%;
    height: auto;
    background: #ccc;
    transition: transform .2s ease-in-out;
}

.mmt-mdp-location-images li:hover img {
    transform: scale(1.15);
}


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