.overlay-area-bottom {
  position: fixed;
  bottom: 0px;
  z-index: 10000;
  height: 80px;
  width: 100%;
  background-color: rgba(94, 94, 94, .5);
  justify-content: space-around;
  align-items: center;
  display: none;
}

.overlay-area-bottom .overlay-area-bottom-body {
  display: flex;
  margin: 0 auto;
  width: 400px;

  @media screen and (max-width:415px) {
    width: 290px;
  }
}

.overlay-area {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 9999;
  height: 80px;
  width: 100%;
  background-color: rgba(94, 94, 94, .5);
  display: none;
}

.overlay-area .overlay-body {
  opacity: 1.0;
  width: 400px;
  height: 70px;
  margin: 5px auto;
  text-align: center;
  display: flex;

}

.overlay-body .shop-tel-info .tel-banner:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: #fff;
}

.overlay-body .shop-tel-info .tel-banner .tel-icon {
  width: 24px;
  height: 24px;
}

@media screen and (max-width:999px) {
  .overlay-area {
    height: auto;
    padding: 0px 8px;
  }

  .overlay-area .overlay-body {
    width: 300px;
    height: 50px;
  }

  .overlay-body .shop-info .shop-icon {
    width: 100%;
  }

  .overlay-body .call-count-icon {
    width: 200px;
    position: absolute;
    top: 68px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  .overlay-body .shop-tel-info .tel-banner:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 20px;
    height: 100%;
    background-color: #fff;
  }

  .overlay-area-bottom {
    height: auto;
  }
}

.fade-in {
  animation-name: fade-in;
  animation-duration: 1s;
  animation-iteration-count: 1;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1.0;
  }
}