html, body {
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	line-height: 150%;
}

html {
  -webkit-text-size-adjust: 100%;
}

* {
	-moz-box-sizing: border-box;    
	box-sizing: border-box;
}

.appleLinks a {color:#000000;}
.appleLinksWhite a {color:#ffffff;}

#map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#points {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	padding: 10px 20px 10px 10px;
	width: 100%;
	background-color: rgba(256,256,256,0.75);
	font-weight: bold;
}

.leaflet-container .leaflet-control-attribution,
.mapbox-logo {
	display: none !important;
}

.points-label {
	font-family: "open sans", Helvetica, Arial, sans-serif;
	color: #999;
	font-weight: 900;
}

/*======== Map Icons ========*/
.icon-off {
	display: inline-block;
	margin: 2px;
	width: 28px;
	height: 28px;
	border: 2px solid #26A907;
	border-radius: 100%;
	background-color: #fff;
	color: #26A907 !important;
	text-decoration: none !important;
	vertical-align: middle;
	font-size: 13px;
	text-align: center;
	line-height: 24px;
	position: relative;
	cursor: pointer;
  -webkit-animation: pop 0.4s cubic-bezier(0.86, 0, 0.07, 1);
          animation: pop 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.icon-off.is-disabled {
	border-color: #999;
	color: #999 !important;
	opacity: 0.5;
}

.icon-off:before {
  content: "";
  width: 26px;
  height: 26px;
  border: 2px solid #26A907;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -15px;
  margin-left: -15px;
  -webkit-animation: fade 0.4s ease-out;
          animation: fade 0.4s ease-out;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}

@-webkit-keyframes fade {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@-webkit-keyframes pop {
  0%   {
    border-color: #fff;
	  background-color: #26A907;
    color: #fff;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  70%  {
    border-color: #fff;
	  background-color: #26A907;
    color: #fff;
   -webkit-transform: scale(1.4);
           transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pop {
  0%   {
    border-color: #fff;
	  background-color: #26A907;
    color: #fff;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  75%  {
    border-color: #fff;
	  background-color: #26A907;
    color: #fff;
   -webkit-transform: scale(1.4);
           transform: scale(1.4);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.icon-on {
	border: 1px solid #fff;
	border-radius: 100%;
	background-color: #26A907;
	color: #fff;
	text-align: center;
	line-height: 28px;
}

.icon-home {
	width: 20px;
	height: 20px;
	border: 2px solid #fff;
	border-radius: 100%;
	background-color: #4990E2;
}

/*======== Chrome ========*/
.btn {
	position: absolute;
	z-index: 100;
	border: none;
	box-shadow:0 0 5px 0px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	/*border: 2px solid #FFF;*/
}

.btn:focus {
	outline: none;
}

.btn-locate {
	bottom: 14px;
	left: 14px;
	width: 36px;
	height: 36px;
	border-radius: 2px;
	background:#fff url(../../images/center.svg) no-repeat center;
	background-size: 24px 24px;
}

.btn-close {
	width: 11px;
	height: 11px;
	background:url(../../images/close.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 200;
	cursor: pointer;
}

.btn-undo {
	right: 10px;
	bottom: 10px;
	padding: 6px 16px;
	border-radius: 20px;
	background-color: #fff;
	color: #999;
	font-size: 13px;
	line-height: 26px;
}

.btn:active {
	box-shadow: none;
	/*border: 2px solid #26A907;*/
	color: #26A907;
	box-shadow:inset 0px 0px 0px 3px  #26A907;
}

.btn-undo img {
	margin-right: 3px;
	margin-top: -3px;
	display: inline-block;
	vertical-align: middle;
}