.popup-info {
  -webkit-transform: translate3d(165px, 0, 0);
          transform: translate3d(165px, 0, 0);
  width: 200px;
  -webkit-box-align: right;
  -ms-flex-align: right;
  align-items: right;
  position: fixed;
  z-index: 2000;
  top: 35%;
  right: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  background: #0081c3;
  -webkit-box-shadow: 0px 0px 25px -7px rgba(10, 10, 10, 0.4);
  box-shadow: 0px 0px 25px -7px rgba(10, 10, 10, 0.4);
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition: all ease 0.3s;
  -o-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translate3d(200px, 0, 0);
          transform: translate3d(200px, 0, 0);
}

.popup-info-inner {
  padding: 4rem 1rem;
  color: #fff;
}

.popup-info-header {
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
  background-color: #fff;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 2rem 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
}

.popup-info-header:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #fe5800;
  height: 5px;
  width: 105%;
  bottom: 10%;
  z-index: 999;
  -webkit-transform: rotate(-5deg);
      -ms-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

.popup-info-header .icon-i {
  border: 2px solid #0380c3;
  padding: 0.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #0380c3;
}

.popup-info-header h4 {
  font-weight: bold;
  margin: 1rem 0;
  font-family: Roboto-condensed, Arial Narrow, Roboto, Microsoft Yahei,
    "\5FAE\8F6F\96C5\9ED1", SimSun, "\5B8B\4F53", sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  display: block;
}

.popup-info-inner p {
  font-size: 1.4rem;
  line-height: 1.1;
}

.popup-info-inner p span {
  font-weight: 600;
}

.popup-info.fadeInPopup {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.popup-info.fadeOutPopup {
  opacity: 0;
  -webkit-transform: translate3d(200px, 0, 0);
          transform: translate3d(200px, 0, 0);
}

.iconDeliveryClose {
  position: absolute;
  top: 10px;
  left: 10px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
  z-index: 2;
}