@font-face {
    font-family: Roboto;
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: Roboto;
    src: url('../fonts/Roboto-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: Roboto;
    src: url('../fonts/Roboto-Thin.ttf');
    font-weight: 200;
}

@font-face {
    font-family: Roboto;
    src: url('../fonts/Roboto-Bold.ttf');
    font-weight: 600;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Roboto;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background: transparent;
}

html, body {
  min-height: 100%;
}

body {
  height: 100%;
  overflow-y: auto;
}

body {
  background: #06beb6;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #06beb6, #48b1bf);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #06beb6, #48b1bf); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding-top: 95px;
  color: white;
}

.animated {
  opacity: 0;
  animation-fill-mode: forwards;
}

#header, #container {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  max-width: 360px;
}

#header {
  position: relative;
}

.arrow-img {
  position: absolute;
  top: 0;
  left: 4%;
  width: 25px;
  cursor: pointer;
}

.arrow-img img {
  display: block;
  width: 100%;
}

p {
  font-weight: 300;
  text-align: center;
  line-height: 22px;
}

.img-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background-color: rgba(245, 245, 245, 0.27);
  box-shadow: 0px 7px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-circle img {
  width: 70px;
  display: block;
}

.header-title {
  font-size: 50px;
  font-weight: 200;
  color: white;
  margin: 20px 0px;
}

button {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  font-size: 16px;
  font-weight: 300;
  color: white;
  border-radius: 9px;
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px 0px;
  outline: none;
  cursor: pointer;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}

.input {
  position: relative;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.input img {
  position: absolute;
  left: 6px;
  width: 22px;
  top: 2px;
}

input {
  background: transparent;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  color: white;
  margin-bottom: 15px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  width: 100%;
  display: block;
  padding: 8px 0px;
  padding-left: 38px;
  transition: .5s border;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: white;
}
::-moz-placeholder { /* Firefox 19+ */
  color: white;
}
:-ms-input-placeholder { /* IE 10+ */
  color: white;
}
:-moz-placeholder { /* Firefox 18- */
  color: white;
}
input:focus {
  border-color: #62cbd6;
}

.input-err {
  border-color: #ff7878;
}

#footer {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  position: fixed;
  bottom: 2%;
  left: 0;
  text-align: center;
  width:100%;
}

/* RIPPLE EFFECT */
.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.ripple:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #505050 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}
.ripple:active:after {
  transform: scale(0, 0);
  opacity: .1;
  transition: 0s;
}

#err_msg {
  color: #ff4c4c;
}

#msg {
  color: #44ff93;
}

#dots {
  margin-top: 30px;
  text-align: center;
}

.dot {
  display: inline-block;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: white;
}

.dot-active {
  background-color: #FFCE54;
}

#vehicle {
  color: #FFCE54;
  font-size: 24px;
  font-weight: 500;
}

#taxiName {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 22px;
}


#msgDiv {
  width: 100%;
  max-width: 350px;
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 15px;
  background: rgba(123, 123, 123, 0.33);
  border-radius: 9px;
  /* min-height: 150px; */
  bottom: 20px;
  opacity: 1;
  animation: fromBottom .7s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: 0px 0px 3px #797979;
}

#msgDiv h2 {
  font-size: 22px;
  font-weight: 300;
}

#msgDiv img {
  width: 24px;
  margin-right: 8px;
}

#msgDiv p {
  text-align: left;
  margin-top: 8px;
}

@keyframes fromBottom {
  from {bottom: -100%; opacity: 0;}
  to {bottom: 20px; opacity: 1;}
}
