.mstrpln {
	position: relative;
}

#mstrpln-map {
	width: 100%;
	height: 900px;
}

#mstrpln-map.has-highlighted-lot {

	height: 450px;

}

.mstrpln-image-overlay img {
	width: 100%;
	height: auto;
}

.mstrpln-lot-details {

	background: transparent;
	font-size: 13px;
	
}

.mstrpln-lot-details h1 {
	margin: 0;
}

.mstrpln-lot-details p {
	margin: 0;
}

.mstrpln-lot-details table {
	margin: 0;
}

.mstrpln-instructions {

	position: absolute;
	top: -2em;
	color: #fff;
	padding: 0.5em 1.5625em;
	z-index: 2;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
	font-size: 1.2em;

}

.mstrpln-lot-details-inner {
	background: transparent;
	border-radius: 5px;
	z-index: 7;
	position: relative;
	box-shadow: 0 0 4px rgba(0,0,0,0.3);
	transition: box-shadow .4s ease;
}

.mstrpln-lot-details-inner::before {
	content: " ";
	position: absolute;
	top: 56px;
	left: -7.5px;
	width: 15px;
	height: 15px;
	transform: rotate(45deg);
	background: #fff;
	box-shadow: 0 0 4px rgba(0,0,0,0.3);
	z-index: 1;
	opacity: 1;
	transition: opacity .4s .2s ease;
}

.mstrpln-lot-details-inner-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0:
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 2;
}

.mstrpln-lot-details-inner-bg::after {
	content: " ";
	top: 50%;
	left: 50%;
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	transition: transform .4s ease;
	background: #fff;
	margin-left: -250px;
	margin-top: -250px;
	z-index: 1;
}

.mstrpln-lot-details-inner-content {
	transition: opacity .4s .2s ease;
	opacity: 1;
	padding: 20px;
	position: relative;
	z-index: 2;
}

.mstrpln-is-collapsed {
	visibility: hidden;
	pointer-events: none;
}

.mstrpln-is-collapsed .mstrpln-lot-details-inner-bg::after {
	transform: scale(0);
}

.mstrpln-is-collapsed .mstrpln-lot-details-inner-content {
	opacity: 0;
}

.mstrpln-is-collapsed .mstrpln-lot-details-inner {

	box-shadow: 0 0 4px rgba(0,0,0,0);

}

.mstrpln-is-collapsed .mstrpln-lot-details-inner::before {
	
	opacity: 0;

}

/* 

<div class='mstrpln-lot-details-inner-content'>
      
        <label>For sale</label>
        <h1>Lot 18</h1>
        <p>Lisbourne Street, Marong</p>
        <p>$159,000</p>

        <table>

          <tr>
            <th>Size:</th>
            <td>630m<sup>2</sup></td>
          </tr>

          <tr>
            <th>Frontage</th>
            <td>17.50m</td>
          </tr>

          <tr>
            <th>Depth 1</th>
            <td>36.00m</td>
          </tr>

          <tr>
            <th>Depth 2</th>
            <td>36.00m</td>
          </tr>

        </table>

      </div>

*/

.mstrpln-lot-details label {
	
	display: inline-block;
	background: #8dc557;
	padding: 6px 12px;
	text-transform: uppercase;
	color: #fff;
	font-size: 12px;
	margin-bottom: 15px;
	border-radius: 5px;

}

.mstrpln-lot-details label.mstrpln-is-sold {

	background: red;

}

.mstrpln-lot-details label.mstrpln-is-display-home {

	background: #0096cd;

}

.mstrpln-lot-details h1 {

	font-size: 24px;
	color: #004f59;
	margin: 0;

}

.mstrpln-lot-details p {

	color: #000;
	font-size: 16px;
	margin: .5em 0;

}

.mstrpln-lot-details-price {

	font-size: 24px;
	font-weight: 600;

}

.mstrpln-lot-details table {

	border-top: solid 1px #ccdcde;
	width: 100%;
	font-size: 16px;
	color: #000;
	border-collapse: collapse;
	margin-bottom: 0.75em;

}

.mstrpln-lot-details td,
.mstrpln-lot-details th {

	padding: 8px 10px;
	text-align: left;

}

.mstrpln-lot-details th {

	color: #004f59;

}

.mstrpln-lot-details tr:nth-child(even) {

	background: #e5edee;

}

#mstrpln-lot-details-link,
#mstrpln-lot-details-link:visited {

	background: #0096cd;
	border-radius: 5px;
	color: #fff;
	text-decoration: underline;
	font-weight: 700;
	display: block;
	padding: 0.75em;
	text-align: center;

}

#mstrpln-lot-details-link-top,
#mstrpln-lot-details-link-top:visited {

	position: absolute;
	top: 2em;
	right: 2em;

}

@media only screen and (min-width: 50em) {

	.mstrpln-instructions {

		right: 0;
		padding: 0.5em 1em;

	}

	.mstrpln-lot-details {

		position: absolute;
		top: 50px;
		left: 100px;
		width: 250px;
		margin-top: -56px;

	}

}