@import url(https://fonts.googleapis.com/css?family=Lato:200,300,400,600,700,800,900);

body,
html {
  height: 100%;
  width: 100%;
  margin: 0px;
  background-color: rgba(0, 0, 0, 0.02);
  font-family: "Lato", sans-serif;
}

body,
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
}

.container {
  overflow: hidden;
  max-width: 500px;
  margin: auto;
}

@media(min-width: 500px){
  html, body {
    background-color: #FFF;
  }

  .container {
    margin: 48px auto;
    -webkit-box-shadow: 0 5px 25px 0 rgba(179, 179, 179, 0.25);
    box-shadow: 0 5px 25px 0 rgba(179, 179, 179, 0.25);
  }
}

#map {
  width: 100%;
  height: 400px;
}
/* logo header  */
#map-header {
  height: 115px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to bottom, #140955, #08042b);
}

#map-header p {
  margin: 14px 0 0 0;
  text-align: center;
  font-size: 18px;
  color: white;
}

.map-header-plus {
  height: 13px;
  margin: 0 14px;
}

.map-header-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ad title + desc */

#ad-desc-header {
  height: 96px;
  width: 100%;
  background-color: white;
  top: 85px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

#ad-desc-header-image {
  height: 60px;
  min-width: 60px;
  margin: 20px;
  background-color: silver;
  border-radius: 5px;
}

#ad-desc-text-container {
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
}

#ad-desc-header-title {
  margin: 0;
  width: 95%;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

#ad-desc-header-desc {
  margin: 0;
  width: 95%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

#ad-desc-done {
  height: 85px;
  width: 100%;
  background-color: white;
  top: 85px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(67, 73, 106, 0.1);
}

#ad-desc-done-title {
  margin-left: 10px;
  font-size: 19px;
}

/* ad slots */
#ad-slots-container {
  height: 85px;
  width: 100%;
  top: 485px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(67, 73, 106, 0.1);
  background-color: white;
}

#pickup-text {
  font-size: 18px;
  font-weight: bold;
}

#ad-slot {
  height: 20px;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  background-color: #2a91f5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

#ad-slot-text {
  font-size: 16px;
  font-weight: 600;
  color: white;
}

/* ad state */
#ad-state-container {
  width: 100%;
  padding: 1em 0;
  top: 571px;
  background-color: white;
  text-align: center;
  font-size: 18px;
}

#app-stores-container {
  height: 80px;
  top: 656px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.app-stores-usp {
  margin-top: 30px;
  font-weight: 600;
  font-size: 17px;
}

#app-stores-imgs {
  margin-top: 15px;
  width: 228px;
}

/* popup for the map */
/* The popup bubble styling. */
.popup-bubble {
  /* Position the bubble centred-above its parent. */
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%);
  z-index: 99;
  /* Style the bubble. */
  background-color: white;
  padding: 7px;
  border-radius: 5px;
  overflow-y: auto;
  max-height: 60px;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  display: flex;
  flex-direction: row;
  align-items: center;
}
/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
  /* Position the div a fixed distance above the tip. */
  position: absolute;
  width: 100%;
  bottom: /* TIP_HEIGHT= */ 8px;
  left: 0;
  z-index: 99;
}
/* This element draws the tip. */
.popup-bubble-anchor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* Center the tip horizontally. */
  transform: translate(-50%, 0);
  /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
  width: 0;
  height: 0;
  /* The tip is 8px high, and 12px wide. */
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: /* TIP_HEIGHT= */ 8px solid white;
  z-index: 99;
}
/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
  cursor: auto;
  height: 0;
  position: absolute;
  /* The max width of the info window. */
  /* width: 200px; */
  z-index: 99;
}

.popup-bubble-text {
  color: "#110c1c";
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.center-in-view {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-heading {
  font-size: 22px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.25;
  letter-spacing: -0.5px;
  text-align: center;
  color: #272727;
}
.center-text {
  text-align: center;
}

.badge-container {
  display: block;
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: center;
  /* margin: 0px 20px; */
}

img.store-badge {
  width: 150px;
  height: 100%;
}

.container {
  display: block;
  width: 100%;
  /* overflow: hidden; */
}


.no-evil {
  display: block;
  margin: 0 auto 48px;
  width: 117px;
  height: 117px;
}

.center-child-vh {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta {
  margin-left:20px;
  width: 90%;
  height: 48px;
  margin-top: 16px;
  border-radius: 30px;
  background-color: #2a91f5;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  border-width: 0px;

  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #ffffff;
}

#ad-desc-footer {
  width: 100%;
  background-color: white;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}