/**
 * @license
 * Copyright 2019 Google LLC. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */
/* [START maps_add_map] */
/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#container {
	height: 93%;
	width: 100%;
}
#scroll-div {
	position: relative;
	overflow-y: scroll;
	height:100%;
	float: left;
	width: 60%;
}
#myitems {
	display: flex;
	flex-wrap: wrap;
}
#map {
	margin-left: 50%;
	height: 100%;
	width: 40%;
	border-radius: 10px;
}
.item {
	height: 345px;
	width: 363px;
	border-radius: 10px;
	margin: 10px;
}


#pac-input {
  border-color: #aaa;
  background-color: #fff;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  margin-left: 12px;
  padding: 0 11px 0 13px;
  text-overflow: ellipsis;
  width: 400px;
  height: 30px;
  border-radius: 8px;
}

#pac-input:focus {
  border-color: #4d90fe;
}


/* 
 * Optional: Makes the sample page fill the window. 
 */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* [END maps_add_map] */

.circle {
    width: 25px;
    height: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #02b54c;
    //width: 20px;
    //height: 20px;
    border-radius: 50%;
    border: 2px solid #00a345;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: white;
}


.small {
    width: 8px;
    height: 8px;
}





#myForm{
	z-index: 10;
	border-radius: 10px;
	display: none;
	width: 410px;
	height: 200px;
	//bottom: 0;
	border: none;
	//z-index: 9;
	box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
	color: rgb(112, 117, 122);
	background-color: rgb(250, 250, 250);
	position: absolute;
}
.button-class{
	font-family: "Google Sans",Roboto,Arial,sans-serif;
	font-size: .875rem;
    letter-spacing: .0107142857em;
    font-weight: 500;
    text-transform: none;
	border-radius: 8px;
	background-color: white;
	border-color: #ddd;
	height: 27px;
	border-width: thin;
}
.button-class:hover{
	background-color: #f8f8f8;
}





.price-bubble-parent {
	z-index: 1;
	position:absolute;
	top:94px;
	
	text-align: center;
	width:100px;
}

.price-bubble-pin {
	width: 15px;
	height: 15px;
	border-radius: 50% 50% 50% 0;
	background: #1973e8;
	transform: rotate(-45deg);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	left: 35px;
	top: -5px;
}

.price-bubble-text {
	background-color: #1973e8;
    width: 50px;
    height: 24px;
	border-radius: 20px;
	position: relative;
	top: -30px;
	left: -7px;
	border-color: #1973e8;
    border-width: 6px;
    border-style: solid;
	color: white;
	font-size: 16;
	font-weight: 900;
}


.item-label {
	position: relative;
	left: 25px;
	font-family: sans-serif;
	font-size: 16px;
	font-weight: 700;
}
.item-container {
	width: 370px;	
}
