@keyframes bob {
  0% {
    transform: scale(1);
  }

  20% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.05);
  }

  40% {
    transform: scale(1);
  }

  50% {
    transform: scale(1);
  }

  60% {
    transform: scale(1);
  }

  70% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(1);
  }

  90% {
    transform: scale(1);
  }
}

#customer__banner {
  width: 360px;
  max-width: 90vw;
  position: fixed;
  display: none !important;
  align-items: flex-start;
  flex-direction: column;
  top: 20vh;
  left: 0;
}

#customer__banner.active {
  display: flex !important;
}

#customer__banner button {
  padding: 1rem 2rem;
  cursor: pointer;
  background-color: #e8c08e;
  color: #653234;
  border: 1px solid #e8c08e;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  text-align: center;
  transform-origin: left;
  animation: bob 15s ease-in-out infinite;
}

#customer__banner button span {
  margin: 0 0.5rem;
}

#customer__banner .info__panel {
  width: 100%;
  background: #efefef;
  position: absolute;
  top: 100%;
  padding: 50px;
  z-index: 100;
  -webkit-box-shadow: -3px 0px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: -3px 0px 5px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  transform: translateX(-100%);
  color: #222;
}

#customer__banner button:hover+.info__panel {
  transform: translateX(0);
}

#customer__banner .info__panel:hover {
  transform: translateX(0);
}

#customer__banner .title {
  top: 50%;
  position: absolute;
  transform: rotate(270deg);
  left: -3.51rem;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

#customer__banner h1 {
  color: #653234;
  font-size: 24px;
  margin: 0.67em 0 !important;
}

#customer__banner p {
  margin-bottom: 1rem;
}

#customer__banner hr {
  background-color: #e8c08e;
  height: 3px;
  margin: 1rem 0;
}

#customer__banner a {
  padding: 1rem 2rem;
  color: #e8c08e;
  background-color: #653234;
  border: 1px solid #653234;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  text-align: center;
}

#customer__banner a i {
  margin-left: 1rem;
}

#customer__banner a:hover {
  background-color: transparent;
  color: #653234;
}

#customer__banner a.alter {
  color: #653234;
  margin-bottom: 1rem;
  border: 1px solid #e8c08e;
  background-color: #e8c08e;
}

#customer__banner a.alter:hover {
  background-color: transparent;
  color: #e8c08e;
}

@media only screen and (max-width: 768px) {
  #customer__banner {
    bottom: 1rem;
    top: unset;
  }

  #customer__banner .info__panel {
    transform: translate(-100%, -100%);
  }

  #customer__banner button.info__panel:hover {
    transform: translate(0, -100%)
  }
}