* {
  margin:0;
  padding:0;
}

html {
  touch-action: manipulation;
}

html, body {
  width:100%;
  height:100%;
  background:#88AED3;
  font-family: 'Montserrat', sans-serif;
  font-size:100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transition:background 0.3s;
}

#container {
  width: 100%;
  height: 100%;
  position:relative;
  text-align: center;
}

header {
  width:100%;
  height:40px;
  background:red;
}

#getBtn {
  width:200px;
  height:200px;
  border-radius: 50%;
  background:white;
  position:absolute;
  left:50%;
  margin-left:-100px;
  bottom:10%;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.3);
  text-align: center;
  line-height: 270px;
}
.fa-cloud-download {
  color:#FD898B;
  font-size:150px;
}

#hidden {
  width:100px;
  height:100px;
  background:red;
  position:absolute;
  left:0;
  top:0;
  opacity: 0;
}

#user1, #user2 {
  position:absolute;
  display:none;
}


#user1 {
  left:50%;
  margin-left:-200px;
  top:40%;
  animation: floating 3s infinite;
}

#user2 {
  left:50%;
  margin-left:50px;
  top:40%;
  animation: floating2 3s infinite;
}

@keyframes floating {
  0% {
    margin-top:-10px;
  }

  50% {
    margin-top:30px;

  }

  100%; {
    margin-top:-15px;

  }
}
@keyframes floating2 {
  0% {
    margin-top:8px;
  }

  50% {
    margin-top:-15px;

  }

  100%; {
    margin-top:10px;

  }
}


#title {
  width:500px;
  position:absolute;
  color:white;
  font-size:50px;
  left:50%;
  margin-left:-250px;
  top:30%;
}


#upload {
  width:500px;
  position:absolute;
  color:white;
  font-size:50px;
  left:50%;
  margin-left:-250px;
  top:30%;
  display:none;
}


.tick-animation-ctn{text-align:center;margin-top:30px; display:none;}

	@-webkit-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@-ms-keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 200px
    }
}

@keyframes checkmark {
    0% {
        stroke-dashoffset: 100px
    }

    100% {
        stroke-dashoffset: 0px
    }
}

@-webkit-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px

    }

    100% {
        stroke-dashoffset: 960px;

    }
}

@-ms-keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 240px
    }

    100% {
        stroke-dashoffset: 480px
    }
}

@keyframes checkmark-circle {
    0% {
        stroke-dashoffset: 480px
    }

    100% {
        stroke-dashoffset: 960px
    }
}

@keyframes colored-circle {
    0% {
        opacity:0
    }

    100% {
        opacity:100
    }
}

/* other styles */
/* .svg svg {
    display: none
}
 */
.inlinesvg .svg svg {
    display: inline
}

/* .svg img {
    display: none
} */

.icon--order-success svg polyline {
    -webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
    animation: checkmark 0.25s ease-in-out 0.7s backwards
}
