.AddressEntry {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 202px;
}
.AddressEntryFocus {
 -webkit-overflow-scrolling: touch;
 /* position:relative; */
 /* background: red; */
}
.AddressEntryContainer {
  overflow: hidden;
  background: #fff;
  width: 100vw;
  top: 0;
  bottom: 0;
  z-index: 21;
  width: 100%;
  position: fixed;
  -webkit-animation: AddressEntryContainer-animation-up .8s 0s forwards;
          animation: AddressEntryContainer-animation-up .8s 0s forwards;
  scroll-behavior: smooth;
  font-size: 15px;
}

.AddressEntryContainer--exit {
  -webkit-animation: AddressEntryContainer-animation-down .8s 0s forwards;
          animation: AddressEntryContainer-animation-down .8s 0s forwards;
}

.AddressEntryContainer__header {
  width: 100%;
  padding: 20px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #c0c0c0;
  position: absolute;
  top: 0;
  z-index: 25;
  border-bottom: 1px solid #bebebe;
}

.AddressEntryContainer__header h4 {
  font-weight: normal;
  font-size: 13px;
  margin: 0;
  padding: 0;
  color: #999999;
}

.AddressEntryContainer__header__back img {
  width: 7px;
  margin-right: 20px;
  margin-top: 5px;
}

.AddressEntryContainer__header__close img {
  width: 9px;
  margin-top: 0;
}

.AddressEntryContainer__address {

  /* top: 50px; */
  z-index: 26;
  width: 100%;

  overflow-y: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: white;
  
}

.AddressEntryContainer__address__input {
  height: 50px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: solid #cfcfcf 1px;
}

.AddressEntryContainer__address__input input {
  width: 100%;
  height: 48px;
  border: 0;
  padding-left: 14px;
  outline: none;
  background: white;
  font-size: 13px;
}

.AddressEntryContainer__address__input--selected {
  /* background: #2142eb; */
}

.AddressEntryContainer__address__input--selected input {
  color: #2142eb;
  background: transparent;
}

.AddressEntryContainer__address__input--selected div {
  /* background: #2142eb; */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.AddressEntryContainer__address__input--selected div img {
  width: 8px;
}
.AddressEntryContainer__address{
 
}


 
.googlePlaces{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50px;
  }

.AddressEntryContainer__complements {
  /* border-bottom: 1px solid #cfcfcf; */
  /* border-top: 1px solid #cfcfcf; */
  position: absolute;
  /* top: 99px; */
  z-index: 25;
  bottom: 50px;
}

.AddressEntryContainer__complements__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cfcfcf;
}

.AddressEntryContainer__complements__input {
  border-right: 1px solid #cfcfcf;
}

.AddressEntryContainer__complements__input input {
  width: 100%;
  height: 50px;
  border: 0;
  padding: 15px;
  padding-left: 30px;
  outline: none;
  font-size: 13px;
}

.AddressEntryContainer__complements__input:nth-of-type(2) {
  border-right: 0;
}

.AddressEntryContainer__footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #cfcfcf;
}

@-webkit-keyframes AddressEntryContainer-animation-up {
  0% {
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes AddressEntryContainer-animation-up {
  0% {
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes AddressEntryContainer-animation-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(110vh);
            transform: translateY(110vh);
  }
}

@keyframes AddressEntryContainer-animation-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(110vh);
            transform: translateY(110vh);
  }
}
@-webkit-keyframes AddressEntryContainer-focuss {
   0% {
    bottom: -366px;
    opacity:1;
    top:auto;
  }
10% {
   bottom: -366px;
   opacity:1;
   top:auto;
  }

  99% {
    bottom: 0;

    top:auto;
  }
  100% {
    bottom: 0;
    top:0;
  }
}
.AddressEntryContainer__address--focus {
    z-index: 9999;
  height: 100%;
    position: fixed;
    transform: translateY(0);
   
   -webkit-animation:AddressEntryContainer-focus .8s .5s forwards;
  animation:AddressEntryContainer-focus .8s .5s forwards;
  
  
}
@keyframes AddressEntryContainer-focus {
   0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
    100% {
    top:50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); 
    }
}
.AddressEntryContainer__address--blur {
  top:0;
  height: 100%;
  position: fixed;  
   -webkit-animation:AddressEntryContainer-blur .8s .5s forwards;
  animation:AddressEntryContainer-blur .8s .5s forwards;
   /*  */
  }

@keyframes AddressEntryContainer-blur {
  0% {
  bottom: 0;
    top:auto;
  }

  100% {
       bottom: -366px;
    opacity:1;
    top:auto;
  }
}
.pac-container{
  opacity: 0;
}
.pac-container--focus {
  -webkit-animation: pac-container-focus 0.8s 0s forwards;
  animation: pac-container-focus 0.8s 0s forwards;
}
.pac-container--blur {
  -webkit-animation: pac-container-blur 0.8s 0s forwards;
  animation: pac-container-blur 0.8s 0s forwards;
}
@keyframes pac-container-focus {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes pac-container-blur {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



