/*map style*/
.hidden
{
	display:none;
}
.map-container {
    position: relative;
    width: 100%;
    height: 396px;
    background: #eee;
    border: 1px solid #c7c7c7;
}
#map-canvas {
    width: 100%;
    height: 100%;
    z-index: 1;
}
.map__controls {
    position: absolute;
    bottom: 20px;
    right: 30px;
    z-index: 2;
    width: 30px;
}
.map__controls button {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-top: 10px;

    border: 1px solid #a7a9ac;
    background: #FFF;
    color: #ed0c6e;
    font-size: 24px;
    line-height: 22px;

    -webkit-transition: all 0.24s;
    -o-transition: all 0.24s;
    transition: all 0.24s;
}
.map__controls button:hover {
    background: #a7a9ac;
}
.map__controls button:focus {
    outline: none;
    border: 1px solid #a7a9ac;
}

.item.hidden {
    display: none;
}
/*
#Property infoWindow


*/
.infoWindow {
    overflow: visible !important;
    -webkit-transform: translate3d(-16px,-48px,0) !important;
    -ms-transform: translate3d(-16px,-48px,0) !important;
    -o-transform: translate3d(-16px,-48px,0) !important;
    transform: translate3d(-16px,-48px,0) !important;

    box-shadow: 0 3px 12px rgba(0,0,0,.15);
    background: #FFF;
    /*border: 1px solid #CCC;*/
    padding: 1px !important;
}
.infoWindow:before,
.infoWindow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 7px 0;
    border-color: #fff transparent transparent;
    position: absolute;
    bottom: -16px;
    z-index: 2;
    left: 10px;
}
.infoWindow:after {
    border-width: 17px 9px 0;
    border-color: #ccc transparent transparent;
    bottom: -17px;
    z-index: 1;
    left: 8px;
}
.infoWindow > img {
    position: absolute !important;
    right: 0;
    top: -20px;
}


.map-card {
    /*display: table;*/
    width: 100%;
    height: 115px;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 

    /*fix google infowindow*/
    line-height:1.35;
    overflow:hidden;
    white-space:nowrap;
    position: relative;
    /*width: 500px !important;*/
}
/*.gm-style-iw {
    max-width: 380px !important;
}*/

.map-card > div {
    position: relative;
    display: table-cell;
    vertical-align: top;
}
.map-card__img {
    width: 131px;
    padding-right: 10px;
    position: relative;
    top: 1px;
    z-index: 2;
}
.map-card__content {
    padding-top: 10px;
}
.map-card__title {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1;
    word-wrap: break-word;
    max-width: 500px;
}
.map-card__sub,
.map-card__meta {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #323232;
}
.map-card__sub {
    margin: 0 0 15px;
}
.map-card__meta {
    margin: 0 0 5px;
}
.map-card__link {
    position: absolute;
    bottom: 1px;
    right: 0;
    left: 0;
    z-index: 1;
    margin: 0;
}
.map-card__link a {
    display: block;
    min-height: 20px;
    padding: 2px 2px 2px 101px;
    margin-left: 40px;
    text-decoration: none;
    /*background: #d7ce4b;*/
    border: 1px solid #a7a9ac;
    bottom: 1px;
    color: #FFF;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.map-card--type1 a { background: #ed0c6e; }
.map-card--type2 a { background: #faa61b; }
.map-card--type3 a { background: #d7ce4b; }
.map-card--type4 a { background: #f0463a; }
.map-card--type5 a { background: #c6168d; }