:root {
  touch-action: pan-x pan-y;
  height: 100%; }

html,
body {
  overflow-x: hidden; }

body {
  font-family: "Inter", sans-serif;
  color: #212326;
  font-weight: normal; }

#map-wrapper {
  position: relative;
  height: 45vh;
  z-index: 10;
  width: 100%;
  top: 0;
  left: 0; }
  @media screen and (min-width: 700px) {
    #map-wrapper {
      position: absolute;
      height: 100%; } }

#map {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #41de69; }
  #map .cluster img {
    width: 100%;
    height: 100%; }

#info {
  position: relative;
  padding: 44px 0 0;
  box-sizing: border-box;
  z-index: 20;
  text-align: center;
  background-color: white;
  width: 100%;
  border: 1px solid #eeeeee;
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.03); }
  @media screen and (min-width: 700px) {
    #info {
      position: absolute;
      width: 460px;
      left: 5%;
      bottom: 5%;
      border-radius: 6px; } }
  #info h1 {
    font-weight: bold;
    font-size: 25;
    margin: 0 0 18px;
    padding: 0 35px; }
    @media screen and (min-width: 700px) {
      #info h1 {
        font-size: 48px; } }
  #info p {
    font-size: 16px;
    padding: 0 35px;
    margin: 0 0 38px;
    line-height: 1.5;
    color: #6b7177; }
    @media screen and (min-width: 700px) {
      #info p {
        font-size: 20px; } }
  #info #number {
    padding: 0 35px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee; }
    #info #number h2 {
      font-weight: bold;
      font-size: 35px;
      line-height: 1.2;
      margin: 24px 0 13px;
      color: #212326; }
      @media screen and (min-width: 700px) {
        #info #number h2 {
          font-size: 60px; } }
      #info #number h2 span.faded {
        color: rgba(33, 35, 38, 0.05); }
    #info #number h3 {
      font-weight: bold;
      font-size: 13px;
      line-height: 2.3;
      letter-spacing: 0.2em;
      color: #6b7177;
      opacity: 0.5;
      margin-bottom: 13px; }
  #info #submit {
    padding: 28px 35px;
    border-bottom: 1px solid #eeeeee; }
    #info #submit button {
      position: relative;
      background-color: #41de69;
      cursor: pointer;
      border-radius: 6px;
      transition: all 0.6s ease;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 28px 0;
      font-weight: bold;
      font-size: 14px;
      line-height: 1;
      color: white;
      letter-spacing: 0.1em; }
      @media screen and (min-width: 700px) {
        #info #submit button {
          font-size: 18px; } }
      #info #submit button.isHome {
        opacity: 0.1;
        pointer-events: none;
        cursor: none; }
      #info #submit button.loading #loading {
        opacity: 1;
        visibility: visible; }
      #info #submit button.loading #iconHouse {
        opacity: 0;
        visibility: hidden; }
      #info #submit button.loading span {
        opacity: 0;
        visibility: hidden; }
      #info #submit button:hover {
        background-color: #23c94d; }
      #info #submit button:focus {
        box-shadow: none;
        outline: none; }
      #info #submit button #iconHouse {
        margin-right: 10px;
        transition: all 0.3s ease; }
        @media screen and (min-width: 700px) {
          #info #submit button #iconHouse {
            margin-right: 18px; } }
      #info #submit button span {
        transition: all 0.3s ease; }
      #info #submit button #loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden; }
  #info #share {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    align-items: start;
    flex-direction: column; }
    @media screen and (min-width: 700px) {
      #info #share {
        align-items: center;
        flex-direction: row;
        padding: 0 40px; } }
    #info #share .privacy {
      display: block;
      font-size: 12px;
      color: #6b7177;
      text-decoration: none;
      margin-top: 20px; }
      @media screen and (min-width: 700px) {
        #info #share .privacy {
          display: none; } }
    #info #share span {
      font-size: 10px;
      letter-spacing: 0.2em;
      font-weight: bold;
      color: #6b7177;
      margin-bottom: 20px; }
      @media screen and (min-width: 700px) {
        #info #share span {
          font-size: 13px;
          margin-bottom: 0px; } }
    #info #share #icons {
      display: flex;
      align-items: center;
      width: 100%;
      justify-content: space-between; }
      @media screen and (min-width: 700px) {
        #info #share #icons {
          width: auto;
          padding: 38px 0;
          justify-content: start; } }
      #info #share #icons a {
        display: block; }
        #info #share #icons a#copyToClipboard {
          position: relative; }
          #info #share #icons a#copyToClipboard #tooltip {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            left: 50%;
            top: -40px;
            border-radius: 3px;
            transform: translate(-50%, 5px);
            background-color: #41de69;
            box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.03);
            padding: 5px 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
            #info #share #icons a#copyToClipboard #tooltip.open {
              opacity: 1;
              visibility: visible;
              transform: translate(-50%, 0); }
            #info #share #icons a#copyToClipboard #tooltip span {
              position: relative;
              z-index: 10;
              font-weight: bold;
              font-size: 10px;
              color: white;
              line-height: 1.2; }
            #info #share #icons a#copyToClipboard #tooltip:before {
              content: "";
              position: absolute;
              z-index: 5;
              left: 50%;
              bottom: -8px;
              background-color: #41de69;
              width: 10px;
              height: 10px;
              transform: rotate(45deg) translateX(-50%);
              border-radius: 3px; }
        #info #share #icons a:not(:last-child) {
          margin-right: 32px; }

#logos {
  position: absolute;
  z-index: 20;
  bottom: 52px;
  right: 52px;
  display: none;
  align-items: center; }
  @media screen and (min-width: 700px) {
    #logos {
      display: flex; } }
  #logos a:first-child {
    font-size: 12px;
    color: #6b7177;
    text-decoration: none; }
  #logos a:not(:last-child) {
    margin-right: 25px; }

/*# sourceMappingURL=main.css.map */
