/***************
	MAP
***************/
#map{
  background:#f2f2f2;
  min-height:694px;
  position:relative;
}
#map .infobubble{
  width:500px;
  padding:0;
  background:var(--color-orange);
  font-size:15px;
  color:#303030;
  height:auto;
}
#map .infobubble:first-line{
  font-weight:600;
}
#map .infobubble.anim{
  -webkit-animation: mappop .2s ease-out 1;
  -moz-animation:    mappop .2s ease-out 1;
  -o-animation:      mappop .2s ease-out 1;
  animation:         mappop .2s ease-out 1;
  animation-fill-mode: forwards;
}
@keyframes mappop {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100%{
    transform: translateY(0);
    opacity: 1;
  }
}
#map .infobubble:after{
  content:'';
  position:absolute;
  left:50%;
  margin-left:-10px;
  bottom:-10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: var(--color-orange) transparent transparent transparent;
  line-height: 0px;
  _border-color: var(--color-orange) #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}
#map .infobubble .photowrap{
  float:left;
  margin:6px;
  width:140px;
  height:auto;
  line-height:0;
  position:relative;
}
#map .infobubble .photowrap:after{
  content:'';
  position:absolute;
  left:-6px;
  top:-6px;
  width:50px;
  height:50px;
  background:url(../images/corner-white.svg) no-repeat center center;
}
#map .infobubble .photowrap img{
  width:100%;
  height:auto;
}
#map .infobubble .photowrap .name{
  line-height:20px;
  font-size:18px;
  font-weight:400;
  padding:5px;
  color:#303030;
}
#map .infobubble .photowrap .name span.highlight{
  font-weight:600;
}
#map .infobubble .data{
  float:right;
  width:320px;
  padding:25px 10px 20px 0;
}
#map .infobubble .data .location{
  font-size:20px;
  line-height:30px;
  font-weight:700;
  text-transform:uppercase;
}
#map .infobubble .data .address{
  font-size:16px;
  line-height:26px;
  font-weight:300;
  margin-bottom:20px;
}
#map .infobubble .data a.phone,
#map .infobubble .data a.email{
  height:34px;
  line-height:34px;
  border:0;
  padding-left:43px;
  display:block;
  position:relative;
  font-size:16px;
  font-weight:400;
  color:var(--color-blue);
  margin-bottom:10px;
}
#map .infobubble .data a.email{
  margin-bottom:0;
}
#map .infobubble .data a.phone span.icon,
#map .infobubble .data a.email span.icon{
  width:34px;
  height:34px;
  position:absolute;
  left:0;
  top:0;
  text-align:center;
  line-height:34px;
  border-radius:34px;
  background:#f1b964;
}
#map .infobubble .data a.phone span.icon img,
#map .infobubble .data a.email span.icon img{
  width:20px;
  height:auto;
  vertical-align: top;
  margin-top: 7px;
}
#map .infobubble .data a.phone:hover,
#map .infobubble .data a.email:hover{
  color:#303030;
}
#map .infobubble .data a.phone:hover span.icon,
#map .infobubble .data a.email:hover span.icon{
  background:white;
}
#map .gm-style .gm-style-iw-c{
  padding:0;
  border-radius:0;
}
#map .gm-style .gm-style-iw-d{
  overflow:hidden !important;
}
#map .gm-style .gm-style-iw-t::after{
  background:var(--color-orange);
}